/* ============================================
   EXPERIENCE.CSS - The IEM Difference Page
   Fully Responsive for All Devices
   ============================================ */

/* 1️⃣ HERO BANNER SECTION */
.difference-hero {
  height: auto;
  min-height: 100vh;
  background: linear-gradient(105deg, rgba(13, 47, 91, 0.92) 0%, rgba(28, 63, 115, 0.88) 100%), url('../img/gallery/1.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  margin-top: 0;
  padding-top: 100px;
  padding-bottom: 60px;
}

.difference-hero .container {
  position: relative;
  z-index: 2;
}

.difference-hero h1 {
  font-size: 4rem;
  line-height: 1.2;
  color: #ffffff;
}

.difference-hero h2 {
  color: #e0b45c;
}

.difference-hero .lead {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
}

.difference-hero .btn-gold {
  background: linear-gradient(135deg, #c9a03d, #e0b45c, #c9a03d);
  border: none;
  color: #0D2F5B;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  font-size: 1.1rem;
}

.difference-hero .btn-gold:hover {
  transform: translateY(-3px);
  background: linear-gradient(90deg, #e0b45c, #f3cd7a, #e0b45c);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

/* 2️⃣ BRANDS MARQUEE SECTION - RIGHT TO LEFT AUTO SCROLL */
.brands-marquee-section {
    background: var(--white);
    padding: 80px 0;
    overflow: hidden;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee-content-right-to-left {
    display: flex;
    animation: scrollRightToLeft 40s linear infinite;
    width: fit-content;
}

.image-container {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 40px;
}

.brand-item {
    flex-shrink: 0;
    transition: all 0.3s ease;
    background: #fff;
    padding: 20px 35px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.brand-image {
    height: 90px;
    width: 100px;
    max-width: 280px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.brand-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.brand-item:hover .brand-image {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.08);
}

@keyframes scrollRightToLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.marquee-wrapper:hover .marquee-content-right-to-left {
    animation-play-state: paused;
}

/* 3️⃣ MARKET INTELLIGENCE SECTION */
.market-section {
    background: var(--white);
    padding: 80px 0;
}

.market-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #2c3e50;
    max-width: 900px;
    margin: 0 auto;
}

.market-stats {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.stat-card {
    background: #f8f5f0;
    padding: 1.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    border-left: 4px solid #c9a03d;
    flex: 1;
    min-width: 280px;
}

.stat-card:hover {
    transform: translateY(-8px);
    background: #fff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.stat-card i {
    font-size: 2rem;
    color: #c9a03d;
    margin-bottom: 1rem;
}

.stat-card h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #0D2F5B;
    margin-bottom: 0.75rem;
}

.stat-card p {
    color: #2c3e50;
    margin: 0;
    line-height: 1.5;
}

/* 4️⃣ WORLD-CLASS FACULTY SECTION */
.faculty-section {
  background: #f8f5f0;
  padding: 80px 0;
}

.faculty-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #2c3e50;
  text-align: justify;
}

/* 5️⃣ HANDS-ON LEARNING SECTION */
.skill-labs-section {
  background: var(--white);
  padding: 80px 0;
}

.skill-labs-description {
  font-size: 1rem;
  line-height: 1.8;
  color: #2c3e50;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.skill-card {
  background: #f8f5f0;
  padding: 1.8rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  border-bottom: 3px solid transparent;
}

.skill-card:hover {
  transform: translateY(-8px);
  border-bottom-color: #c9a03d;
  background: #fff;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.skill-card i {
  font-size: 2.5rem;
  color: #c9a03d;
  margin-bottom: 1rem;
}

.skill-card h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #0D2F5B;
  margin-bottom: 0.75rem;
}

.skill-card p {
  color: #2c3e50;
  margin: 0;
  line-height: 1.5;
}

/* 6️⃣ CAREER PATHWAYS SECTION */
.career-pathways-section {
  background: #f8f5f0;
  padding: 80px 0;
}

.pathway-card {
  background: var(--white);
  padding: 1.8rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.pathway-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pathway-number {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(201, 160, 61, 0.15);
  font-family: 'Playfair Display', serif;
}

.pathway-card i {
  font-size: 2.5rem;
  color: #c9a03d;
  margin-bottom: 1rem;
}

.pathway-card h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #0D2F5B;
  margin-bottom: 0.75rem;
}

.pathway-card p {
  color: #2c3e50;
  margin: 0;
  line-height: 1.5;
}

/* 7️⃣ INTERNATIONAL EXPOSURE SECTION */
.international-section {
  background: var(--white);
  padding: 80px 0;
}

.badge-gold {
  background: #f8f5f0;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #0D2F5B;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.badge-gold:hover {
  background: #c9a03d;
  color: #fff;
  transform: translateY(-2px);
}

.badge-gold i {
  font-size: 0.9rem;
}

/* 8️⃣ EVENT SECTORS COVERED */
.sectors-section {
  background: #f8f5f0;
  padding: 80px 0;
}

.sector-card {
  background: linear-gradient(135deg, #0D2F5B, #1C3F73);
  padding: 1.5rem;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  height: 100%;
}

.sector-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(13, 47, 91, 0.3);
}

.sector-card i {
  font-size: 2rem;
  color: #e0b45c;
  margin-bottom: 0.8rem;
}

.sector-card h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  font-size: 1rem;
}

.eligibility-box {
  background: var(--white);
  padding: 2rem;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.eligibility-item {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #2c3e50;
}

.eligibility-item i {
  color: #c9a03d;
  font-size: 1.1rem;
}

/* 9️⃣ IMMERSIVE LEARNING SECTION - TEXT LEFT, STATS RIGHT */
.immersive-section {
  background: var(--white);
  padding: 80px 0;
}

.gold-line-left {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #c89b3c, #e0b45c, #c89b3c);
  border-radius: 2px;
  margin: 0 0 1.5rem 0;
}

.immersive-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #2c3e50;
}

.immersive-highlight {
  font-size: 1.1rem;
  font-weight: 700;
  color: #c9a03d;
  font-family: 'Playfair Display', serif;
  padding: 1rem;
  background: #f8f5f0;
  border-radius: 12px;
  border-left: 3px solid #c9a03d;
}

.immersive-stats {
  background: #f8f5f0;
  padding: 2rem;
  border-radius: 24px;
}

.stat-circle {
  text-align: center;
  padding: 1rem;
  background: #fff;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.stat-circle:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.stat-circle .number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #0D2F5B;
  font-family: 'Playfair Display', serif;
}

.stat-circle .label {
  font-size: 0.8rem;
  color: #2c3e50;
  font-weight: 500;
}

/* 🔟 WORLD-CLASS INFRASTRUCTURE SECTION */
.infrastructure-section {
  background: #f8f5f0;
  padding: 80px 0;
}

.facility-card {
  background: var(--white);
  padding: 1.8rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(13, 47, 91, 0.05);
}

.facility-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: #c9a03d;
}

.facility-card i {
  font-size: 2.5rem;
  color: #c9a03d;
  margin-bottom: 1rem;
}

.facility-card h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #0D2F5B;
  margin-bottom: 0.75rem;
}

