@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
    height: auto;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1140px;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

.wrapper {
    overflow-x: hidden;
}







/* topbar-section-css-start */

.sthira-topbar {
    width: 100%;
    height: 52px;
    background: linear-gradient(110deg, #06152f 0%, #0a2347 38%, #0d315b 68%, #071a36 100%);
    color: #fff;
    position: relative;
    z-index: 999;
    overflow: hidden;
    border-bottom: 1px solid rgba(212, 168, 67, 0.35);
    box-shadow: 0 3px 15px rgba(3, 15, 35, 0.12);
}

.sthira-topbar::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    left: 18%;
    top: -240px;
    background: rgba(212, 168, 67, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.sthira-topbar-inner {
    width: 100%;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.sthira-topbar-marquee {
    flex: 1;
    min-width: 0;
    height: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.sthira-topbar-marquee::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 100%;
    /* background: linear-gradient(90deg, #06152f, transparent); */
    z-index: 2;
    pointer-events: none;
}

.sthira-topbar-marquee::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 35px;
    height: 100%;
    /* background: linear-gradient(270deg, #071a36, transparent); */
    z-index: 2;
    pointer-events: none;
    border-right: 1px solid #ffffff7d;
}

.sthira-marquee-track {
    display: flex;
    width: max-content;
    animation: sthiraMarquee 30s linear infinite;
    will-change: transform;
}

.sthira-marquee-content {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    white-space: nowrap;
    gap: 15px;
    padding-right: 15px;
    font-family: "Lora", serif;
}

.sthira-marquee-content span {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    line-height: 1;
}

.sthira-marquee-content i {
    color: #d9aa4f;
    font-size: 11px;
    font-style: normal;
    line-height: 1;
}

@keyframes sthiraMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.sthira-topbar-right {
    height: 100%;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 0;
    font-family: "Roboto", sans-serif;
}

.sthira-topbar-item {
    height: 30px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 18px;
    color: #f1ca73;
    text-decoration: none;
    /* font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.25px;
    white-space: nowrap; */
    transition: all 0.3s ease;
}

.sthira-topbar-item {
    color: #f1ca73;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.25px;
    white-space: nowrap;
}

.sthira-topbar-item+.sthira-topbar-item {
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.sthira-topbar-icon {
    width: 27px;
    height: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;

    font-size: 11px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    background: #d9aa4f;
    color: #071a36;
    border-color: #d9aa4f;
}

.sthira-topbar-item:hover {
    color: #fff;
}

.sthira-topbar-item:hover .sthira-topbar-icon {
    color: #d9aa4f;
    background: rgba(217, 170, 79, 0.1);
    border: 1px solid rgba(217, 170, 79, 0.25);
    transform: translateY(-1px);
}

.sthira-address {
    cursor: default;
}

@media (max-width: 1100px) {

    .sthira-topbar-inner {
        gap: 15px;
    }

    .sthira-topbar-item {
        padding: 0 10px;
        font-size: 11px;
    }

    .sthira-marquee-content span {
        font-size: 11px;
    }

}

@media (max-width: 767px) {

    .sthira-topbar {
        height: 44px;
    }

    .sthira-topbar-inner {
        height: 44px;
        display: block;
    }

    .sthira-topbar-right {
        display: none;
    }

    .sthira-topbar-marquee {
        width: 100%;
        height: 44px;
    }

    .sthira-marquee-track {
        animation-duration: 24s;
    }

    .sthira-marquee-content {
        gap: 12px;
        padding-right: 12px;
    }

    .sthira-marquee-content span {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .sthira-marquee-content i {
        font-size: 9px;
    }

    .sthira-topbar-marquee::before,
    .sthira-topbar-marquee::after {
        width: 20px;
    }

    .sthira-topbar-marquee::after {
        border-right: 1px solid transparent;

    }

}

@media (max-width: 400px) {

    .sthira-marquee-track {
        animation-duration: 21s;
    }

    .sthira-marquee-content span {
        font-size: 12px;
        /* letter-spacing: 0.5px; */
    }

}

/* topbar-section-css-end */
















/* navbar-section-css-start */

/* .sthira-navbar {
    width: 100%;
    height: 84px;
    background: #fff;
    position: relative;
    z-index: 998;
    border-bottom: 1px solid #edf0f5;
    transition: all 0.35s ease;
} */

.sthira-navbar {
    width: 100%;
    height: 84px;
    background: #f0ebe4;
    position: relative;
    z-index: 998;
    border-bottom: 1px solid #d9aa4f1c;
    transition: all 0.35s ease;
}

.sthira-navbar.sthira-navbar-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 25px rgba(7, 26, 54, 0.10);
    animation: sthiraNavbarDown 0.35s ease;
}

@keyframes sthiraNavbarDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.sthira-navbar-inner {
    width: 100%;
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}


/* LOGO */

/* .sthira-logo {
    width: 125px;
    height: 72px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
} */

.sthira-logo {
    width: 74px;
    height: 80px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
    border: 1px solid #0c2b52;
    box-shadow: 0px 0px 15px #f0a80524;
    /* border-radius: 5px; */
}

.sthira-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}


/* DESKTOP MENU */

.sthira-desktop-menu {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sthira-nav-list {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    gap: 3px;
}

.sthira-nav-item {
    position: relative;
}

.sthira-nav-link {
    min-height: 84px;
    padding: 0 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: #10284a;
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    position: relative;
    transition: all 0.3s ease;
}

.sthira-nav-link::after {
    content: "";
    position: absolute;
    left: 13px;
    right: 13px;
    bottom: 0;
    height: 3px;
    background: #d9aa4f;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.sthira-nav-link:hover,
.sthira-nav-link.active {
    color: #c28d27;
}

.sthira-nav-link:hover::after,
.sthira-nav-link.active::after {
    transform: scaleX(1);
}

.sthira-nav-link i {
    font-size: 9px;
    margin-top: 2px;
}


/* DESKTOP SERVICES DROPDOWN */

.sthira-dropdown-menu {
    position: absolute;
    top: calc(100% - 1px);
    left: 50%;
    width: 285px;
    padding: 10px;
    background: #fff;
    border-top: 3px solid #d9aa4f;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 15px 35px rgba(7, 26, 54, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 12px);
    transition: all 0.3s ease;
    z-index: 999;
}

.sthira-services-dropdown:hover .sthira-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.sthira-dropdown-menu a {
    display: flex;
    align-items: center;
    min-height: 43px;
    padding: 9px 13px;
    color: #173052;
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    border-radius: 5px;
    transition: all 0.25s ease;
}

.sthira-dropdown-menu a::before {
    content: "";
    width: 5px;
    height: 5px;
    margin-right: 10px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #d9aa4f;
    transition: all 0.25s ease;
}

.sthira-dropdown-menu a:hover {
    padding-left: 17px;
    color: #c28d27;
    background: #f8f4e9;
}

.sthira-dropdown-menu a:hover::before {
    background: #10284a;
    transform: scale(1.3);
}


/* NAVBAR BUTTONS */

.sthira-navbar-buttons {
    display: flex;
    align-items: center;
    gap: 9px;
    flex-shrink: 0;
}

.sthira-nav-btn {
    min-height: 43px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 5px;
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.sthira-employer-btn {
    color: #10284a;
    background: #f0a805;
    border: 1px solid #c58902;
}

.sthira-employer-btn:hover {
    color: #fff;
    background: #f0a805;
    border-color: #c58902;
    transform: translateY(-2px);
    box-shadow: 0 7px 18px rgba(16, 40, 74, 0.18);
}

.nav-sthira-job-btn {
    color: #fff;
    background: #10284a;
    border: 1px solid #10284a;
}

.nav-sthira-job-btn:hover {
    color: #10284a;
    background: #f0a805;
    border: 1px solid #c58902;
    transform: translateY(-2px);
    box-shadow: 0 7px 18px rgba(16, 40, 74, 0.18);
}

.sthira-nav-btn i {
    font-size: 11px;
}

/* MOBILE TOGGLE */

.sthira-menu-toggle {
    width: 46px;
    height: 42px;
    padding: 0;
    border: 1px solid #10284a;
    border-radius: 5px;
    background: #10284a;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sthira-menu-toggle span {
    width: 21px;
    height: 2px;
    background: #f2d887;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.sthira-menu-toggle:hover {
    background: #f2d887;
    border-color: #f2d887;
}

.sthira-menu-toggle:hover span {
    background: #10284a;
}


/* OFFCANVAS */

.sthira-offcanvas {
    width: 360px !important;
    max-width: 88vw;
    background: #071a36;
    border: 0 !important;
    color: #fff;
}

.sthira-offcanvas-header {
    width: 100%;
    min-height: 82px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(110deg, #06152f 0%, #0a2347 55%, #102e57 100%);
    border-bottom: 1px solid rgba(217, 170, 79, 0.30);
    position: sticky;
    top: 0;
    z-index: 10;
}

.sthira-offcanvas-logo {
    width: 115px;
    height: 64px;
    display: flex;
    align-items: center;
}

.sthira-offcanvas-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sthira-offcanvas-close {
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid rgba(242, 216, 135, 0.45);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f2d887;
    background: rgba(217, 170, 79, 0.08);
    font-size: 17px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sthira-offcanvas-close:hover {
    color: #10284a;
    background: #f2d887;
    border-color: #f2d887;
    transform: rotate(90deg);
}


/* OFFCANVAS BODY */

.sthira-offcanvas-body {
    padding: 20px 18px 25px;
    overflow-y: auto;
    background: #0b2549;
}

.sthira-offcanvas-body::-webkit-scrollbar {
    width: 4px;
}

.sthira-offcanvas-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03);
}

.sthira-offcanvas-body::-webkit-scrollbar-thumb {
    background: #d9aa4f;
    border-radius: 10px;
}


/* MOBILE NAV */

.sthira-mobile-nav {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sthira-mobile-nav>li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.sthira-mobile-nav>li>a,
.sthira-mobile-services-head {
    min-height: 57px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.sthira-mobile-nav>li>a span,
.sthira-mobile-services-head a span {
    display: flex;
    align-items: center;
    gap: 13px;
}

.sthira-mobile-nav>li>a span i,
.sthira-mobile-services-head a span i {
    width: 25px;
    color: #f2d887;
    text-align: center;
    font-size: 14px;
}

.sthira-mobile-nav>li>a>i {
    color: rgba(255, 255, 255, 0.45);
    font-size: 10px;
    transition: all 0.3s ease;
}

.sthira-mobile-nav>li>a:hover {
    color: #f2d887;
    padding-left: 5px;
}

.sthira-mobile-nav>li>a:hover>i {
    color: #f2d887;
    transform: translateX(3px);
}


/* MOBILE SERVICES */

.sthira-mobile-services-head a {
    flex: 1;
    color: #fff;
    text-decoration: none;
}

.sthira-mobile-services-head a:hover {
    color: #f2d887;
}

.sthira-mobile-dropdown-toggle {
    width: 38px;
    height: 38px;
    padding: 0;
    margin-left: 10px;
    border: 1px solid rgba(242, 216, 135, 0.35);
    border-radius: 5px;
    background: rgba(242, 216, 135, 0.06);
    color: #f2d887;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sthira-mobile-dropdown-toggle i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.sthira-mobile-services.active .sthira-mobile-dropdown-toggle {
    background: #f2d887;
    color: #10284a;
}

.sthira-mobile-services.active .sthira-mobile-dropdown-toggle i {
    transform: rotate(180deg);
}

.sthira-mobile-dropdown {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.35s ease;
}

.sthira-mobile-services.active .sthira-mobile-dropdown {
    max-height: 500px;
    padding-bottom: 8px;
    opacity: 1;
}

.sthira-mobile-dropdown a {
    min-height: 43px;
    padding: 8px 8px 8px 38px;
    display: flex;
    align-items: center;
    position: relative;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    line-height: 1.4;
    border-radius: 4px;
    transition: all 0.25s ease;
}

.sthira-mobile-dropdown a::before {
    content: "";
    position: absolute;
    left: 18px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #d9aa4f;
}

.sthira-mobile-dropdown a:hover {
    color: #f2d887;
    background: rgba(217, 170, 79, 0.08);
    padding-left: 43px;
}


/* MOBILE BUTTONS */

.sthira-mobile-buttons {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.sthira-mobile-btn {
    min-height: 70px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 11px;
    color: #fff;
    text-decoration: none;
    border-radius: 7px;
    border: 1px solid rgba(242, 216, 135, 0.25);
    transition: all 0.3s ease;
}

.sthira-mobile-btn>span:nth-child(2) {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    font-weight: 600;
}

.sthira-mobile-btn small {
    color: rgba(255, 255, 255, 0.50);
    font-size: 12px;
    font-weight: 400;
}

.sthira-mobile-btn>i {
    color: #f2d887;
    font-size: 12px;
}

.sthira-mobile-btn-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: #10284a;
    background: #f2d887;
}

.sthira-mobile-employer {
    background: rgba(217, 170, 79, 0.08);
}

.sthira-mobile-job {
    background: rgba(255, 255, 255, 0.04);
}

.sthira-mobile-btn:hover {
    color: #fff;
    border-color: #d9aa4f;
    background: rgba(217, 170, 79, 0.13);
    transform: translateY(-2px);
}


/* MOBILE FOOTER */

.sthira-mobile-footer {
    margin-top: 28px;
    padding-top: 18px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.sthira-mobile-footer span {
    display: block;
    color: #f2d887;
    font-family: "Lora", serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
}

.sthira-mobile-footer small {
    display: block;
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.45);
    font-family: "Roboto", sans-serif;
    font-size: 11px;
}


/* TABLET */

@media (max-width: 1200px) {

    .sthira-nav-link {
        padding: 0 9px;
        font-size: 12px;
    }

    .sthira-nav-btn {
        padding: 0 10px;
        font-size: 10px;
    }

    .sthira-navbar-buttons {
        gap: 6px;
    }

}


/* MOBILE */

@media (max-width: 991px) {

    .sthira-navbar {
        height: 74px;
    }

    .sthira-navbar-inner {
        height: 74px;
    }

    /* .sthira-logo {
        width: 115px;
        height: 65px;
    } */
    .sthira-logo {
	width: 67px;
	height: 71px;
}

    .sthira-desktop-menu,
    .sthira-navbar-buttons {
        display: none;
    }

    .sthira-menu-toggle {
        display: flex;
    }

}


/* SMALL MOBILE */

@media (max-width: 575px) {

    .sthira-navbar {
        height: 70px;
    }

    .sthira-navbar-inner {
        height: 70px;
    }

    /* .sthira-logo {
        width: 105px;
        height: 61px;
    } */

    .sthira-logo {
        width: 61px;
        height: 65px;
    }

    .sthira-menu-toggle {
        width: 43px;
        height: 40px;
    }

    .sthira-offcanvas {
        width: 340px !important;
        max-width: 90vw;
    }

    .sthira-offcanvas-header {
        min-height: 76px;
    }

}


/* EXTRA SMALL */

@media (max-width: 380px) {

    .sthira-offcanvas {
        width: 310px !important;
    }

    .sthira-offcanvas-body {
        padding-left: 14px;
        padding-right: 14px;
    }

}

/* navbar-section--css-end */














/* banner-section-css-start */

.sthira-banner-section {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.sthira-banner-carousel {
    width: 100%;
    position: relative;
}

.sthira-banner-slide {
    height: 600px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.sthira-banner-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.sthira-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1);
}


/* ZOOM EFFECT */

.sthira-banner-carousel .owl-item.active .sthira-banner-image img {
    animation: sthiraBannerZoom 8s ease-in-out infinite alternate;
}

@keyframes sthiraBannerZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.12);
    }
}


/* OVERLAY */

.sthira-banner-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg,
            rgba(5, 20, 43, 0.92) 0%,
            rgba(7, 26, 54, 0.78) 38%,
            rgba(7, 26, 54, 0.38) 70%,
            rgba(7, 26, 54, 0.22) 100%);
}


/* CONTENT */

.sthira-banner-slide .container {
    position: relative;
    z-index: 2;
}

.sthira-banner-content {
    width: 100%;
    max-width: 760px;
    padding: 40px 40px 75px;
}

.sthira-banner-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: #f2d887;
    font-family: "Lora", serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2.2px;
    text-transform: uppercase;
}

.sthira-banner-label i {
    width: 28px;
    height: 1px;
    display: block;
    background: #d9aa4f;
}

.sthira-banner-content h1 {
    margin: 0;
    color: #fff;
    font-family: "Lora", serif;
    font-size: 38px;
    font-weight: 600;
    line-height: 1.0;
    letter-spacing: -0.5px;
}

.sthira-banner-content h1 span {
    color: #f2d887;
}

.sthira-banner-content p {
    max-width: 650px;
    margin: 22px 0 30px;
    color: rgba(255, 255, 255, 0.82);
    font-family: "Roboto", sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.8;
}


/* EXPLORE BUTTON */

.sthira-banner-btn {
    min-height: 52px;
    padding: 0 23px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    color: #10284a;
    background: #f2d887;
    border: 1px solid #f2d887;
    border-radius: 5px;
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.sthira-banner-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.sthira-banner-btn:hover {
    color: #fff;
    background: #10284a;
    border-color: #10284a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(7, 26, 54, 0.25);
}

.sthira-banner-btn:hover i {
    transform: translateX(4px);
}


/* OWL NAV BUTTONS */

.sthira-banner-carousel .owl-nav {
    margin: 0;
}

.sthira-banner-carousel .owl-prev,
.sthira-banner-carousel .owl-next {
    position: absolute;
    top: 50%;
    width: 48px;
    height: 48px;
    margin: 0;
    padding: 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #10284a !important;
    background: #f2d887 !important;
    border: 1px solid #f2d887 !important;
    border-radius: 50%;
    font-size: 15px !important;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    z-index: 10;
}

.sthira-banner-carousel .owl-prev {
    left: 25px;
}

.sthira-banner-carousel .owl-next {
    right: 25px;
}

.sthira-banner-carousel .owl-prev:hover,
.sthira-banner-carousel .owl-next:hover {
    color: #fff !important;
    background: #10284a !important;
    border-color: #10284a !important;
    box-shadow: 0 8px 20px rgba(7, 26, 54, 0.25);
}

.sthira-banner-carousel .owl-prev i,
.sthira-banner-carousel .owl-next i {
    transition: transform 0.3s ease;
}

.sthira-banner-carousel .owl-prev:hover i {
    transform: translateX(-3px);
}

.sthira-banner-carousel .owl-next:hover i {
    transform: translateX(3px);
}


/* HIDE DOTS */

.sthira-banner-carousel .owl-dots {
    display: none !important;
}


/* TABLET */

@media (max-width: 991px) {

    .sthira-banner-carousel .owl-prev,
    .sthira-banner-carousel .owl-next {
        width: 42px;
        height: 42px;
        font-size: 13px !important;
    }

    .sthira-banner-carousel .owl-prev {
        left: 18px;
    }

    .sthira-banner-carousel .owl-next {
        right: 18px;
    }

}


/* MOBILE */

@media (max-width: 575px) {

    .sthira-banner-carousel .owl-prev,
    .sthira-banner-carousel .owl-next {
        width: 36px;
        height: 36px;
        font-size: 11px !important;
    }

    .sthira-banner-carousel .owl-prev {
        left: 10px;
    }

    .sthira-banner-carousel .owl-next {
        right: 10px;
    }

}


/* EXTRA SMALL */

@media (max-width: 380px) {

    .sthira-banner-carousel .owl-prev,
    .sthira-banner-carousel .owl-next {
        width: 32px;
        height: 32px;
        font-size: 10px !important;
    }

    .sthira-banner-carousel .owl-prev {
        left: 7px;
    }

    .sthira-banner-carousel .owl-next {
        right: 7px;
    }

}


/* TABLET */

@media (max-width: 1200px) {

    .sthira-banner-slide {
        height: 590px;
    }

    .sthira-banner-content {
        max-width: 680px;
        padding-bottom: 65px;
    }

    .sthira-banner-content h1 {
        font-size: 50px;
    }

    .sthira-banner-content p {
        font-size: 16px;
    }

}


/* MOBILE */

@media (max-width: 991px) {

    .sthira-banner-slide {
        min-height: 540px;
        height: 540px;
    }

    .sthira-banner-overlay {
        background:
            linear-gradient(90deg,
                rgba(5, 20, 43, 0.90) 0%,
                rgba(7, 26, 54, 0.68) 100%);
    }

    .sthira-banner-content {
        max-width: 650px;
        padding: 35px 0 60px;
    }

    .sthira-banner-label {
        margin-bottom: 16px;
        font-size: 12px;
        letter-spacing: 1.7px;
    }

    .sthira-banner-content h1 {
        font-size: 44px;
        line-height: 1.2;
    }

    .sthira-banner-content p {
        margin: 18px 0 25px;
        font-size: 15px;
        line-height: 1.7;
    }

}


/* SMALL MOBILE */

@media (max-width: 575px) {

    .sthira-banner-slide {
        min-height: 510px;
        height: 510px;
    }

    .sthira-banner-content {
        padding: 25px 40px 55px;
    }

    .sthira-banner-label {
        gap: 7px;
        margin-bottom: 14px;
        font-size: 12px;
        letter-spacing: 1.3px;
    }

    .sthira-banner-label i {
        width: 20px;
    }

    .sthira-banner-content h1 {
        font-size: 24px;
        line-height: 1.22;
    }

    .sthira-banner-content p {
        margin: 16px 0 23px;
        font-size: 14px;
        line-height: 1.65;
    }

    .sthira-banner-btn {
        min-height: 48px;
        padding: 0 18px;
        font-size: 13px;
    }

}


/* EXTRA SMALL */

@media (max-width: 380px) {

    .sthira-banner-slide {
        min-height: 480px;
        height: 480px;
    }

    .sthira-banner-content h1 {
        font-size: 24px;
    }

    .sthira-banner-content p {
        font-size: 13px;
    }

    .sthira-banner-label {
        font-size: 11px;
    }

}


/* banner-section-css-end */












/* about-section-css-start */

.sthira-about-section {
    position: relative;
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
    font-family: "Roboto", sans-serif;
}

/* WRAPPER */

.sthira-about-wrapper {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 80px;
}

/* IMAGE AREA */

.sthira-about-image {
    position: relative;
    padding: 0 25px 25px 0;
}

.sthira-about-image-main {
    position: relative;
    width: 100%;
    height: 540px;
    overflow: hidden;
    border-radius: 8px 70px 8px 70px;
    z-index: 2;
    box-shadow: 0px 0px 15px #040e1b3b;
    border: 1px solid #e9d4c0;
}

.sthira-about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.sthira-about-image:hover .sthira-about-image-main img {
    transform: scale(1.04);
}

/* EXPERIENCE BOX */

.sthira-about-experience {
    position: absolute;
    left: -25px;
    bottom: 45px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 205px;
    padding: 20px 25px;
    background: #ffffff;
    border-left: 5px solid #e3262e;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
    border-radius: 4px;
}

.sthira-about-experience strong {
    font-size: 42px;
    line-height: 1;
    font-weight: 800;
    color: #e3262e;
}

.sthira-about-experience span {
    font-size: 14px;
    line-height: 1.45;
    font-weight: 600;
    color: #172033;
}

/* DECORATIVE SHAPE */

.sthira-about-shape {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 150px;
    height: 150px;
    background: #e3262e;
    border-radius: 50%;
    opacity: 0.08;
    z-index: 1;
}

/* CONTENT */

.sthira-about-content {
    position: relative;
    font-family: "Roboto", sans-serif;
}

.sthira-about-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #f0a805;
}

.sthira-about-label span {
    width: 35px;
    height: 2px;
    background: #f0a805;
    display: inline-block;
}

/* HEADING */

.sthira-about-content h2 {
    max-width: 620px;
    margin: 0 0 15px;
    font-family: "Lora", serif;
    font-size: 38px;
    line-height: 1.15;
    font-weight: 700;
    color: #172033;
}

.sthira-about-content h2 strong {
    display: block;
    font-family: "Lora", serif;
    color: #f0a805;
    font-weight: 700;
}

/* PARAGRAPHS */

.sthira-about-content p {
    max-width: 650px;
    margin: 0 0 17px;
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    line-height: 1.85;
    font-weight: 400;
    color: #697386;
}

.sthira-about-content .sthira-about-intro {
    font-size: 14px;
    font-weight: 500;
    color: #4f5b6e;
}

/* FEATURES */

.sthira-about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-top: 28px;
    margin-bottom: 30px;
}

