/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', 'Montserrat', Arial, sans-serif;
  line-height: 1.6;
  color: #232911;
  background: #fff;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Floating Elements */
.floating-elements, .floating-shape { display: none !important; }

/* Header Modernization */
.header {
  background: rgba(255,255,255,0.95);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
}
.logo-section {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(237,164,38,0.08);
  background: #fff;
}
.header-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.main-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #232911;
  letter-spacing: 0.5px;
}
.sub-label {
  font-size: 0.95rem;
  color: #666;
  font-weight: 500;
}
.mansas-label {
  font-size: 0.85rem;
  color: #eda426;
  font-weight: 600;
  letter-spacing: 0.5px;
  opacity: 0.85;
}
.eapcet-code {
  font-size: 0.95rem;
  color: #eda426;
  font-weight: 600;
}
.header-btn {
  background: linear-gradient(135deg, #eda426, #f4b942);
  color: #232911;
  font-weight: 700;
  border-radius: 30px;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(237,164,38,0.13);
  border: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  text-decoration: none;
  display: inline-block;
}
.header-btn:hover {
  background: linear-gradient(135deg, #f4b942, #eda426);
  color: #232911;
  transform: translateY(-2px) scale(1.04);
}

/* Header right section for MANSAS logo/label */
.header-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.mansas-part {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.mansas-logo {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(35,41,17,0.08);
}

/* Hero Modernization */
.hero {
  position: relative;
  background: linear-gradient(135deg, #232911 0%, #2d3315 100%);
  color: #fff;
  padding: 5rem 0 4rem 0;
  min-height: 520px;
  overflow: hidden;
}
.hero-bg-image {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  z-index: 1;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  filter: brightness(0.6) blur(1px) grayscale(0.08);
}
.hero-bg-mask {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 2;
  background: linear-gradient(120deg, rgba(35,41,17,0.93) 60%, rgba(237,164,38,0.55) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 3;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-title {
  font-size: 2.7rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: #eda426;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(35,41,17,0.08);
}
.founder-section {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.founder-section > div {
  display: flex;
  flex-direction: column;
}
.founder-image {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 4px solid #eda426;
  background: #fff;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(237,164,38,0.13);
}
.founder-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #eda426;
  margin-bottom: 0.2rem;
}
.founder-role {
  font-size: 0.95rem;
  color: #fff;
  font-weight: 400;
  margin-left: 0.3rem;
}
.founder-title {
  font-size: 1.05rem;
  color: #fff;
  opacity: 0.9;
  margin-bottom: 0.2rem;
}
.college-info {
  margin-top: 1.2rem;
}
.college-tagline {
  font-size: 1.2rem;
  font-style: italic;
  color: #fff;
  margin-bottom: 0.5rem;
}
.college-desc {
  font-size: 1.05rem;
  color: #f4b942;
  font-weight: 500;
}
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.excellence-card {
  background: rgba(255,255,255,0.13);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 2.2rem 2rem 2rem 2rem;
  box-shadow: 0 8px 32px rgba(237,164,38,0.13);
  text-align: center;
  min-width: 270px;
  max-width: 320px;
  border: 1.5px solid rgba(237,164,38,0.18);
  animation: floatCard 4s ease-in-out infinite alternate;
}
@keyframes floatCard {
  0% { transform: translateY(0); }
  100% { transform: translateY(-12px); }
}
.excellence-icon {
  font-size: 3.2rem;
  color: #eda426;
  margin-bottom: 1rem;
  filter: drop-shadow(0 2px 8px #eda42633);
}
.excellence-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: #232911;
}
.excellence-card p {
  font-size: 1.05rem;
  color: #232911;
  opacity: 0.9;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-visual {
    margin-top: 2rem;
  }
  .header-right {
    flex-direction: column;
    gap: 0.5rem;
  }
  .mansas-label {
    font-size: 0.8rem;
  }
}
@media (max-width: 600px) {
  .header-content {
    flex-direction: column;
    gap: 0.7rem;
    padding: 0.7rem 0;
  }
  .main-title {
    font-size: 1.1rem;
  }
  .hero {
    padding: 2.5rem 0 1.5rem 0;
  }
  .hero-title {
    font-size: 1.3rem;
  }
  .founder-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
  }
  .founder-image {
    width: 80px;
    height: 80px;
  }
  .excellence-card {
    min-width: 90vw;
    max-width: 98vw;
    padding: 1.2rem 0.7rem 1.2rem 0.7rem;
  }
  .header-right {
    flex-direction: column;
    gap: 0.3rem;
  }
  .mansas-logo {
    width: 24px;
    height: 24px;
  }
  .mansas-label {
    font-size: 0.7rem;
  }
  .excellence-badge {
    font-size: 0.7rem;
    padding: 0.2em 0.7em;
    top: -12px;
  }
}

/* Section headers - make titles more prominent */
.section-header h2,
.section-title {
  color: #232911;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section-header p {
  color: #6c757d;
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 2rem;
}

/* Dark background sections - white titles */
.dept-stats-section .section-header h2,
.development-centers-section .section-header h2 {
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.dept-stats-section .section-header p,
.development-centers-section .section-header p {
  color: rgba(255, 255, 255, 0.9);
}

/* Section 7: Achievements */
.achievements-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.achievement-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 30px rgba(237, 164, 38, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(237, 164, 38, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.achievement-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(237, 164, 38, 0.2);
}

.achievement-card.highlight {
  background: linear-gradient(135deg, #eda426 0%, #d8941f 100%);
  color: white;
  transform: scale(1.02);
  border: none;
}

.achievement-card.highlight:hover {
  transform: scale(1.02) translateY(-5px);
}

.achievement-icon {
  font-size: 3rem;
  color: #eda426;
  margin-bottom: 0.5rem;
}

.achievement-card.highlight .achievement-icon {
  color: white;
}

.achievement-card h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #232911;
}

.achievement-card.highlight h3 {
  color: white;
}

.stat-number, .stat {
  font-size: 3rem;
  font-weight: bold;
  color: #eda426;
  line-height: 1;
}

.stat-label {
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.4;
  font-weight: 500;
}

/* Accreditations */
.accreditations {
  padding: 4rem 0;
  background: #f8f9fa;
}

.accreditations .section-title {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Carousel sections - now responsive grids */
.carousel {
  position: relative;
  overflow: visible;
}

.carousel-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.carousel-slide {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}

.carousel-slide:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.carousel-slide img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.carousel-slide:hover img {
  transform: scale(1.05);
}

/* Hide carousel navigation buttons */
.carousel-btn {
  display: none !important;
}

/* Desktop grid adjustments */
@media (min-width: 769px) {
  .carousel-container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  .carousel-slide {
    min-height: 150px;
    padding: 2rem;
  }
}

/* Mobile grid adjustments */
@media (max-width: 768px) {
  .carousel-container {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
  }
  
  .carousel-slide {
    min-height: 100px;
    padding: 1rem;
  }
  
  .carousel-slide img {
    height: auto;
  }
}

/* Programs */
.programs {
  padding: 4rem 0;
  background: white;
}

.programs-header {
  text-align: center;
  margin-bottom: 3rem;
}

.year {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: bold;
  color: #eda426;
  background: rgba(237,164,38,0.12);
  border-radius: 1.2em;
  padding: 0.2em 1.2em;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
  letter-spacing: 1px;
  box-shadow: 0 2px 8px #eda42622;
}

.subsection-title {
  font-size: 2rem;
  font-weight: bold;
  color: #232911;
  text-align: center;
  margin-bottom: 2rem;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.program-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-left: 4px solid #eda426;
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: box-shadow 0.3s;
}

.program-card:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.program-icon {
  font-size: 1.5rem;
  color: #eda426;
}

.program-info h4 {
  font-weight: bold;
  color: #232911;
  margin-bottom: 0.5rem;
}

.program-info p {
  color: #666;
  font-size: 0.9rem;
}

.honors-note {
  text-align: center;
  font-style: italic;
  color: #666;
  margin-bottom: 3rem;
}

.other-programs {
  display: grid;
  gap: 2rem;
}

.program-card.large {
  padding: 2rem;
}

.program-card.large .program-info h3 {
  font-size: 1.5rem;
  color: #232911;
  margin-bottom: 0.5rem;
}

/* Why MVGR Section */
.why-mvgr {
  padding: 80px 0;
  background: linear-gradient(135deg, #232911 0%, #3a4a2a 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.why-mvgr-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.why-svg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.why-mvgr .section-header h2 {
  background: linear-gradient(135deg, #eda426, #f4b942);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-mvgr .section-header p {
  color: rgba(255,255,255,0.8);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  position: relative;
  z-index: 2;
}

.feature-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.5s;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.15);
}

.feature-card.highlight {
  background: linear-gradient(135deg, #eda426, #f4b942);
  color: #232911;
  position: relative;
}

.highlight-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.2), transparent);
  border-radius: 20px;
  filter: blur(20px);
  animation: highlightGlow 3s ease-in-out infinite alternate;
}

@keyframes highlightGlow {
  0% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.05); }
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: rgba(237, 164, 38, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: #eda426;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(237, 164, 38, 0.3);
}

.feature-card.highlight .feature-icon {
  background: rgba(35, 41, 17, 0.2);
  color: #232911;
  border-color: rgba(35, 41, 17, 0.3);
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Timeline Section */
.timeline-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto 50px;
}

.timeline:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #eda426, #f4b942);
  transform: translateX(-50%);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-year {
  background: linear-gradient(135deg, #eda426, #f4b942);
  color: #232911;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 1.1rem;
  min-width: 120px;
  text-align: center;
  z-index: 2;
  box-shadow: 0 8px 25px rgba(237, 164, 38, 0.3);
  position: relative;
}

.timeline-year::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  background: #eda426;
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 20px rgba(237, 164, 38, 0.5);
}

.timeline-item:nth-child(odd) .timeline-year::before {
  right: -30px;
}

.timeline-item:nth-child(even) .timeline-year::before {
  left: -30px;
}

.timeline-content {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px);
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  margin: 0 30px;
  flex: 1;
  max-width: 350px;
  border: 1px solid rgba(255,255,255,0.3);
  transition: transform 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-5px);
}

.timeline-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #232911;
}

.timeline-content p {
  font-size: 0.9rem;
  color: #666;
}

.accreditation-badges {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.badge {
  background: linear-gradient(135deg, #eda426, #f4b942);
  color: #232911;
  padding: 20px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 10px 30px rgba(237, 164, 38, 0.3);
  display: flex;
  align-items: center;
  gap: 15px;
  transition: transform 0.3s ease;
}

.badge:hover {
  transform: translateY(-5px);
}

.badge i {
  font-size: 1.5rem;
}

/* CTA Section */
.cta-section {
  position: relative;
  padding: 80px 0;
  color: #fff;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
}

.cta-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3);
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(35, 41, 17, 0.8), rgba(58, 74, 42, 0.8));
  z-index: -1;
}

.cta-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.tribute-badge {
  display: inline-block;
  background: rgba(237, 164, 38, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(237, 164, 38, 0.3);
  padding: 8px 20px;
  border-radius: 25px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.tribute h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #eda426, #f4b942);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tribute h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.tribute p {
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.8;
}

.contact-info h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #eda426, #f4b942);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtitle {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.contact-grid {
  display: grid;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  padding: 20px;
  border-radius: 15px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(255,255,255,0.15);
  transform: translateX(10px);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #eda426, #f4b942);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #232911;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(237, 164, 38, 0.3);
}

.contact-details h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-details p {
  font-size: 0.9rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Excellence card highlight */
.highlight-excellence {
  border: 2.5px solid #eda426;
  box-shadow: 0 8px 32px #eda42633, 0 2px 8px #23291122;
  position: relative;
}
.excellence-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: #eda426;
  color: #232911;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.3em 1.1em;
  border-radius: 16px;
  box-shadow: 0 2px 8px #eda42633;
  letter-spacing: 1px;
  z-index: 2;
  border: 1.5px solid #fff;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .hero-text h2 {
    font-size: 1.6rem;
  }
  
  .college-info h1 {
    font-size: 1.5rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .programs-grid {
    grid-template-columns: 1fr;
  }
  
  .floating-shape {
    display: none;
  }
}

.highlight-excellence,
.highlight-excellence h3,
.highlight-excellence p,
.highlight-excellence .excellence-icon {
  color: #fff !important;
}

.highlight-excellence .excellence-badge {
  color: #232911 !important;
  background: #eda426 !important;
}

.section-title::after {
  content: '';
  display: block;
  margin: 0.5rem auto 0 auto;
  width: 60px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, #eda426 60%, #f4b942 100%);
}

/* Section 8 & 9: Placements & GATE Carousels */
.placements-carousel-section {
  padding: 4rem 0;
  background: #326e74;
  color: white;
}

.gate-carousel-section {
  padding: 4rem 0;
  background: #e1a734;
  color: white;
}

.placements-carousel-section .section-header h2,
.gate-carousel-section .section-header h2 {
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.placements-carousel-section .section-header p,
.gate-carousel-section .section-header p {
  color: rgba(255, 255, 255, 0.9);
}

/* Section 10: Department Stats */
.dept-stats-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #232911 0%, #3a4a2a 100%);
  color: white;
}

.dept-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.dept-stat-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.dept-stat-card:hover {
  transform: translateY(-5px);
}

.dept-stat-card h3 {
  color: #eda426;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.stat-ratio {
  font-size: 2rem;
  font-weight: bold;
  color: white;
}

/* Section 11: Award Section */
.award-section {
  position: relative;
  padding: 6rem 0;
  color: white;
  overflow: hidden;
}

.award-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.award-bg-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.award-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(35, 41, 17, 0.8) 0%, rgba(237, 164, 38, 0.8) 100%);
}