.facility-card p {
  color: #2c3e50;
  margin: 0;
  line-height: 1.5;
}

/* Global Styles */
.section-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  color: #c89b3c;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.gold-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #c89b3c, #e0b45c, #c89b3c);
  border-radius: 2px;
  margin: 0 auto 1.2rem;
}

.text-gold {
  color: #e0b45c !important;
}

.text-navy {
  color: #0D2F5B !important;
}

section {
  scroll-margin-top: 100px;
}

img {
  max-width: 100%;
  height: auto;
}

/* ============================================
   RESPONSIVE MEDIA QUERIES
   ============================================ */

@media (min-width: 1200px) {
  .difference-hero {
    padding-top: 100px;
    min-height: 85vh;
  }
  .difference-hero h1 {
    font-size: 4rem;
  }
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .difference-hero {
    padding-top: 90px;
    min-height: 80vh;
  }
  .difference-hero h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 991px) {
  .difference-hero {
    padding-top: 100px;
    padding-bottom: 50px;
    min-height: auto;
  }
  .difference-hero h1 {
    font-size: 2.5rem;
  }
  .difference-hero h2 {
    font-size: 1.8rem;
  }
  .display-5 {
    font-size: 2rem;
  }
  .market-section, .faculty-section, .skill-labs-section, 
  .career-pathways-section, .international-section, 
  .sectors-section, .immersive-section, .infrastructure-section {
    padding: 60px 0;
  }
  .brands-marquee-section {
    padding: 60px 0;
  }
  .brand-image {
    height: 140px;
    max-width: 220px;
  }
  .image-container {
    gap: 40px;
  }
  .brand-item {
    padding: 15px 25px;
  }
  .market-stats {
    flex-direction: column;
    align-items: center;
  }
  .stat-card {
    width: 100%;
    max-width: 500px;
  }
  .pathway-card {
    padding: 1.5rem;
  }
  .pathway-number {
    font-size: 2rem;
  }
  .pathway-card i {
    font-size: 2rem;
  }
  .skill-card {
    padding: 1.5rem;
  }
  .facility-card {
    padding: 1.5rem;
  }
  .immersive-stats {
    margin-top: 2rem;
    padding: 1.5rem;
  }
  .stat-circle {
    padding: 0.8rem;
  }
  .stat-circle .number {
    font-size: 1.8rem;
  }
  .immersive-text {
    font-size: 0.95rem;
  }
  .immersive-highlight {
    font-size: 1rem;
    padding: 0.8rem;
  }
}

