
  *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
    scroll-behavior: smooth;
}

.countries-section {
  text-align: center;
  padding:77px 0 ;
}

.countries-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #2c4d3f;
}

.countries-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.country {
  text-decoration: none;
  color:#f6f6f6 ;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.country img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid #ccc;
  transition: transform 0.3s ease;
}

.country p {
  margin-top: 10px;
  font-size: 20px;
  font-weight: bold;
}

.country:hover img {
  transform: scale(1.1);
  border-color: #2c4d3f;
}

.country:hover {
  transform: scale(1.05);
}


.footer {
     background-color: #1c3c2e69;
    color: #333030;
    font-weight: 900;
  padding: 60px 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.col h3 {
 font-size: 26px;
    margin-bottom: 17px;
    font-weight: 900;
}

.col p, .col li, .col a {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    line-height: 25px;
    text-decoration: none;
}

.col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.col li {
  margin-bottom: 6px;
}

.contact .title {
      font-size: 24px;
    margin-bottom: 17px;
    color: #232323;
}

.contact .number {
  font-size: 24px;
  margin-bottom: 15px;
  color: #fff;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  
}

.social-icons a {
  background: #fff;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #012a4a;
  font-size: 20px;
  transition: background 0.3s;
}

.social-icons a:hover {
  background: #61a5c2;
  color: #fff;
}

.footer-bottom {
  background:#00000040 ;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.footer-bottom p {
  color: #fff;
 font-size: 17px;
    font-weight: 800;
}

.footer-logo {
  width: 60px;
  height: auto;
}

/* 📱 الجوال */
@media (max-width: 768px) {
  .footer {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .col {
    width: 100%;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}


/* media query */

@media (max-width:800px) {
    nav ul{
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        overflow: hidden;
        transition: max-height 0.5s;
    }
    nav ul li:last-child{
        padding-bottom: 40px;
    }
    .menu-icon{
        display: block;
    }
    .hero-section{
        flex-direction: column;
        height: auto;
        padding-top: 40px;
        padding-bottom: 0;
    }
    .hero-section .left,.hero-section .right{
        width: 100%;
    }
    #heroSection,#blogsection,#testimonialSection,#trendSection,#blogsection{
        padding: 40px 2rem;
        padding-top: 80px;
    }
    nav{
        padding: 1rem 2rem;
    }
}

@media (max-width:500px) {
    .hero-section .left h1{
        font-size: 30px;
    }
    footer{
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 40px 0;
    }
}









