* {
  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;
  /* Размак меѓу елементите на навбарот */
}

.dropdown-menu {
  max-height: 300px;
  /* или висина по избор */
  overflow-y: auto;
  /* скролање надоле */
}







.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: 24px;
  font-weight: bold;
  line-height: 1.5;

}


.hero-desc {

  font-size: 17px;
  margin: 25px auto 35px;
  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, .24) 0 3px 8px;

  cursor: pointer;

  transition: .3s;

}


.btn-green:hover,
.btn-blue:hover {

  background: #efe7dd;
  transform: translateY(-3px);

}



/* CARDS */

.container-cards {

  width: 85%;
  margin: 70px auto;

}


.section-main-title {

  text-align: center;

  font-size: 35px;

  font-weight: bold;

  color: rgb(71, 71, 71);

  margin-bottom: 50px;

}



.partnership-grid {

  display: flex;
  gap: 25px;
  justify-content: center;

}



.partner-card {

  width: 33%;

  background: white;

  padding: 35px 25px;

  border-radius: 12px;

  box-shadow:
    rgba(50, 50, 93, .15) 0 20px 40px;

  transition: .3s;

}


.partner-card:hover {

  transform: translateY(-8px);

}



.card-icon {

  font-size: 45px;

  color: #d8b36b;

  margin-bottom: 20px;

}



.card-title {

  font-size: 24px;

  font-weight: bold;

  color: #474747;

}



.card-tagline {

  font-weight: bold;

  color: #777;

  margin: 15px 0;

}



.card-desc {

  font-size: 15px;

  line-height: 1.7;

}



.card-list ul {

  list-style: none;

  padding: 0;

}



.card-list li {

  margin-bottom: 10px;

  font-size: 15px;

}



.card-list i {

  color: #d8b36b;

  margin-right: 8px;

}



/* IMPACT */


.impact-areas-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;

}



.areas-grid {


  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 25px;

}



.area-item {


  background: white;

  padding: 30px;

  border-radius: 12px;

  text-align: center;


  box-shadow:
    rgba(0, 0, 0, .15) 0 10px 25px;

}



.area-emoji i {


  font-size: 40px;

  color: #d8b36b;

  margin-bottom: 20px;

}



.area-item h4 {

  font-size: 20px;

  font-weight: bold;

}



.area-item p {

  color: #555;

}



/* WHY */


.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, .08) 0 5px 15px;

}



.why-item i {

  color: #d8b36b;

  font-size: 20px;

}



/* TRUST */


.trust-section {

  background: #f8f6f3;

  padding: 60px 20px;

  text-align: center;

}



.logos-placeholder {


  background: white;

  padding: 40px;

  border-radius: 10px;

  box-shadow:
    rgba(0, 0, 0, .1) 0 5px 20px;

}


/* 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;

}



.cta-buttons {

  display: flex;

  justify-content: center;

  gap: 20px;

  margin-top: 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;

}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .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;
  }

  .footer-section {
    width: 100%;
    text-align: center;
  }

  .partnership-grid {
    display: flex;
    flex-direction: column;
  }

  .partner-card {
    width: 100%;
  }

  .areas-grid {
    display: flex;
    flex-direction: column;
  }

  .why-item {
    width: 90%;
  }

  .cta-buttons {
    display: flex;
    flex-direction: column;

  }

     .btn-blue{
    font-size: 15px;
    
    margin-left: auto;
    margin-right: auto;
    width: 70%;
  }
  .btn-green {
    width: 100%;

    font-size: 10px;
  }

  .link {
    text-decoration: none;
  }

}