/*  import google fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}
html{
    scroll-behavior: smooth;
}

/* custom scroll bar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #888;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* General styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}



main {
    padding: 80px 20px; /* Add padding to avoid overlap with the header */
}

.about-section, .mission-vision, .team {
    margin-bottom: 100px;
    text-align: center;
}

.about-section h2, .mission-vision h2, .team h2 {
    color: #333;
    margin-bottom: 20px;
    margin-left:0%;
}
.about-section p, .mission-vision p  {
    direction: rtl; /* Set the text direction to right-to-left */
    text-align: right; /* Align text to the right */
    font-family: 'Arial', sans-serif; /* Choose a font that supports Arabic characters */
    margin: 20px;
        
}
/*team*/
.teams .carousel {
    display: flex;
    overflow:hidden;
    justify-content: center; /* Center the carousel */
}

.teams .carousel .card {
    background: #222;
    border-radius: 6px;
    padding: 25px 35px;
    text-align: center;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex; /* Ensure cards are displayed in a row */
    flex-direction: column; /* Stack content vertically within the card */
    flex:0 0 auto;
}

.teams .carousel .card:hover {
    background: crimson;
}

.teams .carousel .card .box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.teams .carousel .card:hover .box {
    transform: scale(1.05);
}

.teams .carousel .card .text {
    font-size: 25px;
    font-weight: 500;
    margin: 10px 0 7px 0;
}

.teams .carousel .card img {
    height: 150px;
    width: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid crimson;
    transition: all 0.3s ease;
}

.teams .carousel .card:hover img {
    border-color: #fff;
}

/* Optional: Style for navigation buttons */
.owl-nav button {
    background: crimson;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.owl-nav button:hover {
    background: #ffcc00; /* Change color on hover */
}

/* teams section styling */
.teams .title::after{
    content: "مجلس إدارة مديرية ثقافة حمص";
}
.owl-dots{
    text-align: center;
    margin-top: 20px;
}
.owl-dot{
    height: 13px;
    width: 13px;
    margin: 0 5px;
    outline: none!important;
    border-radius: 50%;
    border: 2px solid crimson!important;
    transition: all 0.3s ease;
}
.owl-dot.active{
    width: 35px;
    border-radius: 14px;
}
.owl-dot.active,
.owl-dot:hover{
    background: crimson!important;
}




.sign_in {
    color:black;
}

.sign_in :hover{
    color:#ffcc00;
}
.teams{
    color:#fff;
    background: #111;
}

.teams .title::before{
    background: #fff;
}

.teams .title::after{
    background: #111;
    content: "what i provide";
}
section .title{
    position: relative;
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 60px;
    padding-bottom: 20px;
    font-family: 'Ubuntu', sans-serif;
}
section .title::before{
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 180px;
    height: 3px;
    background: #111;
    transform: translateX(-50%);
}
section .title::after{
    position: absolute;
    bottom: -8px;
    left: 50%;
    font-size: 20px;
    color: crimson;
    padding: 0 5px;
    background: #fff;
    transform: translateX(-50%);
}

.max-width{
    max-width: 1300px;
    padding: 0 80px;
    margin: auto;
}



