:root {
  --primary-color: #2C296F;
  --secondary-color: #4C49A3;
  --accent-color: #7C3AED;
  --light-purple: #E0E7FF;
  --success-color: #10b981;
  --warning-color: #F59E0B;
  --error-color: #EF4444;
  --text-primary: #1F2937;
  --text-secondary: #6B7280;
  --bg-light: #FAFBFF;
  --bg-gradient: linear-gradient(135deg, #FAFBFF 0%, #F3F4F6 100%);
  --border-color: #E5E7EB;
  --gradient-primary: linear-gradient(135deg, #2C296F 0%, #4C49A3 40%, #548ee6 80%, #A855F7 100%);
  --gradient-accent: linear-gradient(135deg, #5b98dd 0%, #2C296F 100%);
  --gradient-hero: linear-gradient(135deg, #2C296F 0%, #4C49A3 40%, #548ee6 80%, #A855F7 100%);
  --shadow-soft: 0 10px 40px -10px rgba(44, 41, 111, 0.15);
  --shadow-medium: 0 20px 50px -15px rgba(44, 41, 111, 0.25);
  --shadow-strong: 0 25px 60px -12px rgba(44, 41, 111, 0.35);
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--bg-gradient);
  min-height: 100vh;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 30%, #f1f5f9 70%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.1) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--text-primary);
  text-align: left;
  padding: 2rem 0;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out;
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
}

/* Hero Title */
.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
  animation: fadeInUp 1s ease-out 0.2s both;
  color: var(--text-primary);
  line-height: 1.2;
}

.hero-title .highlight {
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

/* Hero Subtitle */
.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  color: var(--text-secondary);
  font-weight: 400;
  animation: fadeInUp 1s ease-out 0.4s both;
  line-height: 1.7;
  max-width: 500px;
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 4rem;
  animation: fadeInUp 1s ease-out 0.6s both;
  flex-wrap: wrap;
}

.btn-primary-hero {
  background: var(--gradient-accent);
  color: white;
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(44, 41, 111, 0.3);
}

.btn-primary-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(44, 41, 111, 0.4);
  color: white;
  text-decoration: none;
}

.btn-secondary-hero {
  background: transparent;
  color: var(--primary-color);
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border: 2px solid var(--primary-color);
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.btn-secondary-hero:hover {
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
}

/* Hero Stats - Removed as per user request */

/* Hero Image Section */
.hero-image-wrapper {
  position: relative;
  animation: fadeInUp 1s ease-out 1s both;
}

.hero-image-container {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.hero-campus-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.hero-campus-image:hover {
  transform: scale(1.05);
}

/* Floating Info Cards */
.floating-info {
  position: absolute;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 180px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: float 3s ease-in-out infinite;
}

.floating-info i {
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.5rem;
}

.floating-info-1 {
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}

.floating-info-2 {
  bottom: 50%;
  left: -15%;
  animation-delay: 1s;
}

.floating-info-3 {
  bottom: 10%;
  right: -5%;
  animation-delay: 2s;
}

.info-title {
  display: block;
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.9rem;
}

.info-desc {
  display: block;
  color: var(--text-secondary);
  font-size: 0.8rem;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* FadeInUp Animation */
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}




/* Large screens */
@media (min-width: 1200px) {
  .hero-title {
      font-size: 3.5rem;
  }

  .hero-subtitle {
      font-size: 1.2rem;
  }

  .hero-campus-image {
      height: 500px;
  }

  .floating-info {
      min-width: 200px;
      padding: 1.2rem 1.8rem;
  }
}

/* Why Work With Us Section */
.why-section {
  padding: 8rem 0;
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}



.section-title {
  font-size: 2.3rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  position: relative;
  display: inline-block;
  width: 100%;
}



.section-subtitle {
  font-size: 1.3rem;
  text-align: center;
  margin-bottom: 5rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  line-height: 1.8;
}

.feature-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border-radius: 30px;
  padding: 3.5rem 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-medium);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  border: 2px solid var(--glass-border);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  border-radius: 30px 30px 0 0;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
  transition: all 0.6s ease;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.feature-card:hover::after {
  width: 300px;
  height: 300px;
}

.feature-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: var(--shadow-strong);
}

.feature-icon {
  width: 100px;
  height: 100px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2.5rem;
  font-size: 2.5rem;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px -5px rgba(30, 58, 138, 0.3);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px -5px rgba(30, 58, 138, 0.5);
}

.feature-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.feature-description {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1.05rem;
}

/* Values Section */
.values-section {
  padding: 8rem 0;
  background: white;
  position: relative;
}

.values-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: 
      radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
      radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 5rem;
  position: relative;
  z-index: 1;
}

