* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
:root {
  --primary-color: #0f3460;
  --secondary-color: #0077b6;
  --accent-color: #00a8cc;
  --light-blue: #e6f7ff;
  --text-color: #333;
  --light-bg: #f5f7fa;
  --dark-bg: #0a1929;
  --white: #ffffff;
  --gray: #6c757d;
  --gradient-1: linear-gradient(135deg, #0f3460 0%, #0077b6 100%);
  --gradient-2: linear-gradient(135deg, #0077b6 0%, #00a8cc 100%);
  --gradient-3: linear-gradient(135deg, #e6f7ff 0%, #ffffff 100%);
}
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");
html {
  scroll-behavior: smooth;
}
body {
  overflow-x: hidden;
  color: var(--text-color);
  background-color: var(--light-bg);
}
/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--light-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}
/* Hero Section - Enhanced */
.hero {
  height: 70vh;
  min-height: 500px;
  background: linear-gradient(rgba(15, 52, 96, 0.7), rgba(22, 33, 62, 0.8)),
    url("https://images.unsplash.com/photo-1521791136064-7986c2920216?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(0, 119, 182, 0.2) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(0, 168, 204, 0.2) 0%,
      transparent 50%
    );
  z-index: 1;
  animation: pulse 4s infinite alternate;
}
@keyframes pulse {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.6;
  }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
  animation: fadeInUp 1.5s ease;
}
.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(45deg, var(--white), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  line-height: 1.2;
  animation: glow 2s infinite alternate;
}
@keyframes glow {
  from {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  }
  to {
    text-shadow: 0 0 20px rgba(0, 168, 204, 0.8);
  }
}
.hero p {
  font-size: 1.5rem;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}
.my-btn {
  display: inline-block;
  padding: 15px 40px;
  background: var(--gradient-2);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 119, 182, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
.my-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-1);
  transition: opacity 0.3s ease;
  opacity: 0;
  z-index: -1;
}
.my-btn:hover::before {
  opacity: 1;
}
.my-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 119, 182, 0.4);
}
/* Floating Icons Animation */
.floating-icons {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
}
.floating-icon {
  position: absolute;
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.1);
  animation: float 20s infinite linear;
}
.floating-icon:nth-child(1) {
  top: 15%;
  left: 5%;
  animation-delay: 0s;
}
.floating-icon:nth-child(2) {
  top: 65%;
  left: 85%;
  animation-delay: 2s;
}
.floating-icon:nth-child(3) {
  top: 25%;
  left: 75%;
  animation-delay: 4s;
}
.floating-icon:nth-child(4) {
  top: 75%;
  left: 15%;
  animation-delay: 6s;
}
.floating-icon:nth-child(5) {
  top: 45%;
  left: 50%;
  animation-delay: 8s;
}
/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-indicator i {
  font-size: 2rem;
  color: var(--white);
  animation: bounce 2s infinite;
}
/* Why Join Us Section */
.why-join {
  padding: 100px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.why-join::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: var(--gradient-1);
  border-radius: 50%;
  opacity: 0.05;
  z-index: 0;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}
.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}
.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-2);
  border-radius: 5px;
}
.section-title p {
  color: var(--gray);
  max-width: 700px;
  margin: 20px auto 0;
  font-size: 1.1rem;
  line-height: 1.6;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.benefit-card {
  background: var(--light-bg);
  border-radius: 15px;
  padding: 40px 25px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.02);
  height: 100%;
}
.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.benefit-card:hover::before {
  transform: scaleX(1);
}
.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.benefit-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.4s ease;
}
.benefit-icon i {
  font-size: 2rem;
  color: var(--white);
}
.benefit-card:hover .benefit-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--gradient-2);
}
.benefit-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-color);
  font-weight: 600;
}
.benefit-card p {
  color: var(--gray);
  line-height: 1.7;
  font-size: 1rem;
}
/* Current Openings Section */
.openings {
  padding: 100px 0;
  background: var(--light-bg);
  position: relative;
}
.openings::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 10% 20%,
      rgba(0, 119, 182, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(0, 168, 204, 0.03) 0%,
      transparent 50%
    );
  z-index: 0;
}
.job-listings {
  position: relative;
  z-index: 1;
}
.job-card {
  background: var(--white);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.job-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-2);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}
