* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: sans-serif;
  }
  .bold-text {
    font-weight: bold; 
  }
  
  body {
    font-family: sans-serif;
    overflow-x: hidden; /* Спречува хоризонтално скролување */
  }
  .links{
    text-decoration: none;
    color: black;
  }
  .mail{
    text-decoration: none;
    color:rgb(16, 16, 16);
  }
 /*Navbar*/
.navbar {
  font-size: 18px;
  background-color: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.146) 0px 5px 15px;
  padding: 20px 30px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: sans-serif;
}
.navbar-brand{
  font-weight: bold;
font-family: sans-serif;
}
.img-logo{
  width: 70px;
  border-radius: 100px;
}
.navbar .container-fluid {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar .navbar-nav {
  display: flex;
  gap: 20px; /* Размак меѓу елементите на навбарот */
}

/* HERO */
.hero-section {
  background: linear-gradient(to right, #f7f1e3dc, #f7e2abce, #ffdfc4b5);
  padding: 120px 20px 80px;
  text-align: center;
}
.hero-content {
  max-width: 850px;
  margin: auto;
}
.hero-title {
  font-size: 46px;
  font-weight: bold;
  color: rgb(71, 71, 71);
  margin-bottom: 20px;
}
.hero-subtitle {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.5;
}
.hero-desc {
  font-size: 17px;
  margin: 25px auto 0;
  color: #555;
  line-height: 1.7;
}
 
/* BUTTONS */
.btn-green,
.btn-blue {
  background: white;
  border: none;
  padding: 12px 25px;
  border-radius: 6px;
  font-size: 17px;
  font-weight: bold;
  color: #474747;
  box-shadow: rgba(0, 0, 0, 0.24) 0 3px 8px;
  cursor: pointer;
  transition: 0.3s;
}
.btn-green:hover,
.btn-blue:hover {
  background: #efe7dd;
  transform: translateY(-3px);
}
 
/* SECTION TITLES */
.section-main-title {
  text-align: center;
  font-size: 35px;
  font-weight: bold;
  color: rgb(71, 71, 71);
  margin-bottom: 15px;
}
.section-main-subtitle {
  text-align: center;
  font-size: 16px;
  color: #666;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.6;
}
 
/* STATS / IMPACT CARDS */
.container-cards {
  width: 85%;
  margin: 70px auto;
}
.stats-grid {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}
.stat-card {
  width: 31%;
  min-width: 280px;
  background: white;
  padding: 35px 25px;
  border-radius: 12px;
  box-shadow: rgba(50, 50, 93, 0.15) 0 20px 40px;
  transition: 0.3s;
}
.stat-card:hover {
  transform: translateY(-8px);
}
.card-icon {
  font-size: 42px;
  color: #d8b36b;
  margin-bottom: 20px;
}
.card-title {
  font-size: 23px;
  font-weight: bold;
  color: #474747;
  margin-bottom: 18px;
}
.stat-list {
  list-style: none;
  padding: 0;
}
.stat-list li {
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.6;
  padding-left: 22px;
  position: relative;
}
.stat-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #d8b36b;
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 13px;
}
 
/* PARTNERS BLOCK */
.partners-block {
  background: linear-gradient(to right, #f7f1e3, #f7e2ab, #ffdfc4);
  padding: 70px 20px;
}
.block-title {
  text-align: center;
  font-size: 35px;
  font-weight: bold;
  margin-bottom: 50px;
  color: rgb(71, 71, 71);
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}
.partner-item {
  background: white;
  padding: 25px 15px;
  border-radius: 12px;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.15) 0 10px 25px;
  font-weight: bold;
  color: #474747;
  font-size: 15px;
}
.partner-item i {
  display: block;
  font-size: 32px;
  color: #d8b36b;
  margin-bottom: 15px;
}
 
/* EXPERTISE TAGS */
.tags-section {
  width: 80%;
  margin: 70px auto;
  text-align: center;
}
.tags-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 40px;
}
.tag-chip {
  background: #f8f6f3;
  padding: 12px 22px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: bold;
  color: #474747;
  box-shadow: rgba(0, 0, 0, 0.08) 0 5px 15px;
}
 
/* RECOGNITIONS */
.why-section {
  width: 80%;
  margin: 70px auto;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.why-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #f8f6f3;
  padding: 20px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.08) 0 5px 15px;
}
.why-item i {
  color: #d8b36b;
  font-size: 20px;
}
 
