@import url("https://fonts.googleapis.com/css?family=Roboto:100,300,400&display=swap");

@font-face {
    font-family: "JF-Flat-Regular";
    src: url(../fonts/JF-Flat-Regular.ttf);
}

/* start theme setup */
:root {
    --main-color: #3B5055;
    --sec-color: #B8987F;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: none !important;
}

* a:hover {
    text-decoration: none;
}

 


@media (min-width: 1360px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1300px;
    }
}

.hide {
    display: none !important;
}

form {
    direction: ltr;
}

body.rtl form {
    direction: rtl;
}

.fixed-icon {
    position: fixed;
    z-index: 99;
    left: 20px;
    top: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;

}

body.rtl .fixed-icon {
    left: unset;
    right: 20px;
}

.fixed-icon a.uptohead {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sec-color);
    color: #fff;
    border-radius: 50%;
    font-size: 30px;
    transform: translateX(-100px);
    transition: all linear .3s;
}

.fixed-icon a.uptohead.flying {
    transform: translateX(0px);
}

body.rtl .fixed-icon a.uptohead {
    transform: translateX(100px);
}

body.rtl .fixed-icon a.uptohead.flying {
    transform: translateX(0px);
}

.fixed-icon a:not(.uptohead) {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    transform: translateX(0px);
    transition: all linear .3s;
    font-size: 40px;
}

.fixed-icon a:not(.uptohead):hover {
    transform: rotate(350deg);
}

iframe, img {
    max-width: 100%;
}

.no-margin {
    margin: 0 !important;
}

.no-padding {
    padding: 0 !important;
}

.centerblock {
    margin: 0 auto;
}

html, body {
    overflow-x: hidden !important;
}

body {
    font-family: JF-Flat-Regular;
    position: relative;
    overflow-x: hidden !important;
    background: linear-gradient(180deg, #216c65, rgba(255, 255, 255, 0) 49.04%, #216c65), #fff;

}

body.rtl {
    text-align: right;
    direction: rtl;
}

a.main-buttonsc, .main-buttonsc {
    background-color: var(--main-color);
    color: #fff;
    font-size: 20px;
    transition: all linear .4s;
    border-radius: 35px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    position: relative;
    justify-content: center;
    height: 55px;
    min-width: 200px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    padding: 0 10px;
}
body:not(.rtl) .main-buttonsc .iconbtnmain{
    transform: rotate(180deg);
}
/* Shine Effect */
.main-buttonsc::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent
    );
    transition: left 0.6s ease;
}

/* Pulse Animation */
.main-buttonsc::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
            circle,
            rgba(255, 255, 255, 0.1) 0%,
            transparent 70%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* الهوفر الجامد */
.main-buttonsc:hover {
    background-color: var(--sec-color);
    box-shadow: 0 0 25px var(--sec-color),
    0 0 50px var(--sec-color),
    0 0 75px rgba(var(--sec-color-rgb, 255, 100, 100), 0.5),
    0 15px 50px rgba(0, 0, 0, 0.5);
    animation: pulse-glow 1.5s infinite;
}

/* Shine يعدي */
.main-buttonsc:hover::before {
    left: 100%;
}

/* Pulse Effect */
.main-buttonsc:hover::after {
    opacity: 1;
    animation: rotate-pulse 2s linear infinite;
}

/* Glow Pulse Animation */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 25px var(--sec-color),
        0 0 50px var(--sec-color),
        0 0 75px rgba(var(--sec-color-rgb, 255, 100, 100), 0.5),
        0 15px 50px rgba(0, 0, 0, 0.5);
    }
    50% {
        box-shadow: 0 0 35px var(--sec-color),
        0 0 70px var(--sec-color),
        0 0 100px rgba(var(--sec-color-rgb, 255, 100, 100), 0.7),
        0 20px 60px rgba(0, 0, 0, 0.6);
    }
}

/* Rotate Pulse */
@keyframes rotate-pulse {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


.mainwheader {
    font-weight: bold;
    font-size: 48px;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0px;
    margin: 0;
}


.mainwheader:after {
    content: " ";
    border: 5px solid #f1f9fe;
    border-radius: 5px;
    width: 100%;
    height: 170%;
    position: absolute;
    z-index: 1;
    margin-inline-start: 30px;
    animation: borderRun 4s linear infinite;

}

/* الانيميشن */
@keyframes borderRun {
    0% {
        border: 5px solid #f1f9fe;
    }
    50% {
        border: 5px solid #cad4dc;
    }
    100% {
        border: 5px solid #f1f9fe;
    }
}

.mainwheader span {
    color: var(--main-color);
    position: relative;
    z-index: 2;
}

.mainwheader span:first-of-type {
    color: #8da0a8;
}

/* end theme setup */


/*Start Search*/
.search-btn {
    font-size: 0;
    cursor: pointer;
    position: relative;
}

.search-area {
    position: absolute;
    right: 0%;
    opacity: 0;
    z-index: 0;
    background-color: transparent;
    transition: all linear .4s;
    width: 300px;
    height: auto;
    top: 125%;
    padding: 0;
    transform: scaleY(0);
    visibility: hidden;
    opacity: 0;
}

body.rtl .search-area {
    right: unset;
    left: 0%;
}

.search-btn svg {
    transition: all linear .4s;
}

.close-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(180deg);
    opacity: 0;
}

.search-btn.active .close-svg {
    transform: translateX(-50%) translateY(-50%) rotate(0deg);
    opacity: 1;
}

.search-btn.active .search-svg {
    transform: scale(.7) rotate(180deg);
    opacity: 0;
}

.search-area.active {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
    z-index: 10;
}


.search-area .search-content {
    height: 100%;
}

#searchform {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.search-area .search-content form input {
    background: #ffffff5c;
    border: 0;
    padding: 0;
    width: 80%;
    height: 50px;
    color: #fff !important;
    text-align: start;
    padding-inline-start: 5px;
    font-weight: 100;
    font-size: 16px;
}

.search-area .search-content form input::placeholder {
    color: #ffffff !important;
    font-size: 16px;
}