.sthira-about-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.sthira-feature-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(240, 168, 5, 0.14);
    color: #f0a805;
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s ease;
}

.sthira-about-feature:hover .sthira-feature-icon {
    background: #f0a805;
    color: #ffffff;
    transform: translateY(-4px);
}

.sthira-about-feature h4 {
    margin: 0 0 5px;
    font-family: "Roboto", sans-serif;
    font-size: 17px;
    font-weight: 750;
    color: #172033;
}

.sthira-about-feature p {
    margin: 0;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #7a8495;
    font-weight: 400;
}

/* BUTTON */

.sthira-about-btn-wrap {
    margin-top: 5px;
}

.sthira-about-btn {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    padding: 14px 24px;
    background: #f0a805;
    color: #ffffff;
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.35s ease;
}

.sthira-about-btn i {
    transition: transform 0.3s ease;
}

.sthira-about-btn:hover {
    color: #ffffff;
    background: #172033;
    transform: translateY(-3px);
}

.sthira-about-btn:hover i {
    transform: translateX(5px);
}

/* LARGE TABLET */

@media (max-width: 1199px) {
    .sthira-about-wrapper {
        gap: 50px;
    }

    .sthira-about-content h2 {
        font-size: 40px;
    }

    .sthira-about-image-main {
        height: 500px;
    }
}

/* TABLET */

