:root {
    --primary: #0d6efd;
    --primary-dark: #0a58ca;
    --accent: #ff6b35;
    --accent-hover: #e85d2c;
    --dark: #0b0f19;
    --dark-secondary: #131824;
    --text-light: #e0e0e0;
    --text-muted: #a0a5b0;
    --border-subtle: rgba(255, 255, 255, 0.08);
    --card-bg: #1a1f2e;
    --gradient-1: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
    --gradient-2: linear-gradient(135deg, #ff6b35 0%, #ff3d71 100%);
    --gradient-3: linear-gradient(180deg, #0b0f19 0%, #131824 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(13, 110, 253, 0.25);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 20px;
    --radius-xl: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Almarai', sans-serif;
    background-color: var(--dark);
    background-image:
        radial-gradient(ellipse 80% 60% at 20% 10%, rgba(13, 110, 253, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 90%, rgba(102, 16, 242, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 60% 40%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    animation: bgShift 18s ease-in-out infinite alternate;
}

@keyframes bgShift {
    0% {
        background-position: 0% 0%, 100% 100%, 60% 40%;
    }

    33% {
        background-position: 30% 20%, 70% 80%, 80% 20%;
    }

    66% {
        background-position: 60% 10%, 40% 90%, 20% 70%;
    }

    100% {
        background-position: 10% 50%, 90% 20%, 50% 90%;
    }
}

/* ---- Floating ambient orbs ---- */
body::before,
body::after {
    content: '';
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(80px);
    opacity: 0.18;
}

body::before {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #0d6efd 0%, transparent 70%);
    top: -150px;
    left: -150px;
    animation: orbFloat1 20s ease-in-out infinite alternate;
}

body::after {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #6610f2 0%, transparent 70%);
    bottom: -120px;
    right: -120px;
    animation: orbFloat2 25s ease-in-out infinite alternate;
}

@keyframes orbFloat1 {
    0% {
        transform: translate(0px, 0px) scale(1);
    }

    50% {
        transform: translate(120px, 80px) scale(1.15);
    }

    100% {
        transform: translate(60px, 160px) scale(0.9);
    }
}

@keyframes orbFloat2 {
    0% {
        transform: translate(0px, 0px) scale(1);
    }

    50% {
        transform: translate(-100px, -60px) scale(1.2);
    }

    100% {
        transform: translate(-50px, -140px) scale(0.85);
    }
}

/* ---- Particle Canvas ---- */
#bgCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

/* Ensure all content sits above the canvas */
.topbar,
nav,
section,
footer,
#preloader,
.back-to-top {
    position: relative;
    z-index: 1;
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: #2a3040;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #3a4055;
}

/* ========== PRELOADER ========== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.15);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ========== TOPBAR ========== */
.topbar {
    background: #0a0e17;
    border-bottom: 1px solid var(--border-subtle);
    padding: 10px 0;
    font-size: 0.85rem;
    z-index: 1030;
    position: relative;
    letter-spacing: 0.3px;
}

.topbar a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 400;
}

.topbar a:hover {
    color: #fff;
}

.topbar .contact-info span {
    margin-left: 30px;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.topbar .contact-info i {
    color: var(--accent);
    margin-left: 0;
    font-size: 0.85rem;
}

.topbar .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-muted);
    margin-right: 6px;
    transition: var(--transition);
    font-size: 0.8rem;
}

.topbar .social-links a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* ========== NAVBAR ========== */
.navbar {
    /* background: linear-gradient(135deg, rgba(5, 19, 41, 0.92) 0%, rgba(10, 37, 64, 0.9) 35%, rgba(13, 110, 253, 0.6) 70%, rgba(5, 44, 101, 0.92) 100%); */
    background: linear-gradient(135deg, rgba(5, 19, 41, 0.92) 0%, rgba(10, 37, 64, 0.9) 35%, rgba(1, 30, 73, 0.6) 70%, rgba(7, 59, 136, 0.92) 100%);
    /* background-size: 400% 400%;
    animation: navbarBlueFluid 10s ease infinite;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
    padding: 14px 0;
    z-index: 1020; */
}

.navbar.scrolled {
    padding: 10px 0;
    background: linear-gradient(135deg, rgba(5, 19, 41, 0.98) 0%, rgba(10, 37, 64, 0.96) 35%, rgba(13, 110, 253, 0.7) 70%, rgba(5, 44, 101, 0.98) 100%);
    background-size: 400% 400%;
    animation: navbarBlueFluid 8s ease infinite;
    box-shadow: var(--shadow-md);
}

@keyframes navbarBlueFluid {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.navbar-brand {
    font-family: 'Almarai', sans-serif;
    font-weight: 700;
    font-size: 1.7rem;
    letter-spacing: -1px;
    color: #fff !important;
    transition: var(--transition);
}

.navbar-brand .dot {
    color: var(--accent);
    font-size: 2rem;
    line-height: 0;
    display: inline-block;
    margin-right: 1px;
}

.navbar-brand:hover {
    transform: scale(1.03);
}

.navbar-nav .nav-link {
    color: #c0c5ce !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 16px !important;
    margin: 0 3px;
    border-radius: 8px;
    transition: var(--transition);
    letter-spacing: 0.4px;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.05);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: var(--accent);
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.navbar .btn-cta {
    background: var(--gradient-2);
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.35);
}

.navbar .btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
    color: #fff;
}

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 8px 10px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.7)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ========== HERO SLIDER ========== */
.hero-slider {
    position: relative;
    /* margin: 20px 20px 0; */
    border-radius: 28px;
    overflow: hidden;
    background: #0b0f19;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.07);
}

.hero-slider .carousel-item {
    height: 90vh;
    min-height: 580px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-slider .carousel-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    animation: kenBurns 8s ease-in-out infinite alternate;
}

.hero-slider .carousel-item.slide-1::after {
    background-image: url('../img/slider/3.jpg');
}

.hero-slider .carousel-item.slide-2::after {
    background-image: url('../img/slider/2.jpg');
}

.hero-slider .carousel-item.slide-3::after {
    background-image: url('../img/slider/1.jpg');
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.15);
    }
}

