@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&family=Cairo:wght@200..1000&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lunasima:wght@400;700&display=swap');

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

ul {
    padding-left: 0;
}

ul li {
    list-style: none;
}

a {
    text-decoration: none;
}


body {
    font-family: "Cairo", serif;
}


::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: #f0f0f0;
}

::-webkit-scrollbar-thumb {
    background: #1a3a8f;
}

::-webkit-scrollbar-thumb:hover {
    background: #1a3a8f;
}


.dropdown-toggle::after {
    display: none !important;
}


/* =================== preload ======================*/
.preload {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    object-fit: contain;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9999999999999999;
}


@media(max-width:700px) {
    header .d-flex {
        display: flex !important;
        flex-direction: column;
        text-align: start !important;
        align-items: flex-start !important;
        /* padding-left: 30px; */
        padding-top: 10px;
    }

    .main-link i {
        display: block !important;
    }

    .main-link {
        display: flex;

    }

    .section-tow {
        padding: 0 !important;
    }

    .img-about {
        padding: 0 !important;
    }
}

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

.lang-en .text-about h2 {
    direction: ltr;
    text-align: left;
}

.navbar {
    justify-content: space-between;
    padding-top: 26px;
    padding-bottom: 18px;
    position: fixed;
    z-index: 999999999;
    width: 100%;
    box-shadow: 1px 1px 5px #ddd;
    background-color: #ffff;
}

.navbar-brand {
    position: absolute;
    left: 48%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.menu-left {
    flex-grow: 1;
}

.nav-item .nav-link {
    font-size: 16px;
    font-weight: 600 !important;
    color: #000000;
}


.main-contact {
    border-radius: 50px;
    color: #fff;
    background: linear-gradient(-45deg, #5ADFF6, #0456C3);
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    padding: 10px 20px;
    border: none;
    -o-border-radius: 50px;
    font-weight: 600;
}


   .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    padding: 20px;
}

.flip-card {
    background-color: transparent;
    width: 100%;
    height: 300px;
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 12px;
    overflow: hidden;
}

.flip-card-front {
    background-color: #fff;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flip-card-back {
    transform: rotateY(180deg);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.flip-card-back .background-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: 1;
    filter: brightness(0.4);
}

.flip-card-back .back-content {
    z-index: 2;
    color: white;
    text-align: center;
}

.flip-card-back .back-content h5 {
    font-size: 20px;
    font-weight: bold;
}

.flip-card-back .back-content a {
    padding: 6px 12px;
    font-size: 14px;
    border-radius: 6px;
}



.main-contact i {
    background: linear-gradient(-45deg, #0456C3, #5ADFF6);
    padding: 5px;
    color: #fff;
    font-size: 12px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px
}

@media(max-width:767px) {
    .main-contact i {
        display: none !important;
    }

    /* .main-link i{
        display: none !important;
    } */
}

.main-link i {
    /* background: linear-gradient(-45deg, #0456C3, #5ADFF6); */
    padding: 5px;
    color: #000;
    font-size: 14px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    margin-left: 5px;
    -o-border-radius: 50px;
}


.main-link {
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    text-decoration: none;
}

.main-link::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 0;
    height: 4px;
    background: #1a3a8f;
    transition: width 0.3s ease;
}

.main-link:hover::before {
    width: 100%;
}


.main-contact:hover {
    background: linear-gradient(-45deg, #0456C3, #5ADFF6);
    color: #fff;
}


.navbar-brand {
    padding-bottom: 20px;
}

.navbar-nav .nav-link {
    position: relative;
    color: #000;
    font-weight: 600 !important;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-link i {
    /* background: linear-gradient(-45deg, #0456C3, #5ADFF6); */
    padding: 5px;
    color: #000;
    font-size: 14px;
    margin-left: 5px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 4px;
    background-color: #1a3a8f;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link.active::before,
.navbar-nav .nav-link:hover::before {
    width: 100%;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: linear-gradient(-45deg, #0456C3, #5ADFF6);
}


@media (max-width: 768px) {
    .menu-left {
        flex-grow: 0;
    }

    .navbar-brand {
        position: absolute;
        left: 80%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
    }


    .navbar-brand {
        position: absolute;
        right: 10px;
        top: -5px;
        z-index: 10;
    }



    .navbar-brand img {
        width: 100px;
        padding-top: 0px;
    }
}


/* main  */

/* slider */

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 600px;
    object-fit: cover;
}

@media (min-width: 1400px) {
    .swiper-slide img {
        height: 900px !important;
    }

}


@media (max-width: 500px) {
    .swiper-slide img {
        height: 300px !important;
    }
}

@media(max-width:1700px) {

    .hero-slider {
        height: 80dvh;
    }
}

.hero-slider {
    background-color: #1D1A1B;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100dvh;
    position: relative;
}

.hero-slider h1 {
    font-size: 4rem;
}

.hero-slider .col-lg-10 {
    text-align: left;
}

.hero-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.119) 0%, rgba(0, 0, 0, 0.497) 100%);
    z-index: 2;
    pointer-events: none;
}

/* about */

.section-tow {
    padding: 80px 0;
    background-color: #fff;
}

.text-about {
    text-align: left;
    padding: 20px;
}

.text-about h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
    font-family: 'Architects Daughter', sans-serif;
}

