/* Fonts */
:root {
    --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Ubuntu", sans-serif;
    --nav-font: "Poppins", sans-serif;
    --arabic-font: "Tajawal", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #ffffff;
    /* Background color for the entire website, including individual sections */
    --default-color: #363f40;
    /* Default color used for the majority of the text content across the entire website */
    --heading-color: #1f2f31;
    /* Color for headings, subheadings and title throughout the website */
    --accent-color: #983e3e;
    --second-color: #ed1c24;
    /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff;
    /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff;
    /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}


/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #363f40;
    /* The default color of the main navmenu links */
    --nav-hover-color: #983e3e;
    --main-color: #983e3e;
    /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff;
    /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff;
    /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #363f40;
    /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #099aa7;
    /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}


:root {
    --main-transition:  transform 0.3s ease;;
}




/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    padding-top: 120px;
    position: relative;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--surface-color), transparent 0%) 100%);
    overflow: hidden;
    padding-bottom: 80px;
    min-height: 80vh;
    display: flex;
    align-items: center;

}

.hero .hero-image {
    position: relative;
}

.hero .hero-image .main-image {
    border-radius: 30px;
    box-shadow: 0 30px 80px color-mix(in srgb, var(--accent-color), transparent 80%);
    transform: rotate(-2deg);
    transition: all 0.3s ease;
}

.hero .hero-image .main-image:hover {
    transform: rotate(0deg) scale(1.02);
}

.hero .hero-image .floating-card {
    position: absolute;
    background-color: var(--surface-color);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
    backdrop-filter: blur(20px);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.hero .hero-image .floating-card.contact-card {
    top: 20px;
    left: -30px;
    z-index: 3;
}

.hero .hero-image .floating-card.contact-card .card-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero .hero-image .floating-card.contact-card .card-content i {
    font-size: 2rem;
    color: var(--accent-color);
    padding: 15px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 15px;
}

.hero .hero-image .floating-card.contact-card .card-content .text {
    display: flex;
    flex-direction: column;
}

.hero .hero-image .floating-card.contact-card .card-content .text .label {
    font-size: 0.875rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-weight: 500;
}

.hero .hero-image .floating-card.contact-card .card-content .text .number {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--heading-color);
}

.hero .hero-image .floating-card.stats-card {
    bottom: 30px;
    right: -40px;
    z-index: 3;
    display: flex;
    gap: 2rem;
}

.hero .hero-image .floating-card.stats-card .stat-item {
    text-align: center;
}

.hero .hero-image .floating-card.stats-card .stat-item .number {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.hero .hero-image .floating-card.stats-card .stat-item .label {
    font-size: 0.8rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-weight: 500;
}

@media (max-width: 992px) {
    .hero .hero-image {
        margin-bottom: 3rem;
    }

    .hero .hero-image .floating-card {
        position: static;
        margin: 1rem 0;
        transform: none;
    }

    .hero .hero-image .floating-card.stats-card {
        justify-content: center;
    }
}

.hero .hero-content {
    padding-left: 3rem;
}

@media (max-width: 992px) {
    .hero .hero-content {
        padding-left: 0;
    }
}

.hero .hero-content .badge-container {
    margin-bottom: 1.5rem;
}

.hero .hero-content .badge-container .hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
    color: var(--contrast-color);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero .hero-content .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--heading-color);
}

@media (max-width: 992px) {
    .hero .hero-content .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero .hero-content .hero-title {
        font-size: 2.2rem;
    }
}

.hero .hero-content .hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
    .hero .hero-content .hero-description {
        font-size: 1.1rem;
    }
}

.hero .hero-stats {
    margin-bottom: 3rem;
}

.hero .hero-stats .stat-group {
    display: flex;
    gap: 2.5rem;
}

@media (max-width: 768px) {
    .hero .hero-stats .stat-group {
        flex-direction: column;
        gap: 1.5rem;
    }
}

.hero .hero-stats .stat-group .stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero .hero-stats .stat-group .stat i {
    font-size: 2.5rem;
    color: var(--accent-color);
    padding: 15px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 90%) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
    border-radius: 20px;
}

.hero .hero-stats .stat-group .stat .stat-text {
    display: flex;
    flex-direction: column;
}

.hero .hero-stats .stat-group .stat .stat-text .number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1;
}

.hero .hero-stats .stat-group .stat .stat-text .label {
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-weight: 500;
}