.value-item {
  text-align: center;
  padding: 2.5rem;
  transition: transform 0.3s ease;
}

.value-item:hover {
  transform: translateY(-10px);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-accent);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2rem;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px -5px rgba(6, 182, 212, 0.3);
}

.value-item:hover .value-icon {
  transform: scale(1.1);
  box-shadow: 0 15px 35px -5px rgba(6, 182, 212, 0.5);
}

.value-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.value-description {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

/* Benefits Section */
.benefits-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, var(--bg-light) 0%, #f0f9ff 50%, #e0f2fe 100%);
  position: relative;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 5rem;
}

.benefit-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.05), transparent);
  transition: left 0.6s ease;
}

.benefit-card:hover::before {
  left: 100%;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.benefit-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  font-size: 1.4rem;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px -5px rgba(30, 58, 138, 0.3);
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 30px -5px rgba(30, 58, 138, 0.5);
}

.benefit-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
}

.benefit-description {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

/* Application Form Section */
.application-section {
  padding: 8rem 0;
  background: white;
  position: relative;
}

.application-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
}

.form-container {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border-radius: 35px;
  box-shadow: var(--shadow-strong);
  overflow: hidden;
  border: 2px solid var(--glass-border);
  position: relative;
}

.form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--gradient-accent);
}

.form-header {
  background: var(--gradient-hero);
  color: white;
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.form-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 70%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.form-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid var(--primary-color);
}

.form-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.form-subtitle {
  font-size: 1.2rem;
  opacity: 0.95;
  font-weight: 400;
  position: relative;
  z-index: 2;
}

.form-content {
  padding: 4rem 3rem;
}

.info-text {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-left: 6px solid var(--accent-color);
  padding: 2.5rem;
  border-radius: 15px;
  margin-bottom: 4rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-primary);
  box-shadow: 0 5px 15px -5px rgba(6, 182, 212, 0.2);
}

.required-text {
  font-weight: 700;
  color: var(--error-color);
  margin-top: 1.5rem;
  font-size: 1rem;
}

.form-section-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 3rem 0 2rem 0;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--accent-color);
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}



.form-group {
  margin-bottom: 2rem;
}

.form-label {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.8rem;
  display: block;
  font-size: 1rem;
}

.form-label.required::after {
  content: ' *';
  color: var(--error-color);
  font-weight: 700;
}

.form-control, .form-select {
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: #fafafa;
  font-weight: 500;
}

.form-control:focus, .form-select:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
  background-color: white;
  outline: none;
  transform: translateY(-2px);
}

.form-control:hover, .form-select:hover {
  border-color: var(--accent-color);
  background-color: white;
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

.experience-card {
  background: linear-gradient(135deg, #f8fafc 0%, #f0f9ff 100%);
  border: 2px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.experience-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
}

.experience-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
  border-color: var(--accent-color);
}

.experience-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.submit-btn {
  background: var(--gradient-accent);
  border: none;
  color: white;
  padding: 1.3rem 4rem;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 60px;
  cursor: pointer;
  display: block;
  margin: 4rem auto 0;
  min-width: 250px;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
}

.submit-btn:hover::before {
  left: 100%;
}

.submit-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 25px 50px -10px rgba(6, 182, 212, 0.6);
}