.text-about p {
    font-size: 14px;
    text-align: justify;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.text-about .btn {
    border-radius: 50px;
    color: #fff;
    background: #1a3a8f;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    padding: 10px 20px;
    border: none;
    -o-border-radius: 50px;
    font-weight: 600;
}


.text-about .btn:hover {
    background-color: #1a3a8f;
    color: #000;
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.img-about {
    text-align: center;
    padding: 20px;
}

.img-about img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .text-about {
        text-align: center;
    }

    .text-about h2 {
        font-size: 2rem;
    }

    .text-about p {
        font-size: 0.9rem;
    }

    .img-about img {
        margin-top: 20px;
    }
}


/* prodect */
.products {
    padding: 80px 0;
    background: #1a3a8f;
}

.products h2 {
    color: #fff;
}


.products .product-card img {
    width: 100%;
    height: 300px;
    object-fit: fill;
}


.product-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    -webkit-transition: transform 0.3s ease, box-shadow 0.3s ease;
    -moz-transition: transform 0.3s ease, box-shadow 0.3s ease;
    -ms-transition: transform 0.3s ease, box-shadow 0.3s ease;
    -o-transition: transform 0.3s ease, box-shadow 0.3s ease;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.product-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.title-product {
    position: absolute;
    top: 65%;
    left: 0;
    padding: 10px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    text-align: start;
    opacity: 0;
    transition: opacity 0.3s ease;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
}

.product-card:hover .title-product {
    opacity: 1;
}

.title-product h3 {
    font-size: 24px;
}

.title-product a {
    font-size: 13px;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.title-product p {
    font-size: 14px;
    color: #fff;
    opacity: 0.8;
}

.products h2 {
    font-size: 35px;
    padding: 10px 0;
    text-align: center;
}


/* slider parnds */

.reviews {
    background-color: #fff;
    padding-top: 90px;
    padding-bottom: 70px;
}


.reviews .review {
    border: 1px solid #ffffff28;
}


.reviews .review .header img {
    height: 230px !important;
    max-width: 100%;
    border: none;
    border-radius: 0;
    box-shadow: none;
}




@media (width <=500px) {


    .reviews .review .header .cardHeadline {
        flex-direction: column;
    }

    .reviews .review .header .cardHeadline .rate::before {
        content: none;
    }


    .reviews .review .header .cardHeadline .rate {
        margin-inline-start: 0px;
    }
}

/* contact us */

.dev-contact {
    /* background-color: #f9f9f9; */
    /* margin-top: -70px; */
    /* height: 100vh; */
}



.contact-info {
    padding: 40px 20px;
}

.info-box {
    text-align: center;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    height: 100%;
}

.info-box .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #1a3a8f;
    border-radius: 50%;
}

.info-box .icon i {
    font-size: 24px;
    color: #1a3a8f;
}

.info-box h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.info-box p {
    font-size: 1rem;
    color: #4f4f4f;
    margin: 5px 0;
}

.contact-section {
    /* max-width: 900px; */
    margin: 80px auto;
    border-radius: 10px;
    line-height: 60px;
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.contact-section form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: none;
    border-bottom: 2px solid #ddd;
    padding: 10px 5px;
    font-size: 16px;
    background-color: transparent;
    transition: border-color 0.3s;
    -webkit-transition: border-color 0.3s;
    -moz-transition: border-color 0.3s;
    -ms-transition: border-color 0.3s;
    -o-transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom: 2px solid #007bff;
}

.form-group label {
    position: absolute;
    top: -20px;
    left: 0;
    font-size: 14px;
    color: #555;
}




.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
    text-decoration: none;
}


.btn-submit {
    padding: 12px 20px;
    background: #1a3a8f;
    color: #fff;
    padding: 0;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    -webkit-transition: background-color 0.3s;
    -moz-transition: background-color 0.3s;
    -ms-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #1a3a8f;
}

