﻿
/* =========================================================
   ATLAS DAM - WHY ATLAS DAM
   ========================================================= */
.atlas-why-section {
    direction: rtl;
    position: relative;
    padding: 65px 20px;
    overflow: hidden;
    background: radial-gradient( circle at 10% 10%, rgba(173, 169, 131, .16), transparent 28% ), radial-gradient( circle at 90% 90%, rgba(173, 169, 131, .10), transparent 30% ), rgb(1, 62, 63);
}

/* Paw Background - Left */
.atlas-why-section::before {
    content: "\f1b0";
    font-family: FontAwesome;
    position: absolute;
    top: -90px;
    left: 4%;
    font-size: 280px;
    color: rgba(173, 169, 131, .045);
    transform: rotate(-18deg);
    pointer-events: none;
}

/* Paw Background - Right */
.atlas-why-section::after {
    content: "\f1b0";
    font-family: FontAwesome;
    position: absolute;
    right: 3%;
    bottom: -100px;
    font-size: 300px;
    color: rgba(255, 255, 255, .06);
    transform: rotate(20deg);
    pointer-events: none;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.atlas-why-container {
    position: relative;
    z-index: 2;
    max-width: 1120px;
    margin: 0 auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.atlas-why-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}


/* Title */
.atlas-why-title {
    display: flex;
    align-items: center;
    gap: 13px;
}


/* Title Icon */
.atlas-why-title-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #ada983;
    color: rgb(1, 62, 63);
    font-size: 19px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
    flex-shrink: 0;
}


/* Small Title */
.atlas-why-title span {
    display: block;
    margin-bottom: 3px;
    color: rgba(255, 255, 255, .48);
    font-size: 9px;
    font-weight: 400;
}


/* Main Title */
.atlas-why-title h2 {
    margin: 0;
    color: #ffffff;
    font-size: 26px;
    font-weight: 400;
    line-height: 1.5;
}


    /* Highlight */
    .atlas-why-title h2 strong {
        color: #ada983;
        font-weight: 800;
    }


/* Description */
.atlas-why-description {
    max-width: 400px;
    color: rgba(255, 255, 255, .58);
    font-size: 11px;
    line-height: 2;
    text-align: left;
}


/* =========================================================
   CARDS GRID
   ========================================================= */

.atlas-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 13px;
    width:100% !important;
}


/* =========================================================
   CARD
   ========================================================= */

.atlas-why-card {
    position: relative;
    min-height: 205px;
    padding: 20px;
    overflow: hidden;
    box-sizing: border-box;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, .75);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .10);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}


    /* Card Hover */
    .atlas-why-card:hover {
        transform: translateY(-5px);
        border-color: #ada983;
        box-shadow: 0 16px 35px rgba(0, 0, 0, .16);
    }


    /* =========================================================
   CARD TOP LINE
   ========================================================= */

    .atlas-why-card::before {
        content: "";
        position: absolute;
        top: 0;
        right: 20px;
        width: 30px;
        height: 3px;
        border-radius: 0 0 4px 4px;
        background: #ada983;
        transition: width .3s ease;
    }


    /* Top line hover */
    .atlas-why-card:hover::before {
        width: 60px;
    }


/* =========================================================
   CARD NUMBER
   ========================================================= */

.atlas-why-number {
    position: absolute;
    top: 10px;
    left: 14px;
    color: rgba(1, 62, 63, .22);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    direction: ltr;
    transition: .3s ease;
}


/* Number Hover */
.atlas-why-card:hover .atlas-why-number {
    color: rgb(1, 62, 63);
}


/* =========================================================
   CARD ICON
   ========================================================= */

.atlas-why-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border-radius: 13px;
    background: rgba(1, 62, 63, .07);
    color: rgb(1, 62, 63);
    font-size: 17px;
    transition: background .3s ease, color .3s ease, transform .3s ease;
}


/* Icon Hover */
.atlas-why-card:hover .atlas-why-icon {
    background: rgb(1, 62, 63);
    color: #ada983;
    transform: scale(1.06);
}


/* =========================================================
   CARD CONTENT
   ========================================================= */

.atlas-why-card-body h3 {
    margin: 0 0 8px;
    color: rgb(1, 62, 63);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.7;
}


/* Description */
.atlas-why-card-body p {
    min-height: 53px;
    margin: 0 0 13px;
    color: #7c8884;
    font-size: 10px;
    line-height: 1.95;
}


/* =========================================================
   CARD LINK
   ========================================================= */