/* TRUST / TOGETHER */
.trust-section {
  background: #f8f6f3;
  padding: 60px 20px;
  text-align: center;
}
.trust-section h3 {
  font-size: 28px;
  font-weight: bold;
  color: rgb(71, 71, 71);
  margin-bottom: 15px;
}
.trust-section p {
  max-width: 750px;
  margin: 0 auto;
  color: #555;
  line-height: 1.7;
}
 
/* CTA */
.final-cta {
  background: linear-gradient(to right, #f7f1e3, #f7e2ab, #ffdfc4);
  padding: 70px 20px;
  text-align: center;
}
.final-cta h2 {
  font-size: 35px;
  font-weight: bold;
  color: rgb(71, 71, 71);
}
.final-cta p {
  max-width: 650px;
  margin: 15px auto 0;
  color: #555;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.list li{
  margin-left: -30px;

}

/*Footer*/
footer {
  background: #222;
  color: #fff;
  padding: 40px 0;

}

.container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  margin-top: 50px;
  padding-bottom: 80px;
}

.footer-section {
  width: 25%;
  padding: 10px;
}

.footer-section h3, .footer-section h2 {
  color:rgb(16, 16, 16);
}

.footer-section p, .footer-section ul {
  font-size: 15px;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.footer-section ul li {
  margin-bottom: 5px;

}

.footer-section ul li a {
  color: #1a1a1a;
  text-decoration: none;
  transition: 0.3s;
  font-weight: bold;
}

.footer-section ul li a:hover {
  color:  rgba(245, 206, 116, 0.863)
}

.social-icons a {
  display: inline-block;
  color: #fff;
  margin-right: 10px;
  font-size: 18px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #f1c40f;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  padding: 10px 0;
  border-top: 1px solid #444;
}
.footer-par2{
  margin-top: 10px;
  
}
/* LOGO SLIDER STYLES */
.logo-slider {
    overflow: hidden;
    padding: 40px 0;
    background: transparent;
    position: relative;
    width: 100%;
    margin-top: 30px;
}

/* Бледо преливање од страните за професионален изглед */
.logo-slider::before,
.logo-slider::after {
    background: linear-gradient(to right, #f8f6f3 0%, rgba(255, 255, 255, 0) 100%);
    content: "";
    height: 100%;
    position: absolute;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.logo-slider::before {
    left: 0;
    top: 0;
}

.logo-slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}

/* Контејнер што се движи */
.logo-track {
    display: flex;
    width: calc(250px * 20); /* 250px ширина по 20 елементи */
    animation: scrollLogos 35s linear infinite;
    align-items: center; /* Ги центрира логоата вертикално */
}

/* Анимацијата паузира на hover */
.logo-track:hover {
    animation-play-state: paused;
}

/* Поединечен слајд за лого */
.slide {
    width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 30px;
}

.slide img {
    max-width: 100%;
    height: auto;
    max-height: 60px; /* Еднаква висина за сите логоа */
    object-fit: contain;
    /* Тргнато grayscale - сега се цело време во боја */
    transition: transform 0.3s ease; 
}

/* Суптилен ефект на зголемување кога ќе поминеш со глувчето */
.slide img:hover {
    transform: scale(1.08); 
}

/* Анимација за движење */
@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 10));
    }
}

/* Респонзивност за мобилни уреди */
@media screen and (max-width: 768px) {
    .logo-slider::before,
    .logo-slider::after {
        width: 50px;
    }
    .slide {
        width: 160px;
        padding: 0 15px;
    }
    .slide img {
        max-height: 45px; /* Малку помали логоа на мобилен за да личи поубаво */
    }
    .logo-track {
        width: calc(160px * 20);
    }
    @keyframes scrollLogos {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-160px * 10)); }
    }
}
/* Responsive Design */
@media screen and (max-width: 768px) {
  body{
    width: 100%;
  }
  .navbar-toggle {
      display: block;
      position: absolute;

      right: 20px;
  }
  
  .main-nav {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 60px;
      left: 0;
      width: 100%;
      background-color: white;
      box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 10px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s ease-in-out;
  }

  .main-nav.show {
      max-height: 400px; /* Кога ќе се отвори менито */
  }

  .main-nav li {
      text-align: center;
      padding: 15px 0;
      width: 100%;
  }

  .logo {
      font-size:16px;
      margin: 0;
  }
  .partners-grid{
    display: flex;
    flex-direction: column;
  }
  .why-grid{
    display: flex;
    flex-direction: column;
  }
  .footer-section{
  width: 100%;
  text-align: center;
}
.cta-buttons{
  display: flex;
  flex-direction: column;
}
     .btn-blue{
    font-size: 12px;
    margin-left: auto;
    margin-right: auto;
    width: 60%;
    margin-top: -20px;
  }


}