@media (max-width: 991px) {
    .sthira-about-section {
        padding: 80px 0;
    }

    .sthira-about-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .sthira-about-image {
        max-width: 650px;
        width: 100%;
        margin: 0 auto;
    }

    .sthira-about-image-main {
        height: 520px;
    }

    .sthira-about-content {
        max-width: 750px;
        margin: 0 auto;
    }

    .sthira-about-content h2 {
        font-size: 40px;
    }
}

/* MOBILE */

@media (max-width: 767px) {
    .sthira-about-section {
        padding: 65px 0;
    }

    .sthira-about-wrapper {
        gap: 45px;
    }

    .sthira-about-image {
        padding: 0 12px 18px 0;
    }

    .sthira-about-image-main {
        height: 400px;
        border-radius: 6px 45px 6px 45px;
    }

    .sthira-about-experience {
        left: -5px;
        bottom: 30px;
        min-width: 180px;
        padding: 15px 18px;
        gap: 10px;
    }

    .sthira-about-experience strong {
        font-size: 34px;
    }

    .sthira-about-experience span {
        font-size: 12px;
    }

    .sthira-about-label {
        font-size: 11px;
        letter-spacing: 1px;
    }

    .sthira-about-label span {
        width: 25px;
    }

    .sthira-about-content h2 {
        font-size: 25px;
        line-height: 1.2;
        margin-bottom: 18px;
    }

    .sthira-about-content p {
        font-size: 14px;
        line-height: 1.75;
    }

    .sthira-about-content .sthira-about-intro {
        font-size: 14px;
    }

    .sthira-about-features {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 25px;
    }

    .sthira-about-feature h4 {
        font-size: 16px;
    }

    .sthira-about-feature p {
        font-size: 13px;
    }
}

/* SMALL MOBILE */

@media (max-width: 480px) {
    .sthira-about-section {
        padding: 55px 0;
    }

    .sthira-about-image-main {
        height: 330px;
        border-radius: 5px 35px 5px 35px;
    }

    .sthira-about-experience {
        min-width: 165px;
        padding: 13px 15px;
    }

    .sthira-about-experience strong {
        font-size: 30px;
    }

    .sthira-about-content h2 {
        font-size: 24px;
    }

    .sthira-about-btn {
        width: 100%;
        justify-content: center;
    }
}

/* about-section-css-end */









/* counter-section-css-start */

.sthira-counter-section {
    position: relative;
    padding: 65px 0;
    background: #06152d;
    overflow: hidden;
    font-family: "Roboto", sans-serif;
}

.sthira-counter-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.sthira-counter-card {
    position: relative;
    padding: 32px 20px;
    text-align: center;
    border: 1px solid rgba(240, 168, 5, 0.25);
    background: rgba(255, 255, 255, 0.035);
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.35s ease;
}

.sthira-counter-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #f0a805;
    transform: translateX(-50%);
    transition: width 0.35s ease;
}

.sthira-counter-card:hover {
    border-color: rgba(240, 168, 5, 0.6);
    background: rgba(240, 168, 5, 0.06);
    transform: translateY(-6px);
}

.sthira-counter-card:hover::before {
    width: 60px;
}

/* COUNTER ICON */

.sthira-counter-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(240, 168, 5, 0.12);
    border: 1px solid rgba(240, 168, 5, 0.25);
    color: #f0a805;
    font-size: 17px;
    transition: all 0.35s ease;
}

.sthira-counter-card:hover .sthira-counter-icon {
    background: #f0a805;
    color: #06152d;
    transform: rotateY(180deg);
}

/* COUNTER NUMBER */

.sthira-counter-number {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 7px;
    font-family: "Lora", serif;
    color: #ffffff;
    line-height: 1;
}

.sthira-counter-number .counter {
    font-size: 38px;
    font-weight: 700;
}

.sthira-counter-number strong {
    margin-left: 3px;
    font-size: 25px;
    font-weight: 700;
    color: #f0a805;
}

/* COUNTER TITLE */

.sthira-counter-title {
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 500;
    color: #aeb8c8;
}

/* LARGE TABLET */

@media (max-width: 1199px) {
    .sthira-counter-section {
        padding: 55px 0;
    }

    .sthira-counter-wrapper {
        gap: 15px;
    }

    .sthira-counter-card {
        padding: 28px 15px;
    }

    .sthira-counter-number .counter {
        font-size: 35px;
    }

    .sthira-counter-number strong {
        font-size: 23px;
    }
}

/* TABLET */

@media (max-width: 991px) {
    .sthira-counter-section {
        padding: 50px 0;
    }

    .sthira-counter-wrapper {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }

    .sthira-counter-card {
        padding: 24px 8px;
    }

    .sthira-counter-icon {
        width: 42px;
        height: 42px;
        margin-bottom: 14px;
        font-size: 15px;
    }

    .sthira-counter-number .counter {
        font-size: 30px;
    }

    .sthira-counter-number strong {
        font-size: 20px;
    }

    .sthira-counter-title {
        font-size: 14px;
    }
}

/* MOBILE */

@media (max-width: 767px) {
    .sthira-counter-section {
        padding: 40px 0;
    }

    .sthira-counter-wrapper {
        grid-template-columns: repeat(4, 1fr);
        gap: 7px;
    }

    .sthira-counter-card {
        padding: 20px 5px;
        border-radius: 5px;
    }

    .sthira-counter-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 11px;
        font-size: 13px;
    }

    .sthira-counter-number {
        margin-bottom: 5px;
    }

    .sthira-counter-number .counter {
        font-size: 18px;
    }

    .sthira-counter-number strong {
        margin-left: 1px;
        font-size: 16px;
    }

    .sthira-counter-title {
        font-size: 13px;
        line-height: 1.35;
    }
}

/* SMALL MOBILE */

@media (max-width: 480px) {
    .sthira-counter-section {
        padding: 32px 0;
    }

    .sthira-counter-wrapper {
        gap: 5px;
    }

    .sthira-counter-card {
        padding: 17px 3px;
    }

    .sthira-counter-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 9px;
        font-size: 11px;
    }

    .sthira-counter-number .counter {
        font-size: 16px;
    }

    .sthira-counter-number strong {
        font-size: 14px;
    }

    .sthira-counter-title {
        font-size: 12px;
    }
}

/* counter-section-css-end */














/* our-services-section-css-start */

.sthira-services-section {
    position: relative;
    padding: 100px 0;
    background: #f8f9fb;
    overflow: hidden;
    font-family: "Roboto", sans-serif;
}

.sthira-services-heading {
    max-width: 750px;
    margin: 0 auto 55px;
    text-align: center;
}

.sthira-services-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 5px;
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #f0a805;
}

.sthira-services-label span {
    width: 35px;
    height: 2px;
    background: #f0a805;
}

.sthira-services-heading h2 {
    margin: 0 0 8px;
    font-family: "Lora", serif;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
    color: #172033;
}

.sthira-services-heading h2 strong {
    display: block;
    font-family: "Lora", serif;
    color: #f0a805;
    font-weight: 700;
}

.sthira-services-heading p {
    max-width: 650px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.8;
    color: #272e3a;
}

/* SERVICES GRID */

.sthira-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.sthira-service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e9edf3;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(6, 21, 45, 0.05);
    transition: all 0.35s ease;
}

.sthira-service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(240, 168, 5, 0.5);
    box-shadow: 0 18px 40px rgba(6, 21, 45, 0.11);
}

/* SERVICE IMAGE */

.sthira-service-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.sthira-service-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(6, 21, 45, 0) 45%,
            rgba(6, 21, 45, 0.15) 100%);
}

.sthira-service-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sthira-service-card:hover .sthira-service-image img {
    transform: scale(1.07);
}

/* SERVICE CONTENT */

.sthira-service-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 25px 25px 28px;
}

.sthira-service-content h3 {
    min-height: 55px;
    margin: 0 0 10px;
    font-family: "Lora", serif;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 700;
    color: #172033;
    transition: color 0.3s ease;
}

.sthira-service-card:hover .sthira-service-content h3 {
    color: #f0a805;
}

.sthira-service-content p {
    min-height: 95px;
    margin: 0 0 20px;
    font-size: 14px;
    line-height: 1.7;
    color: #42464e;
}

/* READ MORE */

.sthira-service-btn {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 9px;
    margin-top: auto;
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    color: #172033;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sthira-service-btn i {
    font-size: 11px;
    color: #f0a805;
    transition: transform 0.3s ease;
}

.sthira-service-btn:hover {
    color: #f0a805;
}

.sthira-service-btn:hover i {
    transform: translateX(5px);
}

/* VIEW ALL BUTTON */

.sthira-services-bottom {
    margin-top: 45px;
    text-align: center;
}

.sthira-services-main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    background: #f0a805;
    border: 1px solid #f0a805;
    border-radius: 4px;
    color: #06152d;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sthira-services-main-btn i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.sthira-services-main-btn:hover {
    background: #06152d;
    border-color: #06152d;
    color: #ffffff;
}

.sthira-services-main-btn:hover i {
    transform: translateX(5px);
}

/* LARGE TABLET */

@media (max-width: 1199px) {

    .sthira-services-section {
        padding: 85px 0;
    }

    .sthira-services-grid {
        gap: 22px;
    }

    .sthira-service-image {
        height: 205px;
    }

    .sthira-service-content {
        padding: 22px 20px 25px;
    }

}

/* TABLET */

@media (max-width: 991px) {

    .sthira-services-section {
        padding: 70px 0;
    }

    .sthira-services-heading h2 {
        font-size: 34px;
    }

    .sthira-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .sthira-service-image {
        height: 220px;
    }

}

/* MOBILE */

@media (max-width: 767px) {

    .sthira-services-section {
        padding: 60px 0;
    }

    .sthira-services-heading {
        margin-bottom: 35px;
    }

    .sthira-services-label {
        font-size: 11px;
        letter-spacing: 1.2px;
    }

    .sthira-services-label span {
        width: 25px;
    }

    .sthira-services-heading h2 {
        font-size: 29px;
    }

    .sthira-services-heading p {
        font-size: 14px;
        line-height: 1.7;
    }

    .sthira-services-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .sthira-service-image {
        height: 230px;
    }

    .sthira-service-content {
        padding: 22px 20px 25px;
    }

    .sthira-service-content h3 {
        min-height: auto;
        font-size: 20px;
    }

    .sthira-service-content p {
        min-height: auto;
        font-size: 14px;
    }

    .sthira-services-bottom {
        margin-top: 30px;
    }

}

/* SMALL MOBILE */

@media (max-width: 480px) {

    .sthira-services-section {
        padding: 50px 0;
    }

    .sthira-services-heading h2 {
        font-size: 24px;
    }

    .sthira-services-heading p {
        font-size: 13px;
    }

    .sthira-service-image {
        height: 200px;
    }

    .sthira-service-content {
        padding: 20px 18px 23px;
    }

    .sthira-service-content h3 {
        font-size: 16px;
    }

    .sthira-service-content p {
        font-size: 13px;
        line-height: 1.65;
    }

    .sthira-services-main-btn {
        padding: 13px 22px;
        font-size: 12px;
    }

}

/* our-services-section-css-end */













/* mission-vision-section-css-start */

.sthira-mission-section {
    position: relative;
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
    font-family: "Roboto", sans-serif;
}

.sthira-mission-wrapper {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 75px;
}

/* LEFT CONTENT */

.sthira-mission-content {
    position: relative;
}

.sthira-mission-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #f0a805;
}

.sthira-mission-label span {
    width: 35px;
    height: 2px;
    background: #f0a805;
}

.sthira-mission-content h2 {
    max-width: 650px;
    margin: 0 0 17px;
    font-family: "Lora", serif;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
    color: #172033;
}

.sthira-mission-content h2 strong {
    display: block;
    font-family: "Lora", serif;
    color: #f0a805;
    font-weight: 700;
}

.sthira-mission-content>p {
    max-width: 650px;
    margin: 0 0 12px;
    font-size: 15px;
    line-height: 1.8;
    color: #697386;
}

.sthira-mission-content>p.sthira-mission-intro {
    font-weight: 500;
    color: #4f5b70;
}

/* MISSION CARDS */

.sthira-mission-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 30px;
}

.sthira-mission-card {
    position: relative;
    display: flex;
    gap: 15px;
    padding: 22px 20px;
    background: #f8f9fb;
    border: 1px solid #e8ecf2;
    border-radius: 7px;
    overflow: hidden;
    transition: all 0.35s ease;
}

.sthira-mission-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    background: #f0a805;
    transition: height 0.35s ease;
}

