/* --- Hero Section with Background Image & Overlay --- */
.hero-bg-image-section {
    position: relative;
    min-height: 90vh;
    padding-top: 80px;
    width: 100%;
    background: url('https://images.unsplash.com/photo-1606811841689-23dfddce3e95?auto=format&fit=crop&q=80') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    direction: rtl;
    overflow: hidden;
    /* background-attachment: fixed; - removed for performance */
    background-position: center center;
    background-size: cover;
    /* transition removed for static design */
}
.hero-bg-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,146,69,0.9) 0%, rgba(79,79,79,0.8) 100%);
    opacity: 0.85;
    z-index: 1;
}
.hero-bg-image-section .container {
    position: relative;
    z-index: 2;
}
.hero-bg-title {
    color: #fff;
    font-size: 2.7rem;
    font-weight: 900;
    text-shadow: 0 4px 24px rgba(0,0,0,0.4);
    letter-spacing: 0.5px;
}
.hero-bg-desc {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 2rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.hero-bg-btn {
    display: inline-block;
    padding: 13px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 0 8px;
}
.hero-bg-btn.main-btn {
    background: #fff;
    color: #13c5c1;
    border: none;
}

.hero-bg-btn.main-btn:hover {
    background: var(--genodent-gradient-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 146, 69, 0.3);
}

.hero-bg-btn.ghost-btn {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.hero-bg-btn.ghost-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}
@media (max-width: 991px) {
    .hero-bg-title {
        font-size: 2rem;
        text-shadow: 0 4px 20px rgba(0,0,0,0.4);
    }
    .hero-bg-desc {
        font-size: 1rem;
        text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    }
    .hero-bg-image-section {
        min-height: 85vh;
        padding-top: 70px;
    }
}
@media (max-width: 600px) {
    .hero-bg-title {
        font-size: 1.3rem;
        text-shadow: 0 3px 15px rgba(0,0,0,0.4);
    }
    .hero-bg-btn { padding: 10px 18px; font-size: 1rem; }
    .hero-bg-image-section {
        min-height: 80vh;
        padding-top: 60px;
    }
}
/* --- End Hero Section with Background Image & Overlay --- */


/* Feature Boxes */
.feature-box {
    background: linear-gradient(145deg, #ffffff, #f5f9fa);
    box-shadow: 0 12px 28px rgba(0,181,173,0.12), 0 4px 10px rgba(0,0,0,0.05) !important;
    border-radius: var(--border-radius);
    /* transition removed for static cards */

    padding: 2rem;
    height: 100%;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(230, 230, 230, 0.5);
}

.feature-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to bottom, var(--primary-light) 0%, rgba(255,255,255,0) 100%);
    z-index: -1;
    /* transition removed for static cards */
    opacity: 0.5;
}

/* hover effects removed */

.feature-box img {
    width: 64px;
    height: 64px;
    /* transition removed for static cards */
    filter: drop-shadow(0 5px 15px rgba(38, 224, 127, 0.2));
}

.feature-box i {
    color: var(--primary);
    font-size: 3rem;
    /* transition removed for static cards */
}

/* Emergency Section */
.emergency-section {
    background: var(--primary-gradient);
    color: white;
    padding: 1.5rem 0;
    margin: 2rem 0;
}

/* Testimonials */
.testimonial-box {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 2rem;
    height: 100%;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(230, 230, 230, 0.5);
    /* transition removed for static cards */
}

/* hover effects removed */

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #eafafc 0%, #ffffff 100%);
    border-radius: var(--border-radius);


    text-align: center;
}

/* Modern Products Section 2025 */
.products-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(145deg, #ffffff, #f5f9fa);
   overflow: hidden;
}

.products-wrapper {
    position: relative;
    z-index: 2;
}

.blob-shape {
    position: absolute;
    top: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(38, 224, 127, 0.07) 0%, rgba(255,255,255,0) 70%);
    border-radius: 42% 58% 65% 35% / 45% 33% 67% 55%;
    animation: blob-animation 12s infinite linear;
    opacity: 1;
    z-index: 1;
}

.blob-shape-2 {
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(19, 197, 193, 0.05) 0%, rgba(255,255,255,0) 70%);
    border-radius: 42% 58% 65% 35% / 45% 33% 67% 55%;
    animation: blob-animation 10s infinite linear reverse;
    opacity: 1;
    z-index: 1;
}

.product-card-modern {
    display: flex;
    flex-direction: column;
    background: linear-gradient(145deg, #ffffff, #f5f9fa);
    box-shadow: 0 12px 28px rgba(0,181,173,0.12), 0 4px 10px rgba(0,0,0,0.05) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    /* transition removed for static cards */
    min-height: 450px;
    transform: scale(1);
}

/* hover effects removed */

/* ::before pseudo-element removed */

/* hover effects removed */

.product-icon-wrapper {
    position: relative;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.product-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
    /* transition removed for static cards */
    box-shadow: none;
}

/* hover effects removed */

.product-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    /* transition removed for static cards */
    filter: none;
    padding: 0;
    border-radius: 0;
}

