* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --main-color: #173130;
    --to-color: #4c2a2c;
    --bg: #f7efe6;
}

body{
    direction: ltr !important;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

h2 {
    color: var(--main-color);
}

h3 {
    color: var(--main-color);
}

a {
    text-decoration: none;
    color: #ffffff;
}


/* Light */
@font-face {
    font-family: "MyFont";
    src: url("../Fonts/itfrayat-Light.otf") format("woff2");
    font-weight: 300;
    font-style: normal;
}

/* Regular */
@font-face {
    font-family: "MyFont";
    src: url("../Fonts/itfrayat-Regular.otf") format("woff2");
    font-weight: 400;
    font-style: normal;
}

/* Medium */
@font-face {
    font-family: "MyFont";
    src: url("../Fonts/itfrayat-Medium.otf") format("woff2");
    font-weight: 500;
    font-style: normal;
}

/* Bold */
@font-face {
    font-family: "MyFont";
    src: url("../Fonts/itfrayat-Bold.otf") format("woff2");
    font-weight: 700;
    font-style: normal;
}

body {
    font-family: "MyFont", sans-serif;
    direction: rtl;
}


/* header */


header {
    background: linear-gradient(135deg, #1e4d3c 0%, #2a5d4c 100%);
    padding: 1rem 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    position: relative;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #d4b896;
}

.logo img {
    width: 100%;
    height: 60px;
}

nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a:hover {
    color: #d4b896;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: #d4b896;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: #d4b896;
}

.nav-links a.active::after {
    width: 100%;
}


.cta-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-btn {
    background: linear-gradient(135deg, #c9a96e 0%, #d4b896 100%);
    color: #ffffff;
    padding: 6px 19px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 184, 150, 0.4);
}

.icon-button {
    width: 40px;
    height: 40px;
    border: 2px solid #d4b896;
    background: transparent;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.icon-button:hover {
    background: rgba(212, 184, 150, 0.1);
    transform: scale(1.05);
}

.icon-svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #d4b896;
    stroke-width: 2;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: 2px solid #d4b896;
    border-radius: 5px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background: #d4b896;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 1024px) {
    .nav-links {
        gap: 1.8rem;
    }

    .nav-links a {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem;
    }

    .menu-toggle {
        display: flex;
    }

    .logo-text {
        display: none;
    }

    nav {
        position: fixed;
        top: 82px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 82px);
        background: linear-gradient(135deg, #1e4d3c 0%, #2a5d4c 100%);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }

    nav.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 0;
        padding: 2rem 0;
        height: auto;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(212, 184, 150, 0.2);
    }

    .nav-links a {
        display: block;
        padding: 1.2rem 2rem;
        font-size: 16px;
        width: 100%;
    }

    .nav-links a::after {
        display: none;
    }

    .cta-section {
        gap: 0.5rem;
    }

    .contact-btn {
        padding: 0.6rem 1.2rem;
        font-size: 13px;
    }

    .icon-button {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .logo-palm {
        font-size: 20px;
    }

    .contact-btn {
        padding: 0.5rem 1rem;
        font-size: 12px;
    }

    .icon-button {
        width: 32px;
        height: 32px;
    }

    .icon-svg {
        width: 16px;
        height: 16px;
    }
}

.diamond {
    width: 30px;
    height: 30px;
    background-color: transparent;
    border: 1px solid #c2b27b;
    transform: rotate(45deg);
    display: flex;
    justify-content: center;
    align-items: center;
}

.diamond span {
    transform: rotate(-45deg);
    color: white;
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 11px;
}

/* start  hero */
.video_hero .video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video_hero #video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video_hero .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    color: white;
    font-weight: bold;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
}

.video_hero .play-btn.hide {
    opacity: 0;
    pointer-events: none;
}

.video_hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1e4d3c65;
    /* backdrop-filter: blur(1px); */
    transition: 0.3s;
    pointer-events: none;
}

/* start about */

.about-section .wrap {
    display: flex;
    align-items: stretch;
}

.about-section .left-col {
    flex: 1;

}

.about-section .left-col .stack-img {
    width: 100%;
    display: block;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.04);
}

.about-section .left-col .stack-img_main {
    width: 100%;
    display: block;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.04);
}


.about-section .right-col {
    flex: 1;
    max-width: 65%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    color: var(--accent);
}

@media(max-width:991px) {
    .about-section .right-col {
        max-width: 100% !important;
        padding: 24px !important;
        text-align: center !important;
    }
}

.about-section .badge {
    font-weight: 500;
    max-width: 560px;
    font-size: 72px;
    line-height: 1;
    color: var(--main-color);
    font-family: 'Cairo', sans-serif;
}

.about-section .main_span {
    font-size: 25px;
}

.about-section .plus {
    font-size: 34px;
    vertical-align: super;
}

.about-section .small {
    color: var(--main-color);
    margin: 6px 0 24px 0;
    font-size: 38px;
    font-weight: 600;
}

.about-section .heading {
    margin: 0;
    font-size: 28px;
    font-weight: 400;
    color: var(--main-color);
}

.about-section .heading .accent {
    display: block;
    font-weight: 800;
    font-size: 30px;
}

.about-section .desc {
    max-width: 560px;
    color: var(--to-color);
    font-size: 15px;
    line-height: 1.9;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 1000px) {
    .about-section .wrap {
        flex-direction: column;
    }

    .about-section .left-col .stack-img {
        height: calc((520px - 18px) / 3);
    }

    .about-section .badge {
        font-size: 60px
    }
}