.sthira-mission-card:hover {
    background: #ffffff;
    border-color: rgba(240, 168, 5, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(6, 21, 45, 0.08);
}

.sthira-mission-card:hover::before {
    height: 100%;
}

.sthira-mission-icon {
    flex: 0 0 45px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(240, 168, 5, 0.12);
    border: 1px solid rgba(240, 168, 5, 0.2);
    color: #f0a805;
    font-size: 16px;
    transition: all 0.35s ease;
}

.sthira-mission-card:hover .sthira-mission-icon {
    background: #f0a805;
    color: #06152d;
    transform: rotateY(180deg);
}

.sthira-mission-card-content h3 {
    margin: 0 0 7px;
    font-family: "Lora", serif;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
    color: #172033;
}

.sthira-mission-card-content p {
    margin: 0;
    font-size: 13px;
    line-height: 1.65;
    color: #697386;
}

/* RIGHT IMAGE */

.sthira-mission-image {
    position: relative;
    padding: 0 0 35px 35px;
}

.sthira-mission-image-main {
    position: relative;
    height: 540px;
    overflow: hidden;
    border-radius: 8px 70px 8px 70px;
    border: 1px solid #f0a80540;
    background: #f5f6f8;
    box-shadow: 0 20px 50px rgba(16, 40, 74, 0.15);
    z-index: 2;
}

.sthira-mission-image-main img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.sthira-mission-image:hover .sthira-mission-image-main img {
    transform: scale(1.04);
}

/* IMAGE INFO BOX */

.sthira-mission-image-box {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 245px;
    padding: 18px 20px;
    background: #06152d;
    border-left: 3px solid #f0a805;
    box-shadow: 0 15px 35px rgba(6, 21, 45, 0.2);
}

.sthira-mission-image-box-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(240, 168, 5, 0.13);
    color: #f0a805;
    font-size: 15px;
}

.sthira-mission-image-box strong {
    display: block;
    margin-bottom: 3px;
    font-family: "Lora", serif;
    font-size: 15px;
    color: #ffffff;
}

.sthira-mission-image-box span {
    display: block;
    font-size: 11px;
    color: #aeb8c8;
}

/* DECORATIVE SHAPE */

.sthira-mission-shape {
    position: absolute;
    right: -25px;
    top: 35px;
    width: 130px;
    height: 130px;
    border: 2px solid rgba(240, 168, 5, 0.22);
    border-radius: 50%;
    z-index: 1;
}

.sthira-mission-shape::before {
    content: "";
    position: absolute;
    inset: 15px;
    border: 1px solid rgba(240, 168, 5, 0.2);
    border-radius: 50%;
}

/* LARGE TABLET */

@media (max-width: 1199px) {

    .sthira-mission-section {
        padding: 85px 0;
    }

    .sthira-mission-wrapper {
        gap: 50px;
    }

    .sthira-mission-content h2 {
        font-size: 34px;
    }

    .sthira-mission-image-main {
        height: 500px;
    }

    .sthira-mission-image {
        padding-left: 25px;
    }

}

/* TABLET */

@media (max-width: 991px) {

    .sthira-mission-section {
        padding: 70px 0;
    }

    .sthira-mission-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .sthira-mission-content h2 {
        font-size: 34px;
    }

    .sthira-mission-content>p {
        max-width: 100%;
    }

    .sthira-mission-image {
        max-width: 650px;
        width: 100%;
        margin: 0 auto;
    }

    .sthira-mission-image-main {
        height: 500px;
    }

}

/* MOBILE */

@media (max-width: 767px) {

    .sthira-mission-section {
        padding: 60px 0;
    }

    .sthira-mission-label {
        font-size: 11px;
        letter-spacing: 1.2px;
    }

    .sthira-mission-label span {
        width: 25px;
    }

    .sthira-mission-content h2 {
        font-size: 29px;
    }

    .sthira-mission-content>p {
        font-size: 14px;
        line-height: 1.7;
    }

    .sthira-mission-cards {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 25px;
    }

    .sthira-mission-card {
        padding: 20px 18px;
    }

    .sthira-mission-image {
        padding: 0 0 30px 20px;
    }

    .sthira-mission-image-main {
        height: 430px;
        border-radius: 8px 55px 8px 55px;
    }

    .sthira-mission-image-box {
        min-width: 220px;
        padding: 15px 16px;
    }

}

/* SMALL MOBILE */

@media (max-width: 480px) {

    .sthira-mission-section {
        padding: 50px 0;
    }

    .sthira-mission-content h2 {
        font-size: 26px;
    }

    .sthira-mission-content>p {
        font-size: 13px;
    }

    .sthira-mission-card {
        gap: 12px;
        padding: 18px 15px;
    }

    .sthira-mission-icon {
        flex-basis: 40px;
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .sthira-mission-card-content h3 {
        font-size: 17px;
    }

    .sthira-mission-card-content p {
        font-size: 13px;
    }

    .sthira-mission-image {
        padding-left: 10px;
        padding-bottom: 25px;
    }

    .sthira-mission-image-main {
        height: 360px;
        border-radius: 7px 45px 7px 45px;
    }

    .sthira-mission-image-box {
        min-width: 205px;
        gap: 10px;
        padding: 13px 14px;
    }

    .sthira-mission-image-box-icon {
        width: 37px;
        height: 37px;
        flex-basis: 37px;
        font-size: 13px;
    }

    .sthira-mission-image-box strong {
        font-size: 14px;
    }

    .sthira-mission-image-box span {
        font-size: 10px;
    }

    .sthira-mission-shape {
        right: -20px;
        width: 90px;
        height: 90px;
    }

    .sthira-mission-shape::before {
        inset: 10px;
    }

}

/* mission-vision-section-css-end */














/* job-details-section-css-start */

.sthira-job-section {
    position: relative;
    padding: 100px 0;
    background: #f8f9fb;
    overflow: hidden;
    font-family: "Roboto", sans-serif;
}

.sthira-job-heading {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.sthira-job-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #f0a805;
}

.sthira-job-label span {
    width: 35px;
    height: 2px;
    background: #f0a805;
}

.sthira-job-heading h2 {
    margin: 0 0 15px;
    font-family: "Lora", serif;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
    color: #172033;
}

.sthira-job-heading h2 strong {
    display: block;
    font-family: "Lora", serif;
    color: #f0a805;
    font-weight: 700;
}

.sthira-job-heading p {
    max-width: 670px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.8;
    color: #697386;
}

/* JOB WRAPPER */

.sthira-job-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* JOB CARD */

.sthira-job-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 580px;
    padding: 38px 38px 35px;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.35s ease;
}

.sthira-job-seeker {
    background: #ffffff;
    border: 1px solid #e5e9ef;
    box-shadow: 0 10px 35px rgba(6, 21, 45, 0.06);
}

.sthira-employer-card {
    background: #06152d;
    border: 1px solid #06152d;
    box-shadow: 0 15px 40px rgba(6, 21, 45, 0.15);
}

.sthira-job-card:hover {
    transform: translateY(-7px);
}

/* DECORATIVE CIRCLE */

.sthira-job-card::after {
    content: "";
    position: absolute;
    right: -80px;
    top: -80px;
    width: 190px;
    height: 190px;
    border: 1px solid rgba(240, 168, 5, 0.15);
    border-radius: 50%;
    pointer-events: none;
}

.sthira-job-card::before {
    content: "";
    position: absolute;
    right: -45px;
    top: -45px;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(240, 168, 5, 0.12);
    border-radius: 50%;
    pointer-events: none;
}

/* CARD TOP */

.sthira-job-card-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.sthira-job-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(240, 168, 5, 0.12);
    border: 1px solid rgba(240, 168, 5, 0.25);
    color: #f0a805;
    font-size: 19px;
    transition: all 0.35s ease;
}

.sthira-job-card:hover .sthira-job-icon {
    background: #f0a805;
    color: #06152d;
    transform: rotateY(180deg);
}

.sthira-job-tag {
    padding: 7px 12px;
    border: 1px solid rgba(240, 168, 5, 0.3);
    border-radius: 3px;
    font-size: 10px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 1px;
    color: #f0a805;
}

/* CARD HEADING */

.sthira-job-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 13px;
    font-family: "Lora", serif;
    font-size: 30px;
    line-height: 1.25;
    font-weight: 700;
    color: #172033;
}

.sthira-job-card h3 span {
    color: #f0a805;
}

.sthira-employer-card h3 {
    color: #ffffff;
}

/* DESCRIPTION */

.sthira-job-description {
    position: relative;
    z-index: 1;
    max-width: 550px;
    margin: 0 0 28px;
    font-size: 14px;
    line-height: 1.75;
    color: #697386;
}

.sthira-employer-card .sthira-job-description {
    color: #aeb8c8;
}

/* POINTS */

.sthira-job-points {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 19px;
}

.sthira-job-point {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.sthira-point-icon {
    width: 27px;
    height: 27px;
    flex: 0 0 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    border-radius: 50%;
    background: rgba(240, 168, 5, 0.12);
    color: #f0a805;
    font-size: 10px;
}

.sthira-job-point h4 {
    margin: 0 0 4px;
    font-family: "Lora", serif;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;
    color: #172033;
}

.sthira-job-point p {
    margin: 0;
    font-size: 12px;
    line-height: 1.6;
    color: #697386;
}

.sthira-employer-card .sthira-job-point h4 {
    color: #ffffff;
}

.sthira-employer-card .sthira-job-point p {
    color: #aeb8c8;
}

/* BUTTON */

/* .sthira-job-card-bottom {
    position: relative;
    z-index: 1;
    margin-top: auto;
    padding-top: 30px;
} */
.sthira-job-card-bottom {
    position: relative;
    z-index: 1;
    margin-top: 30px;
    padding-top: 30px;
}

.sthira-job-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 23px;
    border: 1px solid #f0a805;
    border-radius: 4px;
    background: #f0a805;
    color: #06152d;
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sthira-job-btn i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.sthira-job-btn:hover {
    background: #06152d;
    border-color: #06152d;
    color: #ffffff;
}

.sthira-job-btn:hover i {
    transform: translateX(5px);
}

.sthira-employer-card .sthira-job-btn:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #06152d;
}

/* LARGE TABLET */

@media (max-width: 1199px) {

    .sthira-job-section {
        padding: 85px 0;
    }

    .sthira-job-wrapper {
        gap: 20px;
    }

    .sthira-job-card {
        min-height: 570px;
        padding: 32px 28px 30px;
    }

    .sthira-job-card h3 {
        font-size: 27px;
    }

}

/* TABLET */

@media (max-width: 991px) {

    .sthira-job-section {
        padding: 70px 0;
    }

    .sthira-job-heading h2 {
        font-size: 34px;
    }

    .sthira-job-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .sthira-job-card {
        min-height: 590px;
        padding: 28px 22px 28px;
    }

    .sthira-job-card-top {
        margin-bottom: 22px;
    }

    .sthira-job-card h3 {
        font-size: 25px;
    }

}

/* MOBILE */

@media (max-width: 767px) {

    .sthira-job-section {
        padding: 60px 0;
    }

    .sthira-job-heading {
        margin-bottom: 35px;
    }

    .sthira-job-label {
        font-size: 11px;
        letter-spacing: 1.2px;
    }

    .sthira-job-label span {
        width: 25px;
    }

    .sthira-job-heading h2 {
        font-size: 29px;
    }

    .sthira-job-heading p {
        font-size: 14px;
        line-height: 1.7;
    }

    .sthira-job-wrapper {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .sthira-job-card {
        min-height: auto;
        padding: 28px 22px;
    }

    .sthira-job-card h3 {
        font-size: 25px;
    }

    .sthira-job-description {
        font-size: 13px;
        line-height: 1.7;
    }

    .sthira-job-point p {
        font-size: 12px;
    }

    .sthira-job-card-bottom {
        margin-top: 25px;
        padding-top: 5px;
    }

}

/* SMALL MOBILE */

@media (max-width: 480px) {

    .sthira-job-section {
        padding: 50px 0;
    }

    .sthira-job-heading h2 {
        font-size: 26px;
    }

    .sthira-job-heading p {
        font-size: 13px;
    }

    .sthira-job-card {
        padding: 23px 18px;
        border-radius: 7px;
    }

    .sthira-job-icon {
        width: 48px;
        height: 48px;
        font-size: 17px;
    }

    .sthira-job-tag {
        padding: 6px 9px;
        font-size: 9px;
    }

    .sthira-job-card h3 {
        font-size: 23px;
    }

    .sthira-job-description {
        font-size: 13px;
    }

    .sthira-job-point {
        gap: 10px;
    }

    .sthira-point-icon {
        width: 24px;
        height: 24px;
        flex-basis: 24px;
        font-size: 9px;
    }

    .sthira-job-point h4 {
        font-size: 14px;
    }

    .sthira-job-point p {
        font-size: 11px;
    }

}

/* job-details-section-css-end */














/* footer-section-css-start */

.sthira-footer-section {
    position: relative;
    background: #06152d;
    color: #ffffff;
    overflow: hidden;
    font-family: "Roboto", sans-serif;
}

.sthira-footer-section::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -180px;
    width: 400px;
    height: 400px;
    background: rgba(240, 168, 5, 0.06);
    border-radius: 50%;
    pointer-events: none;
}

/* FOOTER WRAPPER */

.sthira-footer-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 1fr 1.1fr;
    gap: 55px;
    padding: 75px 0 65px;
}

/* FOOTER COLUMN */

.sthira-footer-column {
    min-width: 0;
}

