:root {
  --ebb: #ffffff;
  --cannon-pink: #914876;
  --everglade: #224e2d;
  --olive-green: #99b24c;
  --body-bg: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
  --text-dark: #1e293b;
  --gradient-primary: linear-gradient(135deg, #914876 0%, #b45a8a 50%, #914876 100%);
  --gradient-secondary: linear-gradient(135deg, #224e2d 0%, #2d6640 50%, #224e2d 100%);
  --gradient-accent: linear-gradient(135deg, #99b24c 0%, #a8c25a 50%, #99b24c 100%);
  --glass-bg: rgba(255, 255, 255, 0.25);
  --glass-border: rgba(255, 255, 255, 0.18);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--body-bg);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Premium Navbar */
.custom-navbar {
  background: black;
  backdrop-filter: blur(20px);
  font-weight: 600;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  z-index: 1000;
}

.custom-navbar.scrolled {
  background: black;
  backdrop-filter: blur(30px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.logo {
  height: 42px;
  object-fit: contain;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.navbar-brand {
  transition: transform 0.3s ease;
}

.navbar-brand:hover {
  transform: translateY(-2px);
}

.nav-link {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  color: white !important;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: var(--gradient-accent);
  transition: left 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
  left: 0;
}

.dropdown-menu {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
  color: var(--text-dark);
  transition: all 0.3s ease;
  font-weight: 500;
  border-radius: 8px;
  margin: 4px 8px;
}

.dropdown-item:hover {
  background: var(--gradient-primary);
  color: white;
  transform: translateX(8px);
}

.map-container {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}


/* Hero Section */
.hero-section {
  min-height: 65vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 70px;
  background-image: url('https://img.freepik.com/free-photo/high-angle-medical-desk-composition_23-2148502945.jpg?t=st=1759136136~exp=1759139736~hmac=779b20166d4ec641c45bf7e51ee64901e37ebc9bbcec23464025c07e3c938227&w=1480');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(145, 72, 118, 0.9) 0%, rgba(34, 78, 45, 0.9) 100%);
  z-index: 1;
}

.hero-content {
  text-align: center;
  padding: 3rem 2rem;
  z-index: 2;
  position: relative;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  color: white;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  color: #f8fafc;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  font-weight: 400;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  color: white;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-10px);
}

.stat-item i {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  display: block;
  animation: float 3s ease-in-out infinite;
}

.stat-item h3 {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0;
}

.stat-item p {
  font-size: 1.1rem;
  margin: 0;
  opacity: 0.9;
}

/* 3D Canvas */
#three-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

/* Main Content */
.career-main {
  padding: 4rem 0;
}

/* .section-header {
  margin-bottom: 3rem;
  background: white;
  border-radius: 5px;
  opacity: 0.95;
} */

.section-header {
  position: relative;
  margin-bottom: 3rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  color: #000; /* Dark text for contrast */
  background: white; /* Base card color */
  padding: 10px;
}

.section-header::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0.3;  
  z-index: 1;
}

.section-header::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.7);
  z-index: 2;
  opacity: 0.3;
}

.section-header .section-title,
.section-header .section-subtitle {
  position: relative;
  z-index: 3; /* Text always on top */
}


.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #64748b;
}

/* Benefits Grid */
/* .benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 0 1rem;
}

.benefit-card {
  background: linear-gradient(135deg, rgb(202, 241, 209), rgb(180, 220, 240));
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 40px rgba(145, 72, 118, 0.2);
  border-color: rgba(145, 72, 118, 0.3);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.2) 100%);
}

.benefit-icon {
  font-size: 3.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1) rotate(5deg);
}

.benefit-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cannon-pink);
  margin-bottom: 0.75rem;
}

.benefit-card p {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.6;
} */

 .benefits-section {
      max-width: 1400px;
      margin: 0 auto;
    }

    .benefits-container {
      display: grid;
      grid-template-columns: 45% 55%;
      gap: 60px;
      align-items: center;
      background: white;
      border-radius: 30px;
      padding: 50px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    }

    /* Left Side - Images */
    .benefits-images {
      position: relative;
      height: 600px;
    }

    .main-image {
      width: 100%;
      height: 100%;
      border-radius: 24px;
      object-fit: cover;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    }

    .overlay-image {
      position: absolute;
      bottom: -30px;
      right: -30px;
      width: 200px;
      height: 200px;
      border-radius: 20px;
      object-fit: cover;
      border: 6px solid white;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    }

    /* Right Side - Benefits List */
    .benefits-content {
      display: flex;
      flex-direction: column;
      gap: 35px;
    }

    .benefits-title {
      font-size: 2.5rem;
      font-weight: 700;
      color: #be0027;
      margin-bottom: 20px;
    }

    .benefit-item {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      padding: 20px;
      border-radius: 16px;
      /* background: linear-gradient(135deg, rgba(202, 241, 209, 0.3), rgba(180, 220, 240, 0.3)); */
      transition: all 0.3s ease;
      cursor: pointer;
    }

    /* .benefit-item:hover {
      background: linear-gradient(135deg, rgba(202, 241, 209, 0.6), rgba(180, 220, 240, 0.6));
      transform: translateX(8px);
      box-shadow: 0 4px 16px rgba(145, 72, 118, 0.15);
    } */

    .benefit-icon {
      font-size: 2.5rem;
      background: linear-gradient(135deg, #be0027, #914876);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      flex-shrink: 0;
      width: 50px;
      transition: transform 0.3s ease;
    }

    .benefit-item:hover .benefit-icon {
      transform: scale(1.15);
    }

    .benefit-text {
      flex: 1;
    }

    .benefit-text h3 {
      font-size: 1.25rem;
      font-weight: 700;
      color: #1a1a1a;
      margin-bottom: 8px;
    }

    .benefit-text p {
      font-size: 0.95rem;
      color: #64748b;
      line-height: 1.6;
      margin: 0;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .benefits-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
      }

      .benefits-images {
        height: 500px;
      }

      .overlay-image {
        width: 160px;
        height: 160px;
        bottom: -20px;
        right: -20px;
      }
    }

    @media (max-width: 768px) {
      .benefits-container {
        padding: 30px 20px;
      }

      .benefits-images {
        height: 400px;
      }

      .overlay-image {
        width: 120px;
        height: 120px;
        bottom: -15px;
        right: -15px;
      }

      .benefits-title {
        font-size: 2rem;
      }

      .benefit-item {
        gap: 15px;
        padding: 15px;
      }

      .benefit-icon {
        font-size: 2rem;
        width: 40px;
      }

      .benefit-text h3 {
        font-size: 1.1rem;
      }

      .benefit-text p {
        font-size: 0.9rem;
      }
    }

    @media (max-width: 480px) {
      .benefits-images {
        height: 350px;
      }

      .overlay-image {
        width: 100px;
        height: 100px;
        bottom: -10px;
        right: -10px;
        border: 4px solid white;
      }

      .benefit-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
      }

      .benefit-icon {
        width: auto;
      }
    }

