﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "Jost", "sans-serif";
    list-style: none;
    text-decoration: none;
}

.jost-regular {
    font-family: "Jost", serif;
    font-optical-sizing: auto;
    font-weight: 400; /* Replace with desired weight (100–900) */
    font-style: normal; /* Use "italic" if needed */
}


/* Begin of main-home Section */
section {
    padding: 5% 10%;
}

.main-home {
    width: 100%;
    height: 88vh;
    top:10px;
    background-image: url('../images/home3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    align-items: center;
    position: relative;
}

/* Positioning the text to the left */
.main-text {
    position: absolute;
    top: 5%;
    left: 5%;
    max-width: 600px;
}

.main-text h5 {
    color: #6d1b33; /* Deep Burgundy */
    font-size: 65px;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 1.1;
    margin: 6px 0 10px;
}

/*End of main-home Section */


.center-text h2 {
    color: #6d1b33;
    font-size: 40px;
    font-weight: 600;
    text-transform: capitalize;
    text-align: center;
    margin-bottom: 20px;
}
.card{
    border:none;
}


.card-img-top {
    border-radius: 50%;
    width: 200px; /* ضبط الحجم حسب الحاجة */
    height: 200px;
    object-fit: cover;
    display: block;
    margin: auto;
    border: none; /* إزالة أي حدود */
    box-shadow: none; /* التأكد من عدم وجود ظل قد يبدو كإطار */
}



