/* ==========================================
   AL-IBADI VISION GROUP
   Main Stylesheet
========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f4f6f8;
    color: #1d2a3a;
    line-height: 1.6;
}

/* Hero Section */

.hero {
    background: linear-gradient(135deg, #F5F2EB, #ECE5D8);
    color: #183B6B;
    text-align: center;
    padding: 70px 20px;
}

.group-logo {
    width: 180px;
    height: auto;
    margin-bottom: 25px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.hero h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 56px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #183B6B;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hero p {
    font-size: 18px;
    color: #C59749;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Intro */

.intro {
    text-align: center;
    padding: 50px 20px 30px;
}

.intro h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #183B6B;
}

.intro p {
    color: #666;
    font-size: 18px;
}

/* Company Grid */

.grid {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

/* Company Card */

.card {
    background: #ffffff;
    border-radius: 16px;
    text-decoration: none;
    color: #1d2a3a;
    padding: 30px;
    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;

    box-shadow: 0 8px 24px rgba(0,0,0,0.08);

    transition: all .25s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 36px rgba(0,0,0,.15);
}

.card img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    margin-bottom: 20px;
}

.card span {
    font-size: 18px;
    font-weight: bold;
    color: #183B6B;
}

/* Footer */

footer {
    margin-top: 60px;
    background: #0b2b53;
    color: white;
    padding: 50px 20px;
    display: grid;
    gap: 20px;
    text-align: center;
}

/* Footer Headings */

footer strong {
    color: #C59749;
    font-size: 18px;
    font-weight: 600;
}

/* Footer Links */

footer a {
    color: #C59749;
    text-decoration: none;
    transition: opacity .25s ease;
}

footer a:hover {
    color: #D8AE61;
    text-decoration: underline;
    opacity: 1;
}

footer a:visited {
    color: #C59749;
}

/* Footer Text */

footer div {
    color: #C59749;
}

.copy {
    margin-top: 15px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}
/* Responsive */

@media (max-width:768px) {

    .group-logo {
        width: 140px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero p {
        font-size: 16px;
    }

    .intro h2 {
        font-size: 26px;
    }

    .card {
        padding: 25px;
    }

}