:root {
    --primary-color: #003d05;
    --primary-dark: #0a58ca;
    --secondary-color: #6c5ce7;
    --accent-color: #fff;
    --dark-color: #1a1a2e;
    --light-bg: #f8f9fa;
    --gradient-1: linear-gradient(135deg, #0d6efd 0%, #6c5ce7 50%, #00cec9 100%);
    --gradient-2: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    --gradient-3: linear-gradient(45deg, #0d6efd, #00cec9);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.18);
    --shadow-glow: 0 0 30px rgba(0, 71, 38, 0.3);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 16px;
    --btn-color: #a80000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    overflow-x: hidden;
    background-color: #fff;
    color: #333;
    line-height: 1.8;
}

/* ========== توب بار ========== */
.top-bar {
    /* background: var(--dark-color); */
    background-color: #003d05;
    color: #fff;
    padding: 10px 0;
    font-size: 0.9rem;
    position: relative;
    z-index: 1050;
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
}
.top-bar .contact-info span {
    margin-left: 20px;
    transition: var(--transition);
    cursor: pointer;
}
.top-bar .contact-info span:hover {
    color: var(--accent-color);
}
.top-bar .contact-info i {
    color: #fff;
    margin-left: 6px;
    animation: pulse-icon 2s infinite;
}
.top-bar .social-icons a {
    color: #fff;
    margin-right: 12px;
    transition: var(--transition);
    display: inline-block;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
}
.top-bar .social-icons a:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px) rotate(8deg);
    box-shadow: 0 5px 15px rgba(0, 206, 201, 0.4);
}
@keyframes pulse-icon {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* ========== ناف بار ========== */
.main-navbar {
    /* background: linear-gradient(0deg, #b0ffc2, #fff); */
    background: linear-gradient(0deg, #e5fdea, #fff);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    transition: background 0.5s ease, box-shadow 0.35s ease, padding 0.35s ease;
    border-bottom: 1px solid rgba(40, 167, 69, 0.2);
    z-index: 1040;
    box-shadow: 0 2px 15px rgba(40, 167, 69, 0.2);
}
.main-navbar.scrolled {
    padding: 8px 0;
    box-shadow: 0 5px 25px rgba(40, 167, 69, 0.3);
    background: linear-gradient(180deg, #28a745, #fff);
}
/* Navbar hover: show logo as background */
.main-navbar {
    position: relative;
    overflow: hidden;
}
.main-navbar::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, #145a23, #1e7e34, #28a745);
    background-size: 400% 400%;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
    animation: navbarGradient 8s ease infinite;
}
    /* content: '';
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto 85%;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
} */
.main-navbar:hover::after {
    opacity: 0.10;
}
.main-navbar .container {
    position: relative;
    z-index: 1;
}
/* Logo hover: change navbar background */
 /* .main-navbar.logo-hovered {
    background: linear-gradient(135deg, #145a23 0%, #1e7e34 50%, #28a745 100%);
    box-shadow: 0 4px 30px rgba(20, 90, 35, 0.45);
}  */
.main-navbar .navbar-brand {
    padding: 0;
    flex-shrink: 0;
}
.navbar-logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.15));
}
.main-navbar .navbar-brand:hover .navbar-logo-img {
    transform: scale(1.08) rotate(-2deg);
    filter: drop-shadow(0 4px 12px rgba(20, 90, 35, 0.5));
}
.main-navbar .nav-link {
    color: #1a5c2a !important;
    font-weight: 600;
    margin: 0 6px;
    padding: 8px 16px !important;
    border-radius: 25px;
    transition: var(--transition);
    position: relative;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(255,255,255,0.4);
    overflow: hidden;
}
/* Logo as background behind each nav button */
.main-navbar .nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/logo/logo-2.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto 90%;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 25px;
    z-index: 0;
}
.main-navbar .nav-link:hover::before,
.main-navbar .nav-link.active::before {
    opacity: 0.18;
}
/* Keep text above the logo background */
.main-navbar .nav-link span,
.main-navbar .nav-link {
    z-index: 1;
}
/* .main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
    color: #fff !important;
    background: rgba(26, 122, 46, 0.8);
    text-shadow: none;
} */
/* .main-navbar .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: #fff;
    border-radius: 10px;
} */
.main-navbar .btn-contact {
    background: var(--btn-color);
    border: none;
    color: #fff;
    padding: 10px 22px;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 63, 9, 0.3);
}
.main-navbar .btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    color: #fff;
}
.navbar-toggler {
    border: 1px solid rgba(26, 122, 46, 0.5);
    padding: 6px 10px;
}
.navbar-toggler-icon {
    filter: invert(0.3) sepia(1) saturate(3) hue-rotate(90deg);
}