.atlas-why-card-body a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: rgb(1, 62, 63);
    font-size: 9px;
    font-weight: 700;
    text-decoration: none;
    transition: .25s ease;
}


    /* Link Icon */
    .atlas-why-card-body a i {
        font-size: 10px;
        transition: .25s ease;
    }


/* Link Hover */
.atlas-why-card:hover .atlas-why-card-body a {
    color: #8f8b68;
}


    /* Arrow Hover */
    .atlas-why-card:hover .atlas-why-card-body a i {
        transform: translateX(-4px);
    }


/* =========================================================
   BOTTOM MESSAGE
   ========================================================= */

.atlas-why-bottom {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 14px;
}


/* Bottom Icon */
.atlas-why-bottom-paw {
    width: 37px;
    height: 37px;
    min-width: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: #ada983;
    color: rgb(1, 62, 63);
    font-size: 14px;
}


/* Bottom Title */
.atlas-why-bottom strong {
    display: block;
    margin-bottom: 2px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
}


/* Bottom Description */
.atlas-why-bottom span {
    color: rgba(255, 255, 255, .58);
    font-size: 9px;
}


/* Bottom Decorative Line */
.atlas-why-bottom-line {
    width: 45px;
    height: 1px;
    margin-right: auto;
    background: #ada983;
    opacity: .6;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 950px) {

    .atlas-why-section {
        padding: 55px 18px;
    }

    .atlas-why-grid {
        grid-template-columns: repeat(2, 1fr);
        width: 100% !important;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .atlas-why-section {
        padding: 45px 12px;
    }


    /* Header */
    .atlas-why-heading {
        display: block;
        margin-bottom: 22px;
        padding-bottom: 15px;
    }


    .atlas-why-title {
        gap: 10px;
    }


    .atlas-why-title-icon {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        font-size: 17px;
    }


    .atlas-why-title span {
        font-size: 8px;
    }


    .atlas-why-title h2 {
        font-size: 21px;
    }


    .atlas-why-description {
        max-width: none;
        margin-top: 10px;
        font-size: 9px;
        text-align: right;
        line-height: 1.9;
    }


    /* Grid */
    .atlas-why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 9px;
        width: 100% !important;
    }


    /* Card */
    .atlas-why-card {
        min-height: 190px;
        padding: 15px;
        border-radius: 14px;
    }


        /* Top Line */
        .atlas-why-card::before {
            right: 14px;
            width: 24px;
        }


        .atlas-why-card:hover::before {
            width: 45px;
        }


    /* Number */
    .atlas-why-number {
        top: 8px;
        left: 10px;
        font-size: 9px;
    }


    /* Icon */
    .atlas-why-icon {
        width: 37px;
        height: 37px;
        margin-bottom: 11px;
        border-radius: 11px;
        font-size: 14px;
    }


    /* Title */
    .atlas-why-card-body h3 {
        margin-bottom: 6px;
        font-size: 11px;
        line-height: 1.6;
    }


    /* Description */
    .atlas-why-card-body p {
        min-height: 48px;
        margin-bottom: 10px;
        font-size: 9px;
        line-height: 1.9;
    }


    /* Link */
    .atlas-why-card-body a {
        font-size: 8px;
    }


        .atlas-why-card-body a i {
            font-size: 9px;
        }


    /* Bottom */
    .atlas-why-bottom {
        gap: 9px;
        margin-top: 10px;
        padding: 11px 12px;
        border-radius: 12px;
    }


    .atlas-why-bottom-paw {
        width: 32px;
        height: 32px;
        min-width: 32px;
        border-radius: 9px;
        font-size: 12px;
    }


    .atlas-why-bottom strong {
        font-size: 9px;
    }


    .atlas-why-bottom span {
        font-size: 8px;
        line-height: 1.8;
    }


    .atlas-why-bottom-line {
        display: none;
    }


    /* Background Paw */
    .atlas-why-section::before {
        font-size: 180px;
        top: -50px;
        left: -30px;
    }


    .atlas-why-section::after {
        font-size: 190px;
        right: -35px;
        bottom: -60px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {

    .atlas-why-grid {
        gap: 7px;
        width: 100% !important;
    }


    .atlas-why-card {
        min-height: 180px;
        padding: 13px;
    }


    .atlas-why-icon {
        width: 34px;
        height: 34px;
        margin-bottom: 9px;
        font-size: 13px;
    }


    .atlas-why-card-body h3 {
        font-size: 10px;
    }


    .atlas-why-card-body p {
        font-size: 8px;
    }


    .atlas-why-card-body a {
        font-size: 7.5px;
    }
}
.text-left{
    text-align:left !important;
}