.sthira-footer-column h3 {
    position: relative;
    margin: 0 0 25px;
    padding-bottom: 13px;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

.sthira-footer-column h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 2px;
    background: #f0a805;
}

/* FOOTER ABOUT */

.sthira-footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.sthira-footer-logo img {
    width: 145px;
    max-width: 100%;
    height: auto;
    display: block;
}

.sthira-footer-about p {
    max-width: 330px;
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    color: #aeb8c8;
}

/* SOCIAL ICONS */

.sthira-footer-social {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 25px;
}

.sthira-footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
}

.sthira-footer-social a:hover {
    background: #f0a805;
    border-color: #f0a805;
    color: #06152d;
    transform: translateY(-4px);
}

/* FOOTER LINKS */

.sthira-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sthira-footer-links li {
    margin-bottom: 13px;
}

.sthira-footer-links li:last-child {
    margin-bottom: 0;
}

.sthira-footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #aeb8c8;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
    transition: all 0.3s ease;
    font-weight: 600;
}

.sthira-footer-links a i {
    font-size: 9px;
    color: #f0a805;
    transition: transform 0.3s ease;
}

.sthira-footer-links a:hover {
    color: #f0a805;
    padding-left: 5px;
}

.sthira-footer-links a:hover i {
    transform: translateX(3px);
}

/* CONTACT */

.sthira-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.sthira-footer-contact-icon {
    flex: 0 0 35px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(240, 168, 5, 0.1);
    border: 1px solid rgba(240, 168, 5, 0.2);
    border-radius: 4px;
    color: #f0a805;
    font-size: 14px;
    transition: all 0.3s ease;
}

.sthira-footer-contact-item:hover .sthira-footer-contact-icon {
    background: #f0a805;
    color: #06152d;
}

.sthira-footer-contact-item span {
    display: block;
    margin-bottom: 4px;
    font-size: 13px;
    font-weight: 600;
    color: #f0a805;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sthira-footer-contact-item p, .sthira-footer-contact-item a {
    margin: 0;
    color: #aeb8c8;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sthira-footer-contact-item a:hover {
    color: #f0a805;
}

/* GALLERY */
.sthira-footer-gallery-title {
    margin: 24px 0 12px;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 10px;
    text-decoration-thickness: 2px;
    text-decoration-color: #f0a805;
}

.sthira-footer-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    max-width: 210px;
}

.sthira-footer-gallery a {
    position: relative;
    display: block;
    height: 72px;
    overflow: hidden;
    border-radius: 4px;
    background: #0b2345;
}

.sthira-footer-gallery img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sthira-footer-gallery a::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(240, 168, 5, 0.35);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sthira-footer-gallery a:hover::after {
    opacity: 1;
}

.sthira-footer-gallery a:hover img {
    transform: scale(1.1);
}

/* FOOTER BOTTOM */
/* FOOTER BOTTOM */

.sthira-footer-bottom {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sthira-footer-bottom-wrapper {
    min-height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    flex-direction: column;
}

.sthira-footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: #fff;
    white-space: nowrap;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
}

.sthira-footer-developer {
    color: #fff;
    font-size: 13px;
    white-space: nowrap;
    font-weight: 500;
}

.sthira-footer-developer a {
    color: #f0a805;
    font-weight: 800;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: "Roboto", sans-serif;
}

.sthira-footer-developer a:hover {
    color: #ffffff;
}

/* TABLET */

@media (max-width: 991px) {
    .sthira-footer-bottom-wrapper {
        min-height: auto;
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px 25px;
        padding: 18px 0;
    }
}

/* MOBILE */

@media (max-width: 767px) {
    .sthira-footer-bottom-wrapper {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 7px;
        padding: 18px 0;
    }

    .sthira-footer-bottom p {
        font-size: 12px;
        line-height: 1.6;
        white-space: normal;
        text-align: center;
    }

    .sthira-footer-developer {
        font-size: 12px;
        white-space: nowrap;
        text-align: center;
    }
}

/* SMALL MOBILE */

@media (max-width: 480px) {
    .sthira-footer-bottom-wrapper {
        padding: 16px 0;
    }

    .sthira-footer-bottom p {
        font-size: 11px;
    }

    .sthira-footer-developer {
        font-size: 13px;
    }
}


/* LARGE TABLET */

@media (max-width: 1199px) {
    .sthira-footer-wrapper {
        grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
        gap: 35px;
    }

    .sthira-footer-column h3 {
        font-size: 17px;
    }
}

/* TABLET */

@media (max-width: 991px) {
    .sthira-footer-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 40px;
        padding: 65px 0 55px;
    }

    .sthira-footer-about p {
        max-width: 400px;
    }
}

/* MOBILE */

@media (max-width: 767px) {
    .sthira-footer-wrapper {
        grid-template-columns: 1fr;
        gap: 38px;
        padding: 55px 0 45px;
    }

    .sthira-footer-column {
        width: 100%;
        text-align: left;
    }

    .sthira-footer-column h3 {
        margin-bottom: 20px;
        font-size: 16px;
    }

    .sthira-footer-about p {
        max-width: 100%;
        font-size: 13px;
        line-height: 1.75;
    }

    .sthira-footer-logo {
        margin-bottom: 17px;
    }

    .sthira-footer-logo img {
        width: 130px;
    }

    .sthira-footer-social {
        margin-top: 20px;
    }

    .sthira-footer-links a {
        font-size: 13px;
    }

    .sthira-footer-links li {
        margin-bottom: 11px;
    }

    .sthira-footer-contact-item {
        margin-bottom: 15px;
    }

    .sthira-footer-contact-item p,
    .sthira-footer-contact-item a {
        font-size: 13px;
    }

    .sthira-footer-gallery-title {
        margin-top: 20px;
        font-size: 13px;
    }

    .sthira-footer-gallery {
        max-width: 200px;
    }

    .sthira-footer-gallery a {
        height: 68px;
    }

    .sthira-footer-bottom-wrapper {
        min-height: auto;
        flex-direction: column;
        /* align-items: flex-start; */
        gap: 3px;
        padding: 18px 0;
    }

    .sthira-footer-bottom p,
    .sthira-footer-bottom-links a {
        font-size: 13px;
    }
}

/* SMALL MOBILE */

@media (max-width: 480px) {
    .sthira-footer-wrapper {
        gap: 34px;
        padding: 45px 0 40px;
    }

    .sthira-footer-column h3 {
        font-size: 15px;
    }

    .sthira-footer-gallery {
        max-width: 185px;
    }

    .sthira-footer-gallery a {
        height: 62px;
    }

    .sthira-footer-bottom-links {
        gap: 8px;
        flex-wrap: wrap;
    }
}

/* footer-section-css-end */















/* about-us-main-banner-section-css-start */

.sthira-about-main-banner {
    position: relative;
    min-height: 330px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #06152d;
    overflow: hidden;
    font-family: "Roboto", sans-serif;
}

/* BACKGROUND GLOW */

.sthira-about-main-banner::before {
    content: "";
    position: absolute;
    top: -180px;
    left: -120px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle,
            rgba(240, 168, 5, 0.16) 0%,
            rgba(240, 168, 5, 0.05) 40%,
            transparent 70%);
    border-radius: 50%;
    animation: sthiraBannerGlowOne 7s ease-in-out infinite;
}

.sthira-about-main-banner::after {
    content: "";
    position: absolute;
    right: -150px;
    bottom: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle,
            rgba(240, 168, 5, 0.12) 0%,
            rgba(240, 168, 5, 0.04) 40%,
            transparent 70%);
    border-radius: 50%;
    animation: sthiraBannerGlowTwo 8s ease-in-out infinite;
}

/* CONTENT */

.sthira-about-banner-content {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 65px 0;
}

/* LABEL */

.sthira-about-banner-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 1.8px;
    color: #f0a805;
}

.sthira-about-banner-label span {
    width: 35px;
    height: 2px;
    background: #f0a805;
    display: inline-block;
    animation: sthiraBannerLine 2s ease-in-out infinite;
}

/* TITLE */

.sthira-about-banner-content h1 {
    margin: 0px 0 15px;
    font-family: "Lora", serif;
    font-size: 38px;
    line-height: 1.15;
    font-weight: 700;
    color: #ffffff;
}

.sthira-about-banner-content h1 strong {
    color: #f0a805;
    font-family: "Lora", serif;
    font-weight: 700;
}

/* BREADCRUMB */

.sthira-about-breadcrumb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 11px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    backdrop-filter: blur(6px);
}

.sthira-about-breadcrumb a,
.sthira-about-breadcrumb strong {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    line-height: 1;
    text-decoration: none;
}

.sthira-about-breadcrumb a {
    color: #c4ccd8;
    transition: color 0.3s ease;
}

.sthira-about-breadcrumb a:hover {
    color: #f0a805;
}

.sthira-about-breadcrumb a i {
    font-size: 11px;
    color: #f0a805;
}

.sthira-about-breadcrumb>span {
    display: flex;
    align-items: center;
    color: #667286;
    font-size: 10px;
}

.sthira-about-breadcrumb strong {
    color: #f0a805;
    font-weight: 600;
}

/* DECORATIVE CIRCLES */

.sthira-about-banner-circle {
    position: absolute;
    border: 1px solid rgba(240, 168, 5, 0.16);
    border-radius: 50%;
    z-index: 1;
}

.sthira-about-banner-circle-one {
    width: 190px;
    height: 190px;
    right: 12%;
    top: 45px;
    animation: sthiraBannerFloat 6s ease-in-out infinite;
}

.sthira-about-banner-circle-two {
    width: 90px;
    height: 90px;
    right: calc(12% + 50px);
    top: 95px;
    border-color: rgba(240, 168, 5, 0.22);
    animation: sthiraBannerFloatReverse 5s ease-in-out infinite;
}

.sthira-about-banner-circle-two::before {
    content: "";
    position: absolute;
    inset: 13px;
    border: 1px solid rgba(240, 168, 5, 0.15);
    border-radius: 50%;
}

/* DECORATIVE LINES */

.sthira-about-banner-line {
    position: absolute;
    width: 100px;
    height: 1px;
    background: rgba(240, 168, 5, 0.2);
    z-index: 1;
}

.sthira-about-banner-line-one {
    left: 8%;
    bottom: 75px;
    transform: rotate(-35deg);
    animation: sthiraBannerLineMove 5s ease-in-out infinite;
}

.sthira-about-banner-line-two {
    left: 13%;
    bottom: 115px;
    width: 55px;
    transform: rotate(-35deg);
    animation: sthiraBannerLineMove 5s ease-in-out infinite 0.5s;
}

/* ANIMATIONS */

@keyframes sthiraBannerGlowOne {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(35px, 25px) scale(1.08);
    }
}

@keyframes sthiraBannerGlowTwo {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-30px, -25px) scale(1.08);
    }
}

@keyframes sthiraBannerFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

@keyframes sthiraBannerFloatReverse {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(12px) rotate(-6deg);
    }
}

@keyframes sthiraBannerLine {

    0%,
    100% {
        width: 35px;
        opacity: 1;
    }

    50% {
        width: 48px;
        opacity: 0.6;
    }
}

@keyframes sthiraBannerLineMove {

    0%,
    100% {
        transform: translateX(0) rotate(-35deg);
        opacity: 0.5;
    }

    50% {
        transform: translateX(15px) rotate(-35deg);
        opacity: 1;
    }
}

/* LARGE TABLET */

@media (max-width: 1199px) {

    .sthira-about-main-banner {
        min-height: 360px;
    }

    .sthira-about-banner-content {
        padding: 60px 0;
    }

    .sthira-about-banner-content h1 {
        font-size: 50px;
    }

    .sthira-about-banner-circle-one {
        right: 7%;
    }

    .sthira-about-banner-circle-two {
        right: calc(7% + 50px);
    }

}

/* TABLET */

@media (max-width: 991px) {

    .sthira-about-main-banner {
        min-height: 330px;
    }

    .sthira-about-banner-content {
        padding: 55px 0;
    }

    .sthira-about-banner-content h1 {
        font-size: 45px;
    }

    .sthira-about-banner-circle-one {
        right: -30px;
        top: 35px;
    }

    .sthira-about-banner-circle-two {
        right: 20px;
        top: 85px;
    }

    .sthira-about-banner-line-one {
        left: -20px;
    }

    .sthira-about-banner-line-two {
        left: 15px;
    }

}

/* MOBILE */

@media (max-width: 767px) {

    .sthira-about-main-banner {
        min-height: 250px;
    }

    .sthira-about-banner-content {
        padding: 50px 0;
    }

    .sthira-about-banner-label {
        gap: 8px;
        margin-bottom: 12px;
        font-size: 11px;
        letter-spacing: 1.2px;
    }

    .sthira-about-banner-label span {
        width: 25px;
    }

    .sthira-about-banner-content h1 {
        margin-bottom: 17px;
        font-size: 28px;
    }

    .sthira-about-breadcrumb {
        gap: 10px;
        padding: 10px 15px;
    }

    .sthira-about-breadcrumb a,
    .sthira-about-breadcrumb strong {
        font-size: 12px;
    }

    .sthira-about-banner-circle-one {
        width: 130px;
        height: 130px;
        right: -55px;
        top: 25px;
    }

    .sthira-about-banner-circle-two {
        width: 65px;
        height: 65px;
        right: 10px;
        top: 58px;
    }

    .sthira-about-banner-circle-two::before {
        inset: 9px;
    }

    .sthira-about-banner-line-one {
        left: -40px;
        bottom: 45px;
    }

    .sthira-about-banner-line-two {
        left: 0;
        bottom: 80px;
    }

}