@media (max-width: 768px) {
    .contact-section {
        margin: 20px;
        padding: 15px;
    }

    .dev-contact {
        padding-top: 70px;
    }
}

/* footer */


footer {
    padding-top: 4rem;
    background-color: #fff;
    border-top: 1px solid #e2e2e2;
}

footer .footerInner {
    display: grid;
    grid-template-columns: 9fr repeat(2, 4fr) 1fr;
    gap: 40px;
    color: #000;
}

footer .footerInner .main .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #000;
}

footer .footerInner .main .logo span.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #333;
    background: linear-gradient(-45deg, #5ADFF6, #0456C3);
    aspect-ratio: 1/1;
    width: 35px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.3rem;
    margin-inline-end: 3px;
}

footer .footerInner .main .logo span:last-of-type {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 3px;
    letter-spacing: 1px;
}

footer .footerInner .main p {
    padding: 20px 0;
    border-bottom: 1px solid #000;
    margin-bottom: 20px;
    font-size: 12px;
}

footer .footerInner .main .social a {
    background: #1a3a8f;
    aspect-ratio: 1/1;
    width: 40px;
    border-radius: 5px;
    color: #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    margin-inline-end: 10px;
    transition: 0.3s all ease-in-out;
    text-transform: capitalize;
    -webkit-transition: 0.3s all ease-in-out;
    -moz-transition: 0.3s all ease-in-out;
    -ms-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
}

footer .footerInner .main .social a:hover {
    background-color: #00000099;
    border: 1px solid #000;
    color: #333;
}

footer .footerInner h4 {
    font-size: 1.5rem;
    font-weight: 100;
    /* text-transform: uppercase; */
}

