.signup-btn {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #0052cc, #007bff);
  color: white;
  padding: 10px 22px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
  border: none;
  transition: 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 82, 200, 0.2);
}

.signup-btn:hover {
  background: linear-gradient(135deg, #0040a0, #005dc0);
  text-decoration: none;
  box-shadow: 0 6px 14px rgba(0, 82, 200, 0.3);
}
/* ------------ about section css ------------- */
.about-section {
  background-color: #f8f9fa;
  padding: 60px 0;
}

.about-section h2 {
  font-size: 30px;
  font-weight: 600;
}

.about-section p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

.about-section ul li {
  font-size: 15px;
  margin-bottom: 10px;
}

.about-section .btn {
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 500;
}

.about-section img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}



/* ------------ about section css end ------------- */
/* -------------- socail --------------- */
.social-section {
  text-align: start;
  padding: 20px 0;
 
}
.social-icons{
  display: flex;
  gap: 5px;
  margin-left: 10px;
}
.social-icons a {
  display: inline-block;
  font-size: 13px;
  color: var(--color-dark);
  transition: color 0.3s ease;
  background: #fff;
  height: 25px;
  width: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  text-decoration: none;
}
.navbar-scrolled .social-icons a  {
  background: var(--color-dark);
 
}
.navbar-scrolled .social-icons a i {
  color: #fff !important;
 
}
.social-icons a:hover {
  color: #bf9543; /* golden touch */
}

.email-info p {
  margin-top: 10px;
  font-size: 14px;
  color: #fff;
}
.email-info p a{
  color: #fff;
}
.navbar-scrolled .social-icons a{
  color: var(--color-dark) !important;
}
/* -------------- socail --------------- */