/* SMALL MOBILE */

@media (max-width: 480px) {

    .sthira-about-main-banner {
        min-height: 220px;
    }

    .sthira-about-banner-content {
        padding: 45px 0;
    }

    .sthira-about-banner-label {
        font-size: 11px;
        letter-spacing: 1px;
    }

    .sthira-about-banner-label span {
        width: 20px;
    }

    .sthira-about-banner-content h1 {
        font-size: 28px;
    }

    .sthira-about-breadcrumb {
        padding: 9px 13px;
        gap: 8px;
    }

    .sthira-about-breadcrumb a,
    .sthira-about-breadcrumb strong {
        font-size: 11px;
    }

    .sthira-about-breadcrumb a i {
        font-size: 9px;
    }

    .sthira-about-banner-circle-one {
        width: 100px;
        height: 100px;
        right: -45px;
    }

    .sthira-about-banner-circle-two {
        width: 50px;
        height: 50px;
        right: 0;
    }

}

/* about-us-main-banner-section-css-end */














/* why-choose-us-section-css-start */

.sthira-why-choose-section {
    position: relative;
    padding: 100px 0;
    background: #f8f9fb;
    overflow: hidden;
    font-family: "Roboto", sans-serif;
}

.sthira-why-choose-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

/* LEFT CONTENT */

.sthira-why-choose-content {
    position: relative;
}

.sthira-why-choose-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 1.6px;
    color: #f0a805;
}

.sthira-why-choose-label span {
    width: 32px;
    height: 2px;
    display: inline-block;
    background: #f0a805;
}

.sthira-why-choose-content h2 {
    margin: 0 0 18px;
    font-family: "Lora", serif;
    font-size: 38px;
    line-height: 1.15;
    font-weight: 700;
    color: #172033;
}

.sthira-why-choose-content h2 strong {
    color: #f0a805;
    font-family: "Lora", serif;
    font-weight: 700;
}

.sthira-why-choose-intro {
    margin: 0 0 28px;
    font-size: 15px;
    line-height: 1.8;
    font-weight: 400;
    color: #10284a;
}

/* COMMITMENT */

.sthira-why-choose-commitment {
    display: flex;
    gap: 18px;
    padding: 22px;
    margin-bottom: 28px;
    background: #ffffff;
    border: 1px solid #e7ebf1;
    border-left: 3px solid #f0a805;
    border-radius: 7px;
    box-shadow: 0 10px 30px rgba(6, 21, 45, 0.06);
}

.sthira-commitment-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #06152d;
    color: #f0a805;
    border-radius: 50%;
    font-size: 19px;
}

.sthira-commitment-content span {
    display: block;
    margin-bottom: 7px;
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 1.2px;
    color: #f0a805;
}

.sthira-commitment-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #10284a;
}

/* TAGLINE */

.sthira-why-choose-tagline {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    font-size: 14px;
    color: #697386;
}

.sthira-why-choose-tagline>span {
    width: 25px;
    height: 2px;
    background: #f0a805;
}

.sthira-why-choose-tagline strong {
    font-weight: 700;
    color: #06152d;
}

.sthira-why-choose-tagline em {
    font-style: normal;
    color: #f0a805;
    font-weight: 600;
}

/* FEATURES */

.sthira-why-choose-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.sthira-why-feature {
    position: relative;
    display: flex;
    gap: 16px;
    min-height: 155px;
    padding: 24px 20px;
    background: #ffffff;
    border: 1px solid #e7ebf1;
    border-radius: 7px;
    overflow: hidden;
    transition: all 0.35s ease;
}

.sthira-why-feature::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    background: #f0a805;
    transition: height 0.35s ease;
}

.sthira-why-feature:hover {
    transform: translateY(-6px);
    border-color: rgba(240, 168, 5, 0.45);
    box-shadow: 0 15px 35px rgba(6, 21, 45, 0.08);
}

.sthira-why-feature:hover::before {
    height: 100%;
}

.sthira-why-feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(240, 168, 5, 0.1);
    border: 1px solid rgba(240, 168, 5, 0.18);
    border-radius: 6px;
    color: #f0a805;
    font-size: 18px;
    transition: all 0.35s ease;
}

.sthira-why-feature:hover .sthira-why-feature-icon {
    background: #f0a805;
    color: #06152d;
    transform: rotate(-5deg);
}

.sthira-why-feature-content {
    flex: 1;
}

.sthira-why-feature-content h3 {
    margin: 2px 0 8px;
    font-family: "Lora", serif;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 700;
    color: #172033;
}

.sthira-why-feature-content p {
    margin: 0;
    font-size: 13px;
    line-height: 1.35;
    color: #10284a;
}

/* TABLET */

@media (max-width: 1199px) {

    .sthira-why-choose-wrapper {
        grid-template-columns: 0.85fr 1.15fr;
        gap: 45px;
    }

    .sthira-why-choose-content h2 {
        font-size: 38px;
    }

    .sthira-why-feature {
        padding: 20px 17px;
    }

}

/* SMALL TABLET */

@media (max-width: 991px) {

    .sthira-why-choose-section {
        padding: 80px 0;
    }

    .sthira-why-choose-wrapper {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .sthira-why-choose-content {
        max-width: 750px;
        margin: 0 auto;
        text-align: center;
    }

    .sthira-why-choose-label {
        justify-content: center;
    }

    .sthira-why-choose-intro {
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .sthira-why-choose-commitment {
        text-align: left;
    }

    .sthira-why-choose-tagline {
        justify-content: center;
    }

}

/* MOBILE */

@media (max-width: 767px) {

    .sthira-why-choose-section {
        padding: 65px 0;
    }

    .sthira-why-choose-wrapper {
        gap: 35px;
    }

    .sthira-why-choose-content h2 {
        font-size: 34px;
    }

    .sthira-why-choose-intro {
        font-size: 14px;
        line-height: 1.75;
    }

    .sthira-why-choose-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .sthira-why-feature {
        min-height: auto;
        padding: 20px;
    }

    .sthira-why-feature-content h3 {
        font-size: 16px;
    }

    .sthira-why-feature-content p {
        font-size: 13px;
    }

}

/* SMALL MOBILE */

@media (max-width: 480px) {

    .sthira-why-choose-section {
        padding: 55px 0;
    }

    .sthira-why-choose-label {
        gap: 7px;
        font-size: 12px;
        letter-spacing: 1.1px;
    }

    .sthira-why-choose-label span {
        width: 23px;
    }

    .sthira-why-choose-content h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .sthira-why-choose-intro {
        font-size: 13px;
    }

    .sthira-why-choose-commitment {
        gap: 13px;
        padding: 17px;
    }

    .sthira-commitment-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 16px;
    }

    .sthira-commitment-content span {
        font-size: 12px;
    }

    .sthira-commitment-content p {
        font-size: 12px;
    }

    .sthira-why-choose-tagline {
        font-size: 12px;
        gap: 5px;
    }

    .sthira-why-feature {
        gap: 12px;
        padding: 17px 15px;
    }

    .sthira-why-feature-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 16px;
    }

    .sthira-why-feature-content h3 {
        font-size: 15px;
        margin-top: 0;
    }

    .sthira-why-feature-content p {
        font-size: 12px;
        line-height: 1.6;
    }

}

/* why-choose-us-section-css-end */












/* gallery-section-css-start */

.sthira-gallery-section {
    position: relative;
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
    font-family: "Roboto", sans-serif;
}

/* HEADING */

.sthira-gallery-heading {
    max-width: 700px;
    margin: 0 auto 35px;
    text-align: center;
}

.sthira-gallery-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 6px;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 1.6px;
    color: #f0a805;
}

.sthira-gallery-label span {
    width: 32px;
    height: 2px;
    display: inline-block;
    background: #f0a805;
}

.sthira-gallery-heading h2 {
    margin: 0 0 7px;
    font-family: "Lora", serif;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
    color: #172033;
}

.sthira-gallery-heading h2 strong {
    display: block;
    font-family: "Lora", serif;
    color: #f0a805;
    font-weight: 700;
}

.sthira-gallery-heading p {
    max-width: 620px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.8;
    color: #10284a;
}

/* GALLERY GRID */

.sthira-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.sthira-gallery-item {
    position: relative;
    height: 245px;
    overflow: hidden;
    border-radius: 7px;
    background: #06152d;
    border: 1px solid #10284a40;
    box-shadow: 0 8px 25px rgba(16, 40, 74, 0.27);
}

.sthira-gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.sthira-gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(6, 21, 45, 0.68);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.sthira-gallery-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0a805;
    color: #06152d;
    border-radius: 50%;
    font-size: 16px;
    transform: scale(0.7);
    transition: transform 0.35s ease;
}

.sthira-gallery-item:hover img {
    transform: scale(1.08);
}

.sthira-gallery-item:hover .sthira-gallery-overlay {
    opacity: 1;
}

.sthira-gallery-item:hover .sthira-gallery-icon {
    transform: scale(1);
}

/* TABLET */

@media (max-width: 1199px) {

    .sthira-gallery-section {
        padding: 80px 0;
    }

    .sthira-gallery-grid {
        gap: 15px;
    }

    .sthira-gallery-item {
        height: 220px;
    }

}

/* SMALL TABLET */

@media (max-width: 991px) {

    .sthira-gallery-section {
        padding: 60px 0;
    }

    .sthira-gallery-heading {
        margin-bottom: 40px;
    }

    .sthira-gallery-heading h2 {
        font-size: 26px;
    }

    .sthira-gallery-item {
        height: 210px;
    }

}

/* MOBILE */

@media (max-width: 767px) {

    .sthira-gallery-section {
        padding: 50px 0;
    }

    .sthira-gallery-heading {
        margin-bottom: 30px;
    }

    .sthira-gallery-heading h2 {
        font-size: 26px;
    }

    .sthira-gallery-heading p {
        font-size: 14px;
        line-height: 1.7;
    }

    .sthira-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .sthira-gallery-item {
        height: 170px;
        border-radius: 6px;
    }

    .sthira-gallery-overlay {
        opacity: 1;
        align-items: flex-end;
        justify-content: flex-end;
        padding: 10px;
        background: linear-gradient(to top,
                rgba(6, 21, 45, 0.65),
                transparent 55%);
    }

    .sthira-gallery-icon {
        width: 36px;
        height: 36px;
        font-size: 12px;
        transform: scale(1);
    }

}

/* SMALL MOBILE */

@media (max-width: 480px) {

    .sthira-gallery-section {
        padding: 55px 0;
    }

    .sthira-gallery-label {
        gap: 7px;
        font-size: 12px;
        letter-spacing: 1.1px;
    }

    .sthira-gallery-label span {
        width: 23px;
    }

    .sthira-gallery-heading h2 {
        font-size: 28px;
    }

    .sthira-gallery-heading p {
        font-size: 13px;
    }

    .sthira-gallery-grid {
        gap: 10px;
    }

    .sthira-gallery-item {
        height: 140px;
    }

    .sthira-gallery-overlay {
        padding: 8px;
    }

    .sthira-gallery-icon {
        width: 32px;
        height: 32px;
        font-size: 11px;
    }

}

/* gallery-section-css-end */













/* main-contact-us-section-css-start */

.sthira-main-contact-section {
    position: relative;
    padding: 100px 0;
    background: #f8f9fb;
    overflow: hidden;
    font-family: "Roboto", sans-serif;
}

.sthira-contact-heading {
    max-width: 720px;
    margin: 0 auto 35px;
    text-align: center;
}

.sthira-contact-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 1.6px;
    color: #f0a805;
}

.sthira-contact-label span {
    width: 32px;
    height: 2px;
    display: inline-block;
    background: #f0a805;
}

.sthira-contact-heading h2 {
    margin: 0 0 6px;
    font-family: "Lora", serif;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
    color: #172033;
}

.sthira-contact-heading h2 strong {
    display: block;
    font-family: "Lora", serif;
    font-weight: 700;
    color: #f0a805;
}

.sthira-contact-heading p {
    max-width: 650px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.8;
    color: #06152d;
}

.sthira-contact-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 30px;
    align-items: stretch;
}

.sthira-contact-info {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 38px;
    background: #06152d;
    border-radius: 8px;
    overflow: hidden;
}

.sthira-contact-info::before {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    right: -100px;
    top: -100px;
    border: 1px solid rgba(240, 168, 5, 0.15);
    border-radius: 50%;
}

.sthira-contact-info::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    left: -75px;
    bottom: -75px;
    border: 1px solid rgba(240, 168, 5, 0.12);
    border-radius: 50%;
}