footer .footerInner .line {
    height: 3px;
    width: 30%;
    border-radius: 5px;
    background: #1a3a8f;
    margin-bottom: 10px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

footer .footerInner .links ul>li>a {
    display: inline-flex;
    padding: 10px 10px;
    padding-inline-start: 0;
    color: #000;
    transition: 0.3s all ease-in-out;
    -webkit-transition: 0.3s all ease-in-out;
    -moz-transition: 0.3s all ease-in-out;
    -ms-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
}

footer .footerInner .links ul>li>a:hover {
    color: #000;
}

footer .footerInner .links ul>li>a::before {
    content: "\f101";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 0.5rem;
    vertical-align: middle;
    margin-inline-end: 10px;
    transition: 0.3s all ease-in-out;
    -webkit-transition: 0.3s all ease-in-out;
    -moz-transition: 0.3s all ease-in-out;
    -ms-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
}

footer .footerInner .links ul>li>a:hover::before {
    margin-inline-end: 15px;
    font-size: 0.6rem;
}

footer .footerInner .contact ul>li>a {
    padding: 10px 0;
    display: grid;
    grid-template-columns: 30px 1fr;
    align-items: center;
    gap: 20px;
    transition: 0.3s all ease-in-out;
    -webkit-transition: 0.3s all ease-in-out;
    -moz-transition: 0.3s all ease-in-out;
    -ms-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
}

footer .footerInner .contact ul>li>a:hover {
    color: #000;
}

footer .footerInner .contact ul>li>a i {
    aspect-ratio: 1/1;
    background: #1a3a8f;
    color: #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

footer .footerInner .contact ul>li>a>span {
    font-size: 1rem;
    /* font-weight: 200; */
    color: #000;
}

footer .footerInner .contact ul>li>a>span span {
    color: #000;
    font-weight: 400;
}

footer .lowerFooter {
    color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-block: 20px;
    margin-top: 3rem;
    /* background: linear-gradient(-45deg, #5ADFF6, #0456C3);  */
    text-transform: capitalize;
}

footer .lowerFooter a {
    color: #000;
}

footer .lowerFooter ul {
    display: inline-flex;
}

footer .lowerFooter ul a {
    padding: 2px 10px;
}

@media (width <=800px) {
    footer .footerInner {
        grid-template-columns: 2fr 1fr;
    }

    footer .footerInner .main {
        order: -1;
    }

    footer .footerInner .contact {
        order: -1;
    }

    footer .footerInner .important {
        order: -1;
    }

    footer .lowerFooter,
    footer .lowerFooter ul {
        justify-content: center;
        align-items: center;
        width: 100%;
        text-align: center;
    }

    footer .lowerFooter ul {
        margin-top: 10px;
    }
}

@media (width <=500px) {
    footer .footerInner {
        grid-template-columns: 1fr;
    }

    footer .footerInner .contact {
        order: 3;
    }
}

footer .footerInner .links ul>li>a::before {
    position: relative;
    top: 5px;
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
}


/* about */
.hero-about {
    background-image: url(../img/hero2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    color: #fff;
    padding: 20px;
    margin: 0;
    position: relative;
    overflow: hidden;
}


.hero-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-about>* {
    position: relative;
    z-index: 2;
}


.text-about h2 {
    font-size: 4rem;
    font-weight: 700;
    /* color: #fff; */
}

.text-about h2 {
    font-size: 4rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.product-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-info {
    padding: 20px;
}

.product-info h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #333;
}

.product-info .category {
    font-size: 16px;
    color: #777;
    margin-bottom: 15px;
}

.product-info .description {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

.ct-breadcrumb {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    display: flex !important;
    justify-content: center;
    gap: 10px;
    gap: 60px;
}

.ct-breadcrumb li {
    font-size: 1.2rem;
}

.ct-breadcrumb li a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease-in-out;
}

.ct-breadcrumb li a:hover {
    color: #007bff;
}

.ct-breadcrumb li span {
    color: #ddd;
}

/* img-prodects */

.prodect-deteles {
    margin-bottom: 20px;
    padding-top: 120px;
    gap: 20px;
}


.deteles {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}


.img-prodects img {
    width: 100%;
    height: 230px;
    /* object-fit: cover; */
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.prodect-titel {
    padding: 20px;
}

.prodect-titel h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.prodect-titel p {
    font-size: 1rem;
    color: #777;
    margin: 10px 0;
}

.price {
    font-size: 1.2rem;
    color: #0056b3;
    font-weight: bold;
    margin-bottom: 15px;
}

.buy-btn a {
    display: inline-block;
    text-decoration: none;
    background: linear-gradient(45deg, #0456C3, #5ADFF6);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}


.shipping-section {
    padding: 50px 20px;
}

.shipping-title {
    color: #1a3a8f;
    font-weight: bold;
}

.shipping-list i {
    color: #1a3a8f;
    margin-left: 8px;
}

.shipping-list li {
    margin-bottom: 15px;
    font-size: 18px;
}

.image-box img {
    width: 100%;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .shipping-title {
        font-size: 24px;
        text-align: center;
    }

    .shipping-subtitle {
        text-align: center;
    }
}



.section-about {
    padding: 90px 0;
    background: #fff;
    overflow: hidden;
}

/* Image wrap */
.about-img-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
}

.about-img-main {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(26,58,143,0.15);
    position: relative;
}

.about-img-main img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about-img-main:hover img { transform: scale(1.04); }

/* Decorative corner block */
.about-img-decor {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 4px solid #1a3a8f;
    border-radius: 12px;
    z-index: -1;
    opacity: 0.3;
}

/* Stat badge */
.about-stat-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: #1a3a8f;
    color: #fff;
    padding: 18px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(26,58,143,0.35);
    text-align: center;
    min-width: 130px;
}

.about-stat-badge .stat-number {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}

.about-stat-badge .stat-label {
    font-size: 12px;
    opacity: 0.85;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Text side */
.about-content { padding-left: 20px; }

.about-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26,58,143,0.08);
    color: #1a3a8f;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 18px;
}

.about-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: #0d1b3e;
    line-height: 1.2;
    margin-bottom: 18px;
}

.about-desc {
    font-size: 15.5px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Features grid */
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 36px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8faff;
    border: 1px solid #e8edf5;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #222;
    transition: all 0.25s;
}

.about-feature-item:hover {
    background: #1a3a8f;
    color: #fff;
    border-color: #1a3a8f;
}

.feature-icon-wrap {
    width: 36px; height: 36px;
    background: rgba(26,58,143,0.1);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: background 0.25s;
}

.feature-icon-wrap i {
    font-size: 15px;
    color: #1a3a8f;
    transition: color 0.25s;
}

.about-feature-item:hover .feature-icon-wrap {
    background: rgba(255,255,255,0.2);
}

.about-feature-item:hover .feature-icon-wrap i { color: #fff; }

/* Button */
.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1a3a8f;
    color: #fff;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid #1a3a8f;
}

.about-btn:hover {
    background: transparent;
    color: #1a3a8f;
}

.about-btn i { font-size: 12px; transition: transform 0.3s; }
.about-btn:hover i { transform: translateX(4px); }

@media (max-width: 991px) {
    .about-content { padding-left: 0; margin-top: 40px; }
    .about-img-main img { height: 350px; }
    .about-stat-badge { left: 10px; }
    .about-features { grid-template-columns: 1fr; }
}

.stats-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-icon {
    color: #25D366;
    font-size: 26px;
    margin-left: -12px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    text-align: right;
    gap: 20px;
    align-items: center;
}

.feature-text {
    font-size: 15px;
}

.btn-primary {
    background-color: #1a3a8f;
    border-color: #1a3a8f;
    padding: 10px 25px;
    font-size: 18px;
}

.btn-primary:hover {
    background-color: #1a3a8f;
    border-color: #1a3a8f;
}

.img-about img {
    border-radius: 8px;
    width: 100%;
    height: auto;
}

.read-more-btn {
    display: inline-block;
    background-color: #1a3a8f;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 20px;
    text-align: center;
}


.stats-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    background-color: #1a3a8f;
    padding: 10px;
}


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

.shipping-title {
    color: #1a3a8f;
    font-weight: 700;
    font-size: 32px;
}

.shipping-subtitle {
    color: #333;
    font-size: 18px;
}

.shipping-list li {
    margin-bottom: 15px;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.shipping-list li i {
    color: #1a3a8f;
    margin-left: 10px;
    font-size: 20px;
}

.image-box img {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}


.contact-section {
    position: relative;
}

.contact-content {
    background-color: #1a3a8f;
    color: white;
    padding: 60px 40px;
    height: 100%;
    text-align: left;
}

.contact-title {
    font-size: 24px;
    margin-bottom: 10px;
    text-align: left;
}

.contact-subtitle {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: left;
}

.contact-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: left;
}

.contact-info {
    display: grid;
    /* grid-template-columns: repeat(2, 1fr); */
    gap: 20px;
}


.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
}