.file-input-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

.file-input {
  opacity: 0;
  position: absolute;
  z-index: -1;
}

.file-input-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border: 2px dashed var(--border-color);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #fafafa;
  color: var(--text-secondary);
  font-weight: 500;
}

.file-input-label:hover {
  border-color: var(--accent-color);
  background-color: #f0f9ff;
  color: var(--accent-color);
  transform: translateY(-2px);
}

.file-input:focus + .file-input-label {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
}

/* Footer */
.footer {
  background: var(--gradient-primary);
  color: white;
  padding: 4rem 0;
  text-align: center;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
}

.footer-content {
  max-width: 900px;
  margin: 0 auto;
}

.footer-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-text {
  opacity: 0.95;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-3px);
}

.contact-item i {
  font-size: 1.2rem;
}

/* Footer Links */
.footer-links {
  margin-top: 20px;
  text-align: center;
}

.footer-links a {
  margin: 0 10px;
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-color);
}

.footer-copyright {
  margin-top: 3rem;
  text-align: center;
}

.email-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.email-link:hover {
  color: var(--accent-color);
}

/* Mobile Header */
  .mobile-header {
    background: var(--gradient-hero);
    padding: 3.5rem 1rem;
    text-align: center;
    color: white;
    display: none;
    position: relative;
    overflow: hidden;
  }

.mobile-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

  .mobile-header .mobile-logo {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
    animation: fadeInDown 0.8s ease-out;
  }

  .mobile-header h1 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out 0.2s both;
  }

  .mobile-header p {
    font-size: 0.8rem;
    opacity: 0.9;
    margin: 0.3rem 0 0 0;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out 0.4s both;
  }

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsive */
@media (max-width: 767px) {
  /* Hero Section Mobile - Compact and user-friendly */
  .hero-section {
      padding: 30px 0 20px;
  }

  /* Mobile: Stack content vertically with flex order */
  .hero-section .row {
      display: flex;
      flex-direction: column;
  }

  .hero-content {
      text-align: center;
      padding: 1rem 0;
      order: 2; /* Content comes after image on mobile */
  }

  .hero-image-wrapper {
      order: 1; /* Image comes first on mobile */
      margin-bottom: 2rem;
  }

  .col-lg-6 {
      width: 100%;
  }

  .hero-badge {
      font-size: 0.8rem;
      padding: 0.6rem 1.2rem;
      margin-bottom: 1rem;
  }

  .hero-title {
      font-size: 2rem;
      margin-bottom: 1rem;
      line-height: 1.3;
  }

  .hero-subtitle {
      font-size: 1rem;
      margin-bottom: 1.5rem;
      max-width: 100%;
      line-height: 1.5;
  }

  .hero-buttons {
      flex-direction: column;
      gap: 0.8rem;
      margin-bottom: 0;
      align-items: center;
  }

  .btn-primary-hero,
  .btn-secondary-hero {
      padding: 0.9rem 2rem;
      font-size: 0.95rem;
      width: 280px;
      justify-content: center;
  }

  /* Mobile image optimization */
  .hero-image-wrapper {
      display: flex;
      justify-content: center;
      align-items: center;
  }

  .hero-campus-image {
      height: 250px;
      width: 250px;
      margin: 0 auto;
      display: block;
  }

  .floating-info {
      display: none; /* Hide floating cards on mobile */
  }

  /* Mobile: Why section closer to hero */
  .why-section {
      padding: 3rem 0;
  }

  .footer {
      display: none;
  }

  /* Hide mobile header */
  .mobile-header {
      display: none;
  }

  /* Show only application form on mobile */
  .application-section {
      padding: 0.5rem 0;
      min-height: auto;
  }

  .application-section .container {
      padding: 0.5rem;
  }

  .section-title {
      display: none;
  }

  .section-subtitle {
      display: none;
  }

  .form-container {
      margin: 0 0.5rem;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.15);
      overflow: hidden;
  }

  .form-header {
      background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
      padding: 2rem 1.5rem;
      text-align: center;
      border-bottom: 3px solid var(--primary-color);
  }

  .form-title {
      font-size: 1.6rem;
      margin-bottom: 0.8rem;
      color: var(--primary-color);
      font-weight: 700;
  }

  .form-subtitle {
      font-size: 1rem;
      margin-bottom: 0;
      color: var(--text-secondary);
      font-weight: 400;
  }

  .form-content {
      padding: 2rem 1.5rem;
      background: white;
  }

  .info-text {
      display: none;
  }

  .form-group {
      margin-bottom: 0.8rem;
  }

  .form-label {
      font-size: 0.85rem;
      margin-bottom: 0.2rem;
      font-weight: 600;
  }

  .form-control, .form-select {
      padding: 0.6rem;
      font-size: 0.85rem;
      border-radius: 6px;
      border: 1px solid #ddd;
  }

  .form-control:focus, .form-select:focus {
      border-color: var(--primary-color);
      box-shadow: 0 0 0 2px rgba(30, 58, 138, 0.1);
  }

  .experience-card {
      padding: 1.5rem;
      margin-bottom: 1rem;
      border-radius: 10px;
  }

  .experience-title {
      font-size: 1rem;
      margin-bottom: 1rem;
  }

  .submit-btn {
      padding: 1rem 2rem;
      font-size: 1rem;
      width: 100%;
      margin-top: 1.5rem;
  }

  .file-input-label {
      padding: 0.8rem;
      font-size: 0.9rem;
  }

  /* Compact row spacing */
  .row {
      margin-bottom: 0.5rem;
  }

  .col-md-6, .col-md-4 {
      margin-bottom: 0.5rem;
  }
}