.search-area .search-content form button {
    color: #fff;
    border: 0;
    padding: 0;
    background: #ffffff5c;
    width: 20%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-area .search-content form button i {
    font-size: 18px;
}

.inside-header .search-area .search-content form button, .inside-header .search-area .search-content form input {
    background: #3d3f3ca1;
}

.search-butt {
    display: none !important;
}

.search-area .search-content .search-close {
    transition: all linear .4s;
    position: absolute;
    top: 15px;
    left: 2%;
    background: transparent;
    border: 2px solid #9c9da1;
    border-radius: 0%;
    width: 50px;
    height: 50px;
    color: #ffffff;
    padding: 3px 0 0 0;
}

.search-area .search-content .search-close:hover {
    opacity: .5;
    transform: scale(0.9);
}

/* End Search*/

/* Start Scroll */
body::-webkit-scrollbar-track {
    background: #fff;
}

body::-webkit-scrollbar-thumb {
    background-color: var(--sec-color);
    border-radius: 50px;
}

body::-webkit-scrollbar {
    width: .5em;
}

/* end Scroll */

.loade {
    position: fixed;
    width: 100%;
    height: 100%;
    background-repeat: repeat;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: flashbg 1.5s ease-in-out infinite;
    opacity: 1;
}

@keyframes flashbg {
    0% {
        background-color: var(--main-color);
    }
    50% {
        background-color: var(--main-color);
    }
    100% {
        background-color: var(--main-color);
    }
}


@media (min-width: 992px) {
    .main-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        padding: 0;
    }

    .nav-list {
        display: flex;
        margin-bottom: 0;
        gap: 0px;
        list-style: none;
    }

    .nav-list > .link {
        display: flex;
        align-items: center;
        position: relative;
        text-transform: capitalize;
        margin-inline-end: 30px;
    }

    .nav-list > .link:after {
        content: " ";
        width: 1px;
        height: 100%;
        background: #fff;
        position: absolute;
        left: -15px;
        top: 0;
    }
body:not(.rtl) .nav-list > .link:after{
    right: -15px;
    left: unset;
}
    .nav-list > .link:last-of-type {
    }

    .nav-list > .link > a {
        display: block;
        color: #e6e6e6;
        position: relative;
        background: transparent;
        border-radius: 0;
        font-size: 16px;
        margin: 0;
        font-weight: 100;
        transition: ease-in-out .4s;
    }

    .nav-list > .link > a:after {
        contentoff: "";
        width: 100%;
        height: 3px;
        background: #1275b8;
        transition: linear .4s;
        display: block;
        position: absolute;
        right: 0%;
        bottom: 50px;
        border-radius: 0px;
        z-index: -1;
        opacity: 0;
    }

    .nav-list > .link > a:before {
        contentoff: "";
        width: 100%;
        height: 3px;
        background: #1275b8;
        transition: linear .4s;
        display: block;
        position: absolute;
        right: 0%;
        top: 50px;
        border-radius: 0px;
        z-index: -1;
        opacity: 0;
    }

    .nav-list > .link:hover a:after, .nav-list > .link.active a:after, .nav-list > .link:hover a:after, .nav-list > .link.active a:after {
        transition: linear .4s;
        bottom: 0;
        opacity: 1;
    }

    .nav-list > .link:hover a:before, .nav-list > .link.active a:before, .nav-list > .link:hover a:before, .nav-list > .link.active a:before {
        transition: linear .4s;
        top: 0;
        opacity: 1;
    }

    .nav-list > .link:hover a, .nav-list > .link.active a {
        color: var(--sec-color);
        font-weight: bold;
        transition: linear .4s;
    }

    .nav-list > .link:hover a {
        color: var(--sec-color);
        font-weight: bold;
        transition: linear .4s;
    }

    .nav-list > .link.active a {
        color: var(--sec-color);
        font-weight: bold;
        transition: linear .4s;
    }

    .nav-list .link:hover > .sub-list {
        display: block;
    }

    .nav-list .link .sub-list .sub-link {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav-list .link .sub-list .sub-link:hover > .sub-list {
        display: block;
    }

    .has_sub_menu {
        margin-right: 5px;
    }

    .has_sub_menu ~ i {
        width: 15px;
        display: inline-block;
        text-align: center;
        color: #000;
    }

    .sub-list {
        background-color: #fff;
        padding: 20px;
        list-style: none;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
        position: absolute;
        top: 100%;
        min-width: 230px;
        display: none;
        z-index: 4;
        left: 0;
    }

    .sub-list li {
        position: relative;
        margin-bottom: 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid #cacaca;
    }

    .sub-list li a {
        display: block;
        width: 100%;
        position: relative;
        color: #000 !important;
        background: transparent !important;
        text-align: center;
    }

    .sub-list li a:hover {
        color: #1F7979;
    }

    .sub-list li a.has_sub_menu {
        display: inline-block;
        margin-left: 5px;
    }

    .sub-list li:hover {
        border-bottom: 1px solid #1F7979;
    }

    .sub-list li:last-child > a {
        margin-bottom: 0;
    }

    .sub-list .sub-link {
        border-bottom: 1px solid rgba(255, 255, 255, 0.4);
        transition: all .5s linear;
    }

    .sub-list .sub-link:hover {
        background-color: #137e17;
    }

    .sub-list .sub-link:last-child {
        border-bottom: 0;
    }

    .sub-list .sub-list {
        top: 0;
        left: 100%;
    }

    .nav-btn, .mobile-nav-list {
        display: none !important;
    }
}

@media (max-width: 992px) {
    .nav-list {
        display: none;
    }

    .main-nav {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }

    .nav-btn {
        width: auto;
        height: auto;
        background: transparent;
        border: 0;
        border-radius: 0;
        margin: 0;
        color: #fff;
        text-align: center;
        display: flex;
        line-height: normal;
        justify-content: center;
        align-items: center;
        font-size: 26px;
    }

    .nav-btn:hover {
    }

    .mobile-nav-list {
        display: block;
        position: fixed;
        top: 0;
        overflow: scroll;
        z-index: 999;
        height: 100%;
        width: 300px;
        padding: 20px 0 60px 0;
        background-color: #FFF;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
        transform: translateX(100%);
        transition: all .5s linear;
        right: 0;
    }

    .mobile-nav-list .logo {
        padding: 0;
        text-align: center;
        margin-bottom: 25px;
    }

    .mobile-nav-list .date {
        display: flex;
        margin-top: 15px;
        padding: 0 30px;
        flex-direction: column;
        justify-content: center;
        align-items: self-start;
    }

    .mobile-nav-list .date .lang, .mobile-nav-list .date #hijrii {
        margin: 10px 0;
    }

    .mobile-nav-list .l-head {
        justify-content: center;
    }

    .mobile-nav-list .link {
        font-size: 30px;
        padding: 10px 30px;
        position: relative;
    }

    .mobile-nav-list .link a {
        color: #000;
        display: block;
        font-size: 14px;
        width: 100%;
    }

    .mobile-nav-list .link a:hover {
        color: var(--sec);
    }

    .mobile-nav-list .link a.has_sub_menu {
        display: inline-block;
        margin-left: 5px;
    }

    .mobile-nav-list .link i {
        color: #fff;
        background-color: #78dcff;
        display: inline-block;
        width: 30px;
        height: 30px;
        line-height: 30px;
        text-align: center;
        transform-origin: center;
        transition: all .3s linear;
    }

    .mobile-nav-list .link i.open {
        transform: rotate(180deg);
    }

    .mobile-nav-list .link.active a {
        color: var(--sec);
    }

    .sub-list {
        box-shadow: none;
        width: 100%;
        overflow: hidden;
        background-color: transparent;
    }

    .sub-list a {
        display: block;
        position: relative;
    }

    .sub-list .sub-link {
        border: 0;
        padding: 5px 20px;
        font-size: 14px;
        position: relative;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        white-space: nowrap;
    }

    .sub-list .sub-list a {
        display: block;
        position: relative;
        padding-right: 15px;
    }

    .trans-none {
        transform: none !important;
    }

    .nav-overlay {
        display: block;
        position: fixed;
        top: 0;
        z-index: 4;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.4);
        transition: all .5s ease-in-out;
        left: 0;
        transform: translateX(-100%);
    }
}


/*  start header*/

header {
    padding: 25px 0 0;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 3;
    background-color: transparent;
    box-shadow: none;
}

.logo img {
    max-height: 50px;
}


header.inside-header {
    position: relative;
    padding: 30px 0;
    top: unset;
    left: unset;
    right: unset;
    border: unset;
}

header .main-buttons {
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: end;
    gap: 10px;
}


.lang-switcher {
    display: flex;
    align-items: center;
    gap: 3px;
    position: relative;
    cursor: pointer;
}

.lang-switcher ul {
    position: absolute;
    top: 90%;
    background: #00000070;
    padding: 15px;
    right: 50%;
    width: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transform: translateY(-10px);
    visibility: hidden;
    opacity: 0;
    border-radius: 2px;
    transition: all linear .4s;
}

.lang-switcher:hover ul {
    transform: translateY(0px);
    visibility: visible;
    opacity: 1;
}

.lang-switcher ul li {
    list-style: none;
}

.lang-switcher ul li a {
    color: #fff;
    transition: all linear .4s;
}

.lang-switcher ul li a:hover {
    color: var(--sec-color);
}

.lang-switcher > span {
    font-size: 16px;
    color: #e6e6e6;
    margin: 0 7px;
    transition: all linear .4s;
}

.lang-switcher:hover > span {
    color: var(--sec-color);
}

.lang-switcher:hover > svg {
    filter: brightness(0) saturate(100%) invert(74%) sepia(4%) saturate(2445%) hue-rotate(345deg) brightness(85%) contrast(88%);
}


.left-header {
    height: 100%;
}

.logo {
    text-align: center;
    margin-bottom: 40px;
}


/* end header */


/* start hero section */
.allheaderhome {
    position: relative;
    padding-bottom: 125px;
    height: 100vh;
    background-size: 100% 100%;
}

.allheaderhome:after {
    content: " ";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: #3B5055CC;
}

.jerosecall {
    position: relative;
    z-index: 2;
    margin-top: 55px;
    text-align: center;
}