/* hover effects removed */

.product-content {
    padding: 30px;
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;

}

.product-content h3 {
    margin-bottom: 20px;

    font-size: 1.2rem;
    letter-spacing: -0.5px;
    text-align: center;

}

.feature-list-modern {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    text-align: right;
}

.feature-list-modern li {
    position: relative;
    padding: 8px 25px 8px 0;
    transition: all 0.3s ease;
    color: #666;
    font-weight: 500;
}

/* Hover effect removed for feature list items */

.feature-bullet {
    position: absolute;
    right: 0;
    top: 15px;
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, var(--primary) 0%, #13c5c1 100%);
    border-radius: 50%;
    display: inline-block;
}

.btn-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(38, 224, 127, 0.1) 0%, rgba(19, 197, 193, 0.1) 100%);
    border: 1px solid rgba(38, 224, 127, 0.2);
    padding: 12px 25px;
    border-radius: 50px;
    color: var(--primary);
    font-weight: 700;
    transition: all 0.4s ease;
    text-decoration: none;
    margin-top: auto;
    position: relative;
    overflow: hidden;
    align-self: center;
    margin-top: 20px;
}

/* ::before pseudo-element removed */

/* Hover effects removed for modern buttons */

/* Custom Products Carousel */
#productsCarousel {
    padding-bottom: 60px;
}

#productsCarousel .carousel-inner {
    overflow: visible;
}

#productsCarousel .carousel-item {
    transition: transform 0.8s ease-in-out;
}

#productsCarousel .carousel-indicators {
    bottom: 0;
}

#productsCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: rgba(38, 224, 127, 0.3);
    border: none;
    transition: all 0.3s ease;
}

#productsCarousel .carousel-indicators button.active {
    background-color: var(--primary);
    width: 14px;
    height: 14px;
    transform: translateY(-1px);
}

#productsCarousel .carousel-control-prev,
#productsCarousel .carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border-radius: 50%;
    opacity: 0.9;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Hover effect removed for carousel controls */

#productsCarousel .carousel-control-prev {
    left: -25px;
}

#productsCarousel .carousel-control-next {
    right: -25px;
}

#productsCarousel .carousel-control-prev-icon,
#productsCarousel .carousel-control-next-icon {
    width: 20px;
    height: 20px;
    filter: invert(58%) sepia(83%) saturate(2794%) hue-rotate(118deg) brightness(95%) contrast(87%);
    transition: all 0.3s ease;
}

/* Hover icon effect removed for carousel controls */

@keyframes blob-animation {
    0% {
        border-radius: 42% 58% 65% 35% / 45% 33% 67% 55%;
    }
    25% {
        border-radius: 52% 48% 55% 45% / 35% 43% 57% 65%;
    }
    50% {
        border-radius: 38% 62% 75% 25% / 55% 23% 77% 45%;
    }
    75% {
        border-radius: 48% 52% 45% 55% / 65% 53% 47% 35%;
    }
    100% {
        border-radius: 42% 58% 65% 35% / 45% 33% 67% 55%;
    }
}

/* Add animation classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate__fadeIn {
    animation: fadeInUp 0.7s ease-out forwards;
}

/* Responsive Styles for Products Carousel */
@media (max-width: 991px) {
    #productsCarousel .carousel-control-prev,
    #productsCarousel .carousel-control-next {
        width: 40px;
        height: 40px;
    }

    #productsCarousel .carousel-control-prev {
        left: -10px;
    }

    #productsCarousel .carousel-control-next {
        right: -10px;
    }

    .product-card-modern {
        min-height: 400px;
    }

    .product-icon-wrapper {
        height: 250px;
    }

    /* تعديل لإظهار بطاقتين فقط في الشاشات المتوسطة */
    #productsCarousel .col-lg-4.col-md-6:nth-child(3) {
        display: none;
    }
}

@media (max-width: 767px) {
    #productsCarousel .carousel-control-prev,
    #productsCarousel .carousel-control-next {
        width: 35px;
        height: 35px;
        top: calc(50% - 20px);
    }

    #productsCarousel .carousel-control-prev {
        left: -5px;
    }

    #productsCarousel .carousel-control-next {
        right: -5px;
    }

    #productsCarousel {
        padding-bottom: 40px;
    }

    .product-card-modern {
        min-height: 380px;
    }

    /* تعديل لإظهار بطاقة واحدة فقط في الشاشات الصغيرة */
    #productsCarousel .col-lg-4.col-md-6:nth-child(n+2) {
        display: none;
    }

    #productsCarousel .col-lg-4.col-md-6:first-child {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* إعدادات خاصة للشاشات الأصغر */
