a {
    color: #000;
    text-decoration: none;
}

p {
    text-align: justify;
}

a.nav-link.active {
    color: #ed2128;
}

.badge {
    background: #293181;
}

.navbar .main-header-img {
    position: relative;
    width: 10%;
    padding: 8px 0px;
}

.navbar .main-header-img .logo-one {
    position: relative;
    z-index: 1;
}

.navbar .main-header-img .logo-one:before {
    position: absolute;
    top: -8px;
    left: -99996px;
    right: -100%;
    border-bottom: 93px solid #ff7a1b;
    border-right: 70px solid transparent;
    content: "";
    z-index: -1;
}

.page-nav {
    position: relative;
    overflow: hidden;
    margin: 0px;
}

.background-img img {
    width: 100%;
    height: 150px;
    display: block;
}

.overlay-text {
    position: absolute;
    top: 38%;
    left: 0px;
    transform: translate(0%, -50%);
    text-align: center;
    z-index: 2;
}

.overlay-text h2 {
    color: #fff;
    font-weight: bold;
}

.overlay-text ul li {
    display: inline-block;
    margin-top: 10px;
}

.bg-back-color {
    background-color: #222;
    min-height: 160px;
}

.about_choose_text_box {
    padding: 20px 20px 20px 120px;
    background: #f1f0fa;
    margin-top: 25px;
    border-left: 3px solid #293181;
    border-radius: 10px;
    transform: skewX(-10deg);
    position: relative;
    margin-left: 28px;
}

.about_choose_text_box h4 {
    text-align: left;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    transform: skewX(10deg);
}

/* ===================================================== Header Css ====================================== */
header {
    z-index: 9999;
}

.logo img {
    background: rgb(223, 249, 250, 0.7);
}

.openbtn {
    cursor: pointer;
}

.menu {
    right: -100%;
    width: 420px;
    max-width: 100%;
    background: #4a4a4a;
    z-index: 99999;
    padding: 15px 20px;
    transition: .5s ease;
}

.menu.active {
    right: 0;
}

.closebtn {
    cursor: pointer;
}

.menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 420px;
    max-width: 100%;
    height: 100vh;
    overflow-y: auto;
    background: linear-gradient(180deg, #1f1f1f, #2d2d2d);
    z-index: 99999;
    padding: 25px 22px;
    transition: all 0.5s ease;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.35);
}

.menu.active {
    right: 0;
    animation: menuSlide 0.5s ease;
}

@keyframes menuSlide {
    from {
        right: -100%;
        opacity: 0;
    }

    to {
        right: 0;
        opacity: 1;
    }
}

/* Close Button */
.closebtn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    cursor: pointer;
    transition: 0.3s;
}

.closebtn:hover {
    background: #ed2128;
    transform: rotate(90deg);
}

/* Main Menu */
.menu nav ul li {
    position: relative;
    margin-bottom: 6px;
}

/* Links */
.menu nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    padding: 14px 16px;
    border-radius: 14px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Hover Background Animation */
/* .menu nav ul li a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #f35459, #ed2128);
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.4s ease;
    z-index: -1;
    border-radius: 14px;
} */

/* .menu nav ul li a:hover::before,
.menu nav ul li.active a::before {
    transform: scaleX(1);
} */

/* .menu nav ul li a:hover,
.menu nav ul li.active a {
    color: #fff;
    transform: translateX(5px);
} */

/* Dropdown */
/* .menu nav ul li.dropdown {
    display: flex;
    flex-direction: column;
} */

.dropdown-toggle-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    border-radius: 14px;
    transition: 0.3s;
}

.dropdown-toggle-menu:hover {
    background: rgba(255, 255, 255, 0.05);
}

.dropdown-toggle-menu a {
    width: 100%;
}

/* Arrow */
.menu nav ul li.dropdown svg {
    margin-right: 16px;
    transition: 0.3s ease;
    flex-shrink: 0;
}

/* Rotate Arrow */
.menu nav ul li.dropdown.open svg {
    transform: rotate(180deg);
}

/* Submenu */
.menu nav ul li ul {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    display: block !important;
    padding-left: 14px;
}

/* Submenu Items */
.menu nav ul li ul li a {
    font-size: 16px;
    color: #d1d5db;
    padding: 10px 14px;
    border-radius: 10px;
}

.menu nav ul li ul li a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