.jerosecall-top {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.jerosecall-top h1 {
    margin: 0;
    font-size: 24px;
    color: #fff;
}

.jerosecall-top h2 {
    font-size: 34px;
    color: var(--sec-color);
    margin: 0;
}

.jerosecall-top .jerosecall-topdes {
    font-size: 24px;
    color: #e6e6e6;
    max-width: 45%;
    margin: 0 auto;
    line-height: 40px;
}

.jerosecall-bottom {
    display: flex;
    justify-content: center;
    margin-top: 35px;
    gap: 20px;
}

.jerosecall-bottom a {
    font-size: 18px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 12px 30px;
    min-width: 200px;
    border-radius: 45px;
    backdrop-filter: blur(10.9px);
    border: 1px solid transparent;
    transition: all linear .4s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* النص الأصلي */
.jerosecall-bottom a::after {
    content: attr(data-hover);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.jerosecall-bottom a:first-of-type {
    background-color: var(--sec-color);
}

.jerosecall-bottom a:last-of-type {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: #fff;
}

/* الهوفر القوي */
.jerosecall-bottom a:first-of-type:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid #fff;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5),
    0 0 60px rgba(255, 255, 255, 0.3),
    0 10px 40px rgba(0, 0, 0, 0.4);
    transform: translateY(-3px);
}

.jerosecall-bottom a:last-of-type:hover {
    background-color: var(--sec-color);
    border-color: var(--sec-color);
    box-shadow: 0 0 30px var(--sec-color),
    0 0 60px var(--sec-color),
    0 10px 40px rgba(0, 0, 0, 0.4);
    transform: translateY(-3px);
}

/* حركة النص */
.jerosecall-bottom a:hover {
    color: transparent;
}

.jerosecall-bottom a:hover::after {
    top: 0;
    color: #fff;
}


/* end hero section */


/* start about */

.aboutsec {
    position: relative;
    margin-top: 80px;
}

.aboutsecimg {
    height: 100%;
}

.aboutsecimg img {
    border-radius: 25px;
    height: 100%;
}

.aboutsectxt h2 {
    font-size: 28px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 15px;
}

.aboutsectxt h2 span:last-of-type {
    color: var(--main-color);
}

.aboutsectxt .desabout {
    font-size: 20px;
    color: #e6e6e6;
    text-align: justify;
    line-height: 35px;
    margin-bottom: 25px;
}

.boabout {
    margin-top: 40px;
}

.conhdr {
    height: 100%;
    flex: 1;
    width: 100%;
    position: relative;
    box-shadow: 0px 8px 40px rgba(184, 152, 127, 0.08), 0px 4px 24px rgba(59, 80, 85, 0.16);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 24px;
    gap: 12px;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../img/bg-conhdr.png);
    transition: all linear .2s;
}

.conhdr:hover {
    transform: scale(1.05);
}

.conhdr-tp {
    display: flex;
    align-items: center;
    gap: 15px;
}

.conhdr-icn {
    width: 80px;
    height: 80px;
    background: var(--main-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all linear .4s;
}

.conhdr:hover .conhdr-icn {
    background-color: var(--sec-color);
}

.conhdr-icn img {
    max-width: 50px;
}

.conhdr-tp h3 {
    margin: 0;
    color: var(--main-color);
    font-size: 20px;
    font-weight: bold;
}

.conhdr-bott {
    font-size: 16px;
    color: #333;
}

/* end about */

/* start services */

.servsec {
    margin-top: 80px;
}

.servsec .hderserv {
    margin-bottom: 40px;
    text-align: center;
}

.servsec .hderserv h2 {
    font-size: 34px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 15px;
}

.servsec .hderserv p {
    color: var(--main-color);
    font-size: 24px;
    max-width: 60%;
    margin: 0 auto;
}


#serviceTabs {

    gap: 15px;
    margin-top: 30px;
   justify-content: center;
}

/* التنسيق العام للتابات */
.seercontnt .nav-tabs .nav-link {
    position: relative;
    box-shadow: 0px -24px 15.1px -22px rgba(0, 0, 0, 0.25) inset;
    border-radius: 11px 11px 0px 0px;
    background-color: rgba(255, 255, 255, 0.24);
    border-top: 1px solid #a4a4a4;
    border-right: 1px solid #a4a4a4;
    border-left: 1px solid #a4a4a4;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px 30px;
    font-size: 18px;
    color: #686868;
    transition: 0.3s;
    cursor: pointer;
}
body:not(.rtl) .seercontnt .nav-tabs .nav-link{
    padding: 13px 16px;
    font-size: 16px;
}
.seercontnt .nav-tabs .nav-link.active {
    background-color: #f2f2f7;
    border-top: 1px solid #a4a4a4;
    border-right: 1px solid #a4a4a4;
    border-left: 1px solid #a4a4a4;
}

/* إدارة التابات بالأنيميشن */
.tab-pane {
    display: block !important; /* السماح بالأنيميشن */
    height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s;
}

.tab-pane.active-pane {
    height: auto;
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
}

/* كارت الخدمة */
.service-card {
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: 0.4s;
    border-radius: 40px;
    cursor: pointer;
}


.service-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all linear .3s;
    transform: scale(1.05);
    border-radius: 40px 40px 0px 0px;
}

.service-card:hover img {
    transform: scale(1);
}

.service-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    gap: 15px;
    text-align: center;
    font-size: 20px;
}

.service-image {
    position: relative;
    overflow: hidden;
}

.service-body .service-title {
    position: relative;
    font-size: 20px;
    color: #333;
    text-align: center;
    margin-bottom: 0;
}

.service-body a {
    position: relative;
    font-size: 20px;
    color: var(--sec-color);
    text-align: center;
    font-weight: bold;
    border-bottom: 2px solid;
    padding-bottom: 0;
}


/* أنيميشن التدرج (Stagger) للكروت داخل التاب النشط */
.active-pane .service-card {
    animation: fadeInUp 0.6s forwards;
}

.active-pane .col-md-4:nth-child(1) .service-card {
    transition-delay: 0.1s;
}

.active-pane .col-md-4:nth-child(2) .service-card {
    transition-delay: 0.2s;
}

.active-pane .col-md-4:nth-child(3) .service-card {
    transition-delay: 0.3s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.seercontnt {
    position: relative;
    backdrop-filter: blur(10.9px);
    border-radius: 24px;
    background-color: rgba(255, 255, 255, 0.09);
    border: 1px solid #a4a4a4;
    flex-shrink: 0;
    font-size: 20px;
    color: #333;
}

.seercontnt .tab-content {
    position: relative;
    border-radius: 24px 0px 24px 24px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid #a4a4a4;
    text-align: center;
    font-size: 20px;
    color: #333;
    padding: 40px;
}


.btnssrev {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
}


a.main-buttonsc.ssebt, .main-buttonsc.ssebt {
    background-color: var(--sec-color);
    padding: 0 15px;
}

a.main-buttonsc.thsebt, .main-buttonsc.thsebt {
    background-color: transparent;
    border: 1px solid var(--sec-color);
    color: var(--sec-color);
}

a.main-buttonsc.thsebt:hover, .main-buttonsc.thsebt:hover {
    background-color: var(--sec-color);
    color: #fff;
}

/* end services */


/* Start why us */

.whyussec {
    margin-top: 80px;
}

.whyussec .titwhyusec {
    position: relative;
    font-size: 34px;
    color: var(--sec-color);
    text-align: center;
    margin: 0 auto 40px;
    max-width: 55%;
    line-height: 50px;
}

.whyussec .titwhyusec span {
    color: var(--main-color);
}

.whuuscard {
    position: relative;
    border-radius: 30px;
    height: 100%;
    background-color: var(--main-color);
    overflow: hidden;
}

.whuuscard > img {
    border-radius: 25px 25px 0 0;
    width: 100%;
    height: 225px;
    transition: all linear .3s;
}

.whuuscardtxt {
    border-radius: 0 0 25px 25px;
    padding: 0 25px 25px;
    margin-top: -40px;
}

.icnwhyus {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--sec-color);
    position: relative;
    transition: all linear .3s;
}

.icnwhyus img {
    max-width: 50px;
    transition: all linear .5s;
}

.whuuscard:hover .icnwhyus {
    transform: translateY(-20px);

}

.whuuscard:hover .icnwhyus img {
    transform: scale(.98) rotate(360deg);
}

.whuuscardtxt h4 {
    font-size: 20px;
    color: #fff;
    font-weight: bold;
    margin: 25px 0 10px;
}

.whuuscardtxt p {
    font-size: 16px;
    color: #e6e6e6;
    margin: 0;
}

/* End why us */

/* start clints */

.clints-slider {
    padding: 0 100px;
}

.clints-slider .owl-nav {
    position: absolute;
    width: 100%;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.clints-slider .owl-nav button.owl-prev {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--sec-color);
    color: #fff;
    font-size: 30px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.clints-slider .owl-nav button.owl-next {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--sec-color);
    color: #fff;
    font-size: 30px;
    transform: translateY(-50%) rotate(180deg);
    position: absolute;
    left: 0;
    top: 50%;
}

.clintssec {
    margin-top: 55px;
    position: relative;
    padding: 40px;
    box-shadow: 0px 8px 40px rgba(184, 152, 127, 0.08);
    backdrop-filter: blur(16px);
    border-radius: 92px;
    background-color: rgba(255, 255, 255, 0.16);
    border: 1px solid #b8987f;
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: center;
}

.clintssec .clintheadr h2 {
    font-size: 34px;
    color: #b8987f;
    margin-bottom: 15px;
}

.clintssec .clintheadr p {
    font-size: 20px;
    color: #3b5055;
    max-width: 90%;
    margin: 0 auto;
}

.clintitem {
    position: relative;
    backdrop-filter: blur(10.9px);
    border-radius: 45px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid #b8987f;
    width: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
}

.clintitem img {
    transition: all linear .2s;
}

.clintitem:hover img {
    transform: scale(1.04);
}

/* end clints */

/* start projects */

.projssec {
    margin-top: 80px;
}