.job-card:hover::before {
  transform: scaleY(1);
}
.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.job-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
  gap: 15px;
}
.job-title {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 600;
}
.job-department {
  display: inline-block;
  padding: 5px 15px;
  background: var(--light-blue);
  color: var(--secondary-color);
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}
.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 15px;
}
.job-meta-item {
  display: flex;
  align-items: center;
  color: var(--gray);
  font-size: 0.95rem;
}
.job-meta-item i {
  margin-right: 8px;
  color: var(--secondary-color);
}
.job-description {
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}
.job-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.job-apply-btn {
  padding: 10px 25px;
  background: var(--gradient-2);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
}
.job-apply-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 119, 182, 0.3);
}
.job-date {
  color: var(--gray);
  font-size: 0.9rem;
}
/* Life at Campus Section */
.life-campus {
  padding: 100px 0;
  background: var(--white);
  position: relative;
}
.life-campus::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 10% 20%,
      rgba(0, 119, 182, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(0, 168, 204, 0.03) 0%,
      transparent 50%
    );
  z-index: 0;
}
.campus-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  position: relative;
  z-index: 1;
}
.campus-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 250px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  cursor: pointer;
}
.campus-item:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.campus-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.campus-item:hover img {
  transform: scale(1.1);
}
.campus-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(15, 52, 96, 0.8) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.campus-item:hover .campus-overlay {
  opacity: 1;
}
.campus-overlay h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 5px;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}
.campus-item:hover .campus-overlay h3 {
  transform: translateY(0);
}
.campus-overlay p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  transform: translateY(20px);
  transition: transform 0.4s ease 0.1s;
}
.campus-item:hover .campus-overlay p {
  transform: translateY(0);
}
/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background: var(--light-bg);
  position: relative;
}
.testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 10% 20%,
      rgba(0, 119, 182, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(0, 168, 204, 0.03) 0%,
      transparent 50%
    );
  z-index: 0;
}
.testimonials-container {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.testimonial-card {
  background: var(--white);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  position: relative;
  height: 100%;
}
.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.testimonial-card::before {
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 1.8rem;
  color: var(--secondary-color);
  opacity: 0.2;
}
.testimonial-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 25px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
}
.author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}
.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.author-info h4 {
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 5px;
}
.author-info p {
  color: var(--gray);
  font-size: 0.9rem;
}
/* Application Process Section */
.application-process {
  padding: 100px 0;
  background: var(--white);
  position: relative;
}
.application-process::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 10% 20%,
      rgba(0, 119, 182, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(0, 168, 204, 0.03) 0%,
      transparent 50%
    );
  z-index: 0;
}
.process-container {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}
.process-step {
  text-align: center;
  position: relative;
}
.step-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-2);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}
.process-step:hover .step-number {
  transform: scale(1.1);
  background: var(--gradient-1);
}
.process-step::after {
  content: "";
  position: absolute;
  top: 30px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: var(--gradient-2);
  z-index: 0;
  opacity: 0.3;
}
.process-step:last-child::after {
  display: none;
}
.step-content h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: 600;
}
.step-content p {
  color: var(--gray);
  line-height: 1.6;
}
/* Contact Section */
.contact {
  padding: 100px 0;
  background: var(--light-bg);
  position: relative;
}
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}
.contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-2);
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--primary-color);
  font-size: 1rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--light-bg);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--secondary-color);
  background: var(--white);
}
.contact-info {
  padding: 20px 0;
}
.contact-info h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 25px;
  font-weight: 700;
}
.contact-item-1 {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  background: var(--white);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.contact-item-1:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.contact-item-1 i {
  font-size: 1.8rem;
  color: var(--secondary-color);
  margin-right: 15px;
  margin-top: 5px;
}
.contact-item-1 h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--primary-color);
}
.contact-item-1 p {
  color: var(--gray);
  line-height: 1.7;
  font-size: 1rem;
}
/* Lightbox Styles */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.lightbox.active {
  opacity: 1;
  visibility: visible;
}
.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}
.lightbox.active .lightbox-content {
  transform: scale(1);
}
.lightbox img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}
.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.lightbox-close:hover {
  background: var(--secondary-color);
  transform: rotate(90deg);
}
/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-2);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 5px 20px rgba(0, 119, 182, 0.3);
}
.back-to-top.active {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 119, 182, 0.4);
}
/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-100vh) rotate(360deg);
    opacity: 0;
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Responsive Design */
@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .job-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .job-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .hero {
    height: 60vh;
    min-height: 400px;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .campus-gallery {
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-step::after {
    display: none;
  }
}
@media (max-width: 576px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .contact-form {
    padding: 30px 20px;
  }
}