/* Overlay */
.menu_overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(3px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.menu_overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Scrollbar */
.menu::-webkit-scrollbar {
    width: 5px;
}

.menu::-webkit-scrollbar-thumb {
    background: #ff7a1b;
    border-radius: 20px;
}

/* Mobile */
@media(max-width:576px) {

    .menu {
        width: 100%;
        padding: 20px 16px;
    }

    .menu nav ul li a {
        font-size: 17px;
        padding: 13px 14px;
    }

}



/* ===================================================== Slider Css ====================================== */
#slider .owl-carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, .75) 10%,
            rgba(0, 0, 0, .35) 50%,
            rgba(0, 0, 0, .60) 100%);
    z-index: 1;
}

#slider .owl-carousel-item img {
    height: 95vh;
    transition: transform 8s ease;
    transform: scale(1);
}

#slider .owl-item.active .owl-carousel-item img {
    transform: scale(1.12);
}

#slider .owl-carousel-text {
    left: 10%;
    z-index: 5;
    max-width: 90%;
}

#slider .owl-carousel-text p {
    font-size: 18px;
    color: #dcdcdc;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-weight: 500;
}

#slider .banner_title {
    line-height: 1.1;
}

#slider .description {
    line-height: 1.9;
    color: rgba(255, 255, 255, .85);
}

/* DEFAULT HIDDEN */
#slider .owl-carousel-text .banner_title,
#slider .owl-carousel-text p,
#slider .owl-carousel-text .description,
#slider .owl-carousel-text a {
    opacity: 0;
}

/* ACTIVE TEXT ANIMATION */
#slider .owl-item.active .banner_title {
    animation: fadeInUp 1s ease forwards;
}

#slider .owl-item.active p {
    animation: fadeInLeft 1.2s ease forwards;
}

#slider .owl-item.active .description {
    animation: fadeInUp 1.5s ease forwards;
}

#slider .owl-item.active a {
    animation: zoomIn 1.8s ease forwards;
}

#slider .owl-nav {
    display: none;
}

/* =========================== ANIMATIONS =========================== */

@keyframes fadeInUp {

    0% {
        opacity: 0;
        transform: translateY(80px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {

    0% {
        opacity: 0;
        transform: translateX(-80px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {

    0% {
        opacity: 0;
        transform: scale(.6);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/*----------------------------------------------- about css  ------------------------*/
#about .shape2 {
    right: -20px;
    bottom: -20px;
    z-index: -1;
    animation: float-bob-x 4s ease-in-out infinite;
}

@keyframes float-bob-x {

    0% {
        transform: translateX(-30px);
    }

    50% {
        transform: translateX(-10px);
    }

    100% {
        transform: translateX(-30px);
    }
}

#about .col-lg-6:first-child {
    transform: translateX(-60px);
    opacity: 0;
    animation: slideInLeft 1s ease forwards;
}

#about .col-lg-6:last-child {
    transform: translateX(60px);
    opacity: 0;
    animation: slideInRight 1s ease forwards;
    animation-delay: 0.3s;
}

#about .about-img-1 {
    transition: all 0.5s ease;
    animation: floatAbout 5s ease-in-out infinite;
}

/* Image hover effect */
#about .about-img-1:hover {
    transform: scale(1.05);
}

#about .cs_faq_thumb .cs_faq_thumb_1 {
    padding: 0 25% 75px 0;
    z-index: 2;
}

#about .cs_faq_thumb .cs_faq_thumb_1 img {
    border-radius: 30px 0 0;
    border: 5px solid #ed2128;
}

.cs_faq_thumb .cs_faq_thumb_2 {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    padding-left: 46%;
    z-index: 3;
}

.cs_faq_thumb .cs_faq_thumb_2_in {
    position: relative;
}

.cs_faq_thumb .cs_faq_experience_box {
    width: 137px;
    height: 156px;
    left: 30%;
    margin-left: 5px;
    bottom: 100%;
    background: #293181;
}

.cs_faq_thumb .cs_faq_thumb_2 img {
    border: 5px solid #ed2128;
    border-right: 0;
    border-bottom: 0;
    border-radius: 5px 0 30px 0;
}

.cs_faq_thumb .cs_thumb_text {
    bottom: 35px;
    left: -40px;
    width: 330px;
    height: 275px;
    background-color: #293181;
    border-radius: 30px 0 0 0;
    padding-left: 60px;
    padding-bottom: 6px;
}

.cs_faq_thumb .cs_thumb_text:before {
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -40px;
    height: 80px;
    width: 1px;
    left: 20px;
    background-color: #fff;
}

#about .text-justify {
    text-align: justify;
}

/* ===== Button Animation ===== */
#about .btn {
    background: #20773f;
    color: #fff;
    transition: all 0.3s ease;
}

#about .btn:hover {
    background: #ffc737;
    color: #000;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.animate-title {
    animation: fadeUp 1.2s ease-in-out;
}