/* Culture Card */
.culture-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 2.5rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(153, 178, 76, 0.1);
  transition: all 0.4s ease;
}

.culture-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-accent);
}

.culture-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(153, 178, 76, 0.15);
}

.culture-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.culture-header i {
  font-size: 2.5rem;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.culture-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--olive-green);
  margin: 0;
}

.culture-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.culture-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.culture-item:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: translateX(8px);
}

.culture-item i {
  font-size: 1.5rem;
  color: var(--olive-green);
  min-width: 24px;
  margin-top: 2px;
}

.culture-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 0.25rem 0;
}

.culture-item p {
  margin: 0;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.5;
}

.culture-image {
  width: 100%;
  height: 250px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.culture-image:hover {
  transform: scale(1.05);
}

.culture-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Application Card */
.application-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(145, 72, 118, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.application-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
}

.application-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(145, 72, 118, 0.15);
  border-color: rgba(145, 72, 118, 0.3);
}

.application-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.application-header i {
  font-size: 2.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.application-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--cannon-pink);
  margin: 0;
}

.form-subtitle {
  color: #64748b;
  font-size: 1rem;
  margin-bottom: 2rem;
}

/* Form Styles */
.application-form {
  margin-top: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.required {
  color: #ef4444;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  outline: none;
  padding: 0.85rem 1.2rem;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--cannon-pink);
  background: white;
  box-shadow: 0 0 0 3px rgba(145, 72, 118, 0.1);
  transform: translateY(-2px);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23334155' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 3rem;
}

/* File Upload Styles */
.file-upload-wrapper {
  position: relative;
}

.file-upload-wrapper input[type="file"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.file-upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  border: 2px dashed #e2e8f0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.file-upload-label:hover {
  border-color: var(--cannon-pink);
  background: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
}

.file-upload-wrapper input[type="file"]:focus + .file-upload-label {
  border-color: var(--cannon-pink);
  box-shadow: 0 0 0 3px rgba(145, 72, 118, 0.1);
}

