body {
  font-family: "Segoe UI", sans-serif;
  margin: 0;
  background: #f5f7fb;
  color: #333;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background:#7568a6;
  padding: 12px 20px;
  color: #fff;
}

.logo {
  font-weight: bold;
  font-size: 20px;
  color: #f7d3c1;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color:  #f7d3c1;
  text-decoration: none;
  font-weight: 500;
}

.nav-links li a:hover {
  color:white;
}

.nav-links a.active {
  
  padding-bottom: 2px;
}

/* Quote Box */



.quote-box {
  max-width: 900px;
  margin: 60px auto;
  padding: 20px;
  text-align: center;
  font-size: 20px;
  line-height: 1.6;
  color: #333;
  font-style: italic;
  background: #fff;
  border-left: 6px solid #f7d3c1;
  border-radius: 8px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

.quote-box p {
  font-style: italic;
  margin: 0 0 10px;
}

.quote-box span {
 display: block;
  margin-top: 15px;
  font-weight: bold;
  color:#7568a6;
}

/* Tabs */
.tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
}

.tab {
  padding: 8px 20px;
  border: none;
  border-radius: 25px;
  background: #e0e0e0;
  cursor: pointer;
  font-weight: 500;
}

.tab.active {
  background: green;
  color: #fff;
}

/* Highlight Banner */
.highlight-banner {
  text-align: center;
  background: #7568a6;
  color:#f7d3c1;
  padding: 30px 20px;
  margin: 20px auto;
  max-width: 900px;
  border-radius: 8px;
}

.highlight-banner h2 {
  margin: 0;
  font-size: 26px;
}

.highlight-banner p {
  margin-top: 8px;
  font-size: 16px;
}

/* Career Options */
.career-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  padding: 40px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.career-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease-in-out;
}

.career-card:hover {
  transform: translateY(-5px);
  background: #fef3e2;
}

.career-card h3 {
  margin-top: 0;
  color:#7568a6;
  font-size: 18px;
}

.career-card p {
  font-size: 15px;
  margin: 10px 0 0;
}

/* Apply Section */
.apply-section {
  text-align: center;
  margin: 40px auto;
  max-width: 800px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.apply-section p {
  font-size: 16px;
}

.apply-section a {
  color:#7568a6;
  font-weight: bold;
  text-decoration: none;
}

.apply-btn {
  background: #ff6600;
  border: none;
  padding: 12px 24px;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
  margin-top: 15px;
}



body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Footer Main */
footer {
  background: #7568a6;
  color:#f7d3c1 ;
  padding: 40px 60px;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

/* Left Section */
.footer-left h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 10px;
}

.footer-left h2 span {
  color:#3f3663;
}

.footer-left p {
  font-size: 14px;
  color: #c7c7c7;
  margin-bottom: 20px;
  line-height: 1.6;
}

.social-icons a {
  display: inline-block;
  margin-right: 12px;
  font-size: 18px;
  color: #c7c7c7;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #F7D3C1;
}

/* Middle Section */
.footer-links h3,
.footer-contact h3 {
  font-size: 16px;
  margin-bottom: 15px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  text-decoration: none;
  color: #c7c7c7;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color:#F7D3C1;
}

/* Right Section */
.footer-contact p {
  margin: 8px 0;
  font-size: 14px;
  color: #c7c7c7;
}

.footer-contact .contact-link {
  text-decoration: none;
  color: #c7c7c7;
  transition: color 0.3s;
}

.footer-contact .contact-link:hover {
  color: #F7D3C1;
}

/* Bottom Section */
.footer-bottom {
  border-top: 1px solid #222;
  margin-top: 30px;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 13px;
  margin: 0;
  color: #c7c7c7;
}

.footer-bottom-links a {
  text-decoration: none;
  margin-left: 15px;
  font-size: 13px;
  color: #c7c7c7;
  transition: color 0.3s;
}

.footer-bottom-links a:hover {
  color: #F7D3C1;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    margin-top: 10px;
  }
}

.container {
  width: 90%;  /* instead of fixed 1200px */
  max-width: 1200px;
  margin: 0 auto;
}
img, video {
  max-width: 100%;
  height: auto;
}
.main {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 300px; /* grows, shrinks, min 300px */
}
/* For tablets */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    text-align: center;
  }
  .content {
    grid-template-columns: 1fr;
  }
}

/* For mobile phones */
@media (max-width: 480px) {
  body {
    font-size: 14px;
  }
  .hero h1 {
    font-size: 1.5rem;
  }
  .sidebar {
    display: none; /* hide sidebar on small screens */
  }
}