@keyframes fadeUp {

    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }

}

/* ===== Keyframes ===== */
@keyframes slideInLeft {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes floatAbout {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}

.mission_text ul,
.mission_text ol {
    display: flex;
    flex-wrap: wrap;
}

.mission_text ul li,
.mission_text ol li {
    text-align: center;
    display: flex;
    align-items: center;
    margin-top: 30px;
    background: #293181;
    padding: 20px 20px 20px 25px;
    border-radius: 10px;
    border: 1px solid #eee;
    position: relative;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.mission_text ul li:hover,
.mission_text ol li:hover {
    background: #ed2128;
}

.mission_text ul li:hover .icon,
.mission_text ol li:hover .icon {
    border: 2px solid #293181;
    background: #293181;
}

.mission_text ul,
.mission_text ol,
.mission_text li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mission_text ul li .icon,
.mission_text ol li .icon {
    border: 2px solid #ed2128;
    background: #ed2128;
    font-size: 25px;
    margin-right: 30px;
    width: 95px;
    height: 60px;
    line-height: 60px;
    border-radius: 10px;
    text-align: center;
    color: #fdfcfc;
    transform: rotate(45deg);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

.mission_text ul li .text h4,
.mission_text ol li .text h4 {
    text-align: left;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: capitalize;
    color: #f9f9f9;
}

.mission_text ul li:nth-child(2),
.mission_text ol li:nth-child(2) {
    left: 100px;
}

.mission_text ul li .text p,
.mission_text ol li .text p {
    text-align: left;
    color: #fffefe;
}

.mission_text ul li .icon i,
.mission_text ol li .icon i {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
}

/* ================= FEATURE SECTION ================= */
.feature-card {
    border-radius: 25px;
    transition: 0.4s ease;
    animation: floatCard 4s ease-in-out infinite;
}

.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #293181 0%, #ed2128 100%);
    opacity: 0;
    transition: .4s;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .15);
}

.feature-card .content {
    position: relative;
    z-index: 2;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, .1);
}

.feature-icon::before {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px dashed rgba(0, 0, 0, 0.5);
    animation: rotateBorder 10s linear infinite;
}

.feature-icon img {
    width: 40px;
    position: relative;
    z-index: 2;
    transition: .4s;
}

.feature-card:hover .feature-icon img {
    transform: scale(1.1) rotate(8deg);
}

.feature-title {
    font-weight: 700;
}

/* Animations */
@keyframes rotateBorder {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes floatCard {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* ================= EXPERIENCE SECTION ================= */
.experience-section {
    background: #f7f7f7;
    border-radius: 60px 0px 0px 0px;
}

.experience-wrapper {
    background: #f3f3f3 url('https://themexriver.com/wp/builta/wp-content/uploads/2024/05/e1-bg2.webp');
    background-size: cover;
    background-position: center;
    padding: 45px 60px;
    border-radius: 40px 40px 0px 0px;
    position: relative;
}

.experience-border {
    position: absolute;
    inset: 25px;
    border: 2px dashed #ed2128;
    border-radius: 35px;
    z-index: 1;
}

.experience-item {
    position: relative;
    z-index: 2;
}

.experience-number {
    font-size: 95px;
    line-height: .9;
    font-weight: 800;
    color: #ed2128;
    margin-bottom: 0;
}

.experience-sub {
    position: absolute;
    left: 60px;
    top: 20%;
    background-color: #fff;
    z-index: 2;
    font-size: 15px;
    font-weight: 500;
}

.experience-text {
    font-size: 18px !important;
    line-height: 1.7;
    color: #111;
    margin-top: 18px;
}

.experience-img {
    left: -32px;
    position: relative;
    max-height: 250px;
    object-fit: contain;
}

.bridge-anim {
    animation: bridgeFloat 5s ease-in-out infinite;
    transform-origin: center;
}

@keyframes bridgeFloat {

    0% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-15px) scale(1.03);
    }

    100% {
        transform: translateY(0) scale(1);
    }

}

.counter {
    transition: .4s;
}

.experience-item:hover .experience-number {
    transform: scale(1.05);
}

/*----------------------------------------------- testimonial css  ------------------------*/
.testimonial-section {
    position: relative;
}

/* Soft pattern overlay */
.testimonial-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../img/p-1-bg.webp");
    z-index: -1;
}

#testimonial .card {
    transition: 0.3s ease;
}

#testimonial .card:hover {
    transform: translateY(-5px);
}


/*----------------------------------------------- contact-section css  ------------------------*/
#contact-section {
    padding-top: 10%;
    padding-bottom: 4%;
    background: #1f4e3d;
}




