
/*** Spinner Start ***/

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .8s ease-out, visibility 0s linear .0s;
    visibility: visible;
    opacity: 1;
}

.wow,
.animated {
    animation-duration: 2s !important;
}

/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

.back-to-top:hover {
    background: var(--bs-dark);
    color: var(--bs-primary);
}

h1, h2, h3, .h1, .h2, .h3 {
    font-weight: 700 !important;
    font-family: 'Open', sans-serif !important;
}

h4, h5, h6, .h4, .h5, .h6 {
    font-weight: 600 !important;
    font-family: 'Open', sans-serif !important;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}


/*** Button Start ***/

.btn {
    font-weight: 600;
    transition: .5s;
    background: #d4af37;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-md-square {
    width: 46px;
    height: 46px;
}

.btn-lg-square {
    width: 58px;
    height: 58px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary:hover {
    color: var(--bs-primary) !important;
    background: var(--bs-dark) !important;
    border-color: var(--bs-dark) !important;
}

.btn.btn-dark:hover {
    color: var(--bs-dark) !important;
    background: var(--bs-primary) !important;
    border-color: var(--bs-primary) !important;
}
.btn-simple {
  padding: 10px 24px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  background-color: #d4af37;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-simple:hover {
  background-color: #333;
  transform: translateY(-1px);
}

.btn-simple:active {
  transform: translateY(0);
}

.btn-simple:focus {
  outline: none;
}
.bg-white {
    background-color: black !important;
}
/*** Button End ***/


/*** Topbar Start ***/
.topbar .topbar-inner {
    height: 45px;
    padding: 10px 15px;
    background: #d4af37;
    /* background: rgba(255, 255, 255, .5); */
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-primary) !important;
}
/*** Topbar End ***/


/*** Navbar Start ***/
.fixed-top {
    transition: .5s;
}

/* .navbar {
    border-bottom: 1px solid rgba(255, 255, 255, .5);
} */