.projheder {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.projheder h2 {
    margin: 0;
    font-size: 34px;
    color: var(--sec-color);
}

.projheder p {
    margin: 0;
    font-size: 20px;
    color: var(--main-color);
}

/* تنسيق تابات المشاريع */
.proj-nav-tabs {
    gap: 20px;
}

.proj-nav-tabs .proj-nav-link {
    color: var(--sec-color);
    font-weight: 600;
    transition: 0.3s ease-in-out;
    background: transparent;
    border-radius: 35px;
    border: 1px solid;
    padding: 13px 40px;
}
body:not(.rtl) .proj-nav-tabs .proj-nav-link{
    padding: 13px 20px;
}
.proj-nav-tabs .proj-nav-link.active, .proj-nav-tabs .proj-nav-link:hover {
    background-color: var(--sec-color);
    border-color: var(--sec-color);
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* إدارة ظهور محتوى المشاريع بأنيميشن */
.proj-tab-pane {
    display: block !important;
    height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(25px);
    visibility: hidden;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.proj-tab-pane.proj-active-pane {
    height: auto;
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
}

/* تنسيق كارت المشروع */


/* Stagger Animation لـ 6 كروت */
.proj-active-pane .project-card {
    animation: projFadeIn 0.6s forwards;
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
}

.project-image-wrapper {
    border-radius: 40px;
    overflow: hidden;
}

.project-image-wrapper img {
    border-radius: 40px;
    width: 100%;
    transition: all linear .2s;
}

.project-body {
    border-radius: 40px;
    background-color: #3B505599;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    padding: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.project-title {
    font-weight: bold;
    color: #fff;
    font-size: 24px;
}

.project-card:hover .project-btn.main-buttonsc {
    background-color: var(--sec-color);
    border: 1px solid var(--sec-color);
    animation: pulse-glow 1.5s infinite;
}


.project-card:hover .project-btn.main-buttonsc::after {
    opacity: 1;
    animation: rotate-pulse 2s linear infinite;
}


.project-card:hover img {
    transform: scale(1.03);
}


.proj-active-pane .col-md-4:nth-child(1) .project-card {
    transition-delay: 0.1s;
}

.proj-active-pane .col-md-4:nth-child(2) .project-card {
    transition-delay: 0.2s;
}

.proj-active-pane .col-md-4:nth-child(3) .project-card {
    transition-delay: 0.3s;
}

.proj-active-pane .col-md-4:nth-child(4) .project-card {
    transition-delay: 0.4s;
}

.proj-active-pane .col-md-4:nth-child(5) .project-card {
    transition-delay: 0.5s;
}

.proj-active-pane .col-md-4:nth-child(6) .project-card {
    transition-delay: 0.6s;
}

@keyframes projFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.project-btn.main-buttonsc {
    backdrop-filter: blur(10.9px);
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid #fff;
}

.project-btn.main-buttonsc:hover {
    background-color: var(--sec-color);
    border: 1px solid var(--sec-color);
}

.proj-tab-pane .row .col-md-4:nth-of-type(odd) .project-card .project-image-wrapper img {
    height: 680px;
}

.proj-tab-pane .row .col-md-4:nth-of-type(even) .project-card .project-image-wrapper img {
    height: 410px;
}

.proj-tab-pane .row .col-md-4:nth-of-type(5) .project-card {
    margin-top: calc(410px - 680px);
}


/* end projects */

/* start steps projects */

.stpsprjsec{
  margin-top: 80px;
}
.stpsprjsechdr{
  margin-bottom: 40px;
  text-align: center;
}
.stpsprjsechdr h2{
  font-size: 34px;
  margin-bottom: 0;
  color: var(--main-color);
}
.stpsprjsechdr h2 span{
  color: var(--sec-color);

}
.stpsprjsecitm{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.imsgtjd{
  position: relative;
  animation: floating-up-down 3s ease-in-out infinite;
}
@keyframes floating-up-down {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px); /* يرتفع 20 بكسل */
  }
  100% {
    transform: translateY(0); /* يعود لمكانه */
  }
}
.imsgtjd:after{
  content: " ";
  width: calc(100% - 70px);
  height: 4px;
  background-color: var(--main-color);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 100%;
  right: unset;
}
body.rtl .imsgtjd:after{
  left: unset;
  right: 100%;
}
.stpsprjsectxt .row:not(.flex-row-reverse) .col-md-4:last-of-type .imsgtjd:after{
  display: none;
}
.stpsprjsectxt .row.flex-row-reverse .col-md-4:first-of-type .imsgtjd:after{
  display: none;
}

.stpsprjsectxt .row:not(.flex-row-reverse) .col-md-3:last-of-type .imsgtjd:after{
    display: none;
}
.stpsprjsectxt .row.flex-row-reverse .col-md-3:first-of-type .imsgtjd:after{
    display: none;
}

.stpsprjsectxt.momsestps{
    display:none;
}

.stpsprjsecitm img{
  max-height: 250px;
}
.stpsprjsecitm h4{
  font-size: 20px;
  color: var(--main-color);
  margin-top: 15px;
}
.stpsprjsecitm h5{
  font-size: 24px;
  color: var(--main-color);
}
/* end steps projects */

/* start map hp */

.maphom{
  margin-top: 80px;
}
.maphom img{
    max-width: 70%;
}
/* end map hp */


/* start faq */
.faqsec{
  margin-top: 80px;
}
.faqsec h2{
  font-size: 34px;
  color: #3b5055;
  text-align: center;
  margin-bottom: 40px;
}
.faq-item {
  box-shadow: 0px 8px 40px rgba(184, 152, 127, 0.08), 0px 4px 24px rgba(59, 80, 85, 0.16);
  backdrop-filter: blur(16px);
  border-radius: 24px;
  background-color: rgba(255, 255, 255, 0.08);
  padding: 25px;
  margin-bottom: 15px;
  border-radius: 20px;
}
.faq-item.active {

}
.faq-header {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;

}




/* ====== Custom Neon Pagination with Your Colors ====== */

#pagination-container {
    margin-top: 50px;
}

#pagination-container .col-12 {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
    padding: 0 16px;
    font-size: 15px;
    font-weight: 700;
    color: var(--main-color);
    background: rgba(59, 80, 85, 0.05);
    border: 2px solid rgba(59, 80, 85, 0.2);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    position: relative;
}

.page-numbers:hover {
    color: #fff;
    background: var(--main-color);
    border-color: var(--main-color);
    transform: scale(1.1);
    box-shadow: 
        0 0 20px rgba(59, 80, 85, 0.6),
        0 0 40px rgba(59, 80, 85, 0.4),
        0 8px 25px rgba(59, 80, 85, 0.3);
}

.page-numbers.current {
    color: #fff;
    background: linear-gradient(135deg, var(--main-color) 0%, var(--sec-color) 100%);
    border-color: transparent;
    box-shadow: 
        0 0 20px rgba(184, 152, 127, 0.7),
        0 0 40px rgba(184, 152, 127, 0.5),
        0 0 60px rgba(184, 152, 127, 0.3),
        0 4px 20px rgba(59, 80, 85, 0.4);
    animation: neonPulse 2s ease-in-out infinite;
}

@keyframes neonPulse {
    0%, 100% { 
        box-shadow: 
            0 0 20px rgba(184, 152, 127, 0.7),
            0 0 40px rgba(184, 152, 127, 0.5),
            0 0 60px rgba(184, 152, 127, 0.3),
            0 4px 20px rgba(59, 80, 85, 0.4);
        transform: scale(1);
    }
    50% { 
        box-shadow: 
            0 0 30px rgba(184, 152, 127, 0.9),
            0 0 60px rgba(184, 152, 127, 0.7),
            0 0 90px rgba(184, 152, 127, 0.5),
            0 6px 25px rgba(59, 80, 85, 0.5);
        transform: scale(1.05);
    }
}

.page-numbers.prev,
.page-numbers.next {
    background: var(--sec-color);
    color: #fff;
    border-color: transparent;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(184, 152, 127, 0.3);
}

.page-numbers.prev:hover,
.page-numbers.next:hover {
    background: var(--main-color);
    box-shadow: 
        0 0 25px rgba(59, 80, 85, 0.7),
        0 0 50px rgba(59, 80, 85, 0.5),
        0 8px 30px rgba(59, 80, 85, 0.4);
    transform: scale(1.15) rotate(5deg);
}

.page-numbers.dots {
    background: transparent;
    border: none;
    color: rgba(59, 80, 85, 0.3);
    pointer-events: none;
}

/* تأثير Glow عند التمرير */
.page-numbers::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--sec-color), var(--main-color));
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    filter: blur(10px);
}

.page-numbers:hover::before {
    opacity: 0.7;
}

/* RTL Support */
[dir="rtl"] .page-numbers.prev:hover {
    transform: scale(1.15) rotate(-5deg);
}

[dir="rtl"] .page-numbers.next:hover {
    transform: scale(1.15) rotate(-5deg);
}