/*----------------------------------------------- blog css  ------------------------*/
#blog {
    position: relative;
}

/* Soft pattern overlay */
#blog::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../img/pattern_2.png");
    opacity: 0.11;
    z-index: -1;
}

#blog .card {
    padding: 5px 8px;
}

#blog .date-badge {
    position: absolute;
    bottom: 0px;
    right: 0px;
    background: #ed2128;
    color: #fff;
    font-weight: bold;
    text-align: center;
    padding: 8px 10px;
    /* border-radius: 6px; */
    line-height: 1.1;
    font-size: 14px;
}

.buil-news-card-1-btn-wrap {
    display: flex;
}

.buil-news-card-1-btn {
    margin-top: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 20px 5px 0px;
    border-radius: 5px;
    box-shadow: inset 0 0 #ed2128;
    transition: all 0.4s ease;
}

.buil-news-card-1-btn i {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: #ed2128;
    font-size: 24px;
    line-height: 0;
    color: #000000;
    transition: all 0.3s ease;
}

.buil-news-card-1-btn span {
    font-size: 18px;
    font-weight: 500;
    line-height: 38px;
    transition: all 0.3s ease;
}

.buil-news-card-1-btn:hover {
    gap: 0px;
    box-shadow: inset 12em 0 #ed2128;
}

/*----------------------------------------------- footer css  ------------------------*/
#footer {
    position: relative;
}

#footer .footer-overlay {
    padding-top: 30px;
    background-color: transparent;
    background-image: linear-gradient(160deg, #ef6906 0%, #ef6906 100%);
    opacity: 1;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.footer-copyright {
    background: #293181;
}

#footer .social-menu li {
    font-size: 25px;
}

#footer .widgettitle {
    color: #000;
}

.social-menu .fa-whatsapp {
    color: #25D366;
}

.social-menu .fa-instagram {
    color: #E4405F;
}

.social-menu .fa-facebook {
    color: #1877F2;
}

.social-menu .fa-youtube {
    color: #FF0000;
}

/* ===== Title Shine Effect ===== */
#footer .widgettitle {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

#footer .widgettitle::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: footerShine 4s infinite;
}

/* ===== Social Icons Animation ===== */
#footer .social-menu li {
    font-size: 25px;
    transition: all 0.3s ease;
}

#footer .social-menu li:hover {
    transform: translateX(8px);
}

/* Individual Icon Hover Glow */
.social-menu i {
    transition: all 0.3s ease;
}

.social-menu i:hover {
    transform: scale(1.3);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

/* ===== Link Hover Slide Effect ===== */
#footer .menu li a {
    position: relative;
    transition: all 0.3s ease;
}

#footer .menu li a:hover {
    padding-left: 10px;
    color: #ffd700 !important;
}

/* ===== Contact Icons Animation ===== */
#footer .textwidget i {
    transition: all 0.3s ease;
}

#footer .textwidget p:hover i {
    transform: rotate(10deg) scale(1.2);
}

/* ===== Keyframes ===== */
@keyframes footerFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes footerShine {
    0% {
        left: -100%;
    }

    50% {
        left: 120%;
    }

    100% {
        left: 120%;
    }
}

/*----------------------------------------------- inner management css  ------------------------*/
#management {
    background: #f8fafc;
}

.management-card {
    background: #fff;
    border-radius: 24px;
    padding: 35px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    animation: fadeUp 0.8s ease;
}

.management-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.management-img {
    overflow: hidden;
    border-radius: 20px;
    height: 100%;
}

.management-img img {
    width: 100%;
    /*height: 380px;*/
    object-fit: cover;
    border-radius: 20px;
    transition: 0.5s ease;
}

.management-card:hover .management-img img {
    transform: scale(1.05);
}

.management-content {
    padding: 10px;
}

.management-content h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111827;
}

.management-content h6 {
    color: #e63137;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.management-content p {
    color: #000;
    line-height: 1.9;
    font-size: 16px;
    margin-bottom: 25px;
}

/*----------------------------------------------- inner team-two css  ------------------------*/
.team-card .team-img {
    width: 250px;
    height: 250px;
    border: 4px solid #e3e1e2;
    border-radius: 50% 50% 0 50%;
    position: relative;
    z-index: 2;
}

.team-content {
    margin-top: -190px;
    padding: 220px 25px 25px;
    border-radius: 12px;
    transition: .4s;
    background: #d5d6dd;
}

.team-card:hover .team-content {
    background: #ed2128 !important;
    color: #fff;
}

