/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* Navbar Styling */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: linear-gradient(90deg, #333, #555);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
}

.navbar ul {
  list-style: none;
  display: flex;
  margin: 0;
}

.navbar ul li {
  margin-left: 30px;
}

.navbar ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 20px;
  transition: background 0.3s, color 0.3s;
}

.navbar ul li a:hover {
  background-color: #ff5733;
  color: #fff;
  border-radius: 5px;
}

/* Responsive Navbar for Mobile */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    padding: 10px;
  }

  .navbar ul {
    display: none;
    flex-direction: column;
    background-color: #333;
    width: 100%;
  }

  .navbar ul.active {
    display: flex;
  }

  .navbar ul li {
    margin-left: 0;
    text-align: center;
    width: 100%;
    margin: 5px 0;
  }

  .navbar ul li a {
    padding: 15px;
    width: 100%;
    display: block;
  }

  /* Hamburger Icon */
  .hamburger {
    display: block;
    font-size: 1.8rem;
    color: #fff;
    cursor: pointer;
  }
}

/* Hide hamburger on larger screens */
@media (min-width: 769px) {
  .hamburger {
    display: none;
  }
}

/* Hero Section with Image */
.hero {
  height: 100vh;
  background: url('images/hero-image.jpeg') no-repeat center center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
  padding: 0 20px; /* Added padding for small screens */
}

.hero-content {
  z-index: 2;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.cta-button {
  background-color: #ff5733;
  padding: 12px 30px;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #333;
}

/* Services Section */
.services {
  padding: 60px 20px;
  text-align: center;
}

.services h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.service-cards {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.service-card {
  background-color: white;
  width: 30%;
  padding: 20px;
  margin-bottom: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service-card i {
  font-size: 2rem;
  color: #ff5733;
}

.service-card h3 {
  font-size: 1.8rem;
  margin-top: 15px;
}

.service-card p {
  font-size: 1rem;
  margin-top: 10px;
}

/* About Section */
.about {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.about h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about p {
  font-size: 1.2rem;
  line-height: 1.6;
}

/* Contact Section */
.contact {
  padding: 60px 20px;
  text-align: center;
}

.contact h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.contact form {
  max-width: 500px;
  margin: 0 auto;
}

.contact input,
.contact textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 5px;
  border: 1px solid #ddd;
}

.contact button {
  padding: 12px 30px;
  background-color: #ff5733;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
}

.contact button:hover {
  background-color: #333;
}

/* Team Section */
.team {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.team h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.team-members {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto; /* Centers the content */
}

.team-member {
  background-color: white;
  width: calc(33.333% - 40px); /* 3 items per row with space between */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.team-member img {
  width: 70%;
  height: 250px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
}

.team-member h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.team-member .role {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ff5733;
}

.team-member .experience {
  font-size: 1rem;
  color: #555;
  margin-top: 10px;
}

/* Footer */
footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .service-card, .team-member {
    width: 100%; /* Full width for smaller screens */
  }
}
/* Careers Section Styling */
.careers {
  text-align: center;
  padding: 50px;
  background: #f8f9fa;
}

.careers h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}

.careers p {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 30px;
}

/* Internship Cards Container */
.internship-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* Individual Internship Card */
.internship-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 280px;
  text-align: center;
  transition: transform 0.3s;
}

.internship-card:hover {
  transform: translateY(-5px);
}

.internship-card h3 {
  font-size: 1.4rem;
  color: #222;
  margin-bottom: 10px;
}

.internship-card p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 15px;
}

/* Price Styling */
.price {
  display: block;
  font-size: 1.2rem;
  color: #28a745;
  font-weight: bold;
  margin-bottom: 15px;
}

/* Buy Now Button */
.buy-btn {
  background: #007bff;
  color: #fff;
  border: none;
  padding: 10px 15px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.buy-btn:hover {
  background: #0056b3;
}