.hero .cta-section .cta-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

@media (max-width: 576px) {
    .hero .cta-section .cta-buttons {
        flex-direction: column;
    }
}

.hero .cta-section .cta-buttons .btn {
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero .cta-section .cta-buttons .btn.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
    border: none;
    color: var(--contrast-color);
}

.hero .cta-section .cta-buttons .btn.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.hero .cta-section .cta-buttons .btn.btn-secondary {
    background-color: transparent;
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
    color: var(--default-color);
}

.hero .cta-section .cta-buttons .btn.btn-secondary:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
}

.hero .cta-section .quick-actions {
    display: flex;
    gap: 2rem;
}

@media (max-width: 768px) {
    .hero .cta-section .quick-actions {
        flex-direction: column;
        gap: 1rem;
    }
}

.hero .cta-section .quick-actions .action-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--default-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.hero .cta-section .quick-actions .action-link i {
    font-size: 1.25rem;
    color: var(--accent-color);
}

.hero .cta-section .quick-actions .action-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.hero .background-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.hero .background-elements .bg-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 92%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
}

.hero .background-elements .bg-shape.shape-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -200px;
}

.hero .background-elements .bg-shape.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -150px;
}

.hero .background-elements .bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 25% 75%, color-mix(in srgb, var(--accent-color), transparent 97%) 0%, transparent 50%);
}

@media (max-width: 992px) {
    .hero {
        padding: 60px 0;
    }

    .hero .hero-content {
        text-align: center;
    }

    .hero .hero-stats .stat-group {
        justify-content: center;
    }

    .hero .cta-section .quick-actions {
        justify-content: center;
    }
}









/*--------------------------------------------------------------
# Home ourServices Section
--------------------------------------------------------------*/

.ourServices {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, var(--background-color) 0%, color-mix(in srgb, var(--surface-color), var(--accent-color) 3%) 100%);
}




.ourServices .section-heading {
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

@media (max-width: 768px) {
    .ourServices .section-heading {
        font-size: 2.25rem;
    }
}

.ourServices .lead-description {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    max-width: 600px;
    margin: 0 auto;
}

.ourServices .image-grid {
    position: relative;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
    height: 500px;
}

@media (max-width: 768px) {
    .ourServices .image-grid {
        grid-template-columns: 1fr;
        height: auto;
        gap: 1rem;
    }
}

.ourServices .image-grid .primary-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 80px color-mix(in srgb, var(--default-color), transparent 88%);
}

.ourServices .image-grid .primary-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.ourServices .image-grid .primary-image:hover img {
    transform: scale(1.08);
}

.ourServices .image-grid .primary-image .certification-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--surface-color);
    padding: 10px 16px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.ourServices .image-grid .primary-image .certification-badge i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.ourServices .image-grid .primary-image .certification-badge span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--heading-color);
}

.ourServices .image-grid .secondary-images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .ourServices .image-grid .secondary-images {
        flex-direction: row;
        height: 180px;
    }
}

.ourServices .image-grid .secondary-images .small-image {
    border-radius: 12px;
    overflow: hidden;
    flex: 1;
    box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 92%);
}

.ourServices .image-grid .secondary-images .small-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ourServices .image-grid .secondary-images .small-image:hover img {
    transform: scale(1.1);
}

.ourServices .content-wrapper {
    padding-left: 2rem;
}

@media (max-width: 992px) {
    .ourServices .content-wrapper {
        padding-left: 0;
        text-align: center;
    }
}

.ourServices .content-wrapper .highlight-box {
    background: var(--surface-color);
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 95%);
}

@media (max-width: 992px) {
    .ourServices .content-wrapper .highlight-box {
        text-align: left;
    }
}

.ourServices .content-wrapper .highlight-box .highlight-icon {
    background: color-mix(in srgb, var(--accent-color), transparent 88%);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ourServices .content-wrapper .highlight-box .highlight-icon i {
    color: var(--accent-color);
    font-size: 1.75rem;
}

.ourServices .content-wrapper .highlight-box .highlight-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--heading-color);
}

.ourServices .content-wrapper .highlight-box .highlight-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 0;
}

.ourServices .content-wrapper .feature-list {
    margin-bottom: 2.5rem;
}

.ourServices .content-wrapper .feature-list .feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

@media (max-width: 992px) {
    .ourServices .content-wrapper .feature-list .feature-item {
        justify-content: flex-start;
    }
}