.sthira-contact-info-header {
    position: relative;
    z-index: 1;
    margin-bottom: 28px;
}

.sthira-contact-info-header>span {
    display: block;
    margin-bottom: 9px;
    font-size: 11px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #f0a805;
}

.sthira-contact-info-header h3 {
    margin: 0 0 12px;
    font-family: "Lora", serif;
    font-size: 30px;
    line-height: 1.2;
    color: #ffffff;
}

.sthira-contact-info-header h3 strong {
    font-family: "Lora", serif;
    color: #f0a805;
}

.sthira-contact-info-header p {
    margin: 0;
    font-size: 14px;
    line-height: 1.75;
    color: #f8f9fb;
}

.sthira-contact-detail {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.sthira-contact-detail-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(240, 168, 5, 0.1);
    border: 1px solid rgba(240, 168, 5, 0.25);
    border-radius: 6px;
    color: #f0a805;
    font-size: 16px;
}

.sthira-contact-detail-content span {
    display: block;
    margin-bottom: 1px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: #f0a805;
}

.sthira-contact-detail-content a {
    font-size: 13px;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sthira-contact-detail-content a:hover {
    color: #f0a805;
}

.sthira-contact-detail-content p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: #ffffff;
}

.sthira-contact-map {
    position: relative;
    z-index: 1;
    flex: 1;
    min-height: 250px;
    margin-top: 8px;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
}

.sthira-contact-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 250px;
    border: 0;
    filter: grayscale(0.25);
}

.sthira-contact-form-box {
    height: 100%;
    padding: 38px;
    background: #ffffff;
    border: 1px solid #e5e9ef;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(6, 21, 45, 0.07);
}

.sthira-contact-form-header {
    margin-bottom: 25px;
}

.sthira-contact-form-header>span {
    display: block;
    margin-bottom: 9px;
    font-size: 11px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #f0a805;
}

.sthira-contact-form-header h3 {
    margin: 0 0 10px;
    font-family: "Lora", serif;
    font-size: 30px;
    line-height: 1.2;
    color: #172033;
}

.sthira-contact-form-header h3 strong {
    font-family: "Lora", serif;
    color: #f0a805;
}

.sthira-contact-form-header p {
    margin: 0;
    font-size: 13px;
    line-height: 1.7;
    color: #697386;
}

.sthira-contact-form {
    width: 100%;
}

.sthira-form-group {
    width: 100%;
    margin-bottom: 17px;
}

.sthira-form-group label {
    display: block;
    margin-bottom: 7px;
    font-size: 12px;
    font-weight: 700;
    color: #172033;
}

.sthira-form-group input,
.sthira-form-group textarea {
    display: block;
    width: 100%;
    background: #f8f9fb;
    border: 1px solid #e3e7ed;
    border-radius: 5px;
    outline: none;
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    color: #172033;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.sthira-form-group input {
    height: 46px;
    padding: 0 14px;
}

.sthira-form-group textarea {
    min-height: 110px;
    height: 110px;
    padding: 12px 14px;
    line-height: 1.6;
    resize: vertical;
}

.sthira-form-group input::placeholder,
.sthira-form-group textarea::placeholder {
    color: #9aa4b3;
    opacity: 1;
}

.sthira-form-group input:focus,
.sthira-form-group textarea:focus {
    background: #ffffff;
    border-color: #f0a805;
    box-shadow: 0 0 0 3px rgba(240, 168, 5, 0.08);
}

.sthira-contact-submit {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 5px;
    padding: 0 20px;
    border: 0;
    border-radius: 5px;
    background: #f0a805;
    color: #06152d;
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sthira-contact-submit i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.sthira-contact-submit:hover {
    background: #06152d;
    color: #ffffff;
}

.sthira-contact-submit:hover i {
    transform: translateX(5px);
}

@media (max-width: 1199px) {
    .sthira-main-contact-section {
        padding: 90px 0;
    }

    .sthira-contact-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 22px;
    }

    .sthira-contact-info,
    .sthira-contact-form-box {
        padding: 30px;
    }
}

@media (max-width: 991px) {
    .sthira-main-contact-section {
        padding: 80px 0;
    }

    .sthira-contact-heading {
        margin-bottom: 40px;
    }

    .sthira-contact-heading h2 {
        font-size: 36px;
    }

    .sthira-contact-wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .sthira-contact-info {
        min-height: auto;
        padding: 32px;
    }

    .sthira-contact-form-box {
        height: auto;
        padding: 32px;
    }

    .sthira-contact-map {
        min-height: 280px;
    }

    .sthira-contact-map iframe {
        min-height: 280px;
    }
}

@media (max-width: 767px) {
    .sthira-main-contact-section {
        padding: 65px 0;
    }

    .sthira-contact-heading {
        margin-bottom: 30px;
    }

    .sthira-contact-label {
        gap: 8px;
        font-size: 10px;
        letter-spacing: 1.2px;
    }

    .sthira-contact-label span {
        width: 25px;
    }

    .sthira-contact-heading h2 {
        font-size: 32px;
    }

    .sthira-contact-heading p {
        font-size: 14px;
        line-height: 1.7;
    }

    .sthira-contact-info,
    .sthira-contact-form-box {
        padding: 25px 20px;
    }

    .sthira-contact-info-header h3,
    .sthira-contact-form-header h3 {
        font-size: 26px;
    }

    .sthira-contact-map {
        min-height: 230px;
    }

    .sthira-contact-map iframe {
        min-height: 230px;
    }

    .sthira-form-group {
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .sthira-main-contact-section {
        padding: 55px 0;
    }

    .sthira-contact-label {
        gap: 6px;
        font-size: 9px;
        letter-spacing: 1px;
    }

    .sthira-contact-label span {
        width: 20px;
    }

    .sthira-contact-heading h2 {
        font-size: 28px;
    }

    .sthira-contact-heading p {
        font-size: 13px;
    }

    .sthira-contact-info,
    .sthira-contact-form-box {
        padding: 22px 16px;
    }

    .sthira-contact-info-header h3,
    .sthira-contact-form-header h3 {
        font-size: 24px;
    }

    .sthira-contact-detail {
        gap: 11px;
    }

    .sthira-contact-detail-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 14px;
    }

    .sthira-contact-detail-content a,
    .sthira-contact-detail-content p {
        font-size: 12px;
    }

    .sthira-contact-map {
        min-height: 200px;
    }

    .sthira-contact-map iframe {
        min-height: 200px;
    }

    .sthira-form-group input {
        height: 44px;
    }

    .sthira-form-group textarea {
        min-height: 105px;
        height: 105px;
    }
}

/* main-contact-us-section-css-end */
















/* employer-details-form-css-start */

.sthira-employer-form-section {
    padding: 90px 0;
    background: #f8f9fb;
    font-family: "Roboto", sans-serif;
}

.sthira-employer-form-box {
    max-width: 950px;
    margin: 0 auto;
    padding: 45px;
    background: #ffffff;
    border: 1px solid #e5e9ef;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(6, 21, 45, 0.07);
}

.sthira-employer-form-header {
    margin-bottom: 35px;
    text-align: center;
}

.sthira-employer-form-header>span {
    display: block;
    margin-bottom: 5px;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #f0a805;
}

.sthira-employer-form-header h2 {
    margin: 0;
    font-family: "Lora", serif;
    font-size: 34px;
    line-height: 1.25;
    font-weight: 700;
    color: #172033;
}

.sthira-employer-form-header h2 strong {
    font-family: "Lora", serif;
    color: #f0a805;
}

.sthira-employer-form {
    width: 100%;
}

.sthira-employer-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 25px;
}

.sthira-employer-form-group {
    width: 100%;
}

.sthira-full-width {
    grid-column: 1 / -1;
}

.sthira-employer-form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #172033;
}

.sthira-employer-form-group input,
.sthira-employer-form-group textarea {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 0 14px;
    background: #f8f9fb;
    border: 1px solid #e3e7ed;
    border-radius: 5px;
    outline: none;
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    color: #172033;
    transition: all 0.3s ease;
}

.sthira-employer-form-group input {
    height: 46px;
}

.sthira-employer-form-group textarea {
    height: 110px;
    min-height: 110px;
    padding: 12px 14px;
    line-height: 1.6;
    resize: vertical;
}

.sthira-employer-form-group input::placeholder,
.sthira-employer-form-group textarea::placeholder {
    color: #9aa4b3;
    opacity: 1;
}

.sthira-employer-form-group input:focus,
.sthira-employer-form-group textarea:focus {
    background: #ffffff;
    border-color: #f0a805;
    box-shadow: 0 0 0 3px rgba(240, 168, 5, 0.08);
}

.sthira-email-field {
    position: relative;
    display: flex;
    align-items: center;
}

.sthira-email-field input {
    padding-right: 135px;
}

.sthira-mask-btn {
    position: absolute;
    right: 7px;
    top: 50%;
    transform: translateY(-50%);
    padding: 7px 9px;
    border: 0;
    border-radius: 4px;
    background: transparent;
    color: #f0a805;
    font-family: "Roboto", sans-serif;
    font-size: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sthira-mask-btn:hover {
    color: #06152d;
}

.sthira-employer-submit {
    width: 100%;
    min-height: 48px;
    margin-top: 30px;
    padding: 0 20px;
    border: 0;
    border-radius: 5px;
    background: #f0a805;
    color: #06152d;
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sthira-employer-submit:hover {
    background: #06152d;
    color: #ffffff;
}

@media (max-width: 991px) {
    .sthira-employer-form-section {
        padding: 75px 0;
    }

    .sthira-employer-form-box {
        padding: 35px;
    }
}

@media (max-width: 767px) {
    .sthira-employer-form-section {
        padding: 60px 0;
    }

    .sthira-employer-form-box {
        padding: 28px 22px;
    }

    .sthira-employer-form-header {
        margin-bottom: 28px;
    }

    .sthira-employer-form-header h2 {
        font-size: 30px;
    }

    .sthira-employer-form-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .sthira-full-width {
        grid-column: auto;
    }
}

@media (max-width: 480px) {
    .sthira-employer-form-section {
        padding: 50px 0;
    }

    .sthira-employer-form-box {
        padding: 24px 16px;
    }

    .sthira-employer-form-header h2 {
        font-size: 26px;
    }

    .sthira-employer-form-group input {
        height: 44px;
    }

    .sthira-employer-form-group textarea {
        height: 105px;
        min-height: 105px;
    }

    .sthira-email-field input {
        padding-right: 120px;
    }

    .sthira-mask-btn {
        font-size: 9px;
        right: 5px;
    }
}

/* employer-details-form-css-end */
















/* job-application-form-css-start */

.sthira-job-application-section {
    padding: 90px 0;
    background: #f8f9fb;
    font-family: "Roboto", sans-serif;
}

.sthira-job-application-box {
    max-width: 950px;
    margin: 0 auto;
    padding: 45px;
    background: #ffffff;
    border: 1px solid #e5e9ef;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(6, 21, 45, 0.07);
}

.sthira-job-application-header {
    margin-bottom: 35px;
    text-align: center;
}

.sthira-job-application-header>span {
    display: block;
    margin-bottom: 5px;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #f0a805;
}

.sthira-job-application-header h2 {
    margin: 0;
    font-family: "Lora", serif;
    font-size: 34px;
    line-height: 1.25;
    font-weight: 700;
    color: #172033;
}

.sthira-job-application-header h2 strong {
    font-family: "Lora", serif;
    color: #f0a805;
}

.sthira-job-application-form {
    width: 100%;
}

.sthira-job-application-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 25px;
}

.sthira-job-application-group {
    width: 100%;
}

.sthira-job-full-width {
    grid-column: 1 / -1;
}

.sthira-job-application-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #172033;
}

.sthira-job-application-group input,
.sthira-job-application-group textarea {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 0 14px;
    background: #f8f9fb;
    border: 1px solid #e3e7ed;
    border-radius: 5px;
    outline: none;
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    color: #172033;
    transition: all 0.3s ease;
}

.sthira-job-application-group input {
    height: 46px;
}

.sthira-job-application-group textarea {
    height: 110px;
    min-height: 110px;
    padding: 12px 14px;
    line-height: 1.6;
    resize: vertical;
}

.sthira-job-application-group input::placeholder,
.sthira-job-application-group textarea::placeholder {
    color: #9aa4b3;
    opacity: 1;
}

.sthira-job-application-group input:focus,
.sthira-job-application-group textarea:focus {
    background: #ffffff;
    border-color: #f0a805;
    box-shadow: 0 0 0 3px rgba(240, 168, 5, 0.08);
}

.sthira-job-email-field {
    position: relative;
    display: flex;
    align-items: center;
}

.sthira-job-email-field input {
    width: 100%;
}