.about-section .left-col,
.right-col {
    max-width: 100%;
    width: 100%;
}

.about-section .left-col .stack-img {
    height: 190px;
}

.about-section .left-col .stack-img_main {
    height: 280px;
}

.about-section .right-col {
    text-align: start;
    padding: 28px 160px;
    background-color: var(--bg);
}

.about-section .desc {
    margin-top: 18px;
    padding: 0 10px
}

/* start Real Estate Management */
.real_estate {
    background-image: url("../img/sec3.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 100vh;
}


.main_row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 0 160px;
}

@media(max-width:1500px) {
    .main_row {
        padding: 0;
    }
}

@media(max-width:991px) {
    .main_row {
        grid-template-columns: repeat(1, 1fr);
        padding: 0 !important;
    }

    .real_estate {
        height: 100% !important;
    }
}

.main_row .left-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 460px;
    position: relative;
    z-index: 1;
}

@media(max-width:1500px) {
    .main_row .left-section {
        padding-top: 200px !important;
    }
}

@media(max-width:991px) {
    .main_row .left-section {
        padding-top: 80px !important;
    }
}

.stat-box_main {
    padding-right: 140px;
}


@media(max-width:991px) {
    .stat-box_main {
        padding: 0 !important;

    }
}

.stat-box_main_one {
    margin-bottom: 40px;
}

.stat-box_main_one .stat-text {
    padding-right: 120px;
}

.stat-box_main .stat-text {
    padding-right: 80px;
}

@media(max-width:991px) {
    .stat-box_main .stat-text {
        padding: 0 !important;
    }
}

.main_row .stat-box {
    text-align: center;
}

.main_row .stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    color: #c9a961;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.main_row .stat-text {
    font-size: 1.1rem;
    color: #b8b8b8;
    line-height: 1.6;
    text-align: end;
}

@media(min-width:1600px) {
    .main_row .right-section {
        margin-top: 150px;
        padding-right: 200px !important;
        margin-bottom: 0 !important;
    }
}

.main_row .right-section {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 100px;
    position: relative;
    z-index: 1;
}

.main_row .main-title {
    font-size: 2rem;
    color: #c9a961;
    margin-bottom: 10px;
    font-weight: 300;
}

.main_row .sub-title {
    font-size: 1.9rem;
    color: #c9a961;
    margin-bottom: 60px;
    font-weight: bold;
}

.main_row .section-title {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 30px;
    font-weight: bold;
}

.main_row .description {
    font-size: 14px;
    line-height: 2;
    color: #d0d0d0;
    margin-bottom: 50px;
    text-align: justify;
}

@media(max-width:991px) {
    .main_row .description {
        font-size: 13px;
    }
}

.main_row .download-btn {
    background: #c9a961;
    color: var(--to-color);
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
}

.main_row .download-btn:hover {
    background: #d4b56d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 169, 97, 0.3);
}



@media (max-width: 991px) {

    .main_row .left-section,
    .right-section {
        padding: 50px 30px;
    }

    .main_row .stat-number {
        font-size: 1.5rem;
    }

    .main_row .main-title {
        font-size: 1.5rem;
    }

    .main_row .sub-title {
        font-size: 1rem;
    }

    .main_row .right-section {
        padding: 20px 40px;
    }

    .main_row .section-title {
        font-size: 1.5rem;
    }
}

/* start dimensions  */

.dimensions {
    background-image: url("../img/sec4.png");
    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 100vh;
    background-color: #FDF8EF;
    padding: 40px;
}

.main-title_tow {
    text-align: center;
    font-size: 2.5rem;
    color: var(--main-color);
    padding: 60px 0;
    font-weight: bold;
}

.dimensions .tabs {
    display: flex;
    justify-content: center;
    gap: 50px;

}

@media(max-width:991px) {
    .dimensions .tabs {
        flex-direction: column !important;
    }
}

.dimensions .tab {
    font-size: 14px;
    color: #999;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px 20px;
    position: relative;
}

.dimensions .tab:hover {
    color: #2d2d2d;
}

.dimensions .tab.active {
    color: #2d2d2d;
    font-weight: bold;
}

.dimensions .tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #c9a961;
}

.tab-content .container {
    margin-top: 40px;
}

.dimensions .tab-content {
    display: none;
}