/* Responsive */
@media (max-width: 768px) {
    .page-numbers {
        min-width: 44px;
        height: 44px;
        font-size: 14px;
        padding: 0 12px;
    }
    
    #pagination-container .col-12 {
        gap: 8px;
    }
}

@media (max-width: 576px) {
    .page-numbers {
        min-width: 40px;
        height: 40px;
        font-size: 13px;
        padding: 0 10px;
    }
    
    #pagination-container .col-12 {
        gap: 6px;
    }
    
    .page-numbers.prev,
    .page-numbers.next {
        font-size: 16px;
    }
}

/* تأثير إضافي: خط متوهج تحت الرقم النشط */
.page-numbers.current::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: var(--sec-color);
    border-radius: 10px;
    box-shadow: 0 0 10px var(--sec-color);
}


/* نفس التنسيق للـ Blogs Pagination */
#blogs-pagination {
    margin-top: 50px;
}

#blogs-pagination .col-12 {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

#blogs-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
    padding: 0 16px;
    font-size: 15px;
    font-weight: 700;
    color: var(--main-color);
    background: rgba(59, 80, 85, 0.05);
    border: 2px solid rgba(59, 80, 85, 0.2);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    position: relative;
}

#blogs-pagination .page-numbers:hover {
    color: #fff;
    background: var(--main-color);
    border-color: var(--main-color);
    transform: scale(1.1);
    box-shadow: 
        0 0 20px rgba(59, 80, 85, 0.6),
        0 0 40px rgba(59, 80, 85, 0.4),
        0 8px 25px rgba(59, 80, 85, 0.3);
}

#blogs-pagination .page-numbers.current {
    color: #fff;
    background: linear-gradient(135deg, var(--main-color) 0%, var(--sec-color) 100%);
    border-color: transparent;
    box-shadow: 
        0 0 20px rgba(184, 152, 127, 0.7),
        0 0 40px rgba(184, 152, 127, 0.5),
        0 0 60px rgba(184, 152, 127, 0.3),
        0 4px 20px rgba(59, 80, 85, 0.4);
    animation: neonPulse 2s ease-in-out infinite;
}

#blogs-pagination .page-numbers.prev,
#blogs-pagination .page-numbers.next {
    background: var(--sec-color);
    color: #fff;
    border-color: transparent;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(184, 152, 127, 0.3);
}

#blogs-pagination .page-numbers.prev:hover,
#blogs-pagination .page-numbers.next:hover {
    background: var(--main-color);
    box-shadow: 
        0 0 25px rgba(59, 80, 85, 0.7),
        0 0 50px rgba(59, 80, 85, 0.5),
        0 8px 30px rgba(59, 80, 85, 0.4);
    transform: scale(1.15) rotate(5deg);
}

#blogs-pagination .page-numbers.dots {
    background: transparent;
    border: none;
    color: rgba(59, 80, 85, 0.3);
    pointer-events: none;
}

#blogs-pagination .page-numbers::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--sec-color), var(--main-color));
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    filter: blur(10px);
}

#blogs-pagination .page-numbers:hover::before {
    opacity: 0.7;
}

#blogs-pagination .page-numbers.current::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: var(--sec-color);
    border-radius: 10px;
    box-shadow: 0 0 10px var(--sec-color);
}

@media (max-width: 768px) {
    #blogs-pagination .page-numbers {
        min-width: 44px;
        height: 44px;
        font-size: 14px;
    }
}




/* Projects Pagination */
#projects-pagination {
    margin-top: 50px;
}

#projects-pagination .col-12 {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

#projects-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
    padding: 0 16px;
    font-size: 15px;
    font-weight: 700;
    color: var(--main-color);
    background: rgba(59, 80, 85, 0.05);
    border: 2px solid rgba(59, 80, 85, 0.2);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    position: relative;
}

#projects-pagination .page-numbers:hover {
    color: #fff;
    background: var(--main-color);
    border-color: var(--main-color);
    transform: scale(1.1);
    box-shadow: 
        0 0 20px rgba(59, 80, 85, 0.6),
        0 0 40px rgba(59, 80, 85, 0.4),
        0 8px 25px rgba(59, 80, 85, 0.3);
}

#projects-pagination .page-numbers.current {
    color: #fff;
    background: linear-gradient(135deg, var(--main-color) 0%, var(--sec-color) 100%);
    border-color: transparent;
    box-shadow: 
        0 0 20px rgba(184, 152, 127, 0.7),
        0 0 40px rgba(184, 152, 127, 0.5),
        0 0 60px rgba(184, 152, 127, 0.3),
        0 4px 20px rgba(59, 80, 85, 0.4);
    animation: neonPulse 2s ease-in-out infinite;
}

#projects-pagination .page-numbers.prev,
#projects-pagination .page-numbers.next {
    background: var(--sec-color);
    color: #fff;
    border-color: transparent;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(184, 152, 127, 0.3);
}

#projects-pagination .page-numbers.prev:hover,
#projects-pagination .page-numbers.next:hover {
    background: var(--main-color);
    box-shadow: 
        0 0 25px rgba(59, 80, 85, 0.7),
        0 0 50px rgba(59, 80, 85, 0.5),
        0 8px 30px rgba(59, 80, 85, 0.4);
    transform: scale(1.15) rotate(5deg);
}

#projects-pagination .page-numbers.dots {
    background: transparent;
    border: none;
    color: rgba(59, 80, 85, 0.3);
    pointer-events: none;
}

#projects-pagination .page-numbers::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--sec-color), var(--main-color));
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    filter: blur(10px);
}

#projects-pagination .page-numbers:hover::before {
    opacity: 0.7;
}

#projects-pagination .page-numbers.current::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: var(--sec-color);
    border-radius: 10px;
    box-shadow: 0 0 10px var(--sec-color);
}

@media (max-width: 768px) {
    #projects-pagination .page-numbers {
        min-width: 44px;
        height: 44px;
        font-size: 14px;
    }
}



.faq-title {
  margin: 0;
  font-size: 22px;
  color: var(--main-color);
}
.faq-icon {
  font-size: 20px;
  color: var(--sec-color);
  transition: transform 0.4s ease;
}
.faq-content {
  border-top: 0px solid #f9f9f9;
  margin-top: 15px;
}
.faq-body {
  color: #fff;
  font-size: 22px;
}
.faq-body p{
  margin: 0;
}


/* end faq */

/* start contact sec */

.contactinfo-sec{
    margin-top: 80px;
    padding: 40px;
    box-shadow: 0px 8px 40px rgba(184, 152, 127, 0.08);
    backdrop-filter: blur(16px);
    border-radius: 24px;
    background-color: rgba(255, 255, 255, 0.16);
    width: 80%;
    margin: 0 auto;
}
.home .contactinfo-sec{
     margin-top: 80px;
     width: 100%;
}
.contactinfo-sec h2 , .sdsdhgkb{
    color: var(--main-color);
    font-size: 34px;
    text-align: center;
    max-width: 48%;
    margin: 0 auto 40px;
    line-height: 45px;
}
.contactinfo-sec h2 span , .sdsdhgkb span{
    color: #fff;
}

.form-control , .form-control:focus{
    box-shadow: 0px 8px 40px rgba(184, 152, 127, 0.08);
    backdrop-filter: blur(16px);
    border-radius: 35px;
    background-color: rgba(255, 255, 255, 0.24) !important;
    padding: 25px;
    color: #fff;
    border: 0;
    text-align: left;
    height: 60px;
    padding: 0 25px;
}
body.rtl .form-control , body.rtl  .form-control:focus {
    text-align: right;
}
.form-control::placeholder{
    color: #fff;
}
.form-group textarea{
    resize: none;
    height: 180px !important;
    margin-bottom: 30px;
    padding-top: 20px;
}

.wpcf7-spinner{
    position: absolute;
}
.submsec.main-buttonsc input{
    z-index: 1;
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
    background: transparent;
    border: 0;
    color: #fff;
}
.contxtdes{
    text-align: center;
    color: #fff;
    font-size: 18px;
}
.infconsec{
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 25px;
}
.infconsec a{
    box-shadow: 0px 8px 40px rgba(184, 152, 127, 0.08);
    backdrop-filter: blur(16px);
    border-radius: 24px;
    background-color: rgba(255, 255, 255, 0.24);
    padding: 25px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 24px;
    color: #fff;
}
.social-contact{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.social-contact.infotr{
        justify-content: start;
    gap: 20px;
}
.social-contact a{
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #fff;
    color: var(--main-color);
    font-size: 25px;
    transition: all linear .4s;
}
.social-contact a:hover{
    box-shadow: 0 0 5px 4px #fff;
    background-color: var(--sec-color);
    color: #fff;
    transform: translateY(-5px);
}
/* end contact sec */

/* start banner */

.banner{
    margin-top: 80px;
    background-image: url(../img/bgimg.png);
    background-color: var(--main-color);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 25px;
}
.banner h3{
    color: #fff;
    font-size: 34px;
    max-width: 60%;
    margin: 0;
    font-weight:bold;
}
.banner p{
    margin: 0;
    font-size: 20px;
    color: #fff;
    max-width: 75%;
}
.banner a.main-buttonsc, .banner .main-buttonsc{
    background-color:var(--sec-color);
}


/* end banner */


/* start bg img body */
#decorative-images-container{
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    position: absolute !important;
    pointer-events: none !important;
}
.decorative-img{
    position: absolute;
    max-width: 50%;
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.3s ease;
}
/* End bg img body */