.award-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.award-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
}

.award-text h3 {
  font-size: 3rem;
  color: #eda426;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.award-text p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Section 12: Companies Carousel */
.companies-carousel-section {
  padding: 4rem 0;
  background: #f8f9fa;
}

/* Section 13: Up-Skilling Programs */
.upskilling-section {
  padding: 4rem 0;
  background: white;
}

.upskilling-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.upskilling-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e9ecef;
}

.upskilling-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(237, 164, 38, 0.2);
}

.upskilling-icon {
  font-size: 3rem;
  color: #eda426;
  margin-bottom: 1rem;
}

.upskilling-card h3 {
  color: #232911;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.upskilling-card p {
  color: #6c757d;
  line-height: 1.6;
}

/* Section 14: Development Centers */
.development-centers-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #232911 0%, #3a4a2a 100%);
  color: white;
}

.centers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.center-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.center-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.center-icon {
  font-size: 3rem;
  color: #eda426;
  margin-bottom: 1rem;
}

.center-card h3 {
  color: white;
  font-size: 1.2rem;
  line-height: 1.4;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #232911 0%, #1a1f0d 100%);
  color: white;
  padding: 3rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: #eda426;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.footer-section p {
  margin-bottom: 0.5rem;
  opacity: 0.9;
  line-height: 1.6;
}