.info-icon i {
    font-size: 15px;
    color: white;
}

.info-title {
    font-weight: 700;
    margin-bottom: 5px;
}

.social-icons {
    display: flex;
    justify-content: flex-end;
    margin-top: 40px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icon i {
    color: #1a3a8f;
    font-size: 18px;
}

.social-icon:hover {
    transform: translateY(-5px);
}

.contact-image {
    width: 100%;
    height: 100vh;
    background-image: url('../img/caucasian-.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media(max-width:1890px)and (min-width:991px){

.contact-image {
    height: 160vh;
    background-position: center center;
}
}



.whatsapp-btn:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .contact-image {
        min-height: 300px;
    }

    .contact-content {
        padding: 40px 20px;
    }

    .contact-subtitle {
        font-size: 32px;
    }
}


.info-item .main-titel {
    display: flex;
    gap: 10px;
    font-size: 10px;
}


.main-titel div{
    font-size: 15px;
}


.custom-section {
    padding: 60px 0;
}

.custom-image {
    max-width: 100%;
    height: 350px;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

.cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.custom-card {
    position: relative;
    background: #fff;
    border: 1px solid #e8edf5;
    border-radius: 12px;
    padding: 36px 28px;
    width: 100%;
    max-width: 380px;
    flex: 1 1 320px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: 0 4px 20px rgba(26,58,143,0.07);
    transition: all 0.3s ease;
    overflow: hidden;
}

.custom-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: #1a3a8f;
    border-radius: 12px 0 0 12px;
}

.custom-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(26,58,143,0.15);
    border-color: #1a3a8f;
}

.card-icon {
    width: 52px; height: 52px;
    background: rgba(26,58,143,0.08);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.3s;
}

.card-icon i {
    font-size: 22px;
    color: #1a3a8f;
}

.custom-card:hover .card-icon {
    background: #1a3a8f;
}

.custom-card:hover .card-icon i {
    color: #fff;
}

.custom-card h5 {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin: 0;
}

.custom-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    flex-grow: 1;
    margin: 0;
}

.custom-card a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #1a3a8f;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border: none;
    padding: 0;
    background: none;
    transition: gap 0.3s;
    width: auto;
}

.custom-card a:hover {
    gap: 10px;
    background: none;
    color: #1a3a8f;
}



.header-main {
    text-align: center;
    margin-bottom: 70px;
}

.small-title {
    color: #333;
    font-size: 18px;
    margin-bottom: 10px;
}

.main-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.green-text {
    color: #1a3a8f;
}

.description {
    max-width: 800px;
    margin: 0 auto 15px;
    font-size: 16px;
    color: #666;
}

.services-grid-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.service-card {
    border: 1px solid #1a3a8f;
    border-radius: 5px;
    padding: 20px;
    height: 250px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.card-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: opacity 0.3s ease;
    z-index: 2;
    position: relative;
}

.card-content h3 {
    color: #1a3a8f;
    margin-bottom: 15px;
    font-size: 18px;
}

.card-content p {
    font-size: 14px;
    color: #666;
}

.card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card:hover .card-content {
    opacity: 0;
}

.service-card:hover .card-image {
    opacity: 1;
}

.button-container {
    text-align: center;
    margin-top: 30px;
}

