body{
    background-color: white !important;
}
.hero-section {
    /* height: 55vh; */
}

.hero-slider {
    height: 100%;
}

.swiper,
.swiper-wrapper,
.swiper-slide {
    height: 100%;
}

.swiper-slide {
    min-height: 500px;
    background-color: var(--main-bg);
}

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

.text-slide-hero {
    color: white;
    z-index: 2;
    
}

.hero-section .container {
    position: relative;
    z-index: 2;
}
.hashtag{
    position: absolute;
    top: 10px;
    inset-inline-end: 10px;
}
.hero-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.4;
}

.hero-subtitle {
    font-size: 1.1rem;
    max-width: 890px;
    margin: auto;
    font-weight: 500;
}
.hero-sub-card{
    background: #011A32;
}



.hero-features-section .feature-card {
  
    height: 100%;
}

.hero-features-section .feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg);
    color: var(--main);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 44px;
}
.hero-features-section .feature-icon{
    font-size: 1.4rem
    ;
}


.hero-features-section .feature-text {
    font-size: .9rem;
    
}
/* Buttons */
.hero-btn {
    transition: 0.3s ease-in-out;
    border-radius: 120px;
    font-weight: 500;
    font-size: 1.2rem;
    padding: 12px 60px 12px 60px;
}

.btn-primary.hero-btn {
    background-color: var(--main);
    transform: translateY(-2px);
    border: 1px solid var(--main);
    padding: 12px 30px 12px 30px;
}

/* Hover effects */
.btn-primary.hero-btn:hover {
    background-color: white;
    transform: translateY(-2px);
    color: black;
}

.btn-outline-light.hero-btn:hover {
    background-color: white;
    color: black;
    transform: translateY(-2px);
}

.hero-slider .swiper-pagination {
    text-align: center;
}

.swiper-pagination-bullet {
  
    background: var(--main) !important;
   
    opacity: 0.35;
}

.swiper-pagination-bullet-active {
    background: var(--main);
    opacity: 1;
}

@media (min-width: 992px) {
    .hero-pagination {
width: fit-content !important;
    }
    .hero-slider .swiper-pagination {
        left: 1rem;
        right: auto;
        
  inset-inline-start: 90px;
  
    }
}