/* Tablet responsive */
@media (min-width: 768px) and (max-width: 1024px) {
  .hero-section {
      padding: 40px 0;
  }

  .hero-content {
      padding: 1.5rem 0;
  }

  .hero-title {
      font-size: 2.8rem;
  }

  .hero-subtitle {
      font-size: 1.1rem;
  }

  .hero-buttons {
      margin-bottom: 2rem;
  }

  .hero-campus-image {
      height: 350px;
  }

  .floating-info {
      min-width: 140px;
      padding: 0.7rem 1rem;
      font-size: 0.85rem;
  }

  .info-title {
      font-size: 0.8rem;
  }

  .info-desc {
      font-size: 0.7rem;
  }

  .section-title {
      font-size: 2.5rem;
  }

  .form-content {
      padding: 2rem;
  }

  .feature-card {
      padding: 2.5rem 2rem;
  }

  .contact-info {
      gap: 2rem;
      flex-direction: column;
      align-items: center;
  }
}

/* Small mobile (480px and below) */
@media (max-width: 480px) {
  .hero-section {
      padding: 20px 0 15px;
  }

  .hero-content {
      padding: 0.5rem 0;
  }

  .hero-badge {
      font-size: 0.75rem;
      padding: 0.5rem 1rem;
      margin-bottom: 0.8rem;
  }

  .hero-title {
      font-size: 1.7rem;
      margin-bottom: 0.8rem;
  }

  .hero-subtitle {
      font-size: 0.9rem;
      margin-bottom: 1.2rem;
      padding: 0 10px;
  }

  .hero-buttons {
      gap: 0.6rem;
      margin-bottom: 0;
  }

  .btn-primary-hero,
  .btn-secondary-hero {
      width: 240px;
      padding: 0.8rem 1.5rem;
      font-size: 0.9rem;
  }

  .hero-image-wrapper {
      margin-bottom: 1.5rem;
      display: flex;
      justify-content: center;
      align-items: center;
  }

  .hero-campus-image {
      height: 200px;
      width: 200px;
      margin: 0 auto;
      display: block;
  }

  .application-section {
      padding: 1rem 0;
  }

  .section-title {
      font-size: 1.5rem;
  }

  .section-subtitle {
      font-size: 0.9rem;
  }

  .form-container {
      margin: 0 0.5rem;
      border-radius: 10px;
  }

      .form-header {
        padding: 1.5rem 1rem;
    }

  .form-title {
      font-size: 1.3rem;
  }

  .form-subtitle {
      font-size: 0.8rem;
  }

  .form-content {
      padding: 1rem;
  }

  .info-text {
      padding: 0.8rem;
      font-size: 0.8rem;
  }

  .form-group {
      margin-bottom: 0.6rem;
  }

  .form-control, .form-select {
      padding: 0.5rem;
      font-size: 0.8rem;
  }

  .experience-card {
      padding: 0.8rem;
  }

  .submit-btn {
      padding: 0.8rem 1.2rem;
      font-size: 0.85rem;
  }

  textarea.form-control {
      min-height: 60px;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

/* Animation utilities */
/* Fade in animations disabled */
/*
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}
*/

/* Loading animation for form */
.loading {
  position: relative;
  pointer-events: none;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid #ffffff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Success message */
.success-message {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 1rem 2rem;
  border-radius: 10px;
  margin-top: 2rem;
  text-align: center;
  font-weight: 600;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.success-message.show {
  opacity: 1;
  transform: translateY(0);
}

/* KVKK Checkbox Styles */
.kvkk-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  background-color: #f8f9ff;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.kvkk-checkbox:hover {
  border-color: var(--secondary-color);
  background-color: #f0f4ff;
}

.kvkk-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 0;
  cursor: pointer;
  accent-color: var(--primary-color);
  flex-shrink: 0;
  margin-top: 2px;
}

.kvkk-label {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-primary);
  cursor: pointer;
  margin: 0;
  flex: 1;
}

.kvkk-link {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.3s ease;
}

.kvkk-link:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.required-star {
  color: var(--error-color);
  font-weight: bold;
}

/* KVKK Modal Styles */
.modal-content {
  border-radius: 16px;
  border: none;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.modal-header {
  background: var(--gradient-primary);
  color: white;
  border-radius: 16px 16px 0 0;
  padding: 15px 25px;
}

.modal-title {
  font-weight: 600;
  font-size: 16px;
}

.btn-close {
  filter: brightness(0) invert(1);
}

.modal-body {
  padding: 20px 25px;
  max-height: 75vh;
  overflow-y: auto;
  font-size: 12px;
  line-height: 1.5;
  position: relative;
}

/* KVKK Metin Stilleri */
.modal-body h3 {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  text-align: center;
  border-bottom: 2px solid var(--light-purple);
  padding-bottom: 10px;
}

.modal-body h4 {
  color: var(--secondary-color);
  font-size: 13px;
  font-weight: 600;
  margin: 20px 0 10px 0;
  padding: 8px 12px;
  background-color: var(--light-purple);
  border-radius: 6px;
  border-left: 3px solid var(--primary-color);
}

.modal-body p {
  font-size: 11px;
  line-height: 1.5;
  color: var(--text-primary);
  margin-bottom: 12px;
  text-align: justify;
}

.modal-body ul, .modal-body ol {
  padding-left: 15px;
  margin-bottom: 12px;
}

.modal-body li {
  font-size: 11px;
  line-height: 1.4;
  color: var(--text-primary);
  margin-bottom: 6px;
  text-align: justify;
}

.modal-body .table {
  font-size: 11px;
  margin-bottom: 15px;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  overflow: hidden;
}

.modal-body .table td {
  padding: 8px 10px;
  vertical-align: top;
  border-bottom: 1px solid #f1f3f4;
}

.modal-body .table td:first-child {
  background-color: #f8f9ff;
  font-weight: 600;
  color: var(--primary-color);
  width: 30%;
}

.modal-body a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.modal-body a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* Özel vurgular */
.modal-body strong {
  color: var(--primary-color);
  font-weight: 600;
}

/* Sayılandırılmış listeler */
.modal-body ol {
  counter-reset: item;
  padding-left: 0;
}

.modal-body ol > li {
  display: block;
  margin-bottom: 8px;
  padding-left: 25px;
  position: relative;
}

.modal-body ol > li:before {
  content: counter(item);
  counter-increment: item;
  background: var(--primary-color);
  color: white;
  font-weight: 600;
  font-size: 10px;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
}

/* HR stili */
.modal-body hr {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  margin: 20px 0;
  border-radius: 1px;
}

/* Ekler bölümü */
.modal-body h4:last-of-type {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  margin-top: 25px;
}

.modal-footer {
  padding: 15px 25px;
  border-top: 1px solid #e9ecef;
  background-color: #f8f9fa;
}

.modal-footer .btn {
  font-size: 13px;
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 500;
}

/* Scrollbar özelleştirme */
.modal-body::-webkit-scrollbar {
  width: 6px;
}

.modal-body::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.modal-body::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 3px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
}

/* KVKK Kabul Butonu */
#kvkk-accept-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border: none;
  color: white;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

#kvkk-accept-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

#kvkk-accept-btn:active {
  transform: translateY(0);
}