/* ========== هيدر الصفحة ========== */
.page-header {
    position: relative;
    width: 100%;
    height: 400px;
    min-height: 350px;
    overflow: hidden;
    margin-top: -1px;
}
.page-header .page-header-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 61, 5, 0.7) 0%, rgba(40, 167, 69, 0.5) 50%, rgba(0, 61, 5, 0.7) 100%);
    z-index: 2;
}
.page-header .page-header-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
}
.page-header .page-header-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 15px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}
.page-header .page-header-desc {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 25px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    color: rgba(255, 255, 255, 0.95);
}
.page-header .breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 25px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.page-header .breadcrumb-item {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}
.page-header .breadcrumb-item:hover {
    color: #fff;
}
.page-header .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.7);
}
.page-header-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    z-index: 4;
    pointer-events: none;
}
.page-header-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

/* ========== السلايدر (هيرو) ========== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 650px;
    overflow: hidden;
    margin-top: -1px;
}
.hero-slider .carousel-item {
    height: 100vh;
    min-height: 650px;
    position: relative;
    overflow: hidden;
}
.hero-slider .slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transform: scale(1) translate(0, 0);
    transition: transform 1.2s cubic-bezier(0.1, 0.8, 0.25, 1);
}
.hero-slider .carousel-item::before {
    content: '';
    position: absolute;
    inset: 0;
    /* background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.35) 50%, rgba(0, 0, 0, 0.65) 100%); */
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 2;
}
.hero-slider .carousel-item .slide-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
}
.hero-slider .slide-subtitle {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #00cec9;
    background: rgba(0, 206, 201, 0.15);
    border: 1px solid rgba(0, 206, 201, 0.3);
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 206, 201, 0.2);
    opacity: 0;
    transform: translateY(-30px);
}
.hero-slider .slide-title {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    opacity: 0;
    transform: translateY(40px);
}
.hero-slider .slide-desc {
    font-size: 1.3rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 35px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    color: rgba(255, 255, 255, 0.95);
    opacity: 0;
    transform: translateY(40px);
}
.hero-slider .slide-btns {
    opacity: 0;
    transform: translateY(30px);
}

/* --- Active Slide Animation Triggers --- */
.hero-slider .carousel-item.active .slide-bg {
    animation: kenBurns 15s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite alternate;
}
.hero-slider .carousel-item.active .slide-subtitle {
    animation: slideDownIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: 0.4s;
}
.hero-slider .carousel-item.active .slide-title {
    animation: revealText 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 0.7s;
}
.hero-slider .carousel-item.active .slide-desc {
    animation: revealText 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 1s;
}
.hero-slider .carousel-item.active .slide-btns {
    animation: revealText 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 1.3s;
}

/* --- Keyframe Definitions --- */
@keyframes kenBurns {
    0% {
        transform: scale(1) translate(0, 0);
    }
    100% {
        transform: scale(1.08) translate(-1%, -0.5%);
    }
}
@keyframes slideDownIn {
    0% {
        opacity: 0;
        transform: translateY(-35px);
        letter-spacing: 0px;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: 2px;
    }
}
@keyframes revealText {
    0% {
        opacity: 0;
        transform: translateY(40px);
        clip-path: inset(100% 0 0 0);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        clip-path: inset(0 0 0 0);
    }
}
.hero-slider .btn-hero {
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: var(--transition);
    margin: 5px;
    position: relative;
    overflow: hidden;

}
.hero-slider .btn-primary-hero {
    /* background: var(--gradient-3); */
    background: var(--btn-color);
    border: none;
    color: #fff;
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.4);
}
.hero-slider .btn-primary-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(13, 110, 253, 0.55);
}
.hero-slider .btn-outline-hero {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}
.hero-slider .btn-outline-hero:hover {
    background: #fff;
    color: var(--dark-color);
}
.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.hero-slider:hover .carousel-control-prev,
.hero-slider:hover .carousel-control-next {
    opacity: 1;
}
.hero-slider .carousel-control-prev {
    right: 30px;
}
.hero-slider .carousel-control-next {
    left: 30px;
}