.footer-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: #eda426;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(237, 164, 38, 0.3);
}

.cta-btn:hover {
  background: #d8941f;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(237, 164, 38, 0.4);
  color: white;
}

.cta-btn.secondary {
  background: transparent;
  border: 2px solid #eda426;
  color: #eda426;
}

.cta-btn.secondary:hover {
  background: #eda426;
  color: white;
}

.achievement-stats {
  flex-direction: column;
  gap: 1rem;
}

.stat-item {
  min-width: auto;
}

/* Mobile Fixed Footer Button */
.mobile-apply-btn {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(237, 164, 38, 0.2);
  padding: 1rem;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

.apply-now-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #eda426 0%, #d8941f 100%);
  color: white;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(237, 164, 38, 0.3);
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.apply-now-btn:hover {
  background: linear-gradient(135deg, #d8941f 0%, #c8841a 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(237, 164, 38, 0.4);
  color: white;
}

.apply-now-btn i {
  font-size: 1.2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .header-right .mansas-part,
  .header-right .modern-btn.secondary {
    display: none;
  }
  
  .header-btn {
    display: none;
  }
  
  .mobile-apply-btn {
    display: block;
  }
  
  .achievements-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 1rem;
  }
  
  .achievement-card {
    padding: 2rem 1.5rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .stat-label {
    font-size: 0.9rem;
  }
  
  .dept-stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
  }
  
  .upskilling-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .centers-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .award-text h2 {
    font-size: 2rem;
  }
  
  .award-text h3 {
    font-size: 2.5rem;
  }
  
  /* Contact section responsive styles */
  .cta-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .contact-info h3 {
    font-size: 1.5rem;
    text-align: center;
  }
  
  .subtitle {
    text-align: center;
    font-size: 1rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 1.5rem;
  }
  
  .contact-icon {
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
  }
  
  .contact-details h4 {
    font-size: 0.95rem;
  }
  
  .contact-details p {
    font-size: 0.85rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .cta-buttons .modern-btn {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
}

.excellence-link {
  display: inline-block;
  color: #eda426;
  text-decoration: none;
  font-weight: 600;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.excellence-link:hover {
  color: #d8941f;
  transform: translateX(5px);
}

.achievements-cta {
  text-align: center;
  margin-top: 2rem;
}

.achievement-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #eda426;
  text-decoration: none;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border: 2px solid #eda426;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.achievement-link:hover {
  background: #eda426;
  color: white;
  transform: translateY(-2px);
}

.programs-cta {
  text-align: center;
  margin-top: 2rem;
}

.program-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #eda426;
  text-decoration: none;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border: 2px solid #eda426;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.program-link:hover {
  background: #eda426;
  color: white;
  transform: translateY(-2px);
}

.website-link {
  color: #eda426;
  text-decoration: none;
  transition: all 0.3s ease;
}

.website-link:hover {
  color: #d8941f;
  text-decoration: underline;
}

.footer-website-btn {
  display: inline-block;
  background: #eda426;
  color: white;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.footer-website-btn:hover {
  background: #d8941f;
  color: white;
  transform: translateY(-2px);
}

.footer .mansas-part {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer .mansas-logo {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.footer .mansas-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
} 