.dimensions .tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.row {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.row .card {
    background: white;
    border-radius: 12px;
    padding: 30px 0;
    width: 280px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.015);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.row .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.row .icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.row .icon svg {
    width: 100%;
    height: 100%;
}

.row .card-title {
    color: #2c3e50;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.row .row-three {
    justify-content: center;
}

.row .row-two {
    justify-content: center;
}


/* start vision */

.vision {
    background-image: url("../img/sec5.png");
    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
    width: 100%;
}



.vision {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 200px;
}



.vision h2 {
    padding: 0;
    color: var(--to-color);
    font-weight: 600;
    font-size: 35px;
}

@media(max-width:991px) {
    .vision {
        min-height: 80px;

    }

    .vision h2 {

        font-size: 25px;
    }
}

/* start fingerprints */

.fingerprints {
    background-image: url("../img/sec6.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 100vh;
}

.fingerprints .heading {
    text-align: center;
    padding: 90px 0;
    font-size: 40px;
    color: #fff;
    font-weight: 400;
}


.fingerprints .heading .accent {
    font-weight: 600;

}

.main_fingerprints img {
    width: 100%;
    height: 500px;
}


/* footer */


footer .main_top_footer {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

footer .main_top_footer .diamond {
    color: #B1A270;
}

footer .main_top_footer .diamond i {
    color: #B1A270;
    transform: rotate(0) !important;
}


footer .main_top_footer a {
    text-decoration: none;
    color: #B1A270;
    font-size: 14px;
}

.footer {
    background: linear-gradient(180deg, #0d3838 0%, #0a2f2f 100%);
    padding: 80px 40px 30px;
    color: #fff;
}

.footer-content {
    display: grid;
    grid-template-columns: 400px 1fr 20px;
    gap: 80px;
    margin-bottom: 50px;
}

/* Logo Section */
.footer-logo-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}



footer .logo-icon {
    font-size: 32px;
    color: #c9a961;
    margin-bottom: 8px;
    display: block;
}

footer .logo-arabic {
    font-size: 38px;
    font-weight: 700;
    color: #c9a961;
    letter-spacing: 6px;
    margin-bottom: 0;
    line-height: 1;
}

footer .logo-english {
    font-size: 32px;
    font-weight: 700;
    color: #c9a961;
    letter-spacing: 12px;
    margin-top: 5px;
    display: block;
}

footer .experience-badge {
    margin-top: 20px;
    margin-bottom: 40px;
}

footer .experience-label {
    font-size: 14px;
    color: #7a9999;
    margin-bottom: 5px;
    font-weight: 300;
}

footer .experience-number {
    font-size: 56px;
    font-weight: 700;
    color: #c9a961;
    line-height: 1;
    display: flex;
    align-items: center;
}

.experience-number img {
    width: 100%;
    height: 100px;
    padding-left: 260px;
}

@media(max-width:991px) {
    .experience-number img {
        padding: 0 !important;
    }
}

footer .experience-text {
    font-size: 16px;
    color: #c9a961;
    margin-top: 5px;
    font-weight: 400;
}

footer .footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    padding-right: 20px;
    padding-top: 30px;
}

footer .link-column {
    text-align: right;
}

footer .link-column_tow {
    display: flex;
    gap: 10px;
}

footer .link-column h3 {
    font-size: 18px;
    font-weight: 500;
    color: #B1A270;
    margin-bottom: 25px;
}

footer .link-column_tow h3 {
    font-size: 18px;
    font-weight: 500;
    color: #B1A270;
    margin-bottom: 25px;
}

footer .link-column ul {
    list-style: none;
}

footer .link-column_tow ul {
    list-style: none;
}


footer .link-column ul li {
    margin-bottom: 15px;
}

footer .link-column_tow ul li {
    margin-bottom: 15px;
}


footer .link-column ul li a {
    color: #B1A270;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.3s;
    display: inline-block;
}

footer .link-column_tow ul li a {
    color: #B1A270;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.3s;
    display: inline-block;
}

footer .link-column ul li a:hover {
    color: #c9a961;
}

footer .link-column_tow ul li a:hover {
    color: #c9a961;
}


/* Contact Section */
footer .footer-contact {
    text-align: left;
    direction: rtl;
}

footer .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: #7a9999;
    font-size: 14px;
}

footer .contact-item i {
    color: #7a9999;
    font-size: 14px;
    width: 16px;
}

footer .contact-item a,
.contact-item span {
    color: #7a9999;
    text-decoration: none;
    transition: color 0.3s;
}

footer .contact-item a:hover {
    color: #c9a961;
}

footer .social-links {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

footer .social-links a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(122, 153, 153, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7a9999;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 14px;
}

footer .social-links a:hover {
    border-color: #c9a961;
    color: #c9a961;
    transform: translateY(-3px);
}

/* Footer Bottom */
footer .footer-bottom {
    text-align: center;
    padding-top: 35px;
    border-top: 1px solid rgba(122, 153, 153, 0.2);
    color: #5a7a7a;
    font-size: 13px;
    font-weight: 300;
}

@media (max-width: 1200px) {
    footer .footer-content {
        /* grid-template-columns: 1fr 1fr; */
        gap: 50px;
    }

    footer .footer-contact {
        grid-column: 1 / -1;
        text-align: center;
        direction: rtl;
    }

    footer .contact-item {
        justify-content: center;
    }

    footer .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 20px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-logo-section {
        align-items: center;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-right: 0;
    }

    .link-column {
        text-align: center;
    }

    .footer-contact {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

.brand-logo img {
    width: 100%;
    height: 120px;
}

/* start register  */

.register {
    padding: 40px 0;
    background-image: url("../img/sec7.png");
}

.register h1 {
    color: #5a4a3a;
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2em;
    font-weight: 600;
}

.register .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.register .form-group {
    margin-bottom: 15px;
}

.register .form-group.full-width {
    grid-column: 1 / -1;
}

.register input,
textarea {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 10px;
    background: rgba(134, 101, 36, 0.265);
    color: #5a4a3a;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.register input::placeholder,
textarea::placeholder {
    color: rgba(90, 74, 58, 0.6);
}

.register input:focus,
textarea:focus {
    outline: none;
    background: rgba(217, 204, 181, 0.7);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.register textarea {
    resize: vertical;
    min-height: 120px;
}

.register .submit-btn {
    width: 100%;
    padding: 15px;
    background: none;
    color: #5a4a3a;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}


.register .submit-btn:active {
    transform: translateY(0);
}

@media (max-width: 600px) {
    .register .form-grid {
        grid-template-columns: 1fr;
    }



    .register h1 {
        font-size: 1.8em;
    }
}

/* start home slider */

.carousel-container .slick-dots li button:before {
    display: none;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    direction: rtl;
}

.carousel-container .carousel-slide {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}


.carousel-container .carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.carousel-container .slide-content {
    position: relative;
    z-index: 2;
    text-align: start;
    color: white;
    padding: 140px;
    max-width: 600px;
}

@media(max-width:991px) {
    .carousel-container .slide-content {
        padding: 30px !important;
    }
}

.carousel-container .slide-header {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.carousel-container .slide-title img {
    width: 50%;

    margin-bottom: 30px;
}

.carousel-container .slide-subtitle {
    font-size: 19px;
    color: #ffffff;
    font-weight: 200;
    margin: 0 20px;
    margin-bottom: 50px;
}

.carousel-container .slide-button {
    background-color: #c9a961;
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-container .slide-button:hover {
    background-color: #c4a028;
}

.carousel-container .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 50px;
    height: 50px;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.carousel-wrapper {
    position: relative;
}

.slick-prev,
.slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 35px;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: 0.3s;
    z-index: 10;
}

.slick-prev:hover,
.slick-next:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #b59a5b;
}

.slick-prev {
    left: 25px !important;
}

.slick-next {
    right: 25px !important;
}

.carousel-container .slick-prev::before,
.slick-next::before {
    display: none;
}

/* Slick Dots Styling */
.carousel-container .slick-dots {
    bottom: 30px;
    display: flex !important;
    justify-content: center;
    list-style: none;
    z-index: 3;
    gap: 30px;
}

.carousel-container .slick-dots li {
    margin: 0 8px;
}

.carousel-container .slick-dots li button {
    width: 30px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    padding: 0;
}

.carousel-container .slick-dots li.slick-active button {
    background-color: #ffffff;
}

@media (max-width: 768px) {
    .carousel-container {
        height: 350px;
    }

    .carousel-container .carousel-slide {
        height: 350px;
    }

    .carousel-container .slide-header {
        font-size: 20px;
    }

    .carousel-container .slide-title {
        font-size: 24px;
    }

    .carousel-container .slide-subtitle {
        font-size: 14px;
    }

    .carousel-container .slick-arrow {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .slick-prev {
        left: 15px;
    }

    .slick-next {
        right: 15px;
    }
}


/* start about  */

.grid_about {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 992px) {
    .grid_about {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .grid_about {
        grid-template-columns: 1fr;
    }
}


.col_grid_about {
    background-image: url("../img/about6.png");
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 80px;
    color: white;
    text-align: center;
    padding-inline: 40px;
}


.col_grid_about h2 {
    color: #b59a5b;
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 30px;
}

.col_grid_about p {
    font-size: 22px;
    line-height: 40px;
    font-weight: 300;
}

@media(max-width:1500px) {
    .col_grid_about {
        height: 100vh !important;
        padding-bottom: 40px;
    }

    .col_grid_about p {
        font-size: 18px;
    }

    .col_grid_about h2 {
        margin-bottom: 20px;
    }
}

.col_grid_one {
    background-image: url("../img/about5.png");
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 80px;
    color: white;
    text-align: center;
    padding-inline: 40px;
}

.col_grid_one h2 {
    color: #ffffff;
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 30px;
}

.col_grid_one p {
    font-size: 22px;
    line-height: 40px;
    font-weight: 400;
}

@media(max-width:1500px) {
    .col_grid_one {
        height: 100vh !important;
        padding-bottom: 40px;
    }

    .col_grid_one p {
        font-size: 18px;
    }

    .col_grid_one h2 {
        margin-bottom: 20px;
    }
}


.col_about_tow {
    background-image: url("../img/about4.png");
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 80px;
    color: white;
    text-align: center;
    padding-inline: 40px;
}


.col_about_tow h2 {
    color: #b59a5b;
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 30px;
}

.col_about_tow p {
    font-size: 22px;
    line-height: 40px;
    font-weight: 400;
}

@media(max-width:1500px) {
    .col_about_tow {
        height: 100vh !important;
        padding-bottom: 40px;
    }

    .col_about_tow p {
        font-size: 18px;
    }

    .col_about_tow h2 {
        margin-bottom: 20px;
    }
}


.col_grid_for {
    background-image: url(../img/about3.png);
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 80px;
    color: white;
    text-align: center;
    padding-inline: 40px;
}



.col_grid_for h2 {
    color: var(--main-color);
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 30px;
}

.col_grid_for p {
    font-size: 22px;
    line-height: 40px;
    color: var(--main-color);
    font-weight: 400;
}

@media(max-width:1500px) {
    .col_grid_for {
        height: 100vh !important;
        padding-bottom: 40px;
    }

    .col_grid_for p {
        font-size: 18px;
    }

    .col_grid_for h2 {
        margin-bottom: 20px;
    }
}


/* start card_bg_about */
.card_bg_about {
    background-image: url("../img/about1.png");
    background-repeat: no-repeat;
    /* background-position:  center; */
    background-size: 100% 100%;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: start;
    line-height: 4.1;
}

@media(max-width:991px) {
    .card_bg_about .container {
        padding: 40px;
    }

    .card_bg_about {
        height: 50vh !important;
    }
}

.card_bg_about h2 {
    font-size: 30px;
    color: #B1A270;
    font-weight: 500;
}



.card_bg_about p {
    font-size: 18px;
    color: #B1A270;
    font-weight: 400;
}


.card_bg_about_tow {
    background-image: url("../img/about2.png");
    /* background-position:  center; */
    background-size: 100% 100%;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: start;
    line-height: 4.1;
    ;
}

@media(max-width:991px) {
    .card_bg_about_tow .container {
        padding: 30px;
    }

    .card_bg_about_tow {
        height: 50vh !important;
    }
}

.card_bg_about_tow h2 {
    font-size: 30px;
    color: #B1A270;
    font-weight: 500;
    text-align: end;
}

.card_bg_about_tow p {
    font-size: 18px;
    color: #B1A270;
    font-weight: 400;
}

/* start mainger */


.mainger {
    background-color: rgb(255, 246, 234);
    padding: 50px 0;
}

.mainger .main_container_about_tow {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media(max-width:991px) {
    .mainger .main_container_about_tow {
        grid-template-columns: 1fr;
    }
}

.mainger .image-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mainger .diamond-frame img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transform-origin: center;
}

.mainger .content-section {
    padding: 20px;
}


.mainger .content-section span {
    font-size: 25px;
    color: #2c4a3e;
    margin-bottom: 30px;
    font-weight: 400;
}


.mainger .content-section h2 {
    font-size: 32px;
    color: #2c4a3e;
    margin-bottom: 30px;
    font-weight: 600;
}

.mainger .content-section h3 {
    font-size: 30px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 500;
    line-height: 1.4;
}

.mainger .content-section p {
    font-size: 15px;
    color: #4a4a4a;
    margin-bottom: 20px;
    text-align: justify;
}

.mainger .signature {
    margin-top: 25px;
    text-align: right;
}

.signature .title {
    font-size: 14px;
    color: var(--to-color);
    margin-bottom: 5px;
}

.mainger .signature .name {
    font-size: 20px;
    color: var(--to-color);
    font-weight: 700;
}

@media (max-width: 968px) {

    .mainger .diamond-frame {
        width: 350px;
        height: 350px;
    }

    .mainger .content-section h1 {
        font-size: 28px;
    }

    .mainger .content-section h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .mainger .diamond-frame {
        width: 280px;
        height: 280px;
    }

    .mainger .content-section h2 {
        font-size: 24px;
    }

    .mainger .content-section h2 {
        font-size: 20px;
    }

    .mainger .content-section p {
        font-size: 15px;
    }
}

/* reliability */

.reliability {
    background-color: #d4d4d4;
}


.reliability img {
    width: 100%;
}

.reliability h2 {
    padding: 14px 50px;
    font-size: 25px;
    color: var(--to-color);
}

.reliability p {
    padding: 0 50px;
    font-size: 17px;
    color: var(--to-color);
    font-weight: 500;
}

/* start Our team */

.our_team {
    text-align: center;
    padding: 30px 0;
}

.our_team .gird_our_team {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    align-items: center;
    justify-items: center;
    padding: 20px;
}


.our_team img {
    width: 100%;
    height: 250px;
}


.titel_our {
    padding-top: 20px;
}

.our_team p {
    color: var(--to-color);
    font-weight: 400;
    font-size: 18px;
}


.our_team h3 {
    color: var(--to-color);
    font-weight: 600;
    font-size: 19px;
}

/* start Our_approach */

.Our_approach {
    background-image: url("../img/about7.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: start;
    line-height: 4.1;
}

.Our_approach_tow {
    background-image: url("../img/about8.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: start;
    line-height: 4.1;
}


.grid_main_about_tow {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: center;
    justify-content: center;
}


@media(max-width:991px) {
    .grid_main_about_tow {
        grid-template-columns: repeat(1, 1fr);

    }
}

.grid_main_about_tow img {
    width: 100%;
    height: 50px;
}

.col_grid_about_tow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.titel_about_grid p {
    font-size: 14px;
    color: #FFF;
    font-weight: 400;
    line-height: 2;
    width: 300px;
}

/* logo-arabic */

.logo-arabic {
    padding: 100px 0;
}


.logo-arabic .grid_logo {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.grid_logo img {
    width: 100%;
    height: 100px;
}

.titel_bribd {
    text-align: center;
    padding-bottom: 40px;
}

.titel_bribd h2 {
    font-size: 2.5rem;
    color: var(--main-color);
    font-weight: bold;
}

.titel_bribd p {
    font-size: 1.2rem;
    color: #555;
    font-weight: 400;
}


/* services */

.banner_services {
    background-image: url(../img/banner_for.png);
    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
    width: 100%;
    height: 50vh;
}

.banner_services_main_top {
    background-image: url(../img/banner_for.png);
    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
}

@media(max-width:991px) {
    .banner_services {
        height: 12px;
        padding: 52px 0 !important;
    }
}

@media(min-width:1600px) {
    .banner_services {
        padding: 200px 0 !important;
        font-size: 60px;
    }
}

.banner_services {
    padding: 100px 0;
    font-size: 50px;
    color: #B1A270;
    font-weight: 500;
}


.banner_services h2 {
    font-size: 50px;
    color: #B1A270;
    font-weight: 500;
}

.banner_services p {
    font-size: 40px;
    color: #B1A270;
    font-weight: 300;
}


@media(max-width:991px) {
    .banner_services h2 {
        font-size: 20px;
    }

    .banner_services p {
        font-size: 15px;
    }
}


.gird_for_as {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

@media(max-width:991px) {
    .gird_for_as {
        grid-template-columns: repeat(1, 1fr);
    }
}

.gird_for_as .grid_col_for {
    background-image: url(../img/bamer.png);
    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
    width: 100%;
    height: 40vh;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.gird_for_as .grid_col_for_tow {
    background-image: url("../img/dd.png");
    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
    width: 100%;
    height: 40vh;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.gird_for_as .grid_col_for_third {
    background-image: url(../img/bannr_three.png);
    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
    width: 100%;
    height: 40vh;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.grid_col_for_top {
    background-image: url(../img/baner_tow.png);
    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
    width: 100%;
    height: 40vh;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.gird_for_as .grid_col_for_third h3 {
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.gird_for_as .grid_col_for_third p {
    text-align: center;
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 10px;
}

.img_col_serivs img {
    width: 100%;
    height: 50px;
}

.titel_gird_col {
    padding-top: 20px;
    text-align: center;
    margin: 0 auto;
    width: 300px !important;
}

.titel_gird_col h3 {
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 10px;
}

.titel_gird_col p {
    text-align: center;
    font-size: 15px;
    font-weight: 400;
    color: var(--main-color);
}

.gird_for_as .grid_col_for_tow h3 {
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.gird_for_as .grid_col_for_tow p {
    text-align: center;
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 10px;
}

.titel_user {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    Padding: 0 30px !important;
}

.titel_user img {
    width: 100%;
    height: 50px;
    padding-top: 10px;
}

.grid_img_user {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media(max-width:991px) {
    .grid_img_user {
        grid-template-columns: repeat(1, 1fr);

    }
}

.main_card_img {
    padding: 70px 0;
}

.main_card_img .titel_user {
    background-color: #bba270;
    margin-top: -20px;
    padding: 15px !important;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.user_tow {
    background-color: var(--main-color) !important;
    margin-top: -20px;
    padding: 15px !important;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.user_tow_main {
    background-color: var(--to-color) !important;
    padding: 15px !important;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.img_user img {
    width: 100%;
    height: 200px;
}

.title_gop h3 {
    font-size: 15px;
    color: var(--main-color);
    font-weight: 300;
    margin-top: 15px;
}

.title_gop p {
    font-size: 18px;
    color: var(--main-color);
    font-weight: 500;
    margin-top: 10px;
}

.user_tow h3 {
    font-size: 15px;
    color: #fff;
    font-weight: 300;
    margin-top: 15px;
}

.user_tow p {
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    margin-top: 10px;
}

.user_tow_main h3 {
    font-size: 15px;
    color: #fff;
    font-weight: 300;
    margin-top: 15px;
}

.user_tow_main p {
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    margin-top: 10px;
}

.grid_col_for_top h3 {
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.grid_col_for_top p {
    text-align: center;
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 10px;
}

/* start join */

.join {
    background-image: url("../img/alo.png");
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: start;
    align-items: center;
}

.join_content {
    padding: 0 40px;
}

.join h2 {
    color: #fff;
    font-size: 33px;
    font-weight: 500;
}


.join p {
    color: #fff;
    font-size: 40px;
    font-weight: 500;
    margin-top: 20px;
}

.join .dme {
    color: #fff;
    font-size: 17px;
    line-height: 2;
    font-weight: 300;
    display: block;
    width: 400px;
}

@media(max-width:991px) {
    .join .dme {
        width: 100%;
    }
}

.join h3 {
    color: #fff;
    font-size: 23px;
    font-weight: 500;
    margin-top: 20px;
}


/* align-content-center */


.align-content-center {
    background-image: url(../img/ww.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 70vh;
    margin: 0;
}


.align-content-center .row_contect {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    align-items: center;
    height: 60vh;
}

.align-content-center .col_contect_main {
    flex: 1 1 300px;
    max-width: 500px;
}

.align-content-center .row_title_top h2 {
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #B1A270;
}

.align-content-center .row_title_top p {
    font-size: 30px;
    color: #B1A270;
    font-weight: 400;
}

.align-content-center .social-icon {
    text-decoration: none;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 30px;
}

@media (max-width: 991px) {
    .cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .cards-container {
        grid-template-columns: repeat(1, 1fr);
    }
}


.cards-container .property-card {
    /* width: 350px; */
    border-radius: 30px;
    overflow: hidden;
    background: #0f2d2a;
}

.cards-container .image-wrapper {
    position: relative;
    height: 400px;
    width: 100%;
}

.cards-container .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cards-container .overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(12, 59, 50, 0.95) 100%);
}

.cards-container .details {
    padding: 25px;
    color: white;
}

.cards-container .details h2 {
    margin: 0 0 20px;
    font-size: 26px;
    color: #fff;
}

.cards-container .info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    opacity: 0.9;
}

.cards-container .progress-section .percent {
    display: block;
    margin-bottom: 8px;
}

.cards-container .progress-bar {
    background: #ffffff40;
    height: 10px;
    border-radius: 20px;
    overflow: hidden;
}

.cards-container .fill {
    height: 100%;
    background: #c7a458;
}

/* sup_projecthtmlse */

.sup_projecthtmlse {
    background-image: url(../img/banner_goop.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: start;
    align-items: center;
    position: relative;
}

.over-lay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000085;
}

.img_main_sup img {
    width: 400px;
    height: 100px;
    margin-bottom: 30px;
}

.sup_msin_sip .main-title {
    color: #5c3a2e;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
}

.sup_msin_sip .subtitle {
    color: #8b7355;
    font-size: 18px;
    font-weight: 400;
}

.sup_msin_sip .content-wrapper {
    display: grid;
    grid-template-columns: 1.6fr 1.4fr;
    gap: 50px;
    margin-bottom: 40px;
    align-items: center;
}

.sup_msin_sip .image-section {
    background: linear-gradient(135deg, #b8a07e 0%, #9d8865 100%);
    border-radius: 5px;
    height: 400px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.sup_msin_sip .details-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sup_msin_sip .details-section img {
    width: 50%;
    height: 60%;
}

.sup_msin_sip .description {
    color: #5c3a2e;
    font-size: 15px;
    line-height: 2;
    text-align: right;
    font-weight: 300;
}

.sup_msin_sip .info-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.sup_msin_sip .info-box {
    border-radius: 12px;
    padding: 25px 35px;
}

.sup_msin_sip .main_top_run {
    border-right: 2px solid #e0cfa8;
}

.sup_msin_sip .info-value {
    color: #5c3a2e;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.sup_msin_sip .info-label {
    color: #8b7355;
    font-size: 14px;
    font-weight: 400;
}

.sup_msin_sip .button-group {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.sup_msin_sip .btn {
    padding: 15px 35px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sup_msin_sip .btn-primary {
    background: linear-gradient(135deg, #b8a07e 0%, #9d8865 100%);
    color: var(--to-color);
    box-shadow: 0 5px 20px rgba(184, 160, 126, 0.3);
    font-weight: 600;
}

.sup_msin_sip .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 25px rgba(184, 160, 126, 0.4);
}


.sup_msin_sip .btn-secondary:hover {
    background: #b8a07e;
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 968px) {
    .sup_msin_sip .content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sup_msin_sip .image-section {
        height: 350px;
    }

    .sup_msin_sip .info-boxes {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .sup_msin_sip .main-title {
        font-size: 26px;
    }

    .sup_msin_sip .subtitle {
        font-size: 16px;
    }

    .sup_msin_sip .button-group {
        flex-direction: column;
    }

    .sup_msin_sip .btn {
        width: 100%;
        justify-content: center;
    }

    .sup_msin_sip .info-value {
        font-size: 28px;
    }
}

.sup_msin_sip .content-wrapper {
    padding: 70px 0 0 0;
}

.sup_msin_sip .button-group {
    padding-bottom: 30px;
}


.sup_projecthtmlse .container_main_sup {
    padding: 0 85px;
}

.container_main_sup h2 {
    font-size: 2.5rem;
    color: #fff;
    font-weight: bold;
    /* padding-right: 160px; */
}

.sup_projecthtmlse .stats-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    justify-content: start;
    gap: 30px;
    align-items: center;
}

.sup_projecthtmlse .stat-item {
    text-align: center;
    padding: 0 20px;
}

.sup_projecthtmlse .stat-item:not(:last-child) {
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.sup_projecthtmlse .stat-number {
    color: #d4a574;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(212, 165, 116, 0.3);
}

.sup_projecthtmlse .stat-label {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0.95;
}

.sup_projecthtmlse .description {
    color: #fff;
    font-size: 15px;
    line-height: 2;
    /* max-width: 85%; */
    font-weight: 300;
    padding: 20px;
}


.sup_projecthtmlse .description p{
    color: #fff !important;
    z-index: 99999999999;
    position: relative;
}

@media (max-width: 768px) {
    .sup_projecthtmlse .stats-banner {
        height: auto;
        min-height: 300px;
    }

    .sup_projecthtmlse .stats-content {
        flex-direction: column;
        padding: 30px 20px 80px;
        gap: 25px;
    }

    .sup_projecthtmlse .stat-item {
        padding: 0;
    }

    .sup_projecthtmlse .stat-item:not(:last-child) {
        border-left: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        padding-bottom: 25px;
    }

    .sup_projecthtmlse .stat-number {
        font-size: 36px;
    }

    .sup_projecthtmlse .stat-label {
        font-size: 14px;
    }

    .sup_projecthtmlse .description {
        bottom: 15px;
        font-size: 11px;
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .sup_projecthtmlse .stat-number {
        font-size: 32px;
    }

    .sup_projecthtmlse .stat-label {
        font-size: 13px;
    }
}

.main_banner_sup {
    background-image: url(../img/map_bamnner.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    height: 100vh;
}


.gellrty {
    background-image: url("../img/gop_map.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: start;
    align-items: center;
}

.main_grid_container_sup {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 0;
    text-align: center;
    padding-right: 110px;
    padding-top: 30px;
}

@media(max-width:991px) {
    .main_grid_container_sup {
        grid-template-columns: 1fr;
        padding-right: 0;
    }
}

.img_sup_virbl img {
    width: 100%;
    height: 60px;
}

.col_sup_container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 0;
    text-align: center;
}

@media(max-width:991px) {
    .col_sup_container {
        grid-template-columns: 1fr;
    }
}

.sup_projecthtmlse .container_main_sup {
    padding: 0 85px;
}

@media(max-width:991px) {
    .sup_projecthtmlse .container_main_sup {
        padding: 0 20px;
    }
}

.main-title_tow_sup {
    padding: 50px 90px;
}

.main_banner_sup h2 {
    color: #afb05e;
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 10px;
}

.main_banner_sup h4 {
    color: #afb05e;
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 20px;
}

.main_banner_sup p {
    color: #afb05e;
    font-size: 16px;
    font-weight: 500;
    width: 390px;
    text-align: justify;
}

.bacrund_main_sup {
    background-image: url("../img/Distinctive_advantages.png");
    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
    width: 100%;
    height: 40vh;
}

.titel_suo {
    text-align: center;
    padding: 40px 0;
}

.grid_suop {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding-top: 40px;
    gap: 20px;
}


.grid_suop h2 {
    font-size: 17px;
}

.titel_suo .tow_sup {
    font-size: 2rem;
    color: var(--main-color);
    font-weight: bold;
}

.main_bacround_top {
    text-align: center;
    padding: 40px 0;
}

.main_bacround_top img {
    width: 50%;
    height: 400px;
    object-fit: contain;
}

.main_bacround_top h2 {
    font-size: 2.5rem;
    color: var(--main-color);
    font-weight: bold;
    margin-bottom: 20px;
}

/* Tabs Container */
.main_ylo_sup_mod .tabs-container {
    background: #0f766e;
    border-radius: 20px;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.main_ylo_sup_mod .tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

@media(max-width:991px) {
    .main_ylo_sup_mod .tabs {
        flex-direction: column !important;
    }
}

.main_ylo_sup_mod .tab {
    flex: 1;
    min-width: 120px;
    padding: 15px 25px;
    border-radius: 15px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    color: white;
}

.main_ylo_sup_mod .tab:hover {
    background: #0d5c55;
}

.main_ylo_sup_mod .tab.active {
    background: #bfaa56;
    color: #0f766e;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
    transform: scale(1.05);
}

/* Content Area */
.main_ylo_sup_mod .content-area {
    margin-top: 30px;
    border-radius: 20px;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main_ylo_sup_mod .content-title {
    font-size: 32px;
    font-weight: bold;
    color: #0f766e;
    margin-bottom: 15px;
    text-align: center;
}

.main_ylo_sup_mod .content-description {
    font-size: 18px;
    color: #6b7280;
    text-align: center;
    margin-bottom: 40px;
}

/* Stats Grid */
.main_ylo_sup_mod .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.main_ylo_sup_mod .stat-card {
    background: linear-gradient(135deg, #e0f2f1 0%, #b2dfdb 100%);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.main_ylo_sup_mod .stat-card:hover {
    transform: translateY(-5px);
}

.main_ylo_sup_mod .stat-value {
    font-size: 36px;
    font-weight: bold;
    color: #0f766e;
    margin-bottom: 10px;
}

.main_ylo_sup_mod .stat-label {
    font-size: 16px;
    color: #374151;
}

.main_ylo_sup_mod .info-box {
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 15px;
    border-right: 5px solid #f59e0b;
}

.main_ylo_sup_mod .info-box p {
    color: #78350f;
    line-height: 1.6;
}

.main_ylo_sup_mod .tab-content {
    display: none;
}

.main_ylo_sup_mod .tab-content.active {
    display: block;
}

.col_main_sup_tow h2 {
    font-size: 3rem;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;

}

.col_main_sup_tow p {
    font-size: 2rem;
    color: var(--main-color);
    font-weight: 600;
    text-align: center;
}

.col_main_sup {
    text-align: center;
    margin: 0 auto;
}

.col_main_sup_tow .img_yo img {
    width: 100%;
    height: 400px;
}

.feature_item {
    position: relative;
}

.col_main_sup_tow img {
    width: 100%;
    height: 150px;
    margin-bottom: 20px;
}

.content-area .row_main_sup_tow_tow {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
    padding: 20px 0;
}

.content-area .row_main_sup h2 {
    font-size: 35px;
    font-weight: 600;
    margin: 0;
    color: #0e2a23;
}

.content-area .row_main_sup h2 span {
    font-size: 40px;
    font-weight: 900;
}

.row_main_sup {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    padding: 20px;
}

@media(max-width:991px) {
    .row_main_sup {
        grid-template-columns: 1fr;
    }
}

.content-area .features_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px 0;
    text-align: center;
}

@media(max-width:991px) {
    .content-area .features_grid {
        grid-template-columns: 2fr;
    }
}

.content-area .feature_item img {
    width: 60px;
    height: auto;
}

.ion_tow {
    position: absolute;
    top: 23px;
    left: 46px;
}

.services-section {
    padding: 50px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    width: 90%;
    margin: auto;
}

.service-card {
    background-image: url(../img/dd.png);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-height: 300px;
}


.main_grid_reliability {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.col_reliability img {
    width: 100%;
    height: 150px;
    object-fit: contain;
}

.service-image img {
    width: 50px;
    height: auto;
    margin: auto;
}

.service-content {
    width: 90%;
    margin: auto;
}

.service-content h3 {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
}

.service-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #fff;
}


/* Image */
.news-body {
    padding: 30px 40px;
}

.news-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

/* Title */
.news-title {
    font-size: 32px;
    font-weight: bold;
    color: #222;
    line-height: 1.4;
    margin-bottom: 15px;
}

/* Meta */
.news-meta {
    display: flex;
    gap: 25px;
    color: #777;
    font-size: 14px;
    margin-bottom: 25px;
}

.news-meta i {
    margin-left: 6px;
    color: var(--main-color);
}

/* Text */
.news-text {
    font-size: 18px;
    line-height: 2;
    color: #444;
    margin-bottom: 20px;
}

/* Share Box */
.share-box {
    margin-top: 35px;
    padding: 20px;
    background: #f7faff;
    border-radius: 12px;
    border: 1px solid #e6ecf2;
}

.share-box h5 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bold;
}

.social-icons a {
    font-size: 20px;
    margin-left: 15px;
    color: var(--main-color);
}

.social-icons a:hover {
    color: #174a99;
}

/* Back Button */
.btn-back {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 28px;
    background: var(--main-color);
    color: #fff;
    border-radius: 50px;
    font-size: 16px;
    transition: 0.3s;
}

.btn-back:hover {
    background: var(--main-color);
}


.main_grid_news_detels {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: center;
}

@media(max-width:991px) {
    .main_grid_news_detels {
        grid-template-columns: repeat(1, 1fr);
    }

}


.main_img_news img {
    width: 100%;
    height: 200px;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}