@media (max-width: 767px) {
  .difference-hero {
    padding-top: 120px;
    padding-bottom: 50px;
  }
  .difference-hero h1 {
    font-size: 2rem;
  }
  .difference-hero h2 {
    font-size: 1.5rem;
  }
  .display-5 {
    font-size: 1.5rem;
  }
  .section-eyebrow {
    font-size: 0.6rem;
  }
  .section-eyebrow.text-start {
    text-align: center !important;
  }
  .display-5 {
    text-align: center;
  }
  .gold-line-left {
    margin: 0 auto 1.5rem auto;
  }
  .market-section, .faculty-section, .skill-labs-section, 
  .career-pathways-section, .international-section, 
  .sectors-section, .immersive-section, .infrastructure-section {
    padding: 50px 0;
  }
  .brands-marquee-section {
    padding: 50px 0;
  }
  .brand-image {
    height: 90px;
    max-width: 150px;
  }
  .image-container {
    gap: 25px;
  }
  .brand-item {
    padding: 10px 15px;
  }
  .market-text {
    font-size: 0.95rem;
  }
  .stat-card {
    padding: 1.2rem;
  }
  .stat-card i {
    font-size: 1.8rem;
  }
  .skill-card {
    padding: 1.2rem;
  }
  .skill-card i {
    font-size: 2rem;
  }
  .pathway-card {
    padding: 1.2rem;
  }
  .pathway-number {
    font-size: 1.8rem;
  }
  .pathway-card i {
    font-size: 1.8rem;
  }
  .pathway-card h4 {
    font-size: 1rem;
  }
  .facility-card {
    padding: 1.2rem;
  }
  .facility-card i {
    font-size: 2rem;
  }
  .gold-line {
    width: 50px;
  }
  .immersive-text {
    text-align: center;
  }
  .immersive-highlight {
    text-align: center;
  }
  .immersive-stats {
    margin-top: 2rem;
  }
  .stat-circle {
    padding: 0.6rem;
  }
  .stat-circle .number {
    font-size: 1.5rem;
  }
  .stat-circle .label {
    font-size: 0.7rem;
  }
}

@media (max-width: 575px) {
  .difference-hero {
    padding-top: 130px;
  }
  .difference-hero h1 {
    font-size: 1.8rem;
  }
  .display-5 {
    font-size: 1.3rem;
  }
  .brand-image {
    height: 70px;
    max-width: 120px;
  }
  .image-container {
    gap: 20px;
  }
  .brand-item {
    padding: 8px 12px;
  }
  .pathway-number {
    font-size: 1.5rem;
  }
  .pathway-card i {
    font-size: 1.5rem;
  }
  .stat-circle {
    padding: 0.5rem;
  }
  .stat-circle .number {
    font-size: 1.3rem;
  }
  .stat-circle .label {
    font-size: 0.65rem;
  }
}

@media (max-width: 479px) {
  .difference-hero {
    padding-top: 140px;
  }
  .difference-hero h1 {
    font-size: 1.5rem;
  }
  .brand-image {
    max-width: 100px;
  }
  .image-container {
    gap: 20px;
  }
  .brand-item {
    padding: 6px 10px;
  }
}

@media (max-width: 360px) {
  .difference-hero {
    padding-top: 150px;
  }
  .difference-hero h1 {
    font-size: 1.3rem;
  }
  .brand-image {
    height: 50px;
    max-width: 90px;
  }
  .image-container {
    gap: 15px;
  }
  .brand-item {
    padding: 5px 8px;
  }
}