.contact-button {
    background-color: #1a3a8f;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Tajawal', sans-serif;
    transition: background-color 0.3s ease;
}

.contact-button:hover {
    background-color: #155a41;
}

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

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

    .main-title {
        font-size: 26px;
    }
}



/* تأثير الـ hover مع انيميشن */
.service-card:hover .card-content {
    opacity: 0;
    transform: translateY(-20px);
}

.service-card:hover .card-image {
    opacity: 1;
    transform: scale(1) rotate(0);
    filter: brightness(1);
}

.service-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 110, 80, 0.8) 0%, rgba(26, 110, 80, 0.4) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover .card-image {
    z-index: 2;
}


.service-card:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.card-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.5s ease;
    z-index: 2;
    position: relative;
    backface-visibility: hidden;
}

.card-content h3 {
    color: #1a3a8f;
    margin-bottom: 15px;
    font-size: 18px;
}

.card-content p {
    font-size: 14px;
    color: #666;
}

.card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.8s ease;
    z-index: 1;
    transform: scale(1.2) rotate(5deg);
    filter: brightness(0.8);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card:hover .card-content {
    opacity: 0;
    transform: translateY(-20px);
}

.service-card:hover .card-image {
    opacity: 1;
    transform: scale(1) rotate(0);
    filter: brightness(1);
}

.service-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 110, 80, 0.8) 0%, rgba(26, 110, 80, 0.4) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover .card-image {
    z-index: 2;
}

.button-container {
    text-align: center;
    margin-top: 30px;
}

.contact-button {
    background-color: #1a3a8f;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 19px;
    border-radius: 5px;
    cursor: pointer;
    font-family: "Tajawal", sans-serif;
    transition: background-color 0.3s ease;
}

.contact-button:hover {
    background-color: #155a41;
}




.hero-section {
    position: relative;
    width: 100%;
    height: 65vh;
    min-height: 300px;
    background-image: url('../img/caucasian-.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 0 20px;
}

.main-title {
    color: #2ecc71;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.3;
}

.description {
    color: #000000;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
}


.description-2 {
    color: #ffffff;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.cta-button {
    background-color: #2ecc71;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Tajawal', sans-serif;
    font-weight: 600;
    margin-top: 30px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background-color: #27ae60;
    transform: translateY(-3px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.whatsapp-button {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 100;
}


.whatsapp-button a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.whatsapp-button i {
    font-size: 30px;
}

@media (max-width: 768px) {
    .main-title {
        font-size: 2rem;
    }

    .description {
        font-size: 1rem;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .whatsapp-button a {
        width: 50px;
        height: 50px;
    }

    .whatsapp-button i {
        font-size: 25px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.6rem;
    }

    .hero-section {
        min-height: 500px;
    }
}



.stats-section {
    padding: 30px 0;
    position: relative;
    overflow: hidden;
    margin-top: 20px;
    background-color: #f6f6f6;

}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: radial-gradient(#f0f0f0 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.5;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stats-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 20px;
}

.icon {
    font-size: 40px;
    color: #2a6e51;
    margin-bottom: 15px;
}

.number {
    font-size: 42px;
    font-weight: 700;
    color: #2a6e51;
    margin-bottom: 10px;
}

.description {
    font-size: 16px;
    color: #2a6e51;
    font-weight: 500;
}

@media (max-width: 992px) {
    .stats-grid {
        justify-content: center;
    }

    .stat-item {
        flex-basis: 40%;
    }
}

@media (max-width: 768px) {
    .stat-item {
        flex-basis: 100%;
    }
}



.page-banner {
    position: relative;
    width: 100%;
    height: 380px;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,20,60,0.85) 0%, rgba(26,58,143,0.6) 100%);
    z-index: 1;
}

/* legacy support - only hide old page banners overlay, not hero */
.page-banner .banner-overlay { display: none; }

.banner-content,
.page-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.banner-title,
.page-banner-content h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 14px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    color: #fff;
}

.breadcrumb,
.page-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    background: none;
    padding: 0;
}

.breadcrumb-link,
.page-breadcrumb a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-link:hover,
.page-breadcrumb a:hover { color: #fff; }

.breadcrumb-separator,
.page-breadcrumb i { color: rgba(255,255,255,0.5); font-size: 10px; }

.breadcrumb-current,
.page-breadcrumb span { color: #fff; font-weight: 600; }

@media (max-width: 768px) {
    .page-banner { height: 280px; }
    .banner-title, .page-banner-content h1 { font-size: 2rem; }
}

@media (max-width: 480px) {
    .page-banner { height: 240px; }
}


.products-section {
    margin-bottom: 40px;
    margin-top: 40px;
}

.section-header {
    margin-bottom: 40px;
    position: relative;
    text-align: center;
}


.main-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    line-height: 1.4;
}

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

.product-card {
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

/* تجاوب مع الشاشات المتوسطة */
@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .main-title {
        font-size: 2rem;
    }
}

/* تجاوب مع الشاشات الصغيرة */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .main-title {
        font-size: 1.8rem;
    }
}