.navbar .navbar-nav .nav-link {
    padding: 12px;
    color: #d4af37;
    font-size: 17px;
    font-weight: 600;
    transition: .5s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.fixed-top.bg-white .navbar .navbar-nav .nav-link:hover,
.fixed-top.bg-white .navbar .navbar-nav .nav-link.active {
    color: white;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 992px) {
    .navbar-collapse {
        background: transparent !important;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        background: var(--bs-light) !important;
        transition: .5s;
        opacity: 1;
    }
}

.navbar-toggler {
    background: var(--bs-secondary);
    color: var(--bs-light) !important;
    padding: 10px 20px;
    border: 2px solid var(--bs-primary) !important;
    box-shadow: none !important;
}
  .navbar-logo {
    height: 100px;          /* adjust as needed */
    width: auto;
    object-fit: contain;
}
/*** Navbar End ***/


/*** Hero Header ***/

.hero-header {
    position: relative;
    width: 100%;
    min-height: 100vh;
    margin-top: 80px;
    overflow: hidden;
}

/* ===== VIDEO ===== */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* ===== OVERLAY ===== */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

/* ===== CENTER CONTENT ===== */
.hero-content {
    position: relative;
    z-index: 3;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
}

/* ===== TEXT WRAPPER ===== */
.hero-text {
    max-width: 900px;
    color: #fff;
    animation: fadeUp 1.2s ease-out forwards;
    margin-top: 95px;
}

/* ================= ANIMATIONS ================= */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomFade {
    from {
        opacity: 0;
        transform: scale(0.96);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ================= RESPONSIVE FIXES ================= */

/* Tablets */
@media (max-width: 991px) {
    .hero-header {
        margin-top: 70px;
    }

    .hero-content {
        min-height: calc(100vh - 70px);
    }

    .hero-text {
        margin-top: 60px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-header {
        margin-top: 60px;
    }

    .hero-content {
        min-height: calc(100vh - 60px);
        padding: 15px;
    }

    .hero-text {
        margin-top: 40px;
    }

    .hero-text h1 {
        font-size: 22px !important;
        line-height: 1.3;
    }

    .hero-text p {
        font-size: 15px !important;
    }

    .hero-text .btn {
        padding: 12px 28px;
        font-size: 15px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-text {
        margin-top: 25px;
    }

    .hero-text h1 {
        font-size: 20px !important;
    }

    .hero-text p {
        font-size: 14px !important;
    }

    .hero-text .btn {
        width: 100%;
        max-width: 260px;
    }
}


/* Page Hero  */
.page-hero {
    margin-bottom: 6rem;
    padding-top: 15rem;
    padding-bottom: 2rem;
    background: url("../img/job.jpg") center center no-repeat;
    background-size: cover;
}

.page-hero .page-hero-box {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.5);
}

@media (max-width: 992px) {
    .page-hero {
        padding-top: 12rem;
    }
}

.page-hero .breadcrumb-item {
    font-size: 18px;
}

/* end Page Hero */


/*** About Start ***/
.about a.btn.btn-light:hover {
    background: var(--bs-dark) !important;
    color: var(--bs-primary) !important;
    border: 0;
}
/*** About End ***/


/*** Activities Start ***/
.activities .activities-item {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 45px rgba(12, 18, 20, .08);
    transition: 0.5s;
}

.activities .activities-item:hover {
    background: var(--bs-primary) !important;
    color: var(--bs-dark) !important;
}

.activities .activities-item:hover a {
    background: var(--bs-light) !important;
    color: var(--bs-dark) !important;
}

.activities .activities-item:hover a:hover {
    background: var(--bs-dark) !important;
    color: var(--bs-primary) !important;
}
/*** Activities End ***/


/*** Events Start ***/
.event-item img {
    transition: 0.5s;
}

.event .event-item a {
    transition: 0.5s;
}

.event-item:hover img {
    transition: 0.5s;
    transform: scale(1.2)
}

.event-item a:hover {
    background: var(--bs-dark);
    color: var(--bs-primary);
    opacity: 0.5s;
}
/* ============================= */
/* GENERAL RESPONSIVE FIXES */
/* ============================= */

.event-item {
    align-items: stretch;
}

.event-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Prevent overflow issues */
.event-item .overflow-hidden {
    border-radius: 8px;
}

/* ============================= */
/* TABLET (≤ 991px) */
/* ============================= */

@media (max-width: 991px) {

    .event h1 {
        font-size: 26px !important;
        text-align: center;
    }

    .event-item {
        padding-bottom: 30px;
    }

    .event-item .col-lg-6 {
        border-left: none !important;
        padding-bottom: 20px;
    }

    .event-item .col-12.col-lg-4 {
        margin-top: 15px;
    }

    .event-item img {
        max-height: 260px;
    }
}

/* ============================= */
/* MOBILE (≤ 767px) */
/* ============================= */

@media (max-width: 767px) {

    .event h1 {
        font-size: 22px !important;
        margin-bottom: 30px;
    }

    /* STACK JOB INFO NICELY */
    .event-item {
        flex-direction: column;
    }

    .event-item .col-3,
    .event-item .col-9,
    .event-item .col-lg-2,
    .event-item .col-lg-6,
    .event-item .col-lg-4 {
        width: 100%;
        max-width: 100%;
    }

    .event-item .col-3 {
        margin-bottom: 15px;
    }

    .event-item .bg-light {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px;
    }

    .event-item .bg-light h6,
    .event-item .bg-light small {
        margin: 0;
    }

    .event-item .bg-light span {
        margin-left: auto;
    }

    /* REMOVE BORDER ON MOBILE */
    .event-item .border-start {
        border: none !important;
    }

    /* TEXT SPACING */
    .event-item .ms-3 {
        margin-left: 0 !important;
        padding: 10px 0;
    }

    .event-item h4 {
        font-size: 18px;
    }

    .event-item p {
        font-size: 14px;
    }

    /* FULL WIDTH BUTTON */
    .apply-btn {
        width: 100%;
        text-align: center;
    }

    /* IMAGE FIX */
    .event-item img {
        max-height: 220px;
    }
}

/* ============================= */
/* SMALL MOBILE (≤ 480px) */
/* ============================= */

@media (max-width: 480px) {

    .event h1 {
        font-size: 20px !important;
    }

    .event-item h4 {
        font-size: 16px;
    }

    .event-item p {
        font-size: 13px;
        line-height: 1.6;
    }

    .event-item img {
        max-height: 200px;
    }
}

/* ============================= */
/* MODAL RESPONSIVE */
/* ============================= */

@media (max-width: 576px) {
    .modal-dialog {
        margin: 15px;
    }

    .modal-content {
        border-radius: 10px;
    }
}

/*** Events End ***/


/*** Sermon Start ***/
.sermon .sermon-item {
    height: 100%;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.sermon-item img {
    transition: 0.5s;
}

.sermon-item:hover img {
    transform: scale(1.2)
}

.sermon-item .sermon-meta a,
.sermon-item .sermon-meta a i {
    transition: 0.5s;
}

.sermon-item .sermon-meta a:hover,
.sermon-item .sermon-meta a i:hover {
    color: var(--bs-primary) !important;
}
/*** Sermon End ***/


/*** Blog Start ***/
.blog-item {
    height: 100%;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.blog-item img {
    transition: 0.5s;
}

.blog-item:hover img {
    transform: scale(1.2)
}

.blog-item .blog-meta a,
.blog-item .blog-meta a i {
    transition: 0.5s;
}

.blog-item .blog-meta a:hover,
.blog-item .blog-meta a i:hover {
    color: var(--bs-primary) !important;
}
/*** Blog End ***/


/*** Team Start ***/
.team .team-img {
    height: 100%;
    padding: 25px;
    background: var(--bs-white);
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.team .team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team .team-item {
    position: relative;
    overflow: hidden;
}

.team .team-item img {
    transition: 0.5s;
}

.team .team-item:hover img {
    transform: scale(1.2);
}

.team .team-item .team-content {
   position: absolute;
   width: 100%;
   height: 100%;
   top: 0;
   left: 0;
   padding: 15px;
   transform: translateX(-50%, -50%);
   display: flex;
   align-items: center;
   justify-content: center;
   opacity: 0;
   transition: 0.5s;
}

.team .team-item:hover .team-content {
    opacity: 1;
    background: rgba(241, 193, 82, .7);
}
/*** Team End ***/

/*** testimonial Start ***/
/*** testimonial Start ***/
/* SECTION BACKGROUND – clean & flat */
/* SECTION */
/* ============================= */
/* TESTIMONIAL SECTION          */
/* ============================= */
.testimonial {
    background: #f7f9fc;
}

/* ============================= */
/* WRAPPER                      */
/* ============================= */
.testimonial-wrapper {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

/* ============================= */
/* CARD                         */
/* ============================= */
.testimonial-item {
    flex: 1;
    max-width: 420px;
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.10);
}

/* ============================= */
/* IMAGE                        */
/* ============================= */
.testimonial-item img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 10px;
    border: 4px solid var(--bs-primary);
    padding: 4px;
    background: #fff;
    margin: 0 auto 18px;
    display: block;
}

/* ============================= */
/* TEXT                         */
/* ============================= */
.testimonial-item h5 {
    font-weight: 600;
    margin-bottom: 6px;
}

.testimonial-item p {
    font-size: 14px;
    color: #666;
    margin-bottom: 14px;
}

.country {
    display: inline-block;
    padding: 6px 18px;
    font-size: 13px;
    border-radius: 20px;
    background: var(--bs-primary);
    color: #000;
}

/* ============================= */
/* TABLET (≤ 992px)             */
/* ============================= */
@media (max-width: 992px) {
    .testimonial-item {
        padding: 32px 22px;
    }

    .testimonial-item img {
        width: 120px;
        height: 120px;
    }
}

/* ============================= */
/* MOBILE (≤ 768px)             */
/* ============================= */
@media (max-width: 768px) {
    .testimonial-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .testimonial-item {
        max-width: 100%;
        padding: 28px 18px;
    }

    .testimonial-item img {
        width: 100px;
        height: 100px;
    }

    .spec-left h1 {
        text-align: center;
        font-size: 24px;
        line-height: 1.3;
    }

    .spec-header {
        justify-content: center;
        text-align: center;
    }
}

/* ============================= */
/* SMALL MOBILE (≤ 480px)       */
/* ============================= */
@media (max-width: 480px) {
    .testimonial-item {
        padding: 22px 14px;
    }

    .testimonial-item img {
        width: 90px;
        height: 90px;
    }

    .spec-left h1 {
        font-size: 22px;
    }
}

/* ============================= */
/* LARGE SCREENS (≥ 1200px)     */
/* ============================= */
@media (min-width: 1200px) {
    .testimonial-item img {
        width: 170px;
        height: 170px;
        border-width: 5px;
    }
}

/*** testimonial End ***/



/*** testimonial Start ***/
/* SECTION */
.ts-wrapper {
  position: relative;
  width: 100%;
  height: 450px;
  display: flex;
  align-items: center;
  padding-left: 80px;
  overflow: hidden;
}

/* BACKGROUND IMAGE WITH ZOOM EFFECT */
.ts-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/people-taking-part-business-event.jpg") center right / cover no-repeat;
  animation: tsZoomEffect 8s ease-in-out infinite;
  transform-origin: center;
  z-index: -1;
}

/* ZOOM ANIMATION */
@keyframes tsZoomEffect {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.12);
  }
  100% {
    transform: scale(1);
  }
}

/* CARD */
.ts-card {
  width: 360px;
  padding: 40px 35px;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  background: linear-gradient(180deg, #f5e6a8, #d4af37);
  /* background: linear-gradient(180deg, #ff8a5c, #ffb347); */
  color: #fff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  margin-bottom: 84px;
}

/* LABEL */
.ts-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  opacity: 0.9;
}

/* HEADING */
.ts-heading {
  font-size: 26px;
  line-height: 1.2;
  margin: 15px 0 20px;
  font-weight: 700;
}

/* QUOTE */
.ts-quote {
  font-size: 34px;
  margin-right: 6px;
}

/* TEXT */
.ts-text {
  font-size: 13px;
  line-height: 1.6;
  opacity: 0.95;
  margin-bottom: 18px;
}

/* AUTHOR */
.ts-author {
  font-size: 12px;
  font-weight: 600;
  opacity: 0.9;
}

/* DOTS */
.ts-dots {
  display: flex;
  gap: 6px;
  margin-top: 20px;
}

.ts-dot {
  width: 6px;
  height: 6px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
}

.ts-dot.active {
  background: #fff;
}


/*** testimonial End ***/

/* leader section */

/*** Footer Start ***/
.footer {
    /* margin-top: 6rem; */
    background: var(--bs-dark);
}

.footer .footer-item p {
    font-size: 16px;
    line-height: 35px;
}

.footer .border-top,
.footer .border-bottom {
    border-color: rgba(255, 255, 255, .08) !important;
}

.footer button {
    border: 0;
    transition: 0.5s;
}

.footer button:hover {
    background: var(--bs-dark);
    color: var(--bs-primary);
}

.footer-item a.btn.btn-light:hover {
    background: var(--bs-primary);
    color: var(--bs-dark) !important;
    border: var(--bs-primary);
}

.footer-item a,
.footer-item a i {
    transition: 0.5s;
}

.footer-item a:hover,
.footer-item a i:hover {
    color: var(--bs-primary) !important;
}
/*** Footer End ***/
/*** Subscribe Start ***/
.parallel-window {
    background: linear-gradient(rgb(0,0,0,0.3), rgb(0 0 0 / 60%)), url(../img/office-meating-banner.avif);
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.parallel-window .subscribe-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-white);
}

.parallel-window .subscribe-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}

.parallel-window .subscribe-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-left: -50px;
    border: 1px solid var(--bs-white) !important;
}
/* Default image behavior */
.parallel-window img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Desktop only (keep your look) */
@media (min-width: 1200px) {
    .parallel-window img {
        margin-left: 250px;
    }
}