.hero-slider .carousel-indicators button {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: transparent;
    margin: 0 6px;
    transition: var(--transition);
}
.hero-slider .carousel-indicators button.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(0, 206, 201, 0.6);
}
.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    z-index: 3;
    pointer-events: none;
}
.hero-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

/* ========== قسم عن الشركة ========== */
.about-section {
    padding: 50px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}
.about-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    top: -150px;
    left: -150px;
    pointer-events: none;
}
.about-section .about-images-container {
    position: relative;
    padding-bottom: 70px;
    padding-left: 50px;
}
.about-section .about-image-main {
    position: relative;
    width: 85%;
    margin-right: 0;
    margin-left: auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    z-index: 1;
    padding: 5px;
    background: #fff;
}
.about-section .about-image-main::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent,
        #28a745,
        transparent,
        #003d05,
        transparent,
        #28a745,
        transparent
    );
    animation: rotate-border 8s linear infinite;
    z-index: -1;
}
.about-section .about-image-main img {
    position: relative;
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: calc(var(--border-radius) - 5px);
    transition: var(--transition);
    display: block;
    z-index: 2;
}
.about-section .about-image-secondary {
    position: absolute;
    width: 55%;
    bottom: 0;
    left: 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    z-index: 2;
    padding: 5px;
    background: #fff;
}
.about-section .about-image-secondary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent,
        #003d05,
        transparent,
        #28a745,
        transparent,
        #003d05,
        transparent
    );
    animation: rotate-border 16s linear infinite;
    z-index: -1;
}
.about-section .about-image-secondary img {
    position: relative;
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: calc(var(--border-radius) - 5px);
    transition: var(--transition);
    display: block;
    z-index: 2;
}
.about-section .about-images-container:hover .about-image-main img {
    transform: scale(1.05);
}
.about-section .about-images-container:hover .about-image-secondary img {
    transform: scale(1.05);
}
@keyframes rotate-border {
    100% {
        transform: rotate(360deg);
    }
}
.about-section .about-images-container .experience-badge {
    position: absolute;
    bottom: 120px;
    right: 20px;
    background: #003d05;
    color: #fff;
    padding: 20px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-glow);
    animation: badge-float 4s ease-in-out infinite;
    z-index: 3;
}
@keyframes badge-float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}
.about-section .experience-badge .number {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    display: block;
}
.about-section .experience-badge .text {
    font-size: 0.85rem;
    opacity: 0.9;
}
.about-section .section-subtitle {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}
.about-section .section-subtitle::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
}
.about-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.4;
}
.about-section .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
    padding: 15px;
    border-radius: 12px;
    transition: var(--transition);
    background: transparent;
}
.about-section .feature-item:hover {
    background: var(--light-bg);
    transform: translateX(-5px);
}
.about-section .feature-item .icon-circle {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: var(--btn-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.25);
}

/* ========== قسم اتصل بنا ========== */
.contact-section {
    padding: 80px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}