/* تجاوب مع الشاشات الصغيرة جداً */
@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

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

    .section-header::before {
        right: -15px;
    }
}



.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.image-container {
    position: relative;
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.w-100 {
    width: 100%;
}

.primary-image,
.secondary-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.5s ease;
}

.secondary-image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.product-card:hover .primary-image {
    opacity: 0;
}

.product-card:hover .secondary-image {
    opacity: 1;
}


@media(min-width:1600px){

}

.main-section-tow {
    padding: 60px 0;
    background: #f8faff;
}

@media(max-width: 991px) {
    .main-section-tow {
        padding: 40px 0;
    }
}



/* ===== NEWS & BLOG SECTION ===== */
.news-section {
    padding: 90px 0;
    background: #fff;
}

.section-head {
    text-align: center;
    margin-bottom: 55px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26,58,143,0.08);
    color: #1a3a8f;
    font-size:22px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 30px;
    margin-bottom: 14px;
}

.section-desc {
    font-size: 15px;
    color: #666;
    max-width: 600px;
    margin: 10px auto 0;
    line-height: 1.7;
}

/* Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 45px;
}

/* Card */
.news-card {
    display: flex;
    flex-direction: column;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e8edf5;
    box-shadow: 0 4px 20px rgba(26,58,143,0.06);
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(26,58,143,0.14);
    border-color: #1a3a8f;
}

.news-card-img {
    position: relative;
    height: 210px;
    overflow: hidden;
}

.news-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-card-img img { transform: scale(1.07); }

.news-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,20,60,0.5) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}

.news-card:hover .news-card-overlay { opacity: 1; }

.news-card-body {
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.news-card-body h3 {
    font-size: 16px;
    font-weight: 700;
    color: #0d1b3e;
    line-height: 1.4;
    margin: 0;
    transition: color 0.3s;
}

.news-card:hover .news-card-body h3 { color: #1a3a8f; }

.news-card-body p {
    font-size: 13.5px;
    color: #666;
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

.news-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #1a3a8f;
    font-size: 13px;
    font-weight: 700;
    margin-top: 4px;
    transition: gap 0.3s;
}

.news-card:hover .news-read-more { gap: 10px; }
.news-read-more i { font-size: 11px; }

/* CTA button */
.section-btn-wrap { text-align: center; }

.section-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1a3a8f;
    color: #fff;
    padding: 13px 32px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    border: 2px solid #1a3a8f;
    transition: all 0.3s;
}

.section-btn:hover {
    background: transparent;
    color: #1a3a8f;
}

.section-btn i { font-size: 12px; transition: transform 0.3s; }
.section-btn:hover i { transform: translateX(4px); }

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

@media (max-width: 576px) {
    .news-grid { grid-template-columns: 1fr; }
    .news-section { padding: 60px 0; }
}


/* ===== PRODUCTS SECTION ===== */
.products-section-new {
    padding: 90px 0;
    background: #fff;
}

.section-main-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #0d1b3e;
    margin: 12px 0 0;
}

.products-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 45px;
}

.product-card-new {
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e8edf5;
    box-shadow: 0 4px 20px rgba(26,58,143,0.06);
    transition: all 0.3s ease;
}

.product-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(26,58,143,0.14);
    border-color: #1a3a8f;
}

.product-card-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}

/* .product-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
} */

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #f8f9fa;
    transition: transform 0.5s ease;
}

.product-card-new:hover .product-card-img img { transform: scale(1.07); }

.product-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,20,60,0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card-new:hover .product-card-overlay { opacity: 1; }