@media (max-width: 480px) {
    #productsCarousel .carousel-control-prev,
    #productsCarousel .carousel-control-next {
        width: 30px;
        height: 30px;
    }

    .product-card-modern {
        min-height: 360px;
    }
}

/* About Section 2025 Styles */
.about-section {
    position: relative;
    background: linear-gradient(145deg, #ffffff, #f5f9fa);
    box-shadow: 0 12px 28px rgba(0,181,173,0.12), 0 4px 10px rgba(0,0,0,0.05) !important;
    overflow: hidden;
}

.about-wrapper {
    position: relative;
    z-index: 2;
    padding: 20px 0;
}

.about-blob-1 {
    position: absolute;
    top: -100px;
    left: -150px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(38, 224, 127, 0.05) 0%, rgba(255,255,255,0) 70%);
    border-radius: 42% 58% 65% 35% / 45% 33% 67% 55%;
    animation: blob-animation 15s infinite linear;
    z-index: -1;
}

.about-blob-2 {
    position: absolute;
    bottom: -150px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(19, 197, 193, 0.05) 0%, rgba(255,255,255,0) 70%);
    border-radius: 42% 58% 65% 35% / 45% 33% 67% 55%;
    animation: blob-animation 12s infinite linear reverse;
    z-index: -1;
}

.about-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMjZlMDdmIiBmaWxsLW9wYWNpdHk9IjAuMDUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+PGNpcmNsZSBjeD0iMSIgY3k9IjEiIHI9IjEiLz48L2c+PC9zdmc+');
    z-index: -1;
    opacity: 0.5;
}

/* Section Title with Separator */
.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.title-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
    width: 80%;
    max-width: 300px;
}

.separator-line {
    height: 2px;
    background: linear-gradient(to right, rgba(38, 224, 127, 0), rgba(38, 224, 127, 0.5));
    flex-grow: 1;
}

.separator-line:last-child {
    background: linear-gradient(to left, rgba(38, 224, 127, 0), rgba(38, 224, 127, 0.5));
}

.separator-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 15px;
    box-shadow: 0 10px 20px rgba(38, 224, 127, 0.2);
}

.separator-icon i {
    color: white;
    font-size: 1.2rem;
}

/* About Content Styles */
.about-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    padding-right: 15px;
}

/* ::before pseudo-element removed */

.about-description {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #555;
}

/* About Image Styles */
.about-image-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.about-image-wrapper {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.about-image {
    width: 100%;
    border-radius: 20px;
    transition: transform 0.7s ease;
    vertical-align: middle;
}

/* Hover effect removed for about image wrapper */

.about-image-shape {
    position: absolute;
    top: -20px;
    right: -40px;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0.1;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: -1;
    animation: blobAnimation 15s infinite alternate ease-in-out;
}

/* Floating Image Cards */
.image-card-1, .image-card-2 {
    position: absolute;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    z-index: 3;
    transition: all 0.5s ease;
    border: 1px solid rgba(38, 224, 127, 0.1);
    max-width: 200px;
}

.image-card-1 {
    top: 30px;
    left: -50px;
    animation: floatCard 6s infinite ease-in-out;
}

.image-card-2 {
    bottom: 40px;
    right: -50px;
    animation: floatCard 6s infinite ease-in-out 3s;
}

@keyframes floatCard {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

/* Hover effects removed for image cards */

.card-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, rgba(38, 224, 127, 0.1) 0%, rgba(19, 197, 193, 0.1) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    transition: all 0.3s ease;
}

/* Hover effects removed for card icons */

.card-icon i {
    font-size: 1.2rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

/* Hover effects removed for card icon text */

.card-content h5 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #333;
}

.card-content p {
    font-size: 0.75rem;
    margin-bottom: 0;
    color: #666;
}

/* Experience Badge */
.experience-badge {
    position: absolute;
    bottom: 60px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(38, 224, 127, 0.3);
    animation: pulse 3s infinite;
    z-index: 2;
}

.badge-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: white;
}

.badge-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.badge-text {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 20px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(38, 224, 127, 0.1);
    position: relative;
    overflow: hidden;
}

/* ::before pseudo-element removed */

/* Hover effects removed for stat cards */

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(38, 224, 127, 0.1) 0%, rgba(19, 197, 193, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    transition: all 0.3s ease;
}

/* Hover effects removed for stat card icons */