/* Tablet & below — REMOVE margin */
@media (max-width: 1199px) {
    .parallel-window img {
        margin-left: 0 !important;
        margin-right: 0 !important;
        height: 220px;
    }

    .parallel-window .col-md-6 {
        text-align: center;
    }
}

/* Mobile screens */
@media (max-width: 767px) {

    .parallel-window {
        background-attachment: scroll;
    }

    .parallel-window .row {
        flex-direction: column;
        text-align: center;
    }

    .parallel-window img {
        margin: 20px auto 0 auto !important;
        height: 180px;
    }
}

/* Extra small phones */
@media (max-width: 480px) {
    .parallel-window img {
        height: 150px;
    }
}
/*** Subscribe End ***/

.specialisation-section {
  background: #fff;
  padding: 80px 0;
  font-family: "Arial", sans-serif;
}

.spec-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 40px;
}

/* HEADER */
.spec-header {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.spec-header span {
  font-size: 20px;
  letter-spacing: 2px;
  color: #d4af37;
  font-weight: 600;
  margin-right: 20px;
}

.spec-line {
  flex: 1;
  height: 1px;
  background: #cfcfcf;
}

/* GRID */
.spec-grid {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 40px;
}

/* LEFT */
.spec-left h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #2b2b2b;
}

.spec-left p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  max-width: 420px;
  margin-bottom: 30px;
}