.contact-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(40, 167, 69, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    pointer-events: none;
}
.contact-section .contact-info-wrapper {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    height: 100%;
}
.contact-section .section-subtitle {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 10px;
    display: inline-block;
}
.contact-section h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.4;
}
.contact-section h2 span {
    color: var(--primary-color);
}
.contact-section .contact-desc {
    color: #666;
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.8;
}
.contact-section .contact-details {
    margin-bottom: 30px;
}
.contact-section .contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: #fff;
    border-radius: 12px;
    transition: var(--transition);
}
.contact-section .contact-detail-item:hover {
    transform: translateX(-5px);
    box-shadow: var(--shadow-sm);
}
.contact-section .contact-detail-item .icon-box {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 61, 5, 0.25);
}
.contact-section .contact-detail-item .content h5 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 1rem;
    color: #333;
}
.contact-section .contact-detail-item .content p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}
.contact-section .contact-social h5 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.1rem;
}
.contact-section .social-links {
    display: flex;
    gap: 10px;
}
.contact-section .social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 61, 5, 0.25);
}
.contact-section .social-links a:hover {
    transform: translateY(-5px);
    background: var(--btn-color);
    box-shadow: 0 8px 20px rgba(168, 0, 0, 0.4);
}
.contact-section .contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.contact-section .contact-form-wrapper h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: #333;
}
.contact-section .form-group {
    margin-bottom: 20px;
}
.contact-section .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}
.contact-section .form-group input,
.contact-section .form-group textarea {
    width: 100%;
    padding: 12px 18px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-family: 'Cairo', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
    background: #f8f9fa;
    text-align: right;
}
.contact-section .form-group input:focus,
.contact-section .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0, 61, 5, 0.1);
}
.contact-section .form-group textarea {
    resize: vertical;
}
.contact-section .btn-submit {
    background: var(--btn-color);
    border: none;
    color: #fff;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(168, 0, 0, 0.3);
    cursor: pointer;
}
.contact-section .btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(168, 0, 0, 0.4);
}
.contact-section .map-wrapper {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* ========== قسم المنتجات ========== */
.products-section {
    padding: 100px 0;
    background: 
        linear-gradient(135deg, rgba(245, 251, 247, 0.80) 0%, rgba(238, 251, 241, 0.82) 50%, rgba(246, 252, 248, 0.80) 100%),
        url('../images/product-bg.jpeg') no-repeat;
    background-size: 200% 200%, 115% 115%;
    position: relative;
    overflow: hidden;
    z-index: 1;
    animation: products-bg-anim 25s ease infinite alternate;
}
.products-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(40, 167, 69, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: -50px;
    left: -50px;
    z-index: -1;
    animation: drift-shape-1 15s ease-in-out infinite alternate;
}
.products-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 61, 5, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -100px;
    right: -100px;
    z-index: -1;
    animation: drift-shape-2 20s ease-in-out infinite alternate;
}
@keyframes products-bg-anim {
    0% {
        background-position: 0% 50%, 0% 0%;
        background-size: 200% 200%, 110% 110%;
    }
    50% {
        background-position: 100% 50%, 50% 50%;
        background-size: 200% 200%, 118% 118%;
    }
    100% {
        background-position: 0% 50%, 100% 100%;
        background-size: 200% 200%, 110% 110%;
    }
}
@keyframes drift-shape-1 {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(80px, 50px) scale(1.15);
    }
    100% {
        transform: translate(-40px, 100px) scale(0.9);
    }
}
@keyframes drift-shape-2 {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-100px, -60px) scale(0.85);
    }
    100% {
        transform: translate(50px, -120px) scale(1.1);
    }
}
.products-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}
.products-section .section-header .badge-title {
    display: inline-block;
    background: rgba(13, 110, 253, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
}
.products-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
}
.product-card {
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.04);
}
.product-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
}
.product-card .product-image {
    position: relative;
    overflow: hidden;
    height: 400px;
}
.product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover .product-image img {
    transform: scale(1.12);
}
.product-card .product-image .overlay-actions {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 46, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transition: var(--transition);
}
.product-card:hover .product-image .overlay-actions {
    opacity: 1;
}
.product-card .overlay-actions .action-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    transform: translateY(20px);
    opacity: 0;
}
.product-card:hover .overlay-actions .action-btn {
    transform: translateY(0);
    opacity: 1;
}
.product-card .overlay-actions .action-btn:nth-child(1) {
    transition-delay: 0.05s;
}
.product-card .overlay-actions .action-btn:nth-child(2) {
    transition-delay: 0.1s;
}
.product-card .overlay-actions .action-btn:nth-child(3) {
    transition-delay: 0.15s;
}
.product-card .overlay-actions .action-btn:hover {
    background: var(--accent-color);
    color: #000;
    transform: translateY(-5px) scale(1.1);
}
.product-card .product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-3);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}
.product-card .product-info {
    padding: 22px;
    text-align: center;
}
.product-card .product-info .category {
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.product-card .product-info h4 {
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1.2rem;
}
.product-card .product-info .price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--secondary-color);
}
.product-card .product-info .price .old-price {
    text-decoration: line-through;
    color: #aaa;
    font-size: 0.9rem;
    margin-right: 8px;
    font-weight: 400;
}
.product-card .product-info .rating i {
    color: #ffc107;
    font-size: 0.85rem;
    margin: 0 1px;
}