.stat-icon i {
    font-size: 1.2rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

/* Hover effects removed for stat card icon text */

.stat-number {

     font-size: 1.4rem;
    color: black;
    margin-bottom: 5px;
    line-height: 1;
}

.stat-title {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
}

/* CTA Button */
.about-cta {
    margin-top: 40px;
}

.btn-about-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(38, 224, 127, 0.1) 0%, rgba(19, 197, 193, 0.1) 100%);
    color: var(--primary);
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(38, 224, 127, 0.3);
}

/* ::before pseudo-element removed */

/* Hover effect removed for about more button */

/* Hover effect removed for about more button before */

/* Hover effect removed for about more button icon */

/* Hover effect removed for about more button icon */

/* Responsive Adjustments */
@media (max-width: 991px) {
    .about-section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .experience-badge {
        width: 100px;
        height: 100px;
        bottom: 40px;
        left: -10px;
    }

    .badge-number {
        font-size: 2rem;
    }

    .badge-text {
        font-size: 0.7rem;
    }

    .image-card-1, .image-card-2 {
        max-width: 180px;
        padding: 12px;
    }

    .image-card-1 {
        left: -30px;
    }

    .image-card-2 {
        right: -30px;
    }

    .about-content {
        margin-top: 40px;
    }

    .row {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 767px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        width: 100%;
    }

    .stat-card {
        max-width: 100%;

    }

    .image-card-1, .image-card-2 {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        margin: -30px auto 20px;
        z-index: 4;
        max-width: 80%;
    }

    .experience-badge {
        bottom: 20px;
        left: 10px;
    }

    .about-image-wrapper {
        max-width: 80%;
        margin: 0 auto;
    }

    .col-md-3 {
        width: 50%;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        width: 100%;
    }


    .col-md-3 {
        width: 100%;
    }
}

/* Order Section 2025 Styles */
.order-section {
    position: relative;
    background: linear-gradient(145deg, #ffffff, #f5f9fa);
    box-shadow: 0 12px 28px rgba(0,181,173,0.12), 0 4px 10px rgba(0,0,0,0.05) !important;    padding: 100px 0;
    overflow: hidden;
    margin: 50px 0;
}

.order-wrapper {
    position: relative;
    z-index: 2;
    padding: 20px 0;
}

.order-blob {
    position: absolute;
    bottom: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(38, 224, 127, 0.05) 0%, rgba(255,255,255,0) 70%);
    border-radius: 42% 58% 65% 35% / 45% 33% 67% 55%;
    animation: blob-animation 15s infinite linear;
    z-index: -1;
}

.order-shape {
    position: absolute;
    top: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(19, 197, 193, 0.05) 0%, rgba(255,255,255,0) 70%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: blob-animation 12s infinite linear reverse;
    z-index: -1;
}

.order-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMjZlMDdmIiBmaWxsLW9wYWNpdHk9IjAuMDUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+PGNpcmNsZSBjeD0iMSIgY3k9IjEiIHI9IjEiLz48L2c+PC9zdmc+');
    z-index: -1;
    opacity: 0.5;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Order Card Styles */
.order-card {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.07);
    transition: all 0.5s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 40px;
    margin-bottom: 50px;
    z-index: 2;
}


.order-card-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(38, 224, 127, 0.03) 0%, rgba(19, 197, 193, 0.03) 100%);
    border-radius: 0 24px 0 300px;
    z-index: -1;
}

.order-form-container {
    position: relative;
    z-index: 2;
}

.order-form {
    position: relative;
}

/* Custom Form Controls */
.form-group {
    position: relative;
    margin-bottom: 20px;
}

.floating-label {
    position: relative;
}

.custom-input {
    height: 60px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(38, 224, 127, 0.2);
    border-radius: 15px;
    padding: 10px 20px 10px 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: #333;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.custom-input:focus {
    background: #fff;
    border-color: var(--primary);
    box-shadow: 0 5px 25px rgba(38, 224, 127, 0.15);
    transform: translateY(-2px);
}

.form-label {
    position: absolute;
    top: 20px;
    right: 50px;
    color: #666;
    transition: all 0.3s ease;
    pointer-events: none;
    font-weight: 500;
}

.custom-input:focus ~ .form-label,
.custom-input:not(:placeholder-shown) ~ .form-label {
    top: -10px;
    right: 20px;
    font-size: 0.8rem;
    padding: 0 5px;
    background: white;
    border-radius: 5px;
    color: var(--primary);
    font-weight: 600;
}

.input-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    text-align: center;
    color: #999;
    transition: all 0.3s ease;
}

.custom-input:focus ~ .input-icon {
    color: var(--primary);
}

.custom-textarea {
    height: 120px;
    padding-top: 20px;
    resize: none;
}

.custom-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23999' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 20px center;
    background-size: 12px;
}

