: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 category 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;;
}




.compliance-page{
    background:#f8f9fa;
}

/* Hero */

.compliance-hero{
    background: linear-gradient(
        135deg,
        var(--accent-color),
        var(--second-color)
    );
    padding:120px 0;
    color:white;
}

.hero-content h1{
    font-size:48px;
    font-weight:700;
    margin-bottom:20px;
}

.hero-content p{
    max-width:700px;
    margin:auto;
    font-size:18px;
    opacity:.9;
}

/* About */

.about-card{
    background:white;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    text-align:center;
}

.about-card h2{
    color:var(--accent-color);
    margin-bottom:20px;
    font-weight:700;
}

/* Documents */

.document-card{
    background:white;
    border-radius:18px;
    padding:30px;
    display:flex;
    gap:20px;
    align-items:center;
    height:100%;
    transition:.3s;
    border:1px solid rgba(152,62,62,.1);
}

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

.document-icon{
    min-width:70px;
    width:70px;
    height:70px;
    border-radius:16px;
    background:rgba(237,28,36,.1);
    display:flex;
    justify-content:center;
    align-items:center;
}

.document-icon i{
    font-size:32px;
    color:var(--second-color);
}

.document-content{
    flex:1;
}

.document-content h4{
    margin-bottom:10px;
    color:var(--accent-color);
    font-weight:700;
}

.document-content p{
    color:#666;
    margin-bottom:15px;
}

.download-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    text-decoration:none;
    padding:10px 18px;
    border-radius:10px;
    color:white;
    font-weight:600;
    background:linear-gradient(
        135deg,
        var(--accent-color),
        var(--second-color)
    );
    transition:.3s;
}

.download-btn:hover{
    color:white;
    transform:scale(1.05);
}