/* Animasyonlar */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* SweetAlert Toast Özelleştirmesi */
.swal-toast {
  font-size: 14px;
}

.swal-toast .swal2-title {
  font-size: 16px;
  color: var(--primary-color);
}

/* KVKK Checkbox Hover Efekti */
.kvkk-checkbox {
  transition: background-color 0.3s ease;
  border-radius: 8px;
  padding: 8px;
  margin: 0;
  position: relative;
}

.kvkk-checkbox:hover {
  background-color: #f8f9ff;
}

.kvkk-checkbox::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(59, 130, 246, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.kvkk-checkbox:hover::before {
  opacity: 1;
}

.kvkk-link {
  position: relative;
  transition: all 0.3s ease;
}

.kvkk-link:hover {
  color: var(--secondary-color) !important;
  text-decoration: none !important;
}



/* KVKK Modal Scroll İpuçları */
.modal-scroll-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(transparent, rgba(248, 249, 250, 0.95));
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-scroll-indicator.hidden {
  opacity: 0;
}

.scroll-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--primary-color);
  font-size: 12px;
  font-weight: 600;
  animation: bounceArrow 2s infinite;
}

.scroll-arrow i {
  font-size: 18px;
  margin-bottom: 5px;
  animation: pulse 1.5s infinite;
}