/* Card Container */
.category-card {
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

/* Icon Circle */
.icon-wrapper {
    width: 130px;
    height: 130px;
    margin: auto;
    border-radius: 20px;
    background: var(--main-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    
    transition: 0.3s ease-in-out;
    border: 1px solid #F0F6FF;
    overflow: hidden;
}

/* Gradient ring effect */
.icon-wrapper::before {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    z-index: -1;
    filter: blur(2px);
}

/* Icon size */
.icon-wrapper img {
    width: 65px;
    object-fit: contain;
    transition: transform 0.3s ease-in-out;
}

/* Hover effects */
.category-card:hover .icon-wrapper {
   
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.category-card:hover img {
    transform: scale(1.08);
}

.category-card h6 {
    color: var(--main);
    font-weight: 700;
    font-size: 18px;
}




/* View All Button */
.view-all-btn {
    background: var(--main);
    border: none;
    transition: 0.3s ease-in-out;
}

.view-all-btn:hover {
    background: #00408a;
    transform: translateY(-2px);
}

/* Service Card */
.service-card {
    border-radius: 18px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease-in-out;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.09);
}

/* Image */
.service-card img {
    height: 190px;
    width: 100%;
    object-fit: cover;
}

/* Card Body */
.service-card-body {
    padding: 18px 20px;
}

.service-title {
    color: var(--main);
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 21px;
}

.service-text {
    color: var(--sec);
    font-size: 14px;
    line-height: 1.6;
    height: 60px;
    overflow: hidden;
    font-weight: 300;
}

.service-more {
    color: var(--main);
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    font-size: 16px;
}

.service-more:hover {
    padding-right: 6px;
}


.stars i {
    font-size: 1.2rem;
}

.user-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.clients-opnion {
    color: var(--main);
    font-weight: 700;
    font-size: 40px;
}

.user-opinion h6 {
    font-size: 18px;
    font-weight: 700;
    color: var(--main);
}

.user-opinion small {
    font-size: 12px;
    font-weight: 400;
    color: var(--main);
}


.brand-carousel .item img {
    height: 40px;
    transition: 0.3s;
    margin: auto;
    width: 120px !important;
}

.brand-carousel .item img:hover {
    opacity: 1;
    transform: scale(1.08);
}

.official-company h3 {
    font-size: 40px;
    font-weight: 700;
    color: var(--main);
}

.official-company p {
    font-size: 21px;
    font-weight: 300;
    color: var(--sec);
}

.map-container {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 20px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 20px;
}

.section-title {
    color: var(--main);
    font-size: 40px;
    font-weight: 700;
}

.contact-btn {
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid var(--main);
    border-radius: 50px;
    color: var(--main);
    font-weight: 300;
    transition: 0.3s;
    font-size: 21px;
}

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

.section-text {
    color: var(--sec);
    font-size: 21px;
    font-weight: 300;
}


.section-main-title {
    color: var(--main);
    font-size: 40px;
    font-weight: 700;
}

.section-desc {
    color: var(--main);
    font-size: 21px;
    font-weight: 300;
}



/* .owl-carousel.owl-rtl .owl-item {
    margin-left: 0 !important;
} */

.quality-system h3 {
    font-weight: 700;
    font-size: 40px;
    color: var(--main);
}

.quality-system p {
    font-weight: 300;
    font-size: 21px;
    color: var(--main);
}

/* .owl-carousel .owl-stage-outer {
    border-bottom: 1px solid #D9D9D9;
} */

.modal-content {
    background-color: unset;
    border: unset;
    margin: auto;
    width: fit-content;
}


/* styles.css */

.newsletter-section {


   
   
}

/* العنوان */
.newsletter-title {
    font-size: 2.6rem;
    font-weight: 800;
    position: relative;
    z-index: 2;
}

/* الصندوق الأبيض */
.newsletter-box {
    background: #fff;
    border-radius: 50px;
    padding: 5px 0px;
    width: 43%;
    margin: auto;
    position: relative;
    z-index: 2;
}

/* المدخل */
.newsletter-input {
    border: none;
    box-shadow: none;
    font-size: 1.2rem;
    font-weight: 400;
    text-align: right;
    padding: 12px 20px;
    color: var(--sec);
    border-radius: 40px;
}
.newsletter-input::placeholder {
    color: var(--sec);
    opacity: 1;
}
/* الزرار */
.newsletter-btn {
    border-radius: 50px;
    padding: 10px 40px;
    margin-left: 5px;
    white-space: nowrap;
    font-size: 1.3rem;
    font-weight: 700;
    background-color: var(--main);
}

/* صورة اللابتوبات */
.newsletter-laptop {
    position: absolute;
    top: 66%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}





/* Responsive */
@media (max-width: 768px) {
    .newsletter-box {
        flex-direction: column;
        width: 90%;
        border-radius: 15px;
    }
.newsletter-box{
    background-color: transparent;
}
    .newsletter-btn {
        width: 100%;
        margin: 10px 0 0 0;
    }

    .newsletter-laptop img {
        width: 90%;
    }

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

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

.about-box {
    background: linear-gradient(to bottom, #eef6ff, #fcfdff);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* الصورة */
.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

/* أيقونة تشغيل الفيديو */
.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65px;
    height: 65px;
    background: #2D8AB1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: 0.3s;
}

.play-icon:hover {
    background: rgba(14, 116, 240, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

/* العنوان */
.about-title {
    font-size: 40px;
    font-weight: 700;
    color: #2D8AB1;
}

.icon {
    margin-left: 8px;
    color: #2D8AB1;
    font-size: 34px;
}

/* النص */
.about-text {
    font-size: 20px;
    color: var(--sec);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .about-box {
        padding: 20px;
    }
    
    .about-title {
        font-size: 1.5rem;
    }
}

.vision-section {
    background: #ffffff;
}

.vision-card {
    background: var(--main);
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.aim-card {
    background: var(--main);
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.vision-card ul li {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 300;
}

.aim-card ul li {
    margin-bottom: 10px;
     font-size: 16px;
    font-weight: 300;
}

.aim-card h5 {
    margin-bottom: 45%;
    font-size: 24px;
    font-weight: 700;
}

.vision-card h5 {
    margin-bottom: 45%;
    font-size: 24px;
    font-weight: 700;
}

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

.icon-box {
    width: 60px;
    height: 60px;
    background-color: #fff;
    border-radius: 50%;
}

.icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.icon-circle {
    width: 60px;
    height: 60px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-circle i {
    font-size: 28px;
    color: #ffffff;
}


@media (max-width: 991px) {
    .vision-card, 
    .image-box img {
        height: auto;
    }
}
.main-title.custom::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -70%;
    transform: translate(-50%, -50%);
    width: 360px;
    height: 36px;
    background-image: url(../../images/vector.png);
    background-size: contain;
    background-repeat: no-repeat;
}

/* ==================== OFFERS SECTION ==================== */

/* Main Offers Container */
.offers-section {
    padding: 0;
   
    margin: 60px 0;
}

.offers-container {
    padding: 30px 0;
}

/* TOP BLUE SLIDER */
.animated-slider.slider-top:lang(en) {
    direction: rtl !important;
}
.animated-slider.slider-top {
    display: flex;
    overflow: hidden;
    background: var(--main);
    padding: 6px 0;
    margin: 0;
    align-items: center;
    position: relative;
    border-radius: 0;
    transform: skewY(-2deg);
    direction: ltr;
}

/* BOTTOM YELLOW SLIDER */
.animated-slider.slider-bottom {
    display: flex;
    overflow: hidden;
    background: var(--bg);
    padding: 6px 0;
    margin: 0;
    align-items: center;
    position: relative;
    transform: skewY(2deg);
    border-radius: 0;
}

/* Slider track for continuous animation */
.slider-track {
    display: flex;
    white-space: nowrap;
    padding: 0 30px;
}

/* Default animations (fallback if dir attribute missing) */
.slider-track.slider-track-reverse {
    animation: slideLeft 8s linear infinite;
}

.animated-slider.slider-top .slider-track {
    animation: slideRight 8s linear infinite;
}

/* Individual keyword item */
.slider-item {
    display: inline-flex;
    align-items: center;
    margin: 0 1rem;
    font-size: 2rem;
    font-weight: 700;
    color:var(--white);
    flex-shrink: 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
    backdrop-filter: none;
    transition: all 0.3s ease;
}
.animated-slider.slider-bottom .slider-item {
    color: var(--main);
}
.slider-item:hover {
    background: transparent;
    transform: scale(1.05);
}

.slider-item::before {
    content: "⭐";
    margin-left: 15px;
    font-size: 20px;
}

/* Animation for left-moving slider (bottom moves LEFT) */
@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Animation for right-moving slider (top moves RIGHT - opposite) */
@keyframes slideRight {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(50%);
    }
}

/* RTL-specific animations - invert direction for Arabic */
[dir="rtl"] .animated-slider.slider-top .slider-track {
    animation: slideLeft 8s linear infinite;
}

[dir="rtl"] .slider-track.slider-track-reverse {
    animation: slideRight 8s linear infinite;
}

/* LTR-specific animations - keep default direction for English */
[dir="ltr"] .animated-slider.slider-top .slider-track {
    animation: slideRight 8s linear infinite;
}

[dir="ltr"] .slider-track.slider-track-reverse {
    animation: slideLeft 8s linear infinite;
}

/* Main Content Row */
.offers-main-row {
    display: grid;
    grid-template-columns: 1.5fr 3fr;
    gap: 0;
    align-items: flex-start;
    border: 2px solid var(--border);
    
    overflow: hidden;
}

/* Products Column (Left) */
.products-column-main {
    width: 100%;
    border-left: 2px solid var(--border);
    padding: 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0;
}

/* Individual Product Cell */
.product-offer-card {
    display: flex;
    flex-direction: column;
   
    
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;

    position: relative;
    padding: 15px;
    text-align: center;
    min-height: 220px;
}
.product-offer-card:not(:first-child):lang(en) {
 border-left: 2px solid var(--border);
}
.product-offer-card:hover {
    background: #f8fafc;
}
.product-offer-card:lang(ar) {
 border-right: 2px solid var(--border);
}

/* Product Image Container */
.product-image-container {
    width: 100%;
    height: 100px;
    overflow: hidden;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 10px;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
    transition: transform 0.3s ease;
}

.product-offer-card:hover .product-image {
    transform: scale(1.05);
}

/* Product Info */
.product-info {
    padding: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center;
    text-align: center; */
    gap: 8px;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--main);
    margin-bottom: 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Discount Pill Badge */
.discount-pill {
    display: inline-block;
    background: #FFE3E3;
    color: #EB001B;
    padding: 5px 16px;
   
    font-size: .8rem;
    font-weight: 700;
    width: fit-content;
    margin-top: 0;
}

.discount-pill::before {
    content: "";
    margin-right: 0;
}

/* COUNTDOWN TIMER COLUMN (RIGHT) */


.countdown-column-main {
   
    border-radius: 0;
    padding: 25px 20px;
 
    height: 100%;
    display: flex;
    flex-direction: column;
   
}

.countdown-header-main {
    font-size: 1rem;
    font-weight: 700;
    color: var(--main);
    margin-bottom: 20px;
   
}

.countdown-timer-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.countdown-unit-main {
    text-align: center;
    padding: 15px 10px;
    background: #CDE6FE;
    color: var(--main);
    border-radius: 10px;
   
    position: relative;
}

.countdown-number-main {
    font-size: 1rem;
    font-weight: 900;
    color: var(--main);
    display: block;
    line-height: 1;
}

.countdown-label-main {
    font-size: .8rem;
    font-weight: 600;
    color: var(--main);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .offers-main-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .products-column-main {
        border-left: none;
        border-bottom: 3px solid var(--main);
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .countdown-column-main {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .offers-section {
        margin: 40px 0;
    }

    .animated-slider.slider-top,
    .animated-slider.slider-bottom {
        padding: 15px 0;
    }

    .slider-item {
        margin: 0 20px;
        font-size: 20px;
    }

    .slider-item::before {
        margin-left: 10px;
        font-size: 14px;
    }

    .offers-container {
        padding: 20px 0;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
        gap: 0;
    }

    .product-image-container {
        height: 100px;
    }

    .product-offer-card {
        border-radius: 0;
        padding: 12px;
        min-height: 200px;
    }

    .product-offer-card {
        border: 1px solid var(--border);
        margin: -1px 0 0 -1px;
    }

    .product-offer-card:not(:first-child) {
        border-right: 1px solid var(--border);
    }

    .product-name {
        font-size: 12px;
    }

    .discount-pill {
        padding: 5px 10px;
        font-size: 10px;
    }

    .countdown-timer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .countdown-unit-main {
        padding: 12px 8px;
    }

    .countdown-number-main {
        font-size: 24px;
    }

    .countdown-label-main {
        font-size: 10px;
    }

    .countdown-column-main {
        padding: 20px 15px;
    }
}

@media (max-width: 480px) {
    .slider-item {
        margin: 0 15px;
        font-size: 16px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .product-image-container {
        height: 90px;
    }

    .product-name {
        font-size: 11px;
        margin-bottom: 6px;
    }

    .product-info {
        padding: 0;
    }

    .product-offer-card {
        padding: 10px;
        min-height: 180px;
    }

    .countdown-timer-main {
        grid-template-columns: repeat(2, 1fr);
    }

    .countdown-number-main {
        font-size: 20px;
    }
}
/* second hero */
.second-hero{
    background-color: var(--main);
}
.first-circle{
    width: 220px;
inset-inline-end: -170px;
top: 50%;
transform: translateY(-50%);

    

}
.second-circle{
    width: 300px;
left: -100px;
top: 50%;
transform: translateY(-50%);

    

}
.svg-line{
    inset-inline-start: 0px;
}