/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to right, #eef2f3, #8e9eab);
}

/* Logo Image */
.logo-img {
  height: 70px;
  border-radius: 6px;
}

/* Site Title Styling */
.site-title {
  font-size: 2.5rem;
  font-weight: bold;
   text-shadow: 1px 1px 5px rgb(244, 245, 244);
  background: linear-gradient(30deg, white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glow 2s ease-in-out infinite alternate;
}

.site-title span {
  text-shadow: 1px 1px 5px rgb(244, 245, 244);
   background: linear-gradient(45deg, white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glow 2s ease-in-out infinite alternate;
}

/* Navbar */
.custom-navbar {
  background-color: rgba(0, 64, 128, 0.7);
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  animation: slideInDown 1s ease;
}

.navbar-nav .nav-link {
  color: white !important;
  font-weight: 500;
  transition: 0.3s;
  padding: 10px 25px;
  border-radius: 10px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* Dropdown Styling */
.dropdown-menu {
  background-color: #004080;
  border: none;
  border-radius: 6px;
}

.dropdown-item {
  color: white;
  padding: 10px 20px;
  transition: 0.3s;
}

.dropdown-item:hover {
  background-color: #0066cc;
  color: #fff;
}

/* Hero Section */
.hero-section {
  height: 90vh;
  background: url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  position: relative;
}

.hero-section .overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.55);
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: bold;
}

.hero-content p {
  font-size: 1.3rem;
  margin-top: 10px;
}



/* Popup Styles */
.popup-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.popup-box {
  background: white;
  padding: 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.7s ease;
}

.popup-box h2 {
  margin-bottom: 10px;
  color: #004080;
}

.popup-box input {
  width: 100%;
  padding: 10px;
  margin: 15px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.submit-btn {
  background: #0073e6;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.submit-btn:hover {
  background: #005bb5;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 24px;
  color: #444;
  cursor: pointer;
}

/* Animations */
@keyframes glow {
  from {
    text-shadow: 0 0 10px #66ccff;
  }
  to {
    text-shadow: 0 0 20px #ffffff, 0 0 30px #66ccff;
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Responsive: Hero Section Mobile View */
@media (max-width: 768px) {
  .hero-section {
    height: 50vh; /* Reduce height for mobile */
  }

  .hero-content h1 {
    font-size: 1.8rem; /* Smaller heading */
  }

  .hero-content p {
    font-size: 1rem;
  }

  .popup-box {
    width: 90%;
    padding: 20px;
  }

  .navbar-nav .nav-link {
    text-align: center;
  }
}

@media (max-width: 768px) {
  /* Reduce header padding */
  .custom-navbar {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  /* Reduce logo size */
  .logo-img {
    height: 40px;
  }

  /* Reduce site title font */
  .site-title {
    font-size: 1.5rem;
  }

  /* Reduce hero height and text size */
  .hero-section {
    height: 60vh;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  /* Optional: Center nav links for collapsed menu */
  .navbar-nav .nav-link {
    text-align: center;
  }
}

/* Make the navbar toggle icon white in mobile */
.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.7);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Welcome Section Card */
.welcome-card {
  border-radius: 15px;

  padding: 20px;
  background: #ffffff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease-in-out;
  animation: fadeInUp 1s ease;
}

.welcome-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgb(240, 9, 9);
}

@media (max-width: 768px) {
  .welcome-card {
    margin: 15px;
    padding: 20px;
  }

  .card-title {
    font-size: 1.3rem;
  }

  .card-text {
    font-size: 1rem;
  }
}

/* Combined Card: Image + Text in One */
.career-combined-card {
  border-radius: 16px;
  transition: 0.3s ease-in-out;
  animation: fadeInUp 1s ease;
}

.career-combined-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Ensure image fills space */
.career-img {
  object-fit: cover;
  height: 100%;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* Text styling */
.text-content {
  background-color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .career-img {
    height: 250px;
    object-fit: cover;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
  }

  .text-content {
    padding: 20px;
  }

  .career-combined-card {
    margin: 10px;
  }
}

/* Service Cards Shared Styles */
.service-card {
  padding: 20px;
  border-radius: 15px;
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: 0.3s ease-in-out;
  animation: fadeInUp 0.8s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Gradient Backgrounds */
.service-bg1 { background: linear-gradient(135deg, #0072ff, #00c6ff); }
.service-bg2 { background: linear-gradient(135deg, #ff512f, #dd2476); }
.service-bg3 { background: linear-gradient(135deg, #43cea2, #185a9d); }
.service-bg4 { background: linear-gradient(135deg, #f7971e, #ffd200); }
.service-bg5 { background: linear-gradient(135deg, #654ea3, #eaafc8); }
.service-bg6 { background: linear-gradient(135deg, #00b09b, #96c93d); }
.service-bg7 { background: linear-gradient(135deg, #ff9a9e, #fad0c4); }
.service-bg8 { background: linear-gradient(135deg, #89f7fe, #66a6ff); }
.service-bg9 { background: linear-gradient(135deg, #f6d365, #fda085); }

/* Responsive Styles */
@media (max-width: 768px) {
  .service-card {
    padding: 16px;
    font-size: 1rem;
  }

  .service-card h4 {
    font-size: 1.1rem;
  }
}

/* Why Choose Card Styling */
.why-card {
  padding: 25px;
  border-radius: 15px;
  background: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 1s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.why-card h4 {
  margin-top: 15px;
  font-size: 1.2rem;
  color: #004080;
}

.why-card p {
  font-size: 0.95rem;
  color: #555;
}

.why-icon {
  width: 60px;
  height: 60px;
}

/* Responsive spacing */
@media (max-width: 768px) {
  .why-card {
    padding: 20px;
  }

  .why-icon {
    width: 50px;
    height: 50px;
  }

  .why-card h4 {
    font-size: 1.1rem;
  }

  .why-card p {
    font-size: 0.9rem;
  }
}
/* About Tekworld Card Layout */
.about-card {
  border-radius: 18px;
  margin: 6px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 1s ease;
  
 
}


/* Hover Effect - Red Shadow */
.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.932); /* Red glow */
}

/* Image Styling */
.about-card img {
  height: 100%;
  object-fit: cover;
  
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .about-card {
    flex-direction: column;
  }

  .about-card img {
    height: auto;
  }

  .about-card h2,
  .about-card p {
    text-align: left;
  }
}

/* Smart Scroll Button */
.scroll-toggle-btn {
  position: fixed;
  right: 20px;
  bottom: 80px;
  width: 45px;
  height: 45px;
  background-color: rgb(255, 0, 0);
  color: #fff;
  font-size: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
  z-index: 999;
}

.scroll-toggle-btn:hover {
  background-color: rgb(255, 0, 0);
  transform: scale(1.1);
}

/* Active (visible) state */
.scroll-toggle-btn.active {
  opacity: 1;
  pointer-events: auto;
}

/* Smaller size for mobile */
@media (max-width: 576px) {
  .scroll-toggle-btn {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}


/* Footer */
.footer {
  background-color: #002f2f;
  color: white;
  padding: 40px 20px 0;
  font-size: 15px;
  width: 100%;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1200px;
  margin: auto;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-about,
.footer-links,
.footer-contact {
  flex: 1 1 25px;
}

.footer h3,
.footer h4 {
  color: #3700ff;
  margin-bottom: 15px;
}

.footer p,
.footer li {
  color: #ddd;
  line-height: 1.6;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li a {
  color: #ddd;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 8px;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #002fff;
}

.footer-bottom {
  text-align: center;
  padding: 15px 0;
  font-size: 14px;
  color: #aaa;
  background-color: #002424;
}
.footer-address{
 color: #002fff;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-about,
  .footer-links,
  .footer-contact {
    width: 100%;
  }

  .footer-bottom {
    text-align: center;
    font-size: 13px;
  }

}


/* Wallpaper Section - Desktop Default */
.wallpaper {
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('images/young-stylish-asian-woman-talking-phone-calling-friend-smiling-standing-with-smartphone-again.jpg')
              center/cover no-repeat;
  position: relative;
  text-align: center;
}

.wallpaper-overlay {
  
  padding: 40px;
  border-radius: 12px;
  color: black;
  max-width: 800px;
}

/* Text Styling */
.wallpaper-overlay h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.wallpaper-overlay p {
  font-size: 1.2rem;
}

/* Mobile View Adjustments */
@media (max-width: 768px) {
  .wallpaper {
    height: 200px; /* Reduce height */
    padding: 0 20px; /* Add side padding */
  }

  .wallpaper-overlay {
    padding: 20px;
  }

  .wallpaper-overlay h2 {
    font-size: 1.5rem;
  }

  .wallpaper-overlay p {
    font-size: 1rem;
  }
}

/* Contact Form Card Styling */
.contact-form-card {
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.contact-form-card:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

/* Contact Image */
.contact-image {
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.contact-image:hover {
  transform: scale(1.03);
}

/* Responsive Layout */
@media (max-width: 768px) {
  .contact-form-card {
    flex-direction: column;
    padding: 1rem;
  }

  .contact-image {
    margin-bottom: 20px;
    width: 100%;
    height: auto;
  }
}
 .jobs-hero {
      background: url('images/group-people-working-team.jpg') no-repeat center center/cover;
      padding: 100px 20x;
    }


    .job-cards-section {
      padding: 40px 20px;
      background-color: #f5f5f5;
    }

    .job-cards-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .job-card {
      background: white;
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      transform-style: preserve-3d;
      width: 300px;
      text-align: center;
    }

    .job-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 20px rgba(255, 0, 0, 0.5);
    }

    .apply-btn {
      margin-top: 15px;
      background-color: red;
      color: white;
      border: none;
      padding: 10px 20px;
      font-weight: bold;
      border-radius: 5px;
      cursor: pointer;
      transition: background 0.3s ease, box-shadow 0.3s ease;
    }

    .apply-btn:hover {
      background-color: darkred;
      box-shadow: 0 0 10px red;
    }

    @media (max-width: 768px) {
      .job-cards-container {
        flex-direction: column;
        align-items: center;
      }

      .job-card {
        width: 90%;
      }
    }
    
     @media (max-width: 768px) {
    .hero-section .container {
      padding: 30px 15px;
      text-align: center;
    }

    .hero-section h1 {
      font-size: 1.5rem;
    }

    .hero-section p {
      font-size: 0.8rem;
    }
  }

  .software-section {
    background: url('images/group-young-business-people-working-office.jpg') center center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 60px 20px;
    position: relative;
  }

  .hero-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 60px 20px;
  }

  .training-form-section {
    padding: 40px 20px;
    max-width: 600px;
    margin: auto;
  }

  .training-form-section form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .training-form-section input,
  .training-form-section select,
  .training-form-section textarea {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
  }

  .training-form-section button {
    padding: 12px;
    background-color: #d9534f;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
  }

  @media (max-width: 768px) {
    .hero-section {
      background-position: center;
      background-size: cover;
      padding: 40px 10px;
      height: 35vh;
    }

    .hero-overlay {
      padding: 40px 10px;
    }

    .hero-section h1 {
      font-size: 1.5rem;
    }

    .hero-section p {
      font-size: 1rem;
    }
  }

  
.form-section {
  max-width: 600px;
  margin: auto;
  padding: 20px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

input, select, textarea {
  padding: 10px;
  font-size: 1rem;
}

button {
  padding: 12px;
  background: red;
  color: white;
  border: none;
  font-size: 1rem;
  cursor: pointer;
}


 .training-section {
    color: white;
    text-align: center;
    padding: 60px 25px;
    position: relative;
  }

  .hero-overlay {
    background-color: rgba(10, 6, 6, 0.5);
    padding: 60px 20px;
  }

  .training-flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 20px;
    gap: 30px;
  }

  .training-form-section {
    order: 2;
    flex: 1 1 400px;
    max-width: 750px;
  }

  .training-form-section form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .training-form-section input,
  .training-form-section select,
  .training-form-section textarea {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
  }

  .training-form-section button {
    padding: 12px;
    background-color: #d9534f;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
  }

  .popup {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
  }

  .popup-content {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    max-width: 90%;
  }

  .popup-content button {
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #d9534f;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }

  @media (max-width: 768px) {
    .hero-section {
      background-position: center;
      background-size: cover;
      padding: 40px 10px;
    }

    .hero-overlay {
      padding: 40px 10px;
    }

    .hero-section h1 {
      font-size: 1.4rem;
    }

    .hero-section p {
      font-size: 1rem;
    }

    .training-flex-container {
      flex-direction: column;
      align-items: center;
    }

    .training-image {
      order: -1;
    }

    .training-form-section {
      order: 0;
    }
  }

  /* Animation Effects */
  .tracking-in-expand {
    animation: tracking-in-expand 1s ease-in-out both;
  }

  .fade-in {
    animation: fade-in 2s ease-in;
  }

  .slide-in-top {
    animation: slide-in-top 1s ease-out;
  }

  .zoom-in {
    animation: zoom-in 0.8s ease;
  }

  .pulse {
    animation: pulse 2s infinite;
  }

  @keyframes tracking-in-expand {
    0% { letter-spacing: -0.5em; opacity: 0; }
    40% { opacity: 0.6; }
    100% { letter-spacing: normal; opacity: 1; }
  }

  @keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  @keyframes slide-in-top {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }

  @keyframes zoom-in {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
  }

  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
  }
  .training-highlight {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
  }

  .highlight-card {
    background: #f5f5f5;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
    max-width: 800px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.25);
  }

  .highlight-card h2 {
    color: #d9534f;
    margin-bottom: 15px;
  }

  .highlight-card p {
    font-size: 1.1rem;
    color: #333;
  }

  .employment-hero {
  background: url('images/group-businesspeople-discussing-project-laptop.jpg') center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  color: rgb(243, 9, 9);
  text-align: center;
  position: relative;
}

.employemnt-overlay {
  background: rgba(0, 0, 0, 0.5);
  padding: 60px 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-section h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero-section p {
  font-size: 1.2rem;
  color: blue;
}

/* Responsive Styles */
@media (max-width: 768px) {
  
  .employment-hero {
    padding: 40px 10px;
  }
  .emp-overlay {
    padding: 30px 10px;
  }
  .employment-hero h1 {
    font-size: 1.8rem;
  }
  .employment-hero p {
    font-size: 1rem;
  }
}


.info-card {
  background: #fff;
  max-width: 900px;
  margin: auto;
  padding: 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.employment-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 40px 20px;
}


.card {
  background: white;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.card h3 {
  color: #d9534f;
  margin-bottom: 10px;
}


.info-card h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #00b386;
  text-align: center;
}

.info-card p {
  font-size: 17px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 15px;
  text-align: justify;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .info-card {
    padding: 18px;
  }

  .info-card h2 {
    font-size: 22px;
  }

  .info-card p {
    font-size: 15px;
    text-align: left;
  }
}


/* Placement Hero Section */
.placement-section {
  height: 90vh;
  background: url('images/blonde-woman-pressing-virtual-screen.jpg') center/cover no-repeat;
  position: relative;
}


@media (max-width: 768px) {
  .placement-section  {
   height: 35vh; /* Reduce height for mobile */
  }
}

.placement-section1 {
  padding: 60px 20px;
  background: #fefefe;
  text-align: center;
}

.placement-title {
  font-size: 2.2rem;
  color: #d9534f;
  margin-bottom: 40px;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.placement-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.placement-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: left;
}

.placement-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.placement-card h3 {
  font-size: 1.3rem;
  color: #007bff;
  margin-bottom: 10px;
}

.placement-card p {
  color: #555;
  line-height: 1.6;
  font-size: 0.95rem;
}


/* Wallpaper Section - Desktop Default */

.wallpaper1 {
  background: url('https://images.unsplash.com/photo-1556742031-c6961e8560b0') no-repeat center center/cover;

  padding: 60px 16px;
  height: 80vh;
}
@keyframes slideIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.wallpaper1{
  height: 30vh;
}

.content {
  padding: 40px 20px;
  background: #fff;
}

.content-wrapper {
  max-width: 900px;
  margin: auto;
}

.content h2 {
  color: red;
  margin-top: 30px;
}

.content p, .content ul {
  font-size: 16px;
  color: #333;
}

.content ul {
  margin: 10px 0 30px 20px;
}


.wallpaper2 {
  background: url('images/modern-ambiance.jpg') no-repeat center center/cover;

  padding: 60px 16px;
  height: 80vh;
}
@media (max-width: 768px) {
  .wallpaper2 {
    height: 200px; /* Reduce height */
    padding: 0 20px; /* Add side padding */
  }
}

.wallpaper3 {
  background: url('images/futuristic-business-scene-with-ultra-modern-ambiance.jpg') no-repeat center center/cover;

  padding: 60px 16px;
  height: 90vh;
}
@media (max-width: 768px) {
  .wallpaper3 {
    height: 200px; /* Reduce height */
    padding: 0 20px; /* Add side padding */
  }
}


.wallpaper4 {
  background: url('images/robot-performing-ordinary-human-job.jpg') no-repeat center center/cover;

  padding: 60px 16px;
  height: 80vh;
}
@media (max-width: 768px) {
  .wallpaper4 {
    height: 200px; /* Reduce height */
    padding: 0 20px; /* Add side padding */
  }
}

.wallpaper5 {
  background: url('images/company-representatives-reading-applicant-resume-hiring.jpg') no-repeat center center/cover;
  padding: 60px 16px;
  height: 80vh;
}
@media (max-width: 768px) {
  .wallpaper5 {
    height: 200px; /* Reduce height */
    padding: 0 20px; /* Add side padding */
  }
}

.wallpaper6 {
  background: url('images/executives-looking-her-teammate.jpg') no-repeat center center/cover;
  padding: 60px 16px;
  height: 85vh;
}
@media (max-width: 768px) {
  .wallpaper6 {
    height: 200px; /* Reduce height */
    padding: 0 20px; /* Add side padding */
  }
}

.wallpaper7 {
  background: url('images/business-people-holding-word-careers.jpg') no-repeat center center/cover;
  padding: 60px 16px;
  height: 80vh;
}
@media (max-width: 768px) {
  .wallpaper7 {
    height: 200px; /* Reduce height */
    padding: 0 20px; /* Add side padding */
  }
}
.wallpaper8 {
  background: url('images/learn-learning-education-studying-concept.jpg') no-repeat center center/cover;
  padding: 60px 16px;
  height: 100vh;
}
@media (max-width: 768px) {
  .wallpaper8 {
    height: 200px; /* Reduce height */
    padding: 0 20px; /* Add side padding */
  }
}

.wallpaper9 {
  background: url('images/problem-solving-concept-with-book.jpg') no-repeat center center/cover;
  padding: 60px 16px;
  height: 80vh;
}
@media (max-width: 768px) {
  .wallpaper9 {
    height: 200px; /* Reduce height */
    padding: 0 20px; /* Add side padding */
  }
}

.popup1 {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.5);
      justify-content: center;
      align-items: center;
      z-index: 999;
    }

    .popup1-content {
      background: white;
      padding: 30px;
      border-radius: 8px;
      text-align: center;
      max-width: 400px;
    }

    .popup1-content button {
      padding: 10px 20px;
      background: green;
      color: white;
      border: none;
      cursor: pointer;
    }


  .whatsapp-float {
  position: fixed;
  width: 44px;
  height: 50px;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}


.contact-section {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-group {
  margin-bottom: 15px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.form-submit {
  background-color: #007bff;
  color: #fff;
  padding: 10px 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.form-submit:hover {
  background-color: #0056b3;
}

/* Ensure image fills its container */
.object-fit-cover {
  object-fit: cover;
  border-radius: 10px;
}


