/* === GLOBAL STYLES === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #f8f9fa;
  color: #1e1e2f;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* === LOGO IMAGE === */
.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 110px;
  height: auto;
  object-fit: contain;
}


main {
  flex: 1; /* ensures footer stays at bottom */
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* === NAVBAR === */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 5%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1e1e2f;
}

.logo span {
  color: #ef233c;
}

.navbar ul {
  display: flex;
  gap: 2rem;
}

.navbar a {
  font-weight: 500;
  transition: color 0.3s;
}

.navbar a:hover {
  color: #ef233c;
}

/* === HAMBURGER === */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  user-select: none;
  color: #1e1e2f;
}

/* === HERO SECTION === */
#hero {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(rgba(30, 30, 47, 0.7), rgba(30, 30, 47, 0.7)),
    url("images/3.jpeg") center/cover no-repeat ;
  color: #fff;
  min-height: 100vh;
  padding: 0 1.5rem;
}

.hero-content {
  max-width: 700px;
  width: 90%;
}

.hero-content h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  margin-bottom: 2rem;
}

.btn {
  background: #ef233c;
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #d90429;
  transform: translateY(-3px);
}

/* === ABOUT SECTION === */
.about {
  padding: 5rem 5%;
  text-align: center;
}

.about h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #ef233c;
}

/* === SERVICES SECTION === */
.services {
  padding: 5rem 5%;
  background: #fff;
  text-align: center;
}

.services h2 {
  color: #ef233c;
  margin-bottom: 2rem;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

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

/* === PORTFOLIO SECTION === */
.portfolio {
  padding: 5rem 5%;
  text-align: center;
}

.portfolio h2 {
  color: #ef233c;
  margin-bottom: 2rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.portfolio-grid img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* === TEAM SECTION === */
.team {
  padding: 5rem 5%;
  background: #fff;
  text-align: center;
}

.team h2 {
  color: #ef233c;
  margin-bottom: 2rem;
}

.team-members {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.member {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.member img {
  width: 100%;
  border-radius: 5%;
  margin-bottom: 1rem;
}

/* === CONTACT SECTION === */
.contact {
  padding: 5rem 5%;
  background: #f8f9fa;
  text-align: center;
}

.contact h2 {
  color: #ef233c;
  margin-bottom: 1rem;
}

.contact p {
  margin-bottom: 2rem;
}

.contact a {
  background: #ef233c;
  color: #fff;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  transition: background 0.3s;
}

.contact a:hover {
  background: #d90429;
}

.social-links {
  margin-top: 4rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.social-links a {
  color: #fff; /* adjust for your theme */
  font-size: 1.8rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
  color: #eeff00; /* your accent color */
  transform: scale(1.1);
}


/* === FOOTER === */
footer {
  background: #121212;
  color: #fff;
  text-align: center;
  padding: 30px 0;
  margin-top: auto; /* pushes footer to bottom naturally */
  width: 100%;
}

/* === MOBILE NAVIGATION === */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    display: none;
    position: absolute;
    top: 70px;
    right: 5%;
    background: #fff;
    border-radius: 10px;
    padding: 1rem 0;
    width: 220px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  nav.active {
    display: block;
  }

  nav ul {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }

  nav a {
    color: #1e1e2f;
    font-size: 1rem;
    transition: color 0.3s;
  }

  nav a:hover {
    color: #ef233c;
  }
}

@media (max-width: 576px) {
  .logo-img {
    width: 90px;
  }

  .logo {
    font-size: 1.2rem;
  }
}


/* === RESPONSIVENESS === */
@media (max-width: 1024px) {
  .navbar ul {
    gap: 1rem;
  }

  .service-cards,
  .portfolio-grid,
  .team-members {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 768px) {
  .hero-content h2 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  section {
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-content h2 {
    font-size: 1.5rem;
  }

  .btn {
    padding: 0.6rem 1.4rem;
    font-size: 0.9rem;
  }
}

/* === END OF STYLES === */