/*start footer */

footer{
    margin-top: 80px;
}
.topfooter{
    border-bottom: 1px solid #fff;
    border-top: 1px solid #fff;
    padding: 45px 0;
}
.rights{
    padding: 35px 0;
    text-align: center;
    color: #fff;
}
.rights a{
    color: var(--sec-color);
}
.logfo{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    text-align: center;
    color: #fff;
    max-width: 90%;
}
.munusfo{
    display: flex;
    justify-content: space-between;
}
.mnuhsdsd{
    display: flex;
    flex-direction: column;
}
.mnuhsdsd h4{
    color: var(--sec-color);
    font-size: 24px;
    margin-bottom: 20px;
}
.mnuhsdsd ul{
    margin: 0;
}
.mnuhsdsd li {
    color: #fff;
    margin-inline-start: 20px;
    margin-bottom: 10px;
}
.mnuhsdsd li a{
    color: #fff;
}
.mnuhsdsd > a{
    color: #fff;
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}
    /*end footer */




/* start Single Page */

.inside-header .row{
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
}
.inside-header .row > .col-lg-12{
    flex: auto;
    max-width: max-content;
}
.inside-header .row .col-lg-2{
    display: none;
}
.inside-header .row > .col-lg-12 .logo{
    margin: 0;
}
.certfitem img{
    width:100%;
}
.bradcrub-bnr{
    padding: 90px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    position: relative;
    padding-top: 50px;
    padding-bottom: 50px;
}
.single-service .bradcrub-bnr .main-buttonsc{
    display:none !important;
}
.bradcrub-bnr:after{
    content: " ";
    background-color: #3b5055eb;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
.bradcrub-bnr > div{
    position: relative;
    z-index: 1;
}
.bradcrubtop{
    color: #fff;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 55px;
}
.bradcrubtop > a{
    color: var(--sec-color);
    font-size: 0px;
}
.bradcrubtop  a{
    color: var(--sec-color);
}
.bradcrubtop > a:after{
    content: "Home";
    font-size: 16px;
}
body.rtl .bradcrubtop > a:after{
    content: "الرئيسية";
}
.bradcrubnres h2{
    font-size: 34px;
    color: var(--sec-color);
    font-weight: bold;
    margin-bottom: 15px;
}
.bradcrubnres p{
    margin: 0;
    color: #e6e6e6;
    max-width: 73%;
    font-size: 22px;
}
.topsideabot{
    margin: 80px 0;
    position: relative;
}
.topsideabot:after{
    content: " ";
    position: absolute;
    top: 40px;
    height: 2px;
    background-color: #fff;
    width: 85%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
.topsideabot:before{
    content: " ";
    position: absolute;
    bottom: 40px;
    height: 2px;
    background-color: #fff;
    width: 85%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
.icnabotu{
    padding-inline-end: 100px;
    position: absolute;
    left: unset;
    right:0;
}
body.rtl .icnabotu{
     left: 0;
     right:unset;
}
.topsideabotimg img{
    width: 100%;
}
.topsideabottxt {
    padding-inline-end: 100px;
    color: #333;
    font-size: 20px;
    line-height: 40px;
    text-align: justify;
}
.htwtopsid{
    text-align: center;
    font-size: 64px;
    color: #3b5055;
    margin-bottom: 20px;
}
.vismois{
    padding: 25px;
    background: var(--secondary);
    border-radius: 100px;
}
.vismoisimg{
    width: 150px;
    height: 150px;
    background: #fff;
    border-radius: 50%;
    padding: 10px;
}
.vismoisimg .thdviimgois{
    background: var(--sec-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.vismoisimg .thdviimgois img{
    max-width: 80px;
}
.vismoistxt h3{

    font-size: 34px;
    color: #fff;
    margin-bottom: 15px;

}
.vismoistxt p{
    margin: 0;
    color: #e6e6e6;
    font-size: 22px;
}
.ourqumgs{
    margin-top: 70px;
    text-align: center;
}
.ourqumgs h3{
    margin-bottom: 50px;
    font-size: 40px;
    color: #3b5055;
}
.ourqumgs .row {
    counter-reset: item-counter;
}

.ourqumgssingitm h4::before {
    counter-increment: item-counter;
    content: counter(item-counter, decimal-leading-zero);
}
.toourqumgs{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
}
.toourqumgs .citkfourqumgs{
    width: 25px;
    height: 25px;
    background: #fff;
    border: 3px solid var(--sec-color);
    border-radius: 50%;
}
.toourqumgs h4{
    padding: 25px;
    color: #fff;
    background: var(--sec-color);
    font-size: 24px;
    border-radius: 20px 20px 0 0;
    margin: 0;
}
.boourqumgs{
    background: var(--main-color);
    padding: 24px;
    border-radius: 20px;
}
.boourqumgs h5{
    font-size: 24px;
    color: var(--sec-color);
}
.boourqumgs h6{
    color: #e6e6e6;
    font-size: 28px;
    margin: 0 auto;
    line-height: 40px;
    max-width: 93%;
}

.wyssd{
    margin-top: 70px;
}
.wyssd > .container{
    border: 1px solid #a4a4a4;
    border-radius: 10px;
    padding-top: 30px;
}
.wyssd h3{
    margin-bottom: 50px;
    font-size: 34px;
    text-align: center;
    color: #3b5055;
}
.wyssditm{
    background: linear-gradient(to left, var(--main-color) 0% 70%, #fff 70% 80%, var(--sec-color) 80% 100%);
    display: flex;
    align-items: center;
    border-radius: 100px;
    padding: 25px;
    justify-content: space-between;
    padding-inline-start: 10px;
}
body:not(.rtl) .wyssditm{
    background: linear-gradient(to right, var(--main-color) 0% 70%, #fff 70% 80%, var(--sec-color) 80% 100%);
}
body:not(.rtl) .topsideabotimg .term-image{

}
.wyssditm h4{
    font-size: 24px;
    color: #fff;
    text-align: center;
    max-width: 60%;
}
.wyssditmimg{
    width: 130px;
    height: 130px;
    background: var(--sec-color);
    border-radius: 50%;
    padding: 5px;
    padding-inline-end: 0;
}
.wyssditmimg img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.banrbtis{
    display: flex;
    align-items: center;
    gap: 20px;
}
.banrbtis a:last-of-type{
    border: 1px solid var(--sec-color);
    background-color: transparent;
    backdrop-filter: blur(10.9px);
}
.banrbtis a:hover:last-of-type{
    background-color : var(--sec-color);
}

.whuuscard.serv{
    box-shadow: 0px 8px 40px rgba(184, 152, 127, 0.08), 0px 4px 24px rgba(59, 80, 85, 0.16);
    backdrop-filter: blur(16px);
    border-radius: 24px;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid #a4a4a4;
    cursor: pointer;
        width: 80%;
    margin: 0 auto;
}
.whuuscard.serv .whuuscardtxt{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.whuuscard.serv .whuuscardtxt h4{
    font-size: 28px;
    color: #3b5055;
    margin: 10px 0 20px 0;
}
.whuuscard.serv .whuuscardtxt p {
    font-size: 18px;
    margin: 0 0  20px 0;
    color: #333;
}
.whuuscard.serv a.main-buttonsc {
    background-color: var(--sec-color);
}
.whuuscard.serv .whuuscard > img{
    height: 300px;
}
.topsideabotimg  .term-image{
    background-color: var(--sec-color);
    border-radius: 300px 0 0 300px;
    position: relative;
    border-inline-end: 20px solid var(--sec-color);
}
body:not(.rtl) .topsideabotimg  .term-image{
    border-radius: 0 300px 300px 0;

}
.sercontssdtxt ul{
    padding-inline-start: 15px;
}
.topsideabotimg  .term-image img{
    border-radius: 300px 0 0 300px;
    max-height: 500px;
}
body:not(.rtl) .topsideabotimg .term-image img{
    border-radius: 0 300px 300px 0;
}
.topsideabotimg  .term-image h3{
position: absolute;
    top: 0;
    color: #fff;
    font-size: 42px;
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000a8;
    border-radius: 300px 0 0 300px;
}

.ouritms.subsertax h3{
    font-size: 34px;
    color: #3b5055;
    text-align: center;
    margin-bottom: 50px;
}
.ouritms.subsertax .whuuscardtxt{
    margin-top: 0;
    padding-top: 30px;
}
.ouritms.subsertax .whuuscardtxt h4{
    font-size: 20px;
    position: relative;
    z-index: 1;
}
.ouritms.subsertax  a.main-buttonsc {
    width: 100%;
}
.sdsdsadf .project-image-wrapper img{
    height: 350px !important; ;
}
.dfvasdfaz{
    position: relative;
    font-size: 34px;
    color: var(--sec-color);
    text-align: center;
    margin: 0 auto 40px;
    max-width: 55%;
    font-weight: bold;
    line-height: 50px;
}
.sercontssd{
    margin-top: 70px;
}
.sercontssdimg img{
    max-height: 300px;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.sercontssd .row:nth-of-type(even){
    flex-direction: row-reverse;
}
.single-service .imsgtjd:after{
    width: 70px;
}
.form-group option{
    color: #000;
}
.map{
    margin-top: 70px;
}
.map iframe{
    width: 100%;
    height: 300px;
    border-radius: 24px;
}

.itmcont{
    background-image: url(../img/bgimg.png);
    background-color: var(--main-color);
    padding: 24px;
    border-radius: 20px;
}
.itmconttit{
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 22px;
    margin-bottom: 10px;
}
.itmcont    span:not(.itmconttit span){
    color: #e6e6e6;
    font-size: 20px;
}
.contacinsigpge{
    margin-top: 70px;
}

.hdrsfaq{
    text-align: center;
    margin-bottom: 30px;
}
.hdrsfaq h3{
    color: var(--sec-color);
    margin-bottom: 15px;
    font-size: 34px;
}
.hdrsfaq p{
    color: #3b5055;
    font-size: 20px;
    max-width: 55%;
    margin: 0 auto;
    line-height: 35px;
}
body:not(.home) .nav-tabs .nav-link{
    border-radius: 45px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid #3b5055;
    color: #3b5055;
    padding: 10px 25px;
}

body:not(.home) .nav-tabs .nav-item.show .nav-link, body:not(.home) .nav-tabs .nav-link.active{
    color: #fff;
    background-color: #495057;
    border-color: transparent;
}

body:not(.home) .nav.nav-tabs{
    gap: 20px;
    margin-bottom: 40px !important;
}

.post-type-archive-faq .faq-body{
    color: var(--sec-color);
}
.post-type-archive-projects .project-card{
    position: relative;
}
.post-type-archive-projects .project-image-wrapper img{
    height: 400px !important;
}
.slider-main{
    margin: 70px 0 100px;
}
.slider-main img{
    width: 100%;
    height: 400px;
    border-radius: 25px;
}
.slider-main .slick-slide{
    margin-inline-end: 30px;
}
.slick-list{
    padding-top: 25px !important;
    height: 450px;
    transition: all linear .4s;
}
.slick-slide{
    transition: all linear .4s;
}
.slick-slide img{
    transition: all linear .4s;
}
.slick-slide.slick-center{
    margin-top: -25px;
}
.slick-slide.slick-center img{
    height: 450px;
}
.slider-main .slick-next{
    right: unset;
    left: 47%;
    bottom: -50px;
    top: unset;
}
.slider-main .slick-prev {
    right: unset;
    left: 53%;
    bottom: -50px;
    top: unset;
}





body:not(.rtl) .slider-main .slick-next{

    left: 53%;
}
body:not(.rtl) .slider-main .slick-prev {
    left: 47%;
}








.slider-main .slick-prev:before, .slider-main .slick-next:before{
    width: 50px;
    height: 50px;
    background-color: #E6E6E6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sec-color);
    border-radius: 7px;
}
.allfnaifkjd{
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    visibility: hidden;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(59, 80, 85, 0.6);
    transition:  linear .4s;
}
.popcons{
    width: 50%;
    height: auto;
    background: #fff;
    padding: 30px 50px;
    border-radius: 24px;
    transition: linear 1s;
    transform: scale(.7);
    opacity: 0;
}
.popcons .form-control, .popcons .form-control:focus{
    box-shadow: 0px 8px 40px rgba(184, 152, 127, 0.08);
    backdrop-filter: blur(16px);
    border-radius: 24px;
    background-color: #e6e6e6 !important;
    color: #000;
}
.popcons .form-control::placeholder, .popcons .form-control:focus::placeholder{
    color: #000;
}
.hdrconsd{
    text-align: center;
    margin-bottom: 30px;
    color: #000;
}
.wilsapl{
    margin: 0;
    text-align: center;
    margin-top: 10px;
}

.popcons  .main-buttonsc{
    width: 100%;
}
.closeicon svg{
    cursor: pointer;
}
.allfnaifkjd.opens{
    z-index: 99999;
    visibility: visible;
    opacity: 1;
    transition:  linear 1s;
}
.allfnaifkjd.opens .popcons{
    transform: scale(1);
    opacity: 1;
    transition:  linear .4s;

}
.certsec , .blogsec{
    margin-top: 70px;
}
.blofdre {
    cursor: pointer;
}
.blofdre img{
    border-radius: 20px 20px  0 0;
}
.blog-content{
    background: #fff;
    padding: 20px;
    border-radius: 0 0 20px 20px;
}
.blog-content .blog-title{
    font-size: 24px;
    color: #3b5055;
}
.blog-excerpt{
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}
.blog-readmore{
    font-size: 20px;
    color: #b8987f;
    border-bottom: 1px solid;
}





.search-form-custom {
    width: 70%;
    margin: 0 auto;
}

.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    flex-direction: row-reverse;
    backdrop-filter: blur(10.9px);
    border-radius: 45px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px solid #3b5055;
}

.search-input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    outline: none;
    font-size: 14px;
    color: #333;
    background: transparent;
}

.search-input::placeholder {
    color: #333;
}

.search-btn {
    padding-inline-start: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

.search-btn:hover {
    opacity: 0.7;
}

.search-btn svg {
    width: 24px;
    height: 24px;
}

/* RTL Support */
html[dir="rtl"] .search-input {
    text-align: right;
}

.datasae{
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    transition: all linear .4s;
    margin-top: 55px;
}
.datasae .itmaldl:last-of-type{
    display:none;
}
.allcomt iframe{
    width: 100%;
    height: 450px;
}
.addtoany_shortcode{
    filter: brightness(0) saturate(100%) invert(5%) sepia(6%) saturate(1383%) hue-rotate(169deg) brightness(96%) contrast(94%);
    margin-bottom: 50px;
}
.addtoany_shortcode>div{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-itemsing{
    background: #3c5559;
    padding: 10px;
    transition: all linear .4s;
}
.blog-itemsing:hover{
    /*background: #00000085;*/
}
.blog-titlesing{
    text-align:center;
}
.blog-titlesing a{
    font-size: 16px;
    color: #fff;
    font-weight: bold;
    transition: all linear .4s;

}
.blog-itemsing:hover a{
    color: #fff;

}

.blog-meta{
    display: flex;
    align-items: center;
    font-size: 14px;
    justify-content: center;
    color: #fff;
    transition: all linear .4s;
}
.post-read-time{
    display:none
}
.blog-itemsing:hover .blog-meta{
    color: #fff;
}
.leftsofdfblogs .section-title{
    font-size: 24px;
    margin-bottom: 15px;
}

.leftsofdfblogs .post-read-time svg{
    opacity: 0;
}
/* End Single Page */


/* Start Responsive */
/* from 992 to 1280 */
/* from 992 to 1280 */
/* from 991 to 360 */
@media (max-width: 991px) {
    
    
    
    .sercontssd .row  {
    flex-direction: column-reverse !important;
            margin-bottom: 40px !important;
}
    
    .mnuhsdsd  {
        margin-top: 30px;
    }
    
    
    
    
    
    
    .whuuscard.serv{ 
        width: 100%; 
    margin: 0 auto;
}
    
    
    
    
    
    
    
    
    
    
    
    .topsideabottxt {
    padding-inline-end: 0;
    margin-top: 30px; 
    font-size: 18px;
line-height: 35px;
    text-align: unset;
}
    
     .contactinfo-sec{ 
     width: 100%;
}



.stpsprjsectxt.desksestps{
    display:none;
}

.stpsprjsectxt.momsestps{
    display:block;
}

.stpsprjsecitm h4{
    font-size: 14px;
}
.stpsprjsecitm h5 {
    font-size: 15px; 
}
.allheaderhome { 
    padding-bottom: 0;
    height: 80vh;
    background-size: cover;
}
.aboutsecimg img {
    border-radius: 15px;
    height: 250px;
    object-fit: fill;
}


    .jerosecall-top .jerosecall-topdes {
        font-size: 15px;
        max-width: 100%;
        line-height: 30px;
    }
    .jerosecall-bottom {
        flex-direction: column;
    }

    .aboutsec {
        margin-top: 30px;
    }
    .aboutsectxt h2 {
        margin: 20px 0;
    }
    .servsec .hderserv h2 {
        font-size: 24px;
    }
    .servsec .hderserv p {
        font-size: 18px;
        max-width: 100%;
    }

    .seercontnt .nav-tabs .nav-link{
        padding: 8px 10px;
        font-size: 16px;
    }
    #serviceTabs {
        gap: 6px;
        margin-top: 30px;
     
    }
    .seercontnt .tab-content{
        padding: 10px;
    }
    .service-card {
        border-radius: 15px;
        margin-bottom: 30px;
    }
    .service-image img {
        height: 200px;
    }
    .servsec {
        margin-top: 30px;
    }
    .btnssrev {
        margin: 20px 0;
        flex-wrap: wrap;
    }
    a.main-buttonsc.thsebt, .main-buttonsc.thsebt { 
    order: -1;
    min-width: 45%
}
a.main-buttonsc.fsebt{
    min-width: 45%  
}
    .whyussec .titwhyusec {
        font-size: 24px;
        margin: 0 auto 30px;
        max-width: 100%;
        line-height: 40px;
    }
    .clintssec {
        padding: 10px;
    }
    .clints-slider .owl-nav {
      
    }
    .clints-slider .owl-nav button{
        width: 40px !important;
    height: 40px !important;
        font-size: 20px !important;
    }
    .clints-slider {
        padding: 30px;
    }
    
    
    .proj-nav-tabs {
    gap: 0px;
}
    .proj-nav-tabs .nav-item {
    margin-bottom: -1px;
    display: inline-flex;
    width: 48%;
    margin: 3px;
}
    .proj-nav-tabs .proj-nav-link { 
    padding: 6px 10px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 12px;
}
    
    
    
    
    
    
    
    
    
    
    
    .project-image-wrapper img {
        height: 300px !important;
    }
    .project-body{
        padding: 25px;
    }
    .proj-active-pane .project-card{
        margin-top: 0 !important;
    }
    .imsgtjd:after{
            width: 30px  !important ; 
    }

.stpsprjsectxt .row .col-md-4:nth-of-type(even) .imsgtjd:after  , .stpsprjsectxt .row .col-md-3:nth-of-type(even)  .imsgtjd:after  {
    display:none;
}
.wyssd .row {
        justify-content: center;
}
.search-form-custom {
    width: 100%; 
}
.single-blogs .bradcrubtop .current-item{
    display:none;
}
    header {
        padding: 10px 0 0;
    }

    header .container .row {
        flex-wrap: nowrap;
    }

    header .container .row .col-lg-8 {
        display: none;
    }


    body * {
        animation-delay: 0s !important;
    }


    .breadcrumb-area {
        margin-bottom: 30px;
        padding: 10px 0;
    }


    .mb-5, .my-5 {
        margin-bottom: 20px !important;
    }

    .mt-5, .my-5 {
        margin-bottom: 20px !important;
    }
    .maphom img {
        max-width: 100%;
    }
    .maphom {
        margin-top: 40px;
    }
    .faq-title{
        font-size: 16px;
    }
    .faq-body {
        font-size: 14px;
    }
    .contactinfo-sec h2, .sdsdhgkb {
        font-size: 27px;
        max-width: 100%;
        margin: 0 auto 40px;
        line-height: 35px;
    }
    .contactinfo-sec {
        margin-top: 30px;
        padding: 10px;
    }
    .contxtdes {
        margin-top: 30px;
    }
    .banner {
        padding: 15px 10px;
    }
    .banner h3 {
        color: #fff;
        font-size: 22px;
        max-width: 100%;
    }
    .whuuscard > img { 
    height: 185px; 
}
    
    .whuuscardtxt { 
    padding: 0 25px 25px;
    margin-top: -30px;
}
    .icnwhyus {
    width: 50px;
    height: 50px; 
}
    
    .icnwhyus img {
    max-width: 40px; 
}
    
    
    .whuuscard.serv .whuuscardtxt h4 {
    font-size: 24px; 
    margin: 5px 0;
}
    
    
    .whuuscard.serv .whuuscardtxt p {
    font-size: 15px;
    margin: 0 0  16px 0; 
}
    
    .whuuscard.serv a.main-buttonsc { 
    min-width: 150px;
    height: 40px;
    font-size: 18px;
}
    body:not(.home) footer{
            background: #28716a;
    }
    
    
    
    .banner p {
        margin: 0;
        font-size: 16px;
        color: #fff;
        max-width: 100%;
    }
    .munusfo {
        flex-direction: column;
    }
    .fixed-icon a.uptohead{
        width: 50px;
        height: 50px;
    }
    .fixed-icon a:not(.uptohead){
        width: 50px;
        height: 50px;
    }

    .bradcrub-bnr {
        padding: 10px;
    }
.tax-services_taxonomy .whuuscard.serv .whuuscardtxt h4 {
    font-size: 22px;
    margin: 0 0 20px 0;
}
.tax-services_taxonomy .whuuscard > img {
    height: 185px;
    object-fit: cover;
}



.single-service .whyussec{
        margin-top: 0;
}












    .bradcrubnres h2 {
        font-size: 24px; 
    }
    .bradcrubnres p {
        max-width: 100%;
        font-size: 19px; 
    }
    .icnabotu , .topsideabot:before , .topsideabot:after{
        display: none;
    }
    .topsideabot {
        margin: 30px 0;
        position: relative;
        padding: 20px;
    }
    .vismois {
        padding: 15px;
        border-radius: 50px;
        text-align: center;
    }
    .vismoisimg {
padding: 4px;
        margin: 0;
        width: 70px;
        height: 70px;
    }
    .vismoisimg .thdviimgois img {
    max-width: 50px;
}
.vismoistxt h3 {
    font-size: 24px; 
    margin-bottom: 8px;
    font-weight: bold;
}
.vismoistxt p {
    margin: 0; 
    font-size: 13px;
    text-align: justify;
}

.boourqumgs { 
    padding: 5px;
    border-radius: 10px;
}
.boourqumgs h5 {
    font-size: 18px; 
}
.boourqumgs h6 { 
    font-size: 17px;
    margin: 0 auto;
    line-height: 27px;
    max-width: 100%;
}



.wyssditm { 
    border-radius: 40px;
    padding: 5px;
    justify-content: space-between;
    padding-inline-start: 10px;
}
.wyssditm h4 {
    font-size: 13px; 
    text-align: center;
    max-width: 60%;
    margin: 0;
}
.wyssditmimg {
    width: 70px;
    height: 70px; 
    padding: 5px;
    padding-inline-end: 0;
}
















.single-service .sercontssd{
        margin-top: 20px;
}





    .ourqumgs h3 {
        margin-bottom: 30px;
        font-size: 30px;
    }
.ourqumgssingitm{
    margin-bottom: 30px;
}
    .htwtopsid {
        text-align: center;
        font-size: 44px;
        color: #3b5055;
        margin: 10px 0;
    }
    .banrbtis {
        flex-direction: column;
    }
    .topsideabotimg .term-image h3{
        font-size: 22px;
    }
    .topsideabotimg  .term-image img {
        max-height: 280px;
    }
.sercontssdtxt{
    margin-inline-start: 20px;
            margin-top: 20px;
}
    .dfvasdfaz {
        font-size: 30px;
        max-width: 100%;
         margin-bottom: 20px;
    }
    .itmcont {
        margin-bottom: 30px;
    }
    .slider-main img{
        height: 300px !important;
    }
    .slider-main .slick-slide {
        margin-inline-end: 0;
    }
    .slick-slide.slick-center{
        margin: 0 !important;
    }
    .slick-list {
        padding-top: 0 !important;
        height: auto;
    }
.slick-arrow{
    display: none !important;
}
    .popcons {
        width: 100%;
        height: auto;
        padding: 10px;
    }
.popcons textarea{
    height: 70px !important;
    margin-bottom: 10px;
}
    .datasae{
        font-size: 8px;
    }
    .hdrsfaq p {
        max-width: 100%;
    }
    .faqsec {
        margin-top: 40px;
    }
.lanemehfob{
    display: flex;
    align-items: center;
    list-style: none;
    gap: 10px;
    padding: 0 30px;
    filter: brightness(0) saturate(100%) invert(0%) sepia(5%) saturate(7500%) hue-rotate(254deg) brightness(94%) contrast(105%);
}

    .jerosecall-top h2{
        font-size: 26px;
    }

    .jerosecall-bottom a{
        font-size: 16px;
    }
    header .container .row .col-lg-12:nth-of-type(2){
        display: none;
    }
    .logo{
        margin-bottom: 0;
    }

    .inside-header .row .col-lg-2{
        display: block;
    }



}
h1,h2,h3,h4,h5,h6{
    font-weight:bold !important;
}

/* from 991 to 360 */
/* End Responsive */