.custom-select:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2326e07f' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
}

/* إصلاح مظهر قائمة الخيارات المنسدلة */
.custom-select option {
    background-color: #ffffff !important;
    color: #333333 !important;
    padding: 10px 15px !important;
    border: none !important;
    font-family: inherit !important;
}

.custom-select option:checked {
    background-color: #f8f9fa !important;
    color: #333333 !important;
}
/* Hover effect removed for custom select option */

/* إزالة أي خلفيات غريبة */
.custom-select optgroup,
.custom-select option {
    background-image: none !important;
    background: #ffffff !important;
}

/* التأكد من عدم وجود أنماط خارجية تؤثر */
select.custom-select {
    background: #ffffff !important;
}

select.custom-select option {
    background: #ffffff !important;
    color: #333 !important;
}

/* Submit Button */
.btn-order-submit {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgb(38, 224, 128);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0 30px;
    height: 60px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(38, 224, 127, 0.25);
    min-width: 220px;
}

/* ::before pseudo-element removed */

/* hover effects removed */

.btn-order-submit .btn-text {
    margin-right: 15px;
}

.btn-order-submit .btn-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* hover effects removed */

/* Promo Badge */
.promo-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 90px;
    height: 90px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(38, 224, 127, 0.3);
    animation: pulse 3s infinite;
    z-index: 3;
    transform: rotate(-15deg);
}

.badge-inner {
    text-align: center;
    color: white;
}