.sthira-job-application-submit {
    width: 100%;
    min-height: 48px;
    margin-top: 30px;
    padding: 0 20px;
    border: 0;
    border-radius: 5px;
    background: #f0a805;
    color: #06152d;
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sthira-job-application-submit:hover {
    background: #06152d;
    color: #ffffff;
}

@media (max-width: 991px) {
    .sthira-job-application-section {
        padding: 75px 0;
    }

    .sthira-job-application-box {
        padding: 35px;
    }
}

@media (max-width: 767px) {
    .sthira-job-application-section {
        padding: 60px 0;
    }

    .sthira-job-application-box {
        padding: 28px 22px;
    }

    .sthira-job-application-header {
        margin-bottom: 28px;
    }

    .sthira-job-application-header h2 {
        font-size: 30px;
    }

    .sthira-job-application-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .sthira-job-full-width {
        grid-column: auto;
    }
}

@media (max-width: 480px) {
    .sthira-job-application-section {
        padding: 50px 0;
    }

    .sthira-job-application-box {
        padding: 24px 16px;
    }

    .sthira-job-application-header h2 {
        font-size: 26px;
    }

    .sthira-job-application-group input {
        height: 44px;
    }

    .sthira-job-application-group textarea {
        height: 105px;
        min-height: 105px;
    }

    .sthira-job-application-submit {
        min-height: 46px;
        margin-top: 25px;
    }
}

/* job-application-form-css-end */



















/* main-services-section-css-start */

.sthira-main-services-section {
    padding: 100px 0;
    background: #f8f9fb;
    font-family: "Roboto", sans-serif;
}

.sthira-services-heading {
    max-width: 720px;
    margin: 0 auto 55px;
    text-align: center;
}

.sthira-services-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 1.6px;
    color: #f0a805;
}

.sthira-services-label span {
    width: 32px;
    height: 2px;
    display: inline-block;
    background: #f0a805;
}

.sthira-services-heading h2 {
    margin: 0 0 6px;
    font-family: "Lora", serif;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
    color: #172033;
}

.sthira-services-heading h2 strong {
    display: block;
    font-family: "Lora", serif;
    color: #f0a805;
}

.sthira-services-heading p {
    max-width: 650px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.8;
    color: #10284a;
}

.sthira-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sthira-service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e3e7ed;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(6, 21, 45, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.sthira-service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(240, 168, 5, 0.45);
    box-shadow: 0 18px 40px rgba(6, 21, 45, 0.12);
}

.sthira-service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #eef1f5;
}

.sthira-service-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sthira-service-card:hover .sthira-service-image img {
    transform: scale(1.06);
}

.sthira-service-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 25px;
}

.sthira-service-content h3 {
    margin: 0 0 12px;
    font-family: "Lora", serif;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
    color: #172033;
}

.sthira-service-content p {
    margin: 0 0 5px;
    font-size: 13px;
    line-height: 1.75;
    color: #697386;
}

.sthira-service-btn {
    width: fit-content;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: auto;
    padding: 0 17px;
    border-radius: 5px;
    background: #f0a805;
    color: #06152d;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.2px;
    transition: all 0.3s ease;
}

.sthira-service-btn svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.3s ease;
}

.sthira-service-btn:hover {
    background: #06152d;
    color: #ffffff;
}

.sthira-service-btn:hover svg {
    transform: translateX(4px);
}

@media (max-width: 1199px) {
    .sthira-main-services-section {
        padding: 90px 0;
    }

    .sthira-services-grid {
        gap: 22px;
    }

    .sthira-service-image {
        height: 200px;
    }

    .sthira-service-content {
        padding: 22px;
    }

    .sthira-service-content h3 {
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .sthira-main-services-section {
        padding: 80px 0;
    }

    .sthira-services-heading {
        margin-bottom: 40px;
    }

    .sthira-services-heading h2 {
        font-size: 36px;
    }

    .sthira-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .sthira-service-image {
        height: 210px;
    }
}

@media (max-width: 767px) {
    .sthira-main-services-section {
        padding: 65px 0;
    }

    .sthira-services-heading {
        margin-bottom: 30px;
    }

    .sthira-services-label {
        gap: 8px;
        font-size: 12px;
        letter-spacing: 1.2px;
    }

    .sthira-services-label span {
        width: 25px;
    }

    .sthira-services-heading h2 {
        font-size: 26px;
    }

    .sthira-services-heading p {
        font-size: 14px;
        line-height: 1.7;
    }

    .sthira-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sthira-service-image {
        height: 220px;
    }

    .sthira-service-content {
        padding: 23px 20px;
    }
}

@media (max-width: 480px) {
    .sthira-main-services-section {
        padding: 55px 0;
    }

    .sthira-services-label {
        gap: 6px;
        font-size: 12px;
        letter-spacing: 1px;
    }

    .sthira-services-label span {
        width: 20px;
    }

    .sthira-services-heading h2 {
        font-size: 24px;
    }

    .sthira-services-heading p {
        font-size: 13px;
    }

    .sthira-service-image {
        height: 200px;
    }

    .sthira-service-content {
        padding: 20px 16px;
    }

    .sthira-service-content h3 {
        font-size: 20px;
    }

    .sthira-service-content p {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 15px;
    }

    .sthira-service-btn {
        min-height: 40px;
        padding: 0 15px;
        font-size: 13px;
    }
}

/* main-services-section-css-end */























/* services-inner-section-css-start */

.sthira-services-inner-section {
    padding: 90px 0;
    background: #f8f9fb;
    font-family: "Roboto", sans-serif;
}

.sthira-services-inner-content {
    max-width: 1000px;
    margin: 0 auto;
}

.sthira-services-inner-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 11px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 1.7px;
    color: #f0a805;
}

.sthira-services-inner-label span {
    width: 32px;
    height: 2px;
    display: inline-block;
    background: #f0a805;
}

.sthira-services-inner-content>h1 {
    margin: 0 0 30px;
    text-align: center;
    font-family: "Lora", serif;
    font-size: 38px;
    line-height: 1.15;
    font-weight: 700;
    color: #172033;
}

.sthira-services-inner-content>h1 strong {
    color: #f0a805;
    font-family: "Lora", serif;
}

.sthira-services-inner-image {
    width: 100%;
    height: 430px;
    overflow: hidden;
    margin-bottom: 35px;
    border-radius: 8px;
    background: #e9edf2;
    box-shadow: 0 18px 45px rgba(6, 21, 45, 0.10);
}

.sthira-services-inner-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sthira-services-inner-image:hover img {
    transform: scale(1.03);
}

.sthira-services-inner-text {
    max-width: 850px;
    margin: 0 auto;
}

.sthira-services-inner-text p {
    margin: 0 0 22px;
    font-size: 15px;
    line-height: 1.9;
    color: #697386;
}

.sthira-services-inner-text p:first-child {
    font-size: 18px;
    line-height: 1.8;
    font-weight: 500;
    color: #172033;
}

.sthira-services-inner-highlight {
    display: grid;
    grid-template-columns: 5px 1fr;
    gap: 25px;
    align-items: center;
    margin: 40px 0;
    padding: 30px 35px;
    background: #ffffff;
    border: 1px solid #e5e9ef;
    border-radius: 8px;
    box-shadow: 0 12px 35px rgba(6, 21, 45, 0.06);
}

.sthira-services-inner-highlight-line {
    width: 5px;
    height: 100%;
    min-height: 80px;
    border-radius: 5px;
    background: #f0a805;
}

.sthira-services-inner-highlight span {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #f0a805;
}

.sthira-services-inner-highlight h2 {
    margin: 0;
    font-family: "Lora", serif;
    font-size: 28px;
    line-height: 1.35;
    font-weight: 700;
    color: #172033;
}

.sthira-services-inner-highlight h2 strong {
    color: #f0a805;
    font-family: "Lora", serif;
}

.sthira-services-inner-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-bottom: 55px;
}

.sthira-services-inner-feature {
    display: flex;
    gap: 18px;
    padding: 28px;
    background: #ffffff;
    border: 1px solid #e3e7ed;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(6, 21, 45, 0.05);
    transition: all 0.3s ease;
}

.sthira-services-inner-feature:hover {
    transform: translateY(-5px);
    border-color: rgba(240, 168, 5, 0.45);
    box-shadow: 0 16px 35px rgba(6, 21, 45, 0.09);
}

.sthira-services-inner-feature>span {
    flex-shrink: 0;
    font-family: "Lora", serif;
    font-size: 25px;
    line-height: 1;
    font-weight: 700;
    color: #f0a805;
}

.sthira-services-inner-feature h3 {
    margin: 0 0 7px;
    font-family: "Lora", serif;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
    color: #172033;
}

.sthira-services-inner-feature p {
    margin: 0;
    font-size: 13px;
    line-height: 1.7;
    color: #697386;
}

.sthira-services-inner-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 35px 40px;
    background: #06152d;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(6, 21, 45, 0.12);
}

.sthira-services-inner-cta>div>span {
    display: block;
    margin-bottom: 7px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.4px;
    color: #f0a805;
}

.sthira-services-inner-cta h2 {
    margin: 0;
    font-family: "Lora", serif;
    font-size: 27px;
    line-height: 1.3;
    font-weight: 700;
    color: #ffffff;
}

.sthira-services-inner-cta h2 strong {
    font-family: "Lora", serif;
    color: #f0a805;
}

.sthira-services-inner-cta-btn {
    flex-shrink: 0;
    min-height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 20px;
    border-radius: 5px;
    background: #f0a805;
    color: #06152d;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    transition: all 0.3s ease;
}

.sthira-services-inner-cta-btn svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.3s ease;
}

.sthira-services-inner-cta-btn:hover {
    background: #ffffff;
    color: #06152d;
}

.sthira-services-inner-cta-btn:hover svg {
    transform: translateX(4px);
}

@media (max-width: 1199px) {
    .sthira-services-inner-section {
        padding: 80px 0;
    }

    .sthira-services-inner-image {
        height: 390px;
    }
}

@media (max-width: 991px) {
    .sthira-services-inner-section {
        padding: 70px 0;
    }

    .sthira-services-inner-content>h1 {
        font-size: 42px;
        margin-bottom: 32px;
    }

    .sthira-services-inner-image {
        height: 340px;
        margin-bottom: 35px;
    }

    .sthira-services-inner-text p {
        font-size: 14px;
    }

    .sthira-services-inner-text p:first-child {
        font-size: 17px;
    }

    .sthira-services-inner-highlight {
        margin: 45px 0;
    }

    .sthira-services-inner-features {
        gap: 18px;
    }

    .sthira-services-inner-feature {
        padding: 24px;
    }

    .sthira-services-inner-cta {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .sthira-services-inner-section {
        padding: 60px 0;
    }

    .sthira-services-inner-label {
        gap: 8px;
        font-size: 9px;
        letter-spacing: 1.2px;
    }

    .sthira-services-inner-label span {
        width: 25px;
    }

    .sthira-services-inner-content>h1 {
        font-size: 36px;
        margin-bottom: 28px;
    }

    .sthira-services-inner-image {
        height: 260px;
        margin-bottom: 30px;
        border-radius: 6px;
    }

    .sthira-services-inner-text p {
        font-size: 13px;
        line-height: 1.8;
        margin-bottom: 15px;
    }

    .sthira-services-inner-text p:first-child {
        font-size: 15px;
    }

    .sthira-services-inner-highlight {
        grid-template-columns: 4px 1fr;
        gap: 18px;
        margin: 35px 0;
        padding: 24px;
    }

    .sthira-services-inner-highlight-line {
        width: 4px;
        min-height: 75px;
    }

    .sthira-services-inner-highlight h2 {
        font-size: 23px;
    }

    .sthira-services-inner-features {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 35px;
    }

    .sthira-services-inner-feature {
        padding: 22px;
    }

    .sthira-services-inner-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 27px 24px;
        gap: 22px;
    }

    .sthira-services-inner-cta h2 {
        font-size: 18px;
    }

    .sthira-services-inner-cta-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .sthira-services-inner-section {
        padding: 50px 0;
    }

    .sthira-services-inner-label {
        gap: 6px;
        font-size: 12px;
        margin-bottom: 5px;
    }

    .sthira-services-inner-label span {
        width: 20px;
    }

    .sthira-services-inner-content>h1 {
        font-size: 31px;
        margin-bottom: 23px;
    }

    .sthira-services-inner-image {
        height: 210px;
        margin-bottom: 25px;
    }

    .sthira-services-inner-text p {
        font-size: 13px;
        line-height: 1.75;
    }

    .sthira-services-inner-text p:first-child {
        font-size: 14px;
    }

    .sthira-services-inner-highlight {
        gap: 14px;
        margin: 30px 0;
        padding: 20px;
    }

    .sthira-services-inner-highlight h2 {
        font-size: 20px;
    }

    .sthira-services-inner-feature {
        gap: 14px;
        padding: 20px;
    }

    .sthira-services-inner-feature>span {
        font-size: 21px;
    }

    .sthira-services-inner-feature h3 {
        font-size: 16px;
    }

    .sthira-services-inner-feature p {
        font-size: 12px;
    }

    .sthira-services-inner-cta {
        padding: 23px 20px;
    }

    .sthira-services-inner-cta h2 {
        font-size: 18px;
    }

    .sthira-services-inner-cta>div>span {
        margin-bottom: 7px;
        font-size: 11px;
    }
}

/* services-inner-section-css-end */