/* ========== قسم الجاليري ========== */
.gallery-section {
    padding: 20px 0;
    background: #fff;
    position: relative;
}
.gallery-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}
.gallery-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
}
.gallery-section .section-header .badge-title {
    display: inline-block;
    background: rgba(40, 167, 69, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* ========== قسم معرض الصور الكامل ========== */
.gallery-full-section {
    padding: 40px 0; 
    background: #fff;
    position: relative;
    overflow: hidden;
}
.gallery-full-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(40, 167, 69, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    left: -100px;
    pointer-events: none;
}
.gallery-full-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}
.gallery-full-section .section-header .badge-title {
    display: inline-block;
    background: rgba(40, 167, 69, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
}
.gallery-full-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
}
.gallery-full-section .gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: visible;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.gallery-full-section .gallery-item > a {
    display: block;
    position: relative;
    height: 280px;
    border-radius: var(--border-radius);
    overflow: hidden;
}
.gallery-full-section .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    display: block;
}
.gallery-full-section .gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.gallery-full-section .gallery-item:hover img {
    transform: scale(1.1);
}
.gallery-full-section .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 61, 5, 0.85) 0%, rgba(40, 167, 69, 0.75) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.gallery-full-section .gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-full-section .overlay-content {
    text-align: center;
    color: #fff;
    transform: translateY(20px);
    transition: var(--transition);
}
.gallery-full-section .gallery-item:hover .overlay-content {
    transform: translateY(0);
}
.gallery-full-section .overlay-content i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}
.gallery-full-section .overlay-content span {
    font-size: 0.95rem;
    font-weight: 600;
}
.gallery-full-section .gallery-item-caption {
    margin-top: 12px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-color);
    padding: 8px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: var(--transition);
}
.gallery-full-section .gallery-item:hover .gallery-item-caption {
    background: var(--primary-color);
    color: #fff;
}
.gallerySwiper {
    padding: 20px 0 60px !important;
}
.gallery-swiper-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 250px;
}
@media (min-width: 1200px) {
    .gallery-swiper-item {
        height: 180px;
    }
}
.gallery-swiper-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    display: block;
}
.gallery-swiper-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.gallery-swiper-item:hover img {
    transform: scale(1.08);
}
.gallery-swiper-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 61, 5, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.gallery-swiper-item:hover .gallery-swiper-overlay {
    opacity: 1;
}
.gallery-swiper-overlay i {
    color: #fff;
}

/* ==================== Products Types Section ==================== */
.products-types-section {
    padding: 40px 0;
    /* background: #f8f9fa; */
}
.products-types-section .section-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}
.products-types-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0;
}
.product-type-card {
    background: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid #e9ecef;
}
.product-type-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}
.product-type-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #006400);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.product-type-icon i {
    color: #fff;
    font-size: 1.8rem;
}
.product-type-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}
.product-type-card p {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 15px;
}
.product-type-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.product-type-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #495057;
    font-size: 0.95rem;
    display: flex;
    justify-content: space-between;
}
.product-type-list li:last-child {
    border-bottom: none;
}
.product-type-list li strong {
    color: var(--primary-color);
}
@media (max-width: 768px) {
    .products-types-section h2 {
        font-size: 1.8rem;
    }
    .product-type-card {
        padding: 20px;
    }
}

/* ==================== Specifications Section ==================== */
.specifications-section {
    padding: 80px 0;
    background: #fff;
}
.specifications-section .section-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}
.specifications-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0;
}
.specifications-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.specifications-table thead {
    background: linear-gradient(135deg, var(--primary-color), #006400);
}
.specifications-table thead th {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 18px 15px;
    text-align: center;
    border: none;
}
.specifications-table tbody tr {
    border-bottom: 1px solid #e9ecef;
    transition: var(--transition);
}
.specifications-table tbody tr:hover {
    background-color: #f8f9fa;
}
.specifications-table tbody tr:last-child {
    border-bottom: none;
}
.specifications-table tbody td {
    padding: 16px 15px;
    text-align: center;
    color: #495057;
    font-size: 0.95rem;
    font-weight: 500;
}
.specifications-table tbody td:first-child {
    font-weight: 700;
    color: var(--primary-color);
}
@media (max-width: 768px) {
    .specifications-section h2 {
        font-size: 1.8rem;
    }
    .specifications-table thead th,
    .specifications-table tbody td {
        padding: 12px 10px;
        font-size: 0.85rem;
    }
}

/* ==================== Quality Standards Section ==================== */
.quality-standards-section {
    padding: 80px 0;
    background: #f8f9fa;
}
.quality-standards-section .section-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}
.quality-standards-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0;
}
.quality-card {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid #e9ecef;
}
.quality-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}
.quality-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}
.quality-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #006400);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.quality-icon i {
    color: #fff;
    font-size: 1.5rem;
}
.quality-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
}
.quality-content p {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 15px;
}
.quality-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.quality-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}
.quality-list li:last-child {
    border-bottom: none;
}
.quality-list .badge {
    background: var(--primary-color);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}