.product-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #1a3a8f;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.product-card-new:hover .product-view-btn { transform: translateY(0); }
.product-view-btn:hover { background: #1a3a8f; color: #fff; }

.product-card-info {
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.product-card-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: #0d1b3e;
    margin: 0;
    line-height: 1.3;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #1a3a8f;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: gap 0.3s;
}

.product-link i { font-size: 11px; }
.product-card-new:hover .product-link { gap: 8px; }

@media (max-width: 1199px) { .products-grid-new { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 767px)  { .products-grid-new { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .products-grid-new { grid-template-columns: 1fr; } }


/* ===== SHIPPING SECTION ===== */
.shipping-section-new {
    padding: 90px 0;
    background: #f8faff;
}

.shipping-new-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #0d1b3e;
    line-height: 1.2;
    margin: 16px 0 18px;
}

.shipping-new-desc {
    font-size: 15.5px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.shipping-img-wrap {
    position: relative;
    border-radius: 16px;
    overflow: visible;
}

.shipping-img-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(26,58,143,0.15);
    display: block;
    transition: transform 0.5s ease;
}

.shipping-img-wrap:hover img { transform: scale(1.02); }

.shipping-img-decor {
    position: absolute;
    bottom: -18px;
    left: -18px;
    width: 100px; height: 100px;
    border: 4px solid #1a3a8f;
    border-radius: 12px;
    z-index: -1;
    opacity: 0.25;
}

/* ===== CTA SECTION ===== */
.cta-section-new {
    position: relative;
    padding: 110px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,20,60,0.88) 0%, rgba(26,58,143,0.75) 100%);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-tag {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
}

.cta-text {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: rgba(255,255,255,0.92);
    line-height: 1.7;
    margin-bottom: 36px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #1a3a8f;
    padding: 15px 38px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 15px;
    text-decoration: none;
    border: 2px solid #fff;
    transition: all 0.3s;
}

.cta-btn:hover {
    background: transparent;
    color: #fff;
}

.cta-btn i { font-size: 12px; transition: transform 0.3s; }
.cta-btn:hover i { transform: translateX(4px); }

@media (max-width: 991px) {
    .shipping-img-wrap img { height: 300px; }
    .cta-section-new { background-attachment: scroll; padding: 80px 0; }
}


/* ===== NEWS & BLOG DETAIL ===== */
.news-detail-section { padding: 70px 0; background: #f8faff; }

.news-detail-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e8edf5;
    box-shadow: 0 4px 20px rgba(26,58,143,0.07);
    overflow: hidden;
    margin-bottom: 0;
}

.news-detail-img { height: 380px; overflow: hidden; }
.news-detail-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.news-detail-card:hover .news-detail-img img { transform: scale(1.03); }

.news-detail-body { padding: 36px; }

.news-detail-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: #0d1b3e;
    margin-bottom: 16px;
    line-height: 1.3;
}

.news-detail-divider {
    width: 50px; height: 3px;
    background: #1a3a8f;
    border-radius: 2px;
    margin-bottom: 24px;
}

.news-detail-content { font-size: 15.5px; color: #444; line-height: 1.9; }

/* Sidebar */
.news-sidebar { position: sticky; top: 90px; }

.sidebar-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e8edf5;
    box-shadow: 0 4px 20px rgba(26,58,143,0.07);
    padding: 24px;
}

.sidebar-card-title {
    font-size: 16px;
    font-weight: 800;
    color: #0d1b3e;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid #f0f4ff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-card-title i { color: #1a3a8f; font-size: 15px; }

.sidebar-news-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid transparent;
    text-decoration: none;
    transition: all 0.25s;
    margin-bottom: 6px;
}

.sidebar-news-item:hover { background: #f8faff; border-color: #1a3a8f; transform: translateX(4px); }

.sidebar-news-img { width: 65px; height: 65px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.sidebar-news-img img { width: 100%; height: 100%; object-fit: cover; }

.sidebar-news-info h6 { font-size: 13px; font-weight: 700; color: #0d1b3e; margin-bottom: 4px; line-height: 1.4; }
.sidebar-news-info span { font-size: 12px; color: #1a3a8f; font-weight: 600; display: flex; align-items: center; gap: 4px; }
.sidebar-news-info i { font-size: 10px; transition: transform 0.25s; }
.sidebar-news-item:hover .sidebar-news-info i { transform: translateX(3px); }

.sidebar-field { margin-bottom: 14px; }

.sidebar-field input,
.sidebar-field textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid #e8edf5;
    border-radius: 8px;
    font-size: 13.5px;
    color: #333;
    background: #fafbff;
    transition: all 0.25s;
    outline: none;
    font-family: inherit;
}

.sidebar-field input:focus,
.sidebar-field textarea:focus { border-color: #1a3a8f; background: #fff; box-shadow: 0 0 0 3px rgba(26,58,143,0.08); }
.sidebar-field textarea { resize: vertical; min-height: 90px; }

.sidebar-submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #1a3a8f;
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    border: 2px solid #1a3a8f;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.sidebar-submit-btn:hover { background: transparent; color: #1a3a8f; }

@media (max-width: 767px) {
    .news-detail-img { height: 250px; }
    .news-detail-body { padding: 24px; }
    .news-sidebar { position: static; }
}