.ourServices .content-wrapper .feature-list .feature-item .feature-icon i {
    color: var(--accent-color);
    font-size: 1.25rem;
}

.ourServices .content-wrapper .feature-list .feature-item .feature-text {
    font-size: 1.05rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-weight: 400;
}

.ourServices .content-wrapper .metrics-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (max-width: 992px) {
    .ourServices .content-wrapper .metrics-row {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .ourServices .content-wrapper .metrics-row {
        gap: 1rem;
    }
}

.ourServices .content-wrapper .metrics-row .metric-box {
    text-align: center;
}

.ourServices .content-wrapper .metrics-row .metric-box .metric-number {
    font-size: 2.75rem;
    font-weight: 300;
    color: var(--accent-color);
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.ourServices .content-wrapper .metrics-row .metric-box .metric-label {
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-weight: 500;
}

.ourServices .content-wrapper .action-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .ourServices .content-wrapper .action-buttons {
        justify-content: center;
    }
}

.ourServices .content-wrapper .action-buttons .btn-explore {
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 14px 32px;
    font-size: 1.05rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.ourServices .content-wrapper .action-buttons .btn-explore:hover {
    background: color-mix(in srgb, var(--accent-color), black 15%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px color-mix(in srgb, var(--accent-color), transparent 70%);
    color: var(--contrast-color);
}

.ourServices .content-wrapper .action-buttons .btn-contact {
    color: var(--heading-color);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 14px 20px;
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.ourServices .content-wrapper .action-buttons .btn-contact i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.ourServices .content-wrapper .action-buttons .btn-contact:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .ourServices {
        padding: 100px 0;
    }
}

@media (max-width: 768px) {
    .ourServices {
        padding: 80px 0;
    }

    .ourServices .content-wrapper {
        margin-top: 3rem;
    }
}










/*--------------------------------------------------------------
# homeAbout Departments Section
--------------------------------------------------------------*/
.homeAbout {
    position: relative;
    padding: 120px 0;
}



.homeAbout .departments-showcase {
    max-width: 1200px;
    margin: 0 auto;
}

.homeAbout .featured-department {
    margin-bottom: 120px;
}

@media (max-width: 992px) {
    .homeAbout .featured-department {
        margin-bottom: 80px;
    }
}

.homeAbout .department-content {
    padding-right: 40px;
}

@media (max-width: 992px) {
    .homeAbout .department-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
}

.homeAbout .department-category {
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.homeAbout .department-title {
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--heading-color);
}

@media (max-width: 768px) {
    .homeAbout .department-title {
        font-size: 2.25rem;
    }
}

.homeAbout .department-description {
    font-size: 18px;
    line-height: 1.8;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin-bottom: 32px;
}

.homeAbout .department-features {
    margin-bottom: 40px;
}

.homeAbout .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.homeAbout .feature-item i {
    color: var(--accent-color);
    font-size: 18px;
    margin-right: 12px;
}

.homeAbout .feature-item span {
    font-size: 16px;
    color: var(--default-color);
}

.homeAbout .cta-link {
    color: var(--heading-color);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.homeAbout .cta-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.homeAbout .cta-link:hover {
    color: var(--accent-color);
}

.homeAbout .cta-link:hover i {
    transform: translateX(4px);
}

.homeAbout .department-visual {
    position: relative;
}

@media (max-width: 992px) {
    .homeAbout .department-visual {
        margin-top: 40px;
    }
}

.homeAbout .image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.homeAbout .image-wrapper::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
    border-radius: 8px;
    z-index: 2;
    pointer-events: none;
}

.homeAbout .image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

@media (max-width: 768px) {
    .homeAbout .image-wrapper img {
        height: 350px;
    }
}

.homeAbout .image-wrapper:hover img {
    transform: scale(1.02);
}

.homeAbout .departments-grid {
    margin-bottom: 100px;
}

@media (max-width: 992px) {
    .homeAbout .departments-grid {
        margin-bottom: 80px;
    }
}

.homeAbout .department-card {
    background: var(--surface-color);
    padding: 40px 32px;
    height: 100%;
    transition: all 0.4s ease;
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

.homeAbout .department-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color) 0%, transparent 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.homeAbout .department-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.homeAbout .department-card:hover::before {
    transform: scaleX(1);
}

.homeAbout .department-card:hover .card-icon {
    transform: scale(1.1);
}

.homeAbout .card-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 50%;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.homeAbout .card-icon i {
    font-size: 32px;
    color: var(--accent-color);
}

.homeAbout .card-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--heading-color);
    margin-bottom: 16px;
}

.homeAbout .card-description {
    font-size: 16px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 32px;
}

.homeAbout .card-stats {
    display: flex;
    gap: 32px;
}

.homeAbout .stat-item {
    text-align: center;
}

.homeAbout .stat-item .stat-number {
    display: block;
    font-size: 24px;
    font-weight: 600;
    color: var(--accent-color);
    line-height: 1;
}

.homeAbout .stat-item .stat-label {
    font-size: 12px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.homeAbout .departments-cta {
    text-align: center;
    padding: 80px 40px;
    background: color-mix(in srgb, var(--accent-color), transparent 96%);
    border-radius: 8px;
}

@media (max-width: 768px) {
    .homeAbout .departments-cta {
        padding: 60px 24px;
    }
}

.homeAbout .cta-title {
    font-size: 2rem;
    font-weight: 300;
    color: var(--heading-color);
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .homeAbout .cta-title {
        font-size: 1.75rem;
    }
}

.homeAbout .cta-description {
    font-size: 18px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.homeAbout .btn-primary {
    background-color: var(--accent-color);
    border: 2px solid var(--accent-color);
    color: var(--contrast-color);
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 0;
    text-transform: none;
    transition: all 0.3s ease;
}

.homeAbout .btn-primary:hover {
    background-color: transparent;
    color: var(--accent-color);
    transform: translateY(-2px);
}






/*--------------------------------------------------------------
# our_products Section
--------------------------------------------------------------*/
.our_products .service-card {
    position: relative;
    background: var(--surface-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

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


/* Filter Buttons */
.product-filters{
    display:flex;
    position:relative;
    margin-top:20px;
    margin-bottom:30px;
    gap:30px;
}

.product-filters .filter-btn{
    background:none;
    border:none;
    font-size:16px;
    font-weight:600;
    padding:5px 0;
    cursor:pointer;
    position:relative;
    color:#333;
}

.product-filters .filter-btn.active{
    color: var(--accent-color);
}

.product-filters .filter-line{
    position:absolute;
    bottom:0;
    left:0;
    height:3px;
    width:60px; /* سيتم تغييره عبر JS */
    background: var(--accent-color);
    transition: all 0.3s ease;
}



.our_products .service-card:hover .service-image img {
    transform: scale(1.05);
}

.our_products .service-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.our_products .service-icon i {
    font-size: 24px;
    color: var(--contrast-color);
}

.our_products .service-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.our_products .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.our_products .service-image::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to top, var(--surface-color), transparent);
}

.our_products .service-content {
    padding: 30px 25px;
}

.our_products .service-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--heading-color);
    line-height: 1.4;
}

.our_products .service-content p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

.our_products .service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--second-color);
    font-weight: 500;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.our_products .service-link:hover {
    color: var(--heading-color);
    gap: 12px;
}