.discount {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.percent {
    font-size: 1rem;
    font-weight: 600;
}

.badge-text {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.2;
}

/* Order Features */
.order-features {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 15px 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(38, 224, 127, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
}

/* hover effects removed */

.feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, rgba(38, 224, 127, 0.1) 0%, rgba(19, 197, 193, 0.1) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    transition: all 0.3s ease;
}

/* hover effects removed */

.feature-icon i {
    font-size: 1.2rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.feature-text {
    font-weight: 600;
    color: #444;
    font-size: 0.95rem;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .order-section {
        padding: 80px 0;
    }

    .order-card {
        padding: 30px;
    }

    .promo-badge {
        width: 80px;
        height: 80px;
        top: 20px;
        left: 20px;
    }

    .discount {
        font-size: 1.5rem;
    }

    .feature-item {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 767px) {
    .order-card {
        padding: 20px;
    }

    .custom-input {
        height: 55px;
    }

    .btn-order-submit {
        height: 55px;
        font-size: 1rem;
        min-width: 200px;
    }

    .feature-item {
        flex: 0 0 100%;
    }

    .promo-badge {
        width: 70px;
        height: 70px;
        top: 15px;
        left: 15px;
    }

    .discount {
        font-size: 1.3rem;
    }

    .badge-text {
        font-size: 0.6rem;
    }

    .row {
        margin-left: -5px;
        margin-right: -5px;
    }

    .col-md-6, .col-lg-10, .col-12 {
        padding-left: 5px;
        padding-right: 5px;
    }
}


.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    font-size: 30px !important;
    color: #fff !important;
    background: var(--primary-gradient) !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.9;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

/* Hover effects removed for owl carousel buttons */

.owl-carousel .owl-nav button.owl-prev {
    left: 10px;
}

.owl-carousel .owl-nav button.owl-next {
    right: 10px;
}

.owl-carousel .owl-dots {
    margin-top: 20px;
    text-align: center;
}

.owl-carousel .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 5px 7px;
    background: #D6D6D6;
    display: block;
    transition: opacity 0.2s ease, transform 0.2s ease;
    border-radius: 30px;
}

.owl-carousel .owl-dots .owl-dot.active span {
    background: var(--primary);
    transform: scale(1.3);
}
/* Hover effect removed for owl dots */


.products-carousel .product-icon-wrapper {
    height: 280px;
    transition: all 0.5s ease;
    background-size: cover;
    background-position: center;
}

/* Hover effects removed for product cards */

.products-carousel .product-content {
    padding: 15px;
    text-align: center;
    background-color: #fff;
    position: relative;
    z-index: 2;
}

/* Animation for sliding effect */
@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.section-title-container {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.section-title-slide {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
    color: var(--primary);
    font-weight: 700;
}

@keyframes slide-across {
    0%, 100% {
        left: 0;
    }
    50% {
        left: calc(100% - 30px);
    }
}

.products-carousel .owl-item {
    transition: all 0.3s ease;
}

.products-carousel .owl-item.active {
    transform: scale(1);
}

.products-carousel .product-card-modern .product-content h3 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 8px;
}

.products-carousel .product-card-modern .product-content p {
    font-weight: 700;
    color: var(--primary);
}

/* Responsive Design for Owl Carousel */
@media (max-width: 768px) {
    .products-carousel {
        padding: 0 30px;
    }

    .owl-carousel .owl-nav button.owl-next,
    .owl-carousel .owl-nav button.owl-prev {
        width: 40px !important;
        height: 40px !important;
        font-size: 20px !important;
    }

    .owl-carousel .owl-nav button.owl-prev {
        left: 5px;
    }

    .owl-carousel .owl-nav button.owl-next {
        right: 5px;
    }
}

@media (max-width: 480px) {
    .products-carousel {
        padding: 0 20px;
    }

    .owl-carousel .owl-nav button.owl-next,
    .owl-carousel .owl-nav button.owl-prev {
        width: 35px !important;
        height: 35px !important;
        font-size: 18px !important;
    }
}



.products-carousel {
    padding: 0 !important;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* ضبط الأسهم لتكون خارج حدود الكاروسيل يمين ويسار */
.owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex !important;
    justify-content: space-between;
    pointer-events: none;
    z-index: 30;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    transform: none;
    opacity: 1 !important;
    display: flex !important;
    pointer-events: all;
    z-index: 31;
    margin: 0 10px;
}

.owl-carousel .owl-nav button.owl-prev {
    order: 1;
}
.owl-carousel .owl-nav button.owl-next {
    order: 2;
}

/* Responsive: تصغير الأسهم في الشاشات الصغية */
@media (max-width: 991px) {
    .owl-carousel .owl-nav button.owl-next,
    .owl-carousel .owl-nav button.owl-prev {
        width: 38px !important;
        height: 38px !important;
        font-size: 18px !important;
    }
}

/* أظهر الأسهم دائمًا */
.owl-carousel .owl-nav {
    display: flex !important;
}

/* إصلاح مشكلة نزول الكاروسيل */
.products-carousel .owl-stage-outer,
.products-carousel .owl-stage,
.products-carousel .item {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

/* === خصومات المنتجات - كارد عصري مرتب === */
.discounted-products-section .product-card-modern {
    background: linear-gradient(145deg, #ffffff, #f5f9fa);
    box-shadow: 0 12px 28px rgba(0,181,173,0.12), 0 4px 10px rgba(0,0,0,0.05) !important;
    border-radius: 18px !important;
    padding: 28px 18px 22px 18px;
    margin-bottom: 32px;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* transition removed for static cards */
}

/* hover effects removed */

.discounted-products-section .product-card-modern img {
    max-width: 90%;
    max-height: 180px;
    margin-bottom: 18px;
    border-radius: 12px;
    object-fit: contain;
    background: #f8f8f8;
    padding: 8px;
}

.discounted-products-section .product-card-modern h4 {
    font-size: 1.2rem;

    margin-bottom: 10px;
    color: black;
}

.discounted-products-section .product-card-modern p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.discounted-products-section .product-card-modern .text-muted {
    font-size: 1rem;
    opacity: 0.7;
}

.discounted-products-section .product-card-modern .text-success {
    font-size: 1.15rem;
    font-weight: bold;
}

.discounted-products-section .product-card-modern .badge.bg-success {
    font-size: 0.95rem;
    padding: 6px 12px;
    border-radius: 12px;
    vertical-align: middle;
}

.discounted-products-section .btn-modern {
    background: var(--primary-gradient);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 10px 28px;
    font-weight: 700;
    font-size: 1rem;
    margin-top: auto;
    transition: background 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 8px rgba(38, 224, 127, 0.10);
}

.discounted-products-section .btn-modern:hover {
    background: linear-gradient(135deg, #00b854 0%, #009245 100%);
    box-shadow: 0 4px 15px rgba(38, 224, 127, 0.25);
    transform: translateY(-1px);
}

/* === Coupon Cards Styles === */
.coupon-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    /* transition removed for static cards */
    height: 100%;
}

/* Hover effects removed for coupon cards */

.coupon-content {
    padding: 20px;
}

.coupon-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.discount-badge {
    background: var(--primary-gradient);
    color: white;
    padding: 10px 15px;
    border-radius: 10px;
    text-align: center;
    min-width: 80px;
}

.discount-value {
    font-size: 24px;
    font-weight: bold;
    display: block;
    line-height: 1;
}

.discount-text {
    font-size: 14px;
}

.coupon-code {
    text-align: left;
}

.coupon-code span {
    color: #666;
    font-size: 14px;
}

.coupon-code strong {
    display: block;
    font-size: 18px;
    color: var(--primary-color);
    margin-top: 5px;
}

.coupon-body h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 18px;
}

.coupon-body p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.coupon-details {
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: #666;
    font-size: 14px;
}

.detail-item i {
    color: var(--primary-color);
    margin-left: 8px;
    width: 20px;
}

.pagination-wrapper {
    margin-top: 30px;
}

.pagination .page-link {
    color: var(--primary-color);
    border: 1px solid #dee2e6;
    margin: 0 2px;
    border-radius: 5px;
}

.pagination .page-item.active .page-link {
    background: var(--primary-gradient);
    border-color: var(--primary-color);
}

/* === Toast Notifications === */
.toast-container {
    z-index: 9999;
}

.toast {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    min-width: 350px;
    max-width: 400px;
}

.toast-header {
    border: none;
    padding: 15px 20px;
    font-weight: 600;
}

.toast-body {
    padding: 15px 20px;
    font-size: 14px;
    line-height: 1.5;
}

.toast.show {
    animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* === Form Loading State === */
.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn .fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* === Form Validation Styles === */
.form-control.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.invalid-feedback {
    display: block;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}


@media (max-width: 576px) {
    .toast {
        min-width: 280px;
        max-width: 320px;
    }

    .toast-header,
    .toast-body {
        padding: 12px 15px;
    }
}

/* === Testimonials Section Styles 2025 === */
.testimonials-section {
    position: relative;
    background: linear-gradient(145deg, #ffffff, #f5f9fa);
    box-shadow: 0 12px 28px rgba(0,181,173,0.12), 0 4px 10px rgba(0,0,0,0.05) !important;
    padding: 80px 0;
    overflow: hidden;
}

.testimonials-wrapper {
    position: relative;
    z-index: 2;
}

.testimonial-blob {
    position: absolute;
    top: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(38, 224, 127, 0.06) 0%, rgba(255,255,255,0) 70%);
    border-radius: 42% 58% 65% 35% / 45% 33% 67% 55%;
    animation: blob-animation 15s infinite linear;
    z-index: -1;
}

.testimonial-blob-2 {
    position: absolute;
    bottom: -150px;
    right: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(19, 197, 193, 0.05) 0%, rgba(255,255,255,0) 70%);
    border-radius: 42% 58% 65% 35% / 45% 33% 67% 55%;
    animation: blob-animation 12s infinite linear reverse;
    z-index: -1;
}

.testimonial-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(38, 224, 127, 0.08);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* hover effects removed */

.testimonial-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMjZlMDdmIiBmaWxsLW9wYWNpdHk9IjAuMDMiIGZpbGwtcnVsZT0iZXZlbm9kZCI+PGNpcmNsZSBjeD0iMSIgY3k9IjEiIHI9IjEiLz48L2c+PC9zdmc+');
    opacity: 0.5;
    z-index: -1;
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(38, 224, 127, 0.08) 0%, rgba(19, 197, 193, 0.08) 100%);
    opacity: 0.8;
}

.testimonial-quote i {
    font-size: 24px;
    color: var(--primary);
    opacity: 0.7;
}





.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin: 40px 0 25px;
    position: relative;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: auto;
    position: relative;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-left: 15px;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

/* Hover effects removed for testimonial cards */

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    flex-grow: 1;
}