.quality-list .badge-gold {
    background: linear-gradient(135deg, #ffd700, #ffb700);
    color: #333;
}
.quality-list span:not(.badge) {
    color: #495057;
    font-size: 0.9rem;
    line-height: 1.6;
}
.quality-summary {
    background: linear-gradient(135deg, var(--primary-color), #006400);
    color: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
}
.quality-summary h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}
.quality-summary p {
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
    opacity: 0.95;
}
@media (max-width: 768px) {
    .quality-standards-section h2 {
        font-size: 1.8rem;
    }
    .quality-card {
        padding: 20px;
    }
    .quality-header {
        flex-direction: column;
        text-align: center;
    }
    .quality-header h3 {
        font-size: 1rem;
    }
    .quality-list li {
        flex-direction: column;
        align-items: flex-start;
    }
    .quality-summary {
        padding: 20px;
    }
    .quality-summary h4 {
        font-size: 1.1rem;
    }
    .quality-summary p {
        font-size: 0.9rem;
    }
}

/* Swiper Controls */
.gallery-section .swiper-button-next,
.gallery-section .swiper-button-prev {
    color: #003d05 !important;
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}
.gallery-section .swiper-button-next::after,
.gallery-section .swiper-button-prev::after {
    font-size: 1.2rem !important;
    font-weight: 900;
}
.gallery-section .swiper-button-next:hover,
.gallery-section .swiper-button-prev:hover {
    background: #003d05;
    color: #fff !important;
}
.gallery-section .swiper-pagination-bullet-active {
    background: #003d05 !important;
    width: 24px;
    border-radius: 10px;
}

/* ========== الفوتر ========== */
.footer-section {
    background-image: url(../images/footer.jpg);
    background-size: cover;
    /* background: var(--gradient-2); */
    color: #ccc;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}
.footer-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 206, 201, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    pointer-events: none;
}
.footer-section .footer-widget h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    font-size: 1.2rem;
}
.footer-section .footer-widget h5::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 5px;
}
.footer-section .footer-widget p {
    line-height: 2;
    font-size: 0.95rem;
}
.footer-section .footer-links {
    list-style: none;
    padding: 0;
}
.footer-section .footer-links li {
    margin-bottom: 12px;
}
.footer-section .footer-links li a {
    color: #bbb;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    position: relative;
    padding-right: 0;
}
.footer-section .footer-links li a::before {
    content: '\f053';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 8px;
    font-size: 0.7rem;
    color: var(--accent-color);
    transition: var(--transition);
}
.footer-section .footer-links li a:hover {
    color: #fff;
    padding-right: 8px;
}
.footer-section .footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}
.footer-section .footer-contact-item i {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-top: 4px;
    min-width: 20px;
}
.footer-section .newsletter-form {
    display: flex;
    gap: 8px;
    margin-top: 15px;
}
.footer-section .newsletter-form input {
    flex: 1;
    padding: 12px 18px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    outline: none;
    transition: var(--transition);
}
.footer-section .newsletter-form input:focus {
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.1);
}
.footer-section .newsletter-form input::placeholder {
    color: #888;
}
.footer-section .newsletter-form button {
    padding: 12px 20px;
    border-radius: 25px;
    background: var(--accent-color);
    color: #000;
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.footer-section .newsletter-form button:hover {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 206, 201, 0.5);
}
.footer-bottom {
    background: rgba(0, 0, 0, 0.25);
    padding: 20px 0;
    margin-top: 60px;
    text-align: center;
    font-size: 0.9rem;
    color: #999;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-bottom .heart {
    color: #e74c3c;
    animation: heartbeat 1.5s infinite;
    display: inline-block;
}
@keyframes heartbeat {
    0%,
    100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.25);
    }
    50% {
        transform: scale(1);
    }
    75% {
        transform: scale(1.25);
    }
}
.footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #ccc;
    margin: 0 4px;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--accent-color);
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 206, 201, 0.4);
}

