body {
		font-family: Syne, sans-serif;
		font-size: 16px;
		font-weight: 400;
		color: #606060;
	}
	
	p {
		
		font-family: Syne, sans-serif;
	}
	
	.base-bg {
		background: #ffd200;
		color: rgb(11 11 11);
	}


  ul {
      list-style: none;
      padding: 0;
      margin-top: 15px;
    }

    ul li {
      font-size: 17px;
      margin-bottom: 10px;
      display: block;
      align-items: center;
    }

    ul li::before {
      content: "✔️";
      margin-right: 8px;
      color: #000;
      font-size: 18px;
    }

    .highlight {
      font-weight: 700;
      color: #000;
    }

    .cta-button {
      background-color: #FFD200;
      color: #000;
      border: none;
      padding: 14px 28px;
      font-size: 18px;
      font-weight: 600;
      border-radius: 4px;
      cursor: pointer;
      margin-top: 25px;
      transition: all 0.3s ease;
    }

    .cta-button:hover {
      background-color: #e6c100;
      transform: scale(1.05);
    }
	
	 .services-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
  }

  .service-box {
    background-color: #FFD200;
    width: 260px;
    text-align: center;
    padding: 40px 25px;
    border-radius: 4px;
    transition: all 0.3s ease;
  }

  .service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
  }

  .service-box img {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }

  .service-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
  }

  .read-more {
    color: #000;
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
  }

  .read-more:hover {
    text-decoration: underline;
  }

  .consult-btn {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 40px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s ease;
	width: 20%;
  }

  .consult-btn:hover {
    background-color: #333;
    transform: scale(1.05);
	
  }
	
	
	.partner-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
	padding: 5px 40px;
    background: #fff;
  }

  .partner-left {
    flex: 1;
    min-width: 300px;
  }

  .partner-left h2 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 30px;
  }

  .partner-left .btn-yellow {
    background-color: #FFD200;
    border: none;
    padding: 15px 30px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .partner-left .btn-yellow:hover {
    background-color: #ffce00;
    transform: scale(1.05);
  }

  .partner-right {
    flex: 1.5;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    justify-items: center;
    min-width: 300px;
  }

  .partner-card {
    background-color: #000;
    color: #fff;
    border-radius: 30px;
    text-align: center;
    padding: 14px 15px;
    max-width: 300px;
    transition: all 0.3s ease;
  }

  .partner-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
  }

  .partner-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
	color:#fff;
  }

  .partner-card p {
    font-size: 14px;
    line-height: 1.5;
  }

  @media (max-width: 900px) {
    .partner-section {
      flex-direction: column;
      text-align: center;
    }

    .partner-right {
      grid-template-columns: 1fr;
	  margin-top: 11%;
    }

    .partner-left h2 {
      font-size: 30px;
    }
	
	 .partner-left .btn-yellow {
		background-color: #FFD200;
		border: none;
		padding: 15px 30px;
		font-size: 11px;
		font-weight: 600;
		border-radius: 6px;
		cursor: pointer;
		transition: all 0.3s ease;
	  }
	  
	  .consult-btn {
		width: 63%;
	  }
	  
	  
	  
	  
	
  }
  
  .logo-grid-section {
  padding: 20px 0;
  background: #fff;
  text-align: center;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
}

.logo-box {
  background: #f9f9f9;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 0 5px rgba(0,0,0,0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-box:nth-child(3n) { background-color: #fdfce5; }
.logo-box:nth-child(4n) { background-color: #eaf7ff; }
.logo-box:nth-child(5n) { background-color: #fff0f3; }
.logo-box:nth-child(6n) { background-color: #e8ffe8; }

.logo-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.logo-box img {
  max-width: 100%;
  height: 80px;
  object-fit: contain;
}
  
  .social-icons ul li::before {
    content: none !important; /* removes the tick or any default bullet */
}

.social-icons ul {
    list-style: none; /* removes list bullets */
    padding-left: 0;
    margin: 0;
}

.social-icons ul li {
    display: inline-block;
    margin: 0 10px;
}

.social-icons ul li a {
    color: #fff;
    font-size: 20px;
    transition: color 0.3s ease;
}

.social-icons ul li a:hover {
    color: #FFD200; /* hover color */
}
	
	
	