.our_products .service-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.our_products .service-link:hover i {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .our_products .service-icon {
        width: 50px;
        height: 50px;
        top: 15px;
        right: 15px;
    }

    .our_products .service-icon i {
        font-size: 20px;
    }

    .our_products .service-image {
        height: 180px;
    }

    .our_products .service-content {
        padding: 20px;
    }

    .our_products .service-content h3 {
        font-size: 18px;
    }
}








/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.our_success {
    background: linear-gradient(180deg, var(--background-color) 0%, color-mix(in srgb, var(--surface-color), var(--accent-color) 3%) 100%);
}

.our_success .hero-content {
    margin-bottom: 5rem;
}

.our_success .hero-content .content-wrapper {
    padding-right: 2rem;
}

@media (max-width: 992px) {
    .our_success .hero-content .content-wrapper {
        padding-right: 0;
        margin-bottom: 3rem;
        text-align: center;
    }
}

.our_success .hero-content h2 {
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--heading-color);
}

@media (max-width: 768px) {
    .our_success .hero-content h2 {
        font-size: 2.2rem;
    }
}

.our_success .hero-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin-bottom: 2.5rem;
}

.our_success .hero-content .action-buttons {
    display: flex;
    align-items: center;
    gap: 2rem;
}

@media (max-width: 576px) {
    .our_success .hero-content .action-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
}

.our_success .hero-content .primary-btn {
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    display: inline-block;
}

