:root{
    --black:#111;
    --dark:#000;
    --gray:#f5f5f5;
    --lightgray:#eaeaea;
    --white:#ffffff;
}

body , html{
  margin: 0;
  padding: 0;
  text-align: center;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:"Noto Kufi Arabic", sans-serif;
    background:var(--white);
    color:var(--black);
    line-height:1.8;
}

/* Top Bar */
.topbar{
    background:var(--black);
    color:var(--white);
    text-align:center;
    padding:8px;
    font-size:14px;
}

/* Header */
header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    border-bottom:1px solid var(--lightgray);
    background:var(--white);
    position:sticky;
    top:0;
}

.logo{
    font-size:26px;
    font-weight:700;
}

nav a{
    text-decoration:none;
    color:var(--black);
    margin:0 12px;
    font-weight:500;
    position:relative;
}

nav a::after{
    content:"";
    width:0;
    height:2px;
    background:var(--black);
    position:absolute;
    bottom:-4px;
    right:0;
    transition:0.3s;
}

nav a:hover::after{
    width:100%;
}
/* Hero */
.hero{
    padding:120px 10%;
    text-align:center;
}

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

.hero p{
    max-width:650px;
    margin:auto;
    font-size:18px;
    color:#555;
}

.hero .btn{
    margin-top:30px;
    display:inline-block;
    padding:12px 30px;
    background:var(--black);
    color:var(--white);
    text-decoration:none;
    transition:0.3s;
}

.hero .btn:hover{
    background:#333;
}

/* Cards Section */
.section{
    padding:80px 8%;
    background:var(--gray);
}

.section h2{
    text-align:center;
    margin-bottom:50px;
    font-size:30px;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.card{
    background:var(--white);
    padding:35px;
    border:1px solid var(--lightgray);
    transition:0.3s;
}

.card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

a {
  text-decoration: none;
}
/* Stats Section */
.stats{
    padding:70px 8%;
    display:flex;
    justify-content:space-around;
    text-align:center;
    border-top:1px solid var(--lightgray);
}

.stat h3{
    font-size:28px;
}

.stat p{
    font-size:14px;
    color:#666;
}

/* Footer */
footer{
    background:var(--black);
    color:var(--white);
    text-align:center;
}

.stretched-link h5{
    text-decoration: none !important;
    color: #000;
    
}
.stretched-link p{
    text-decoration: none;
    color: #000;
}

a:link, a:visited, a:hover, a:active {
  text-decoration: none;
}

footer{
  z-index: 1000;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}
br{
  user-select: none;
}