:root {
  --primary-color: #2CD2B1;
  --secondary-color: #37e67a;
  --accent-color: #01abdf;
  --text-color: #333;
  --white: #fff;
  --light1-bg: rgb(133, 255, 247);
  --gradient: linear-gradient(0deg, #8CE96C 0%, #2CD2B1 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto Condensed", sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1, h2, h3 {
  font-family: "Russo One", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--accent-color);
}

.wrapper {
  background: var(--gradient);
  flex: 1;
  position: relative;
}

.background {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.4;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding-bottom: 2rem; /* Space before footer */
}

/* Header styles remain the same */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  background: var(--primary-color);
  position: relative;

  /* box-shadow: 0 2px 10px rgba(0,0,0,0.1); */
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.logo-img {
  width: 60px;
  height: auto;
}

.logo-text {
  color: var(--white);
  font-family: "Russo One", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
}

.main-nav {
  display: flex;
  /*font-family: "Russo One", sans-serif;
  font-size: 1rem;
  font-weight: 400; */

}

.nav-list {
  display: flex;
  gap: 1rem;
  list-style: none;
}

.nav-item a {
  color: var(--white);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.nav-item.active a {
  background: rgba(255, 255, 255, 0.2);
  font-weight: bold;
}

.nav-item.contact a {
  background: var(--secondary-color);
  color: var(--text-color);
  font-weight: bold;
}

.nav-item a:hover {
  background: var(--white);
  color: var(--primary-color);
}

/* Content Styles */
.image-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 3rem 0;
}

.image-container figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.image-container img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--white);
  transition: transform 0.3s ease;
}

.image-container img:hover {
  transform: scale(1.05);
}

.transparent-bg {
  background-color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 20px;
  border: 3px solid var(--accent-color);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  margin: 1rem 0;
}

.hello {
  margin: 2rem auto;
  max-width: 800px;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: linear-gradient(90deg, var(--accent-color) 0%, var(--secondary-color) 100%);
  color: var(--text-color);
  text-decoration: none;
  border-radius: 50px;
  border: 3px solid var(--accent-color);
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn:hover {
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ===========================================Footer Styles===================================================== */
.main-footer {
  background: var(--primary-color);
  color: var(--white);
  padding: 2rem 0;
  border-top: 2px solid var(--primary-color);
  margin-top: auto; /* Pushes footer to bottom */
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.footer-logos {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-logo {
  border-radius: 10px;
  height: 60px;
  width: auto;
  opacity: 1;
  transition: 0.3s;
}

.footer-logo:hover {
  transform: translateY(-5px);
}

.footer-links {
  display: flex;
  align-items: center; 
  gap: 1rem;
}

.footer-icon {
  height: 60px;
  width: auto;
  opacity: 1;
  margin-right: 10px;
  flex-shrink: 0; 
}

.footer-text-group {
  display: flex;
  flex-direction: column;
}

.footer-text {
  margin: 0.3rem 0;
  font-size: 0.9rem;
  color: var(--white);
}

.footer-text a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-text a:hover {
  color: var(--light1-bg);
  text-decoration: underline;
}
/* ===== Responsive Design ===== */

@media (max-width: 768px) {
  .main-header {
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
  }

  .nav-list {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .footer-links {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .logo-link {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  .footer-logos {
    flex-direction: column;
    gap: 1rem;
  }
}