.author-info h5 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 5px;
    color: #333;
}

.author-info span {
    font-size: 13px;
    color: #777;
    display: block;
}

.testimonial-rating {
    margin-top: 10px;
}

.testimonial-rating i {
    color: #FFC107;
    font-size: 14px;
    margin-left: 2px;
}

/* Animation for Testimonial Cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate__fadeInUp {
    animation: fadeInUp 0.7s ease-out forwards;
}

/* Responsive Testimonials */
@media (max-width: 991px) {
    .testimonials-section {
        padding: 60px 0;
    }

    .testimonial-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .testimonial-text {
        font-size: 15px;
        margin: 35px 0 20px;
    }

    .author-image {
        width: 50px;
        height: 50px;
    }

    .author-info h5 {
        font-size: 15px;
    }

    .author-info span {
        font-size: 12px;
    }

    .testimonial-quote {
        width: 50px;
        height: 50px;
    }

    .testimonial-quote i {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 25px 20px;
    }

    .testimonial-text {
        margin: 30px 0 20px;
        font-size: 14px;
    }
}

/* === Latest News Section Styles 2025 === */
.latest-news-section {
    position: relative;
    background: linear-gradient(145deg, #ffffff, #f5f9fa);
    padding: 100px 0;
    overflow: hidden;
}

.news-wrapper {
    position: relative;
    z-index: 2;
    padding: 20px 0;
}

/* Decorative Blobs */
.news-blob-1 {
    position: absolute;
    top: -100px;
    right: -150px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(38, 224, 127, 0.05) 0%, rgba(255,255,255,0) 70%);
    border-radius: 42% 58% 65% 35% / 45% 33% 67% 55%;
    animation: blob-animation 15s infinite linear;
    z-index: -1;
}