.hero-slider .carousel-item::before {
    content: '';
    position: absolute;
    inset: 0;
    /* background: linear-gradient(180deg, rgba(11, 15, 25, 0.35) 0%, rgba(11, 15, 25, 0.65) 100%); */
    background: linear-gradient(180deg, rgba(11, 15, 25, 0.1) 0%, rgba(11, 15, 25, 0.2) 100%);
    z-index: 1;
}


.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding-top: 80px;
    margin: 0 auto;
    text-align: center;
}

.hero-content .subtitle {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: fadeInUp 0.7s ease forwards;
}

.hero-content h1 {
    font-family: 'Almarai', sans-serif;
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
    animation: fadeInUp 0.7s ease 0.2s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
    /* text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8), 0 4px 40px rgba(0, 0, 0, 0.6); */
    /* text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6), 0 4px 40px rgba(0, 0, 0, 0.4); */
}

.hero-content p {
    font-size: 1.15rem;
    color: #c0c5ce;
    margin-bottom: 30px;
    animation: fadeInUp 0.7s ease 0.4s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero-content .btn-group-hero {
    animation: fadeInUp 0.7s ease 0.6s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero-content .btn-hero-primary {
    background: var(--gradient-1);
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(13, 110, 253, 0.4);
    margin-left: 12px;
}

.hero-content .btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(13, 110, 253, 0.55);
    color: #fff;
}

.hero-content .btn-hero-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.hero-content .btn-hero-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    transform: translateY(-3px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    margin: 0 6px;
    transition: var(--transition);
}

.carousel-indicators .active {
    background: var(--accent);
    border-color: var(--accent);
    width: 36px;
    border-radius: 20px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    top: 50%;
    transform: translateY(-50%);
    margin: 0 20px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

/* ========== SECTION STYLES ========== */
section {
    padding: 40px 0;
    position: relative;
}

.section-badge {
    display: inline-block;
    background: rgba(13, 110, 253, 0.12);
    color: #6ea8fe;
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-title {
    font-family: 'Almarai', sans-serif;
    font-size: 2.6rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    color: #fff;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 550px;
    margin: 0 auto 50px;
}

.bg-alt {
    background: var(--dark-secondary);
}

/* ========== ABOUT SECTION ========== */
.about-img-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.about-img-wrapper:hover img {
    transform: scale(1.04);
}

.about-img-wrapper .experience-badge {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: var(--gradient-2);
    color: #fff;
    padding: 18px 22px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.experience-badge .number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1px;
}

.experience-badge .text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.about-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-features li {
    padding: 10px 0;
    font-weight: 500;
    color: #c0c5ce;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-features li i {
    color: var(--accent);
    font-size: 0.9rem;
}

.btn-primary-custom {
    background: var(--gradient-1);
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 13px 30px;
    border-radius: 50px;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 6px 24px rgba(13, 110, 253, 0.35);
    display: inline-block;
    text-decoration: none;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(13, 110, 253, 0.5);
    color: #fff;
}
.orangep{
    color: var(--accent) !important;
}

/* ========== PRODUCT SECTION ========== */
.product-filters {
    padding: 0;
    margin: 0 auto 45px;
    list-style: none;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 50px;
    padding: 6px;
    gap: 5px;
    z-index: 5;
    position: relative;
    max-width: 100%;
}

.product-filters li {
    cursor: pointer;
    display: inline-block;
    padding: 10px 26px;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1;
    color: var(--text-muted);
    border-radius: 50px;
    transition: var(--transition);
    white-space: nowrap;
}

.product-filters li:hover,
.product-filters li.filter-active {
    color: #fff;
    background: var(--gradient-1);
    box-shadow: var(--shadow-sm);
}

/* Responsive Product Filters */
@media (max-width: 768px) {
    .product-filters {
        border-radius: 20px;
        padding: 8px;
        gap: 8px;
    }

    .product-filters li {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .product-filters {
        border-radius: 15px;
        padding: 6px;
        gap: 6px;
    }

    .product-filters li {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

.product-item {
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 255, 255, 0.15);
}

.product-card .product-img {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.product-card .product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-img img {
    transform: scale(1.08);
}

.product-card .product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gradient-2);
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    z-index: 2;
}

.product-card .product-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card .product-body .category {
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.product-card .product-body h5 {
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #fff;
}

/* ========== Toggle Details Button ========== */
.btn-product-toggle-details {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 50px;
    font-size: 0.88rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 5px;
    outline: none;
}

.btn-product-toggle-details:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-product-toggle-details i {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.8rem;
}

.product-card.details-expanded .btn-product-toggle-details {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
    color: var(--accent);
}

.product-card.details-expanded .btn-product-toggle-details i {
    transform: rotate(180deg);
}

/* ========== Collapsible Content Container ========== */
.product-details-collapse {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    opacity: 0;
    overflow: hidden;
}

.product-card.details-expanded .product-details-collapse {
    grid-template-rows: 1fr;
    opacity: 1;
}

.collapse-inner {
    min-height: 0;
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
    margin-top: 18px;
}

.product-card .product-description {
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.product-specs li {
    font-size: 0.82rem;
    color: #c0c5ce;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-specs li i {
    color: var(--accent);
    font-size: 0.85rem;
}

.product-actions-group {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.btn-product-quote {
    flex: 1;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-weight: 600;
    padding: 10px;
    border-radius: 50px;
    font-size: 0.85rem;
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
}

.btn-product-quote:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.btn-product-whatsapp {
    flex: 1;
    background: #25d366;
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 10px;
    border-radius: 50px;
    font-size: 0.85rem;
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-product-whatsapp:hover {
    background: #20ba5a;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
    color: #fff;
    transform: translateY(-2px);
}

/* ========== CONTACT SECTION ========== */
#contact{
    background-image: url(../img/slider/footer.jpg);
    background-attachment: fixed;
}
.contact-info-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
    height: 100%;
    text-align: center;
}

.contact-info-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.contact-info-card .icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(13, 110, 253, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.4rem;
    color: var(--primary);
    transition: var(--transition);
}

.contact-info-card:hover .icon-circle {
    background: var(--primary);
    color: #fff;
    box-shadow: var(--shadow-glow);
}

.contact-form-wrapper {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    padding: 40px;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-md);
}

.form-control-custom {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    color: #fff;
    font-size: 0.95rem;
    transition: var(--transition);
    width: 100%;
    font-family: 'Almarai', sans-serif;
    text-align: right;
}

.form-control-custom:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
    background: rgba(255, 255, 255, 0.06);
}

.form-control-custom::placeholder {
    color: #6a6f7a;
}

textarea.form-control-custom {
    resize: vertical;
    min-height: 130px;
}

/* ========== ARTICLES SECTION ========== */
.article-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--shadow-sm);
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 255, 255, 0.15);
}

.article-card .article-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.article-card .article-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.article-card:hover .article-img img {
    transform: scale(1.06);
}

.article-card .article-date {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    z-index: 2;
    backdrop-filter: blur(4px);
}

.article-card .article-body {
    padding: 22px;
}

.article-card .article-body .tag {
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.article-card .article-body h5 {
    font-weight: 700;
    font-size: 1.15rem;
    margin: 8px 0;
    color: #fff;
    line-height: 1.4;
}

.article-card .article-body p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 14px;
}

.article-card .read-more {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.article-card .read-more i {
    transition: var(--transition);
    margin-right: 4px;
}

.article-card .read-more:hover {
    color: #6ea8fe;
}

.article-card .read-more:hover i {
    transform: translateX(-5px);
}

/* ========== FOOTER ========== */
.footer {
    background: #080c14;
    /* background-image: url(../img/slider/footer.jpg); */
    border-top: 1px solid var(--border-subtle);
    padding: 60px 0 20px;
}

.footer h5 {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer p,
.footer a {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
    line-height: 2;
}

.footer a:hover {
    color: #fff;
    padding-right: 4px;
}

.footer .footer-logo {
    font-family: 'Almarai', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: #fff;
    letter-spacing: -1px;
}

.footer .footer-logo .dot {
    color: var(--accent);
}

.footer .social-footer a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    margin-left: 8px;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer .social-footer a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.footer .footer-bottom {
    border-top: 1px solid var(--border-subtle);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer .newsletter-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    padding: 12px 18px;
    color: #fff;
    font-size: 0.9rem;
    width: 100%;
    transition: var(--transition);
}

.footer .newsletter-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.08);
}

.footer .btn-subscribe {
    background: var(--gradient-2);
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    white-space: nowrap;
}

.footer .btn-subscribe:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* ========== BACK TO TOP ========== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gradient-1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    cursor: pointer;
    border: none;
    font-size: 1.1rem;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 2.6rem;
    }

    .hero-slider .carousel-item {
        height: 80vh;
        min-height: 500px;
    }

    .navbar-collapse {
        background: rgba(11, 15, 25, 0.98);
        border-radius: var(--radius);
        padding: 20px;
        margin-top: 12px;
        border: 1px solid var(--border-subtle);
    }

    section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content .subtitle {
        font-size: 0.7rem;
        padding: 6px 14px;
    }

    .hero-slider .carousel-item {
        height: 70vh;
        min-height: 420px;
    }

    .hero-content .btn-hero-primary,
    .hero-content .btn-hero-outline {
        padding: 10px 22px;
        font-size: 0.85rem;
        display: block;
        width: 100%;
        margin: 6px 0;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .contact-form-wrapper {
        padding: 24px;
    }
}