.social-box {
    top: 30px;
    right: 20px;
    z-index: 2;
}

.share-btn {
    width: 45px;
    height: 45px;
    background: #ff5e14;
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: #fff;
    color: #222;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .08);
}

/*----------------------------------------------- inner gallery css  ------------------------*/
#galleryspage #gallery::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 0px;
    background: url(../img/pattern.webp) repeat;
}

#galleryspage #gallery {
    background: #fff;
}

#galleryspage #gallery .image-gallery__col {
    position: relative;
    box-shadow: rgba(100, 100, 111, 0.15) 0px 7px 29px 0px;
}

#galleryspage #gallery .image-gallery__col .gallery_title {
    background: #fff;
    width: 100%;
}

#galleryspage #gallery .image-gallery__col .gallery_title h2 {
    font-size: 20px;
    font-weight: bold;
}

#galleryspage #gallery .image-gallery__col .gallery_img_box {
    overflow: hidden;
    position: relative;
}

#galleryspage #gallery .image-gallery__col .gallery_img_box img {
    border-radius: 10px 10px 0px 0px;
    transition: transform 0.8s ease;
}

/* Smooth Zoom + Slide Animation */
#galleryspage #gallery .image-gallery__col .gallery_img_box:hover img {
    transform: scale(1.12) translateX(8px);
}

/* Shine Effect */
#galleryspage #gallery .image-gallery__col .gallery_img_box::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 40%;
    height: 100%;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.45) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: 0.8s;
    z-index: 2;
}

#galleryspage #gallery .image-gallery__col .gallery_img_box:hover::before {
    left: 130%;
}

.image-gallery__col .description {
    position: absolute;
    left: -12px;
    bottom: 47px;
    background: #293181;
    padding: 6px 25px 6px 25px;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 600;
    color: #fffdfd;
    border-radius: 0px 4px 4px 4px;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.image-gallery__col .description p {
    margin-top: 0;
    margin-bottom: 0px;
}

.image-gallery__col .description::after {
    position: absolute;
    content: "";
    top: -19px;
    left: 0px;
    z-index: 1;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-right: 13px solid #ed2128;
    border-bottom: 0 solid transparent;
}

/*----------------------------------------------- inner service css  ------------------------*/
#service {
    background: #f8fbff;
}

/* Main Card */
#service .card {
    border: 0;
    border-radius: 24px;
    overflow: hidden;
    transition: .3s;
}

#service .card:hover {
    transform: translateY(-4px);
}

/* Main Image */
.service-main-img {
    height: 420px;
    width: 100%;
    object-fit: cover;
}

/* Recent Posts */
.hover-card {
    transition: .3s;
    border: 1px solid #edf2ff !important;
}

.hover-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .08);
}

.recent-post-img img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
}

.recent-link {
    transition: .3s;
}

.recent-link:hover {
    color: #0d6efd !important;
}

/* Services */
.service-box {
    transition: .3s;
    border: 1px solid #e9ecef !important;
}

.service-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 .75rem 1.5rem rgba(0, 0, 0, .08);
}

.service-odd {
    background: #fff;
}

.service-even {
    background: #eef4ff;
}

@media(max-width:576px) {

    .service-main-img {
        height: 250px;
    }

}

/*----------------------------------------------- inner client css  ------------------------*/
#client .card {
    position: relative;
    box-shadow: 0px 0px 4px 3px #cfcfcf;
}

#client .card .title {
    position: absolute;
    left: -12px;
    bottom: 0px;
    font-size: 12px;
    background: #293181;
    padding: 6px 6px 6px 6px;
    color: #fffdfd;
    border-radius: 0px 4px 4px 4px;
}

#client .card .title::after {
    position: absolute;
    content: "";
    top: -19px;
    left: 0px;
    z-index: 1;
    border-top: 20px solid transparent;
    border-right: 13px solid #ed2128;
    border-bottom: 0 solid transparent;
}


/*----------------------------------------------- inner carrier css  ------------------------*/
.career-card {
    border-radius: 24px;
    transition: all 0.35s ease;
    overflow: hidden;
    background: #fff;
    position: relative;
}

.career-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #293181, #20266d);
    transform: scaleX(0);
    transition: 0.4s ease;
    transform-origin: left;
}

.career-card:hover::before {
    transform: scaleX(1);
}

.career-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12) !important;
}

.career-description {
    line-height: 1.8;
}

.btn-primary {
    background: linear-gradient(135deg, #293181, #1f2568);
    border: none;
    transition: 0.3s ease;
}

.btn-primary:hover {
    transform: translateX(5px);
}

.form-control:focus {
    border-color: #293181;
}