@keyframes bounceArrow {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}

@keyframes pulse {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* KVKK Modal Başlık Bilgilendirme */
.kvkk-info-banner {
  background: linear-gradient(135deg, #e0f2fe, #f3e5f5);
  border: 1px solid #b3e5fc;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--primary-color);
  position: relative;
  overflow: hidden;
}

.kvkk-info-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
}

.kvkk-info-banner i {
  font-size: 16px;
  color: var(--secondary-color);
  animation: infoGlow 2s infinite alternate;
}

.kvkk-info-banner .info-text {
  flex: 1;
  line-height: 1.4;
}

.kvkk-info-banner .info-text strong {
  color: var(--secondary-color);
}

@keyframes infoGlow {
  0% {
    text-shadow: 0 0 5px rgba(59, 130, 246, 0.3);
  }
  100% {
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.6);
  }
}

/* Progress Bar */
.kvkk-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  z-index: 1000;
  transition: width 0.3s ease;
  border-radius: 0 3px 3px 0;
}

/* SweetAlert Custom Styles */
.swal-custom-popup {
  border-radius: 16px !important;
  font-family: 'Poppins', sans-serif !important;
}

.swal-custom-title {
  color: var(--primary-color) !important;
  font-weight: 600 !important;
  font-size: 20px !important;
}

.swal-custom-html {
  color: var(--text-primary) !important;
  line-height: 1.6 !important;
}

.swal-custom-html ul {
  text-align: left !important;
  margin: 15px 0 !important;
}

.swal-custom-html li {
  margin-bottom: 8px !important;
  line-height: 1.5 !important;
}