.news-blob-2 {
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(19, 197, 193, 0.05) 0%, rgba(255,255,255,0) 70%);
    border-radius: 42% 58% 65% 35% / 45% 33% 67% 55%;
    animation: blob-animation 12s infinite linear reverse;
    z-index: -1;
}

.news-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMjZlMDdmIiBmaWxsLW9wYWNpdHk9IjAuMDUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+PGNpcmNsZSBjeD0iMSIgY3k9IjEiIHI9IjEiLz48L2c+PC9zdmc+');
    z-index: -1;
    opacity: 0.5;
}

/* News Card Modern Design */
.news-card-modern {
    position: relative;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(38, 224, 127, 0.1);
}



/* News Image */
.news-image-wrapper {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card-modern:hover .news-image {
    transform: scale(1.1);
}

.news-overlay-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.news-card-modern:hover .news-overlay-gradient {
    opacity: 1;
}

/* Category Badge */
.news-category-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-gradient);
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(38, 224, 127, 0.3);
    z-index: 2;
    transition: all 0.3s ease;
}

.news-card-modern:hover .news-category-badge {
    transform: scale(1.05);
}

.news-category-badge i {
    font-size: 0.9rem;
}

/* News Content */
.news-content-wrapper {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Meta Info */
.news-meta-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.news-date-item,
.news-time-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #777;
    font-weight: 500;
}

.news-date-item i,
.news-time-item i {
    color: var(--primary);
    font-size: 0.9rem;
}

/* News Title */
.news-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-card-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-card-title a:hover {
    color: var(--primary);
}

/* News Excerpt */
.news-excerpt-text {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

/* Read More Button */
.btn-news-read {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(38, 224, 127, 0.1) 0%, rgba(19, 197, 193, 0.1) 100%);
    border: 1px solid rgba(38, 224, 127, 0.3);
    color: var(--primary);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-news-read:hover {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
    transform: translateX(-5px);
}

.btn-news-read i {
    transition: transform 0.3s ease;
}

.btn-news-read:hover i {
    transform: translateX(-3px);
}

/* All News Button */
.btn-all-news {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--primary-gradient);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(38, 224, 127, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-all-news::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00b854 0%, #009245 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-all-news:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(38, 224, 127, 0.35);
    color: white;
}

.btn-all-news:hover::before {
    opacity: 1;
}

.btn-all-news span,
.btn-all-news i {
    position: relative;
    z-index: 1;
}

.btn-all-news i {
    transition: transform 0.3s ease;
}

.btn-all-news:hover i {
    transform: scale(1.1) rotate(5deg);
}

/* No News State */
.no-news-container {
    text-align: center;
    padding: 80px 20px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(38, 224, 127, 0.1);
}

.no-news-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(38, 224, 127, 0.1) 0%, rgba(19, 197, 193, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    animation: pulse 3s infinite;
}

.no-news-icon i {
    font-size: 3.5rem;
    color: var(--primary);
    opacity: 0.7;
}

.no-news-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #555;
    margin-bottom: 15px;
}

.no-news-text {
    font-size: 1.1rem;
    color: #777;
    margin: 0;
}

/* Animation for Pulse */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(38, 224, 127, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(38, 224, 127, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(38, 224, 127, 0);
    }
}

/* Responsive Design for News Section */
@media (max-width: 991px) {
    .latest-news-section {
        padding: 80px 0;
    }

    .news-card-title {
        font-size: 1.2rem;
    }

    .news-image-wrapper {
        height: 220px;
    }

    .no-news-icon {
        width: 100px;
        height: 100px;
    }

    .no-news-icon i {
        font-size: 3rem;
    }

    .no-news-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .latest-news-section {
        padding: 60px 0;
    }

    .news-card-modern {
        margin-bottom: 25px;
    }

    .news-image-wrapper {
        height: 200px;
    }

    .news-content-wrapper {
        padding: 20px;
    }

    .news-card-title {
        font-size: 1.1rem;
    }

    .news-excerpt-text {
        font-size: 0.95rem;
    }

    .btn-all-news {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .news-category-badge {
        padding: 6px 12px;
        font-size: 0.8rem;
        top: 15px;
        right: 15px;
    }

    .no-news-container {
        padding: 60px 15px;
    }

    .no-news-icon {
        width: 80px;
        height: 80px;
    }

    .no-news-icon i {
        font-size: 2.5rem;
    }

    .no-news-title {
        font-size: 1.3rem;
    }

    .no-news-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .news-image-wrapper {
        height: 180px;
    }

    .news-content-wrapper {
        padding: 18px;
    }

    .news-meta-info {
        gap: 10px;
    }

    .news-date-item,
    .news-time-item {
        font-size: 0.8rem;
    }

    .btn-news-read {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}