.file-upload-label i {
  font-size: 3rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.file-name {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
  display: block;
}

.file-hint {
  font-size: 0.85rem;
  color: #64748b;
  display: block;
}

.file-upload-wrapper.has-file .file-upload-label {
  border-color: var(--olive-green);
  background: rgba(153, 178, 76, 0.1);
}

.file-upload-wrapper.has-file .file-upload-label i {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Submit Button */
.btn-submit {
  width: 100%;
  padding: 1rem 2.5rem;
  background: var(--gradient-primary);
  color: white;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 24px rgba(145, 72, 118, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.btn-submit:hover {
  background: linear-gradient(135deg, #b45a8a 0%, #914876 50%, #b45a8a 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(145, 72, 118, 0.4);
}

.btn-submit:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Testimonials Section */
.testimonials-section {
  padding: 3rem 1rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
    background: linear-gradient(135deg, #fbc2eb, #a6c1ee);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 2.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-secondary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.testimonial-card:hover::before {
  transform: scaleX(1);
}

.testimonial-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(34, 78, 45, 0.15);
  border-color: rgba(34, 78, 45, 0.3);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.2) 100%);
}

.testimonial-icon {
  font-size: 3rem;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
}

.testimonial-author h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.testimonial-author p {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0;
}

/* Premium Footer */
.footer-section {
  background: black;
  position: relative;
  overflow: hidden;
  margin-top: 4rem;
}

.footer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-accent);
}

.footer-logo {
  max-width: 120px;
  object-fit: contain;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  color: white;
  text-decoration: none;
}

.social-link:hover {
  background: var(--gradient-accent);
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 16px rgba(153, 178, 76, 0.3);
  color: white;
}

.footer-section a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--olive-green) !important;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-stats {
    gap: 2rem;
  }

  .stat-item i {
    font-size: 2.5rem;
  }

  .stat-item h3 {
    font-size: 2rem;
  }

  .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 50vh;
    margin-top: 60px;
    background-attachment: scroll;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .stat-item i {
    font-size: 2rem;
  }

  .stat-item h3 {
    font-size: 1.5rem;
  }

  .stat-item p {
    font-size: 0.9rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .culture-card,
  .application-card {
    padding: 2rem 1.5rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-section {
    min-height: 45vh;
  }

  .benefit-card {
    padding: 2rem 1.5rem;
  }

  .application-card {
    padding: 1.5rem;
  }

  .culture-image {
    height: 200px;
  }

  .btn-submit {
    font-size: 1rem;
    padding: 0.9rem 2rem;
  }
}

/* Animations */
@keyframes float {
  0%, 100% { 
    transform: translateY(0px); 
  }
  50% { 
    transform: translateY(-10px); 
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Smooth transitions */
* {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

 .testimonial-section h2 {
      color: #be0027;
      font-weight: 700;
      font-size: 2.8rem;
      margin-bottom: 60px;
    }

    .testimonial-container {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: flex-start;
      min-height: 480px;
      overflow: hidden;
    }

    .testimonial-slide {
      display: none;
      width: 100%;
      justify-content: center;
      align-items: flex-start;
      gap: 30px;
      position: absolute;
      left: 0;
      top: 0;
      padding: 0 20px;
    }

    .testimonial-slide.active {
      display: flex;
      position: relative;
    }

    .testimonial-wrapper {
      flex: 1;
      max-width: 420px;
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: 40px;
    }

    .testimonial-card {
      width: 100%;
      height: 380px;
      background: white;
      border: 2px solid #d4a5a5;
      border-radius: 25px;
      padding: 35px 28px 35px 28px;
      box-sizing: border-box;
      box-shadow: 0 2px 8px rgba(0,0,0,0.06);
      position: relative;
      margin-bottom: 65px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: visible;
    }

    .testimonial-content {
      font-size: 14px;
      line-height: 1.7;
      color: #333333;
      text-align: center;
      overflow-y: auto;
      max-height: 100%;
    }

    .emp-photo {
      width: 85px;
      height: 85px;
      border-radius: 50%;
      border: 4px solid #ffffff;
      object-fit: cover;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
      position: absolute;
      bottom: -50px;
      left: 50%;
      transform: translateX(-50%);
      background: #f0f0f0;
      z-index: 10;
    }

    .emp-info {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-top: 10px;
    }

    .emp-name {
      font-weight: 700;
      font-size: 20px;
      color: #914876;
      margin-bottom: 5px;
    }

    .emp-title {
      font-size: 15px;
      color: #666666;
      font-weight: 400;
    }

    .testimonial-dots {
      margin-top: 20px;
      display: flex;
      justify-content: center;
      gap: 8px;
    }

    .testimonial-dot {
      height: 12px;
      width: 12px;
      background-color: #d9d9d9;
      border-radius: 50%;
      display: inline-block;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .testimonial-dot:hover {
      background-color: #be0027;
      opacity: 0.7;
    }

    .testimonial-dot.active {
      background-color: #be0027;
      transform: scale(1.2);
    }

    @media (max-width: 1200px) {
      .testimonial-slide {
        gap: 20px;
      }
      .testimonial-wrapper {
        max-width: 380px;
      }
      .testimonial-card {
        padding: 30px 22px 30px 22px;
        height: 360px;
        margin-bottom: 60px;
      }
      .testimonial-content {
        font-size: 13.5px;
      }
      .emp-photo {
        bottom: -45px;
      }
    }

    @media (max-width: 900px) {
      .testimonial-section h2 {
        font-size: 2.2rem;
        margin-bottom: 40px;
      }
      .testimonial-slide {
        flex-direction: column;
        align-items: center;
        position: relative;
      }
      .testimonial-wrapper {
        max-width: 500px;
        width: 100%;
        margin-bottom: 60px;
      }
      .testimonial-container {
        min-height: auto;
      }
    }

    @media (max-width: 600px) {
      .testimonial-section h2 {
        font-size: 1.8rem;
      }
      .testimonial-card {
        padding: 28px 18px 28px 18px;
        height: 340px;
        margin-bottom: 55px;
      }
      .testimonial-content {
        font-size: 13px;
      }
      .emp-photo {
        width: 70px;
        height: 70px;
        bottom: -40px;
      }
      .emp-name {
        font-size: 18px;
      }
      .emp-title {
        font-size: 14px;
      }
    }

    