.spec-btn {
  display: inline-block;
  padding: 12px 26px;
  background: #d4af37;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  /* border-radius: 25px; */
}

/* RIGHT */
.spec-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.spec-column a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  border-bottom: 1px dotted #bdbdbd;
}

.spec-column a span {
  color: #d4af37;
  font-size: 16px;
}
/* RIGHT COLUMN LINKS – HOVER EFFECTS */
.spec-column a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  border-bottom: 1px dotted #bdbdbd;
  transition: all 0.3s ease;
}

.spec-column a span {
  color: #d4af37;
  font-size: 16px;
  transition: transform 0.3s ease;
}

/* HOVER EFFECT */
.spec-column a:hover {
  color: #d4af37;
  padding-left: 6px;
}

.spec-column a:hover span {
  transform: translateX(6px);
}

/* OPTIONAL – underline glow effect */
.spec-column a:hover {
  border-bottom-color: #d4af37;
}

/* BUTTON HOVER */
.spec-btn {
  transition: all 0.3s ease;
}

.spec-btn:hover {
  background: #d96c00;
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .spec-grid {
    grid-template-columns: 1fr;
  }

  .spec-right {
    grid-template-columns: 1fr;
  }

  .spec-left h1 {
    font-size: 38px;
  }
}
/* ===== APPLY FORM MODAL DESIGN ===== */