/* ========== Back to Top ========== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--btn-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border: none;
    box-shadow: var(--shadow-glow);
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(13, 110, 253, 0.5);
}

/* ========== Responsive ========== */
@media (max-width: 991px) {
    .hero-slider .slide-content h1 {
        font-size: 2.5rem;
    }
    .hero-slider .slide-content p {
        font-size: 1rem;
    }
    .about-section h2,
    .products-section .section-header h2,
    .gallery-section .section-header h2 {
        font-size: 2rem;
    }
    .main-navbar .nav-link {
        margin: 4px 0;
        text-align: center;
    }
    .main-navbar .btn-contact {
        margin-top: 10px;
        display: block;
        text-align: center;
    }
    .top-bar .contact-info span {
        display: block;
        margin: 3px 0;
    }
    .footer-section .newsletter-form {
        flex-direction: column;
    }
}
@media (max-width: 576px) {
    .hero-slider {
        height: 80vh;
        min-height: 500px;
    }
    .hero-slider .carousel-item {
        height: 80vh;
        min-height: 500px;
    }
    .hero-slider .slide-content h1 {
        font-size: 1.8rem;
    }
    .hero-slider .btn-hero {
        padding: 10px 22px;
        font-size: 0.9rem;
    }
    .about-section .about-images-container {
        padding-bottom: 40px;
        padding-left: 20px;
    }
    .about-section .about-image-main img {
        height: 280px;
    }
    .about-section .about-image-secondary img {
        height: 170px;
    }
    .about-section .about-images-container .experience-badge {
        padding: 12px 16px;
        bottom: 60px;
        right: 10px;
    }
    .about-section .experience-badge .number {
        font-size: 1.8rem;
    }
}

/* ========== قسم التصدير للسودان ========== */
.sudan-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff 0%, #f6fcf8 100%);
    position: relative;
    overflow: hidden;
}
.sudan-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(40, 167, 69, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -300px;
    left: -200px;
    pointer-events: none;
}
.sudan-section .section-subtitle {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
    position: relative;
}
.sudan-section .section-subtitle::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 45px;
    height: 2px;
    background: #28a745;
}
.sudan-section .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.4;
}
.sudan-section .section-title span {
    color: #28a745;
}
.sudan-section .section-desc {
    color: #666;
    font-size: 1.05rem;
    margin-bottom: 35px;
    line-height: 1.8;
}
.sudan-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.sudan-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.sudan-feature-item .icon-box {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: rgba(40, 167, 69, 0.08);
    border: 1px solid rgba(40, 167, 69, 0.15);
    border-radius: 50%;
    color: #28a745;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.05);
    transition: var(--transition);
}
.sudan-feature-item:hover .icon-box {
    background: #003d05;
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}
.sudan-feature-item .content h5 {
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 1.15rem;
}
.sudan-feature-item .content p {
    color: #777;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.7;
}
.btn-sudan {
    background: #003d05;
    border: none;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 61, 9, 0.25);
    display: inline-block;
    text-decoration: none;
}
.btn-sudan:hover {
    background: var(--btn-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
    color: #fff;
}

/* Sudan Images layout */
.sudan-images-wrapper {
    position: relative;
    padding-bottom: 80px;
    padding-right: 50px;
}
.sudan-img-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 6px solid #fff;
    transition: var(--transition);
}
.sudan-img-card img {
    width: 100%;
    display: block;
    object-fit: cover;
    border-radius: calc(var(--border-radius) - 6px);
    transition: var(--transition);
}
.sudan-img-card.main-img {
    width: 80%;
    z-index: 1;
    position: relative;
}
.sudan-img-card.main-img img {
    height: 380px;
}
.sudan-img-card.sub-img {
    width: 55%;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
}
.sudan-img-card.sub-img img {
    height: 240px;
}
.sudan-images-wrapper:hover .sudan-img-card.main-img img {
    transform: scale(1.04);
}
.sudan-images-wrapper:hover .sudan-img-card.sub-img img {
    transform: scale(1.05);
}
.sudan-badge {
    position: absolute;
    top: 30px;
    left: 20px;
    background: #28a745;
    color: #fff;
    padding: 14px 22px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 5px 20px rgba(40, 167, 69, 0.4);
    z-index: 3;
    animation: badge-float 4s ease-in-out infinite;
}

@media (max-width: 991px) {
    .sudan-section .section-title {
        font-size: 2rem;
    }
}
@media (max-width: 576px) {
    .sudan-images-wrapper {
        padding-bottom: 50px;
        padding-right: 20px;
    }
    .sudan-img-card.main-img img {
        height: 280px;
    }
    .sudan-img-card.sub-img img {
        height: 170px;
    }
    .sudan-badge {
        padding: 10px 16px;
        top: 15px;
        left: 10px;
        font-size: 0.8rem;
    }
}