.our_success .hero-content .primary-btn:hover {
    background: color-mix(in srgb, var(--accent-color), black 15%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.our_success .hero-content .secondary-link {
    display: inline-flex;
    align-items: center;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.our_success .hero-content .secondary-link span {
    margin-right: 0.5rem;
}

.our_success .hero-content .secondary-link i {
    transition: transform 0.3s ease;
}

.our_success .hero-content .secondary-link:hover {
    color: color-mix(in srgb, var(--accent-color), black 20%);
}

.our_success .hero-content .secondary-link:hover i {
    transform: translateX(5px);
}

.our_success .hero-content .hero-image {
    position: relative;
}

.our_success .hero-content .hero-image::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: color-mix(in srgb, var(--accent-color), transparent 95%);
    border-radius: 12px;
    z-index: -1;
}

.our_success .hero-content .hero-image img {
    border-radius: 12px;
    box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.our_success .stats-section {
    margin-bottom: 5rem;
    padding: 3rem 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.our_success .stats-section .stat-item {
    text-align: center;
    padding: 1rem;
}

.our_success .stats-section .stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .our_success .stats-section .stat-item .stat-number {
        font-size: 2rem;
    }
}

.our_success .stats-section .stat-item .stat-label {
    font-size: 1rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-weight: 400;
}

.our_success .services-grid {
    margin-bottom: 4rem;
}

.our_success .services-grid .service-card {
    background: var(--surface-color);
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
    margin-bottom: 2rem;
}

.our_success .services-grid .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px color-mix(in srgb, var(--default-color), transparent 88%);
    border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.our_success .services-grid .service-card .service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.our_success .services-grid .service-card .service-icon i {
    font-size: 2rem;
    color: var(--accent-color);
    transition: all 0.4s ease;
}

.our_success .services-grid .service-card:hover .service-icon {
    background: var(--accent-color);
}

.our_success .services-grid .service-card:hover .service-icon i {
    color: var(--contrast-color);
}

.our_success .services-grid .service-card h4 {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 1.2rem;
    color: var(--heading-color);
}

.our_success .services-grid .service-card p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.our_success .services-grid .service-card .service-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.our_success .services-grid .service-card .service-link:hover {
    color: color-mix(in srgb, var(--accent-color), black 20%);
}

.our_success .contact-banner {
    background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), black 15%) 100%);
    border-radius: 16px;
    padding: 3rem;
    color: var(--contrast-color);
}

@media (max-width: 768px) {
    .our_success .contact-banner {
        padding: 2rem;
    }
}

.our_success .contact-banner .banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 992px) {
    .our_success .contact-banner .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
}

.our_success .contact-banner .contact-info {
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .our_success .contact-banner .contact-info {
        flex-direction: column;
        text-align: center;
    }
}

.our_success .contact-banner .contact-icon {
    width: 60px;
    height: 60px;
    background: color-mix(in srgb, var(--contrast-color), transparent 85%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
}

@media (max-width: 768px) {
    .our_success .contact-banner .contact-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

.our_success .contact-banner .contact-icon i {
    font-size: 1.5rem;
    color: var(--contrast-color);
}

.our_success .contact-banner .contact-text h5 {
    color: var(--contrast-color);
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.our_success .contact-banner .contact-text p {
    color: color-mix(in srgb, var(--contrast-color), transparent 25%);
    margin: 0;
    line-height: 1.6;
}

.our_success .contact-banner .contact-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

@media (max-width: 576px) {
    .our_success .contact-banner .contact-actions {
        flex-direction: column;
        width: 100%;
    }
}

.our_success .contact-banner .call-btn {
    background: var(--contrast-color);
    color: var(--heading-color);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

@media (max-width: 576px) {
    .our_success .contact-banner .call-btn {
        width: 100%;
        justify-content: center;
    }
}

.our_success .contact-banner .call-btn i {
    margin-right: 8px;
    font-size: 1.1rem;
}

.our_success .contact-banner .call-btn:hover {
    background: color-mix(in srgb, var(--contrast-color), transparent 10%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 75%);
}

.our_success .contact-banner .contact-link {
    color: var(--contrast-color);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid color-mix(in srgb, var(--contrast-color), transparent 60%);
    transition: all 0.3s ease;
}

.our_success .contact-banner .contact-link:hover {
    color: color-mix(in srgb, var(--contrast-color), transparent 20%);
    border-bottom-color: var(--contrast-color);
}