#applyModal .modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

#applyModal .modal-header {
    border-bottom: 1px solid #eee;
    background: #f8f9fa;
    border-radius: 12px 12px 0 0;
}

#applyModal .modal-title {
    font-weight: 600;
    font-size: 18px;
}

#applyModal .modal-body {
    padding: 25px;
}

/* Form labels */
#applyModal .form-label {
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 6px;
}

/* Inputs & textarea */
#applyModal .form-control {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 10px 12px;
    font-size: 14px;
    transition: all 0.3s ease;
}

#applyModal .form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.15rem rgba(13, 110, 253, 0.15);
}

/* Textarea */
#applyModal textarea.form-control {
    resize: none;
}

/* Submit button */
#applyModal .btn-primary {
    border-radius: 30px;
    padding: 10px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

#applyModal .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.3);
}

.areen-badge {
    display: inline-block;
    padding: 8px 14px;
    border: 2px solid #d4af37;
    border-radius: 4px; /* square border */
    font-size: 10px;
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-align: center;
}
/* map section */
/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* SECTION */
.map-section {
  position: relative;
  width: 100%;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 40px;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

/* MAP WRAPPER */
.map-wrapper {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* MAP */
.map-bg {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(100%) brightness(1.05);
}

/* INFO CARD */
.info-card {
  position: relative;
  width: 380px;
  padding: 26px;
  background: linear-gradient(180deg, #f5e6a8, #d4af37);
  color: #fff;
  border-radius: 24px;
  z-index: 2;
  box-shadow: 0 20px 45px rgba(0,0,0,0.22);
}

/* TAG */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
}

.earth-icon {
  font-size: 16px;
}

/* HEADING */
.info-card h2 {
  font-size: 26px;
  line-height: 1.2;
  margin-bottom: 14px;
}

/* DROPDOWN */
.city-select {
  width: 100%;
  padding: 10px 16px;
  border-radius: 22px;
  border: none;
  font-size: 14px;
  margin-bottom: 18px;
}

/* INFO BLOCK */
.info-block {
  margin-bottom: 14px;
}

.info-block h4 {
  font-size: 14px;
  margin-bottom: 4px;
}

.info-block p {
  font-size: 13px;
  line-height: 1.5;
}

/* EMAIL */
.info-block a {
  color: #000;
  font-weight: 500;
  text-decoration: none;
  word-break: break-word;
}

/* =========================
   TABLET
========================= */
@media (max-width: 992px) {
  .map-section {
    justify-content: center;
  }
}

/* =========================
   MOBILE (IMPORTANT)
========================= */
@media (max-width: 768px) {

  .map-section {
    flex-direction: column;
    padding: 0;
    min-height: auto;
  }

  .map-wrapper {
    position: relative;
    width: 100%;
    height: 260px;
  }

  .map-bg {
    height: 100%;
  }

  .info-card {
    width: 92%;
    margin-top: 0;
    transform: translateY(-40px);
    border-radius: 20px;
  }
}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 480px) {

  .map-wrapper {
    height: 220px;
  }

  .info-card {
    width: 94%;
    padding: 18px;
    transform: translateY(-30px);
  }

  .info-card h2 {
    font-size: 22px;
  }
}

/* end map section */

/* about main  */
/* =========================
   BASE FIXES
========================= */
* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    display: block;
}

/* =========================
   SECTION
========================= */
.solutions-section {
    padding: 40px 0;
}

.solutions-container {
    max-width: 1300px;
    margin: auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: center;
}

/* =========================
   LEFT CONTENT
========================= */
.solutions-tag {
    color: #d4af37;
    font-weight: 600;
    letter-spacing: 1px;
}

.solutions-content h2 {
    font-size: 32px;
    margin: 15px 0;
}

.solutions-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.btn {
    padding: 14px 30px;
    background: #d4af37;
    color: #fff;
    text-decoration: none;
    display: inline-block;
}

/* =========================
   MEDIA / SLIDER
========================= */
.solutions-media {
    position: relative;
    height: 450px;
    overflow: hidden;
    border-radius: 30px;
}

/* ORANGE SHAPE */
.solutions-media::before {
    content: "";
    position: absolute;
    bottom: -40px;
    left: 30px;
    width: 90%;
    height: 90%;
    background: #f9a23b;
    border-radius: 35px;
    z-index: -1;
}

/* SLIDER */
.slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.8s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================
   LOCATION TEXT
========================= */
.location {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 32px;
    font-weight: bold;
    color: #fff;
    display: flex;
    align-items: center;
    z-index: 5;
}

.dot {
    width: 12px;
    height: 12px;
    background: #d4af37;
    border-radius: 50%;
    margin-right: 10px;
}

/* =========================
   RIGHT PANEL (DESKTOP)
========================= */
.right-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 220px;
    height: 100%;
    background: rgba(10, 20, 35, 0.85);
    border-bottom-right-radius: 30px;
    padding: 25px 20px;
    z-index: 4;
}

.cities {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #fff;
    font-size: 14px;
}

.cities li {
    padding: 7px 10px;
    margin-bottom: 6px;
    border-radius: 6px;
    cursor: pointer;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.cities li.active {
    color: #d4af37;
    font-weight: bold;
    opacity: 1;
    border: 1.5px solid #d4af37;
    background: rgba(242, 140, 0, 0.1);
}

.cities li:hover {
    opacity: 1;
}

/* =========================
   TABLET (≤ 992px)
========================= */
@media (max-width: 992px) {
    .solutions-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .solutions-media {
        height: 400px;
    }

    .right-panel {
        position: relative;
        width: 100%;
        height: auto;
        border-radius: 0 0 30px 30px;
        padding: 15px;
    }

    .cities {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        font-size: 13px;
    }

    .cities li {
        margin-bottom: 0;
        border: 1px solid rgba(255,255,255,0.15);
    }

    .location {
        font-size: 28px;
    }
}

/* =========================
   MOBILE (≤ 576px)
========================= */
@media (max-width: 576px) {
    .solutions-section {
        padding: 30px 0;
    }

    .solutions-content h2 {
        font-size: 24px;
    }

    .solutions-content p {
        font-size: 14px;
    }

    .solutions-media {
        height: 300px;
        border-radius: 20px;
    }

    .solutions-media::before {
        display: none;
    }

    .location {
        font-size: 20px;
        bottom: 15px;
        left: 15px;
    }

    .dot {
        width: 9px;
        height: 9px;
    }

    .cities {
        font-size: 12px;
    }

    .btn {
        padding: 12px 26px;
        font-size: 14px;
    }
}


/* .specialisation-section */
 .specialisation {
  padding: 80px 20px;
  background: #ffffff;
  font-family: "Inter", "Segoe UI", sans-serif;
}

.spec-wrapper {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.spec-header {
  text-align: center;
  margin-bottom: 50px;
}

.spec-header span {
  font-size: 24px;
  letter-spacing: 2px;
  color: #d4af37;
  font-weight: 600;
}

.spec-line {
  width: 70px;
  height: 3px;
  background: #d4af37;
  margin: 12px auto 0;
}

/* Columns */
.spec-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* Cards */
.spec-card {
  background: #f9fafb;
  padding: 35px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spec-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

/* Titles */
.spec-title {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 25px;
}

/* Grid */
.spec-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.spec-item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  padding: 14px 16px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  border-radius: 8px;
  transition: all 0.25s ease;
}

.spec-item:hover {
  background: #d4af37;
  color: #ffffff;
  border-color: #d4af37;
}

/* Bottom Content */
.spec-bottom {
  margin-top: 70px;
  padding-top: 40px;
  border-top: 1px solid #e5e7eb;
  text-align: center;
}

.spec-bottom h3 {
  font-size: 24px;
  font-weight: 600;
  color: #d4af37;
  margin-bottom: 14px;
}

.spec-bottom p {
  max-width: 850px;
  margin: auto;
  font-size: 15px;
  color: #4b5563;
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 900px) {
  .spec-columns {
    grid-template-columns: 1fr;
  }
}
/* end */

/* Our Office  */
  .hr-offices {
  padding: 90px 20px;
  background-color: #ffffff;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2937;
}

.hr-container {
  max-width: 1100px;
  margin: 0 auto;
}

.hr-header {
  max-width: 700px;
  margin-bottom: 60px;
}

.hr-label {
  font-size: 12px;
  letter-spacing: 2px;
  color: #6b7280;
  display: inline-block;
  margin-bottom: 12px;
}

.hr-header h2 {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 14px;
}

.hr-header p {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.6;
}

.hr-office-list {
  border-top: 1px solid #e5e7eb;
}

.hr-office-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  padding: 22px 0;
  border-bottom: 1px solid #e5e7eb;
}

.hr-office-row h3 {
  font-size: 17px;
  font-weight: 600;
  color: #111827;
}

.hr-office-row p {
  font-size: 15px;
  color: #374151;
}

.hr-footer-note {
  margin-top: 40px;
  max-width: 800px;
}

.hr-footer-note p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
  .hr-office-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .hr-header h2 {
    font-size: 30px;
  }
}

/* end our office  */