/* Main CSS File for CCBP Clone */

/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
  /* Primary Colors */
  --primary-blue: #1d2c43;
  --primary-white: #ffffff;
  --primary-light-bg: #f5f7fa;

  /* Accent Colors */
  --accent-red: #e34e48;
  --accent-blue: #4790f5;
  --accent-gold: #f5a623;

  /* Text Colors */
  --text-dark: #1d2c43;
  --text-gray: #6c7787;
  --text-light: #ffffff;

  /* Other UI Colors */
  --border-color: #e6e9ef;
  --light-pink: #f8d7e5;
  --light-beige: #faefd7;

  /* Spacing */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-xxl: 48px;

  /* Border Radius */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
  --border-radius-xl: 16px;
  --border-radius-xxl: 24px;

  /* Box Shadow */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.1);

  /* Transitions */
  --transition-fast: all 0.2s ease;
  --transition-medium: all 0.3s ease;
  --transition-slow: all 0.5s ease;

  /* Container Width */
  --container-max-width: 1280px;
  --container-padding: 24px;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* Add font smoothing and rendering for all elements */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Improve rendering performance */
  text-rendering: optimizeSpeed;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: var(--text-dark);
  background-color: #ffffff;
  line-height: 1.5;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
  scroll-behavior: smooth;
  /* Additional performance improvements */
  perspective: 1000px;
  backface-visibility: hidden;
  /* Prevent scroll jank */
  overscroll-behavior: none;
}

body::before {
  display: none;
}

body::after {
  display: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* Common Styles */
.container {
  max-width: var(--container-max-width);
  padding: 0 var(--container-padding);
  margin: 0 auto;
}

.section-title {
  color: #0A2647;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 48px;
  line-height: 1.3;
  text-align: center;
}

/* Override for sections with dark backgrounds */
.masterclasses-section .section-title {
  color: white;
}

/* Ensure proper contrast for other dark background sections */
.recognition-section .section-title,
.awards-section .section-title,
.national-recognition-section .section-title,
.teams-section .section-title {
  color: #0A2647;
}

/* Button Styles */
.btn,
.card-btn,
.niat-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  transition: var(--transition-medium);
  font-size: 15px;
}

.btn.primary,
.card-btn.primary,
.niat-btn.primary {
  background-color: #1d2c43;
  color: var(--primary-white);
  box-shadow: 0 2px 8px rgba(29, 44, 67, 0.2);
}

.btn.primary:hover,
.card-btn.primary:hover,
.niat-btn.primary:hover {
  background-color: #273c5d;
  box-shadow: 0 4px 12px rgba(29, 44, 67, 0.3);
}

.btn.secondary,
.card-btn.secondary,
.niat-btn.secondary {
  background-color: transparent;
  color: #1d2c43;
  border: 1px solid #1d2c43;
  font-weight: 600;
}

.btn.secondary:hover,
.card-btn.secondary:hover,
.niat-btn.secondary:hover {
  background-color: rgba(29, 44, 67, 0.05);
}

.btn.outline,
.card-btn.outline {
  background-color: transparent;
  color: #1d2c43;
  border: 1px solid #e6e9ef;
  font-weight: 600;
}

.btn.outline:hover,
.card-btn.outline:hover {
  background-color: rgba(29, 44, 67, 0.05);
  border-color: #c5cad3;
}

/* Section padding */
section {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease-out;
  margin: 20px 0;
  border-radius: var(--border-radius-lg);
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  /* Hardware acceleration for sections */
  perspective: 1000px;
  /* Manage repaints efficiently */
  contain: layout paint;
}

/* Add grid background to light sections */
section:not(.courses-roadmap-section):not(.masterclasses-section) {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  position: relative;
  will-change: auto;
  /* Use composite-only properties for background */
  transform: translate3d(0, 0, 0);
}

section:not(.courses-roadmap-section):not(.masterclasses-section)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: 
    linear-gradient(rgba(10, 38, 71, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 38, 71, 0.08) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  opacity: 1;
  border-radius: var(--border-radius-lg);
  transform: translateZ(0);
}

/* Add grid background to dark sections */
.courses-roadmap-section, .masterclasses-section {
  background: linear-gradient(135deg, #0A2647 0%, #144272 100%);
  position: relative;
  overflow: hidden;
}

.courses-roadmap-section::before, .masterclasses-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  opacity: 1;
}

/* Update section content positioning */
section > * {
  position: relative;
  z-index: 1;
}

/* Add subtle gradient overlay to sections */
section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(10, 38, 71, 0.02) 100%);
  pointer-events: none;
  border-radius: var(--border-radius-lg);
}

/* Ensure dark sections maintain their styling */
.courses-roadmap-section .section-title,
.masterclasses-section .section-title {
  color: white;
}

/* Mobile Styles */
@media (max-width: 768px) {
  :root {
    --container-padding: 16px;
  }
  
  .section-title {
    font-size: 24px;
    margin-bottom: 24px;
  }
  
  section {
    padding: 32px 0;
  }
  
  .btn,
  .card-btn,
  .niat-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* Update CTA button styles */
.btn.primary, 
.cta-button a,
.request-callback,
button {
  background-color: #0A2647;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn.primary:hover,
.cta-button a:hover,
.request-callback:hover,
button:hover {
  background-color: #001c3d;
  transform: translateY(-2px);
}

/* CTA Banner */
/* .cta-banner {
  background-color: #0A2647;
  padding: 20px;
  margin: 40px auto;
  max-width: 1200px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-banner-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.cta-logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-right: 20px;
}

.cta-content {
  flex: 1;
}

.cta-content h3 {
  color: white;
  font-size: 24px;
  margin-bottom: 5px;
  font-weight: 600;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  margin: 0;
}

.cta-button {
  background-color: white;
  color: #0A2647;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  margin-left: 20px;
}

.cta-button:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .cta-banner-container {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  
  .cta-logo {
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .cta-content {
    margin-bottom: 20px;
  }
  
  .cta-button {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
} */


/* Enhanced CTA Banner */
.cta-banner {
  background-color: #0A2647;
  padding: 16px;
  margin: 24px auto;
  max-width: 1200px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  /* Optimize CTA banner for better performance */
  transform: translateZ(0);
  will-change: transform;
  contain: layout style paint;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
  transform: rotate(30deg);
  z-index: 0;
}

.cta-banner-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  position: relative;
  z-index: 1;
  gap: 16px;
  text-align: center;
}

.cta-logo-container {
  padding: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  backdrop-filter: blur(4px);
  margin-right: 16px;
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  height: 60px;
}

.cta-logo {
  width: 100%;
  height: 4rem;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.cta-logo:hover {
  transform: scale(1.1);
}

.cta-content {
  flex: 1;
  text-align: center;
}

.cta-content h3 {
  color: white;
  font-size: 20px;
  margin-bottom: 4px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
  text-align: center;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  margin: 0 auto;
  line-height: 1.4;
  max-width: 600px;
  text-align: center;
}

.cta-button {
  background-color: white;
  color: #0A2647;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  white-space: nowrap;
  margin-left: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid transparent;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
  font-size: 14px;
}

.cta-button span {
  position: relative;
  top: 1px;
}

.cta-button svg {
  transition: transform 0.3s ease;
}

.cta-button:hover {
  background-color: #f8f8f8;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
  border-color: rgba(10, 38, 71, 0.1);
}

.cta-button:hover svg {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .cta-banner-container {
    flex-direction: column;
    text-align: center;
    padding: 0;
    gap: 12px;
  }
  
  .cta-logo-container {
    margin: 0 auto 12px;
  }
  
  .cta-content {
    padding: 0;
    margin-bottom: 16px;
  }
  
  .cta-button {
    margin: 12px auto 0;
  }
}

@media (max-width: 480px) {
  .cta-content h3 {
    font-size: 22px;
  }
  
  .cta-content p {
    font-size: 15px;
  }
}

/* Glassmorphism Course Cards Section */
.courses-roadmap-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #0A2647 0%, #144272 100%);
  position: relative;
  overflow: hidden;
}

.courses-roadmap-section::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.3;
  pointer-events: none;
}

.courses-roadmap-section::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.courses-container {
  max-width: var(--container-max-width);
  padding: 0 var(--container-padding);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.course-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}

.course-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: translateX(-100%);
  transition: 0.5s;
}

.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.course-card:hover::before {
  transform: translateX(100%);
}

.course-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.15);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: white;
}

.course-title {
  color: white;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.course-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.course-stats {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.course-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.course-tag {
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
}

.course-progress {
  background: rgba(255, 255, 255, 0.1);
  height: 4px;
  border-radius: 2px;
  margin-bottom: 16px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: #4790f5;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.course-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.course-status {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.explore-course {
  color: #4790f5;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all 0.3s ease;
}

.explore-course:hover {
  color: white;
}

@media (max-width: 768px) {
  .courses-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
  }

  .course-card {
    padding: 20px;
  }

  .course-title {
    font-size: 18px;
  }
}

/* Grid animation */
@keyframes gridFloat {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 40px 40px;
  }
}

/* Success Stories Section */
.success-stories-section {
  background: linear-gradient(135deg, #0A2647 0%, #144272 100%);
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

.success-stories-section::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.3;
  pointer-events: none;
}

.success-stories-section::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

/* FAQ Section */
.faq-section {
  background: linear-gradient(135deg, #0A2647 0%, #144272 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.faq-section::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.3;
  pointer-events: none;
}

.faq-section .section-title {
  color: white;
  margin-bottom: 50px;
  position: relative;
}

.faq-section .section-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  position: relative;
  z-index: 1;
}

.faq-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  overflow: hidden;
  height: auto;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.faq-question {
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  padding: 20px 24px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.faq-item:focus-within {
  outline: 2px solid rgba(255, 255, 255, 0.3);
}

.faq-question h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
  color: white;
  padding-right: 24px;
  transition: color 0.3s ease;
}

.faq-icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background-color: white;
  transition: all 0.3s ease;
}

.faq-icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

.faq-icon::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

.faq-item.active {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.faq-item.active .faq-question h3 {
  color: white;
}

.faq-item.active .faq-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.6;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.44, 0.06, 0.05, 0.95), 
              opacity 0.4s ease-in-out, 
              padding 0.2s ease,
              visibility 0s linear 0.2s;
  padding: 0 24px;
  visibility: hidden;
}

.faq-answer p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.9);
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 12px 0 16px;
}

.faq-answer li {
  margin-bottom: 8px;
  line-height: 1.5;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  opacity: 1;
  visibility: visible;
  padding: 0 24px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  transition: max-height 0.6s ease-in-out, 
              opacity 0.4s ease-in-out, 
              padding 0.2s ease,
              visibility 0s linear 0s;
}

/* Mobile and responsive styles for FAQ */
@media (max-width: 1024px) {
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .faq-section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .faq-section {
    padding: 50px 0;
  }
  
  .faq-section .section-title {
    margin-bottom: 40px;
    font-size: 28px;
  }
  
  .faq-question {
    padding: 16px 20px;
  }
  
  .faq-question h3 {
    font-size: 16px;
  }
  
  .faq-answer {
    font-size: 14px;
    padding: 0 20px;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 20px 20px;
  }
}

/* Footer Section */
footer {
  background: linear-gradient(135deg, #0A2647 0%, #144272 100%);
  position: relative;
  overflow: hidden;
  padding: 60px 0 30px;
  color: white;
}

footer::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.3;
  pointer-events: none;
}

footer::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.footer-content {
  position: relative;
  z-index: 1;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .faq-item {
    padding: 20px;
  }
  
  .faq-question {
    font-size: 16px;
    padding: 0 16px;
  }
  
  .faq-answer {
    padding: 0 16px;
    font-size: 14px;
  }
  
  .faq-item.active .faq-answer {
    margin-top: 12px;
    padding-top: 12px;
  }
}

/* Images and multimedia optimization */
img, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
  /* Prevent layout shifts during lazy loading */
  content-visibility: auto;
  /* Optimize rendering */
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* Optimize buttons and interactive elements for smoother transitions */
button, 
.btn, 
a.btn, 
a.card-btn, 
a.niat-btn,
a.cta-button {
  /* Ensure smooth transitions and optimized rendering */
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform, box-shadow;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reduce motion for users who prefer less animation */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  body, section, .hero-form-section, .card {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }
}



/* End of main.min.css */

/* topbar.css */
.notification-topbar {
    background-color: #0A2647;
    color: #ffffff;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Inter', sans-serif;
    display: block;
    position: relative;
    z-index: 1001;
}

.topbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 36px;
}

.contact-info {
    display: flex;
    gap: 24px;
    align-items: center;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    opacity: 0.9;
}

.contact-link:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.contact-link .material-icons {
    font-size: 15px;
}

.social-links {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-link {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    background-color: #0096C7;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background-color: #0077B6;
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.2);
}

.social-link .material-icons {
    font-size: 14px;
}

@media (max-width: 768px) {
    .notification-topbar {
        padding: 6px 0;
        font-size: 13px;
    }

    .topbar-container {
        height: 32px;
        padding: 0 16px;
    }

    .contact-info {
        gap: 16px;
    }

    .contact-link span:not(.material-icons) {
        display: none;
    }

    .social-links {
        gap: 8px;
    }

    .social-link {
        width: 22px;
        height: 22px;
    }

    .social-link .material-icons {
        font-size: 13px;
    }
} 
/* End of topbar.css */
/* header.css */
/* Header Styles */

.header {
  background: #ffffff;
  color: #1e293b;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  will-change: transform;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transition: transform 0.3s ease;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  contain: layout style;
  perspective: 1000px;
  overflow: visible;
  flex-direction: column;
  display: flex;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 80px;
  transform: translateZ(0);
  will-change: contents;
  position: relative;
  z-index: 200;
  width: 100%;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateZ(0);
  height: 100%;
  padding: 10px 0;
}

.ds-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  max-width: 100%;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  color: #1e293b;
  font-weight: 500;
  transition: all 0.2s ease;
  position: relative;
  padding: 4px 0;
  font-size: 15px;
  text-decoration: none;
}

.nav-link:hover,
.nav-link.active {
  color: #00B4D8;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #00B4D8;
}

/* Dropdown styles */
.dropdown {
  position: relative;
  transform: translateZ(0);
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  min-width: 240px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  margin-top: 8px;
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: #1e293b;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.dropdown-link:hover {
  background: #f1f5f9;
  color: #00B4D8;
}

.dropdown-link .material-icons {
  font-size: 20px;
  color: #64748b;
}

.dropdown-link:hover .material-icons {
  color: #00B4D8;
}

.header-cta {
  margin-left: 24px;
}

.login-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: #00B4D8;
  color: white;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.login-btn:hover {
  background: #0096b7;
  transform: translateY(-1px);
}

.announcement-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0077B6;
  color: #fff;
  padding: 8px 20px;
  font-size: 14px;
  gap: 12px;
  will-change: transform;
  transform: translateZ(0);
  transition: transform 0.3s ease;
  position: relative;
  z-index: 150;
  width: 100%;
  margin: 0;
}

.announcement-bar span {
  background-color: #00B4D8;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

.announcement-bar p {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  padding: 0;
  line-height: 1.4;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
}

.announcement-link {
  color: #fff;
  font-weight: 600;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  opacity: 0.9;
  text-decoration: none;
  padding: 2px 8px;
  border-radius: 4px;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.1);
}

.announcement-link::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url("https://ext.same-assets.com/2730355870/4197957384.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 4px;
  opacity: 0.8;
}

.announcement-link:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.15);
}

/* Add class for header scroll effect */
.header.scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(-100%);
  opacity: 0;
}

.header.visible {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .main-nav {
    gap: 24px;
  }
  
  .nav-link {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 0 16px;
    height: 60px;
  }

  .ds-logo {
    height: 32px;
  }

  .main-nav {
    display: none;
  }

  .header-cta {
    margin-left: 16px;
  }

  .login-btn {
    padding: 8px 16px;
    font-size: 14px;
  }

  .announcement-bar {
    padding: 8px 16px;
    text-align: center;
    flex-direction: column;
    gap: 6px;
  }

  .announcement-bar p {
    font-size: 13px;
    width: 100%;
  }

  .announcement-bar span {
    padding: 2px 6px;
    font-size: 11px;
  }

  .announcement-link {
    font-size: 13px;
    margin: 2px 0;
  }
}
/* End of header.css */
/* hero.css */

/* hero CSS Styles */
:root {
    --primary-color: #2563EB;
    --secondary-color: #F1F5F9;
    --accent-color: #4F46E5;
    --danger-color: #DC2626;
    --success-color: #2E7D32;
    --background-color: #f8fafc;
    --text-color: #1E293B;
    --muted-color: #64748B;
    /* Add transition variables */
    --transition-speed: 0.2s;
    --transition-function: cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    /* Add smooth scrolling for the entire page */
    scroll-behavior: smooth;
}

.hero-section {
    padding: 40px 20px;
    background-color: var(--background-color);
    /* Improve rendering performance */
    transform: translateZ(0);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    /* Add containing block for properly positioned children */
    position: relative;
}

.hero-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 48px;
    line-height: 1.3;
    /* Add smooth transitions for text elements */
    transition: transform var(--transition-speed) var(--transition-function);
}

.hero-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    /* Ensure smooth transitions between flex layouts */
    transition: all var(--transition-speed) var(--transition-function);
}

.hero-cards-section {
    flex: 1;
    max-width: 60%;
    /* Improve rendering performance */
    will-change: transform;
    transform: translateZ(0);
}

.hero-form-section {
    flex: 1;
    max-width: 40%;
    position: sticky;
    top: 20px;
    height: fit-content;
    z-index: 10;
    min-width: 380px;
    will-change: transform, position;
    transform: translateZ(0);
    transition: top 0.2s ease-out, transform 0.2s ease-out, position 0.2s ease-out;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    /* Prevent repaints by preparing for GPU acceleration */
    perspective: 1000px;
}

.enquiry-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
                inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    padding: 32px;
    transition: all 0.3s ease;
    width: 100%;
    /* Improve rendering performance */
    transform: translateZ(0);
    will-change: transform, box-shadow;
}

.enquiry-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15),
                inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.enquiry-form h2 {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #0A2647 0%, #116cd4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    text-align: left;
    letter-spacing: -0.5px;
}

.enquiry-form .form-group {
    margin-bottom: 16px;
    position: relative;
}

.enquiry-form input,
.enquiry-form select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(226, 232, 240, 0.8);
    border-radius: 10px;
    font-size: 15px;
    color: #1a202c;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    height: 46px;
}

.enquiry-form input:hover,
.enquiry-form select:hover {
    border-color: rgba(17, 108, 212, 0.3);
    background: rgba(255, 255, 255, 1);
}

.enquiry-form input:focus,
.enquiry-form select:focus {
    border-color: #116cd4;
    box-shadow: 0 0 0 3px rgba(17, 108, 212, 0.15);
    outline: none;
    background: #ffffff;
}

.enquiry-form .form-submit-btn {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #0A2647 0%, #116cd4 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(17, 108, 212, 0.2);
    position: relative;
    overflow: hidden;
    height: 48px;
    margin-top: 16px;
}

.enquiry-form .form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(17, 108, 212, 0.3);
    background: linear-gradient(135deg, #116cd4 0%, #0A2647 100%);
}

.enquiry-form .form-submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(17, 108, 212, 0.2);
}

.enquiry-form .form-submit-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    transition: transform 0.5s ease;
}

.enquiry-form .form-submit-btn:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

/* Form submission status */
.submission-status {
    margin-top: 16px;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    text-align: center;
    display: none;
}

.submission-status.success {
    display: block;
    background-color: rgba(46, 125, 50, 0.1);
    color: var(--success-color);
    border: 1px solid rgba(46, 125, 50, 0.3);
}

.submission-status.error {
    display: block;
    background-color: rgba(220, 38, 38, 0.1);
    color: var(--danger-color);
    border: 1px solid rgba(220, 38, 38, 0.3);
}

.submission-status.loading {
    display: block;
    background-color: rgba(79, 70, 229, 0.1);
    color: var(--accent-color);
    border: 1px solid rgba(79, 70, 229, 0.3);
}

/* Placeholder styling */
.enquiry-form input::placeholder,
.enquiry-form select::placeholder {
    color: #718096;
    opacity: 0.8;
}

/* Select dropdown styling */
.enquiry-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23718096' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

.hero-cards-section .container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.hero-cards-section .card {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-cards-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.hero-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

#container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    /* Improve container performance */
    transform: translateZ(0);
    will-change: contents;
}

.card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 100%;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    /* Improve card transitions */
    transition: transform 0.3s var(--transition-function), 
                box-shadow 0.3s var(--transition-function);
    will-change: transform, box-shadow;
    transform: translateZ(0);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card-content {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.card-left {
    flex: 1;
}

.card-right {
    width: 200px;
    position: relative;
}

.card-right img {
    width: 100%;
    object-fit: cover;
}

.audience-tags {
    display: flex;
    gap: 6px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.audience-tag {
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
}

.tag-primary {
    background-color: #EEF2FF;
    color: var(--accent-color);
}

.tag-secondary {
    background-color: #E8F5E9;
    color: var(--success-color);
}

.card-logo {
    height: 48px;
    width: auto;
    margin-bottom: 32px;
}

.card-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.3;
    margin-bottom: 24px;
}

.batch-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.batch-label {
    font-size: 13px;
    color: var(--muted-color);
    font-weight: 500;
}

.batch-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-color);
}

.seats-info {
    font-size: 13px;
    color: var(--danger-color);
    font-weight: 500;
    margin-bottom: 16px;
}

.card-actions {
    display: flex;
    gap: 12px;
}

.request-call-back-button,
.link-block-42,
.button-10942 {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.request-call-back-button {
    background-color: var(--primary-color);
    color: white;
}

.link-block-42 {
    background-color: var(--secondary-color);
    color: var(--text-color);
}

.button-10942 {
    background-color: var(--primary-color);
    color: white;
}

/* Image container to hold two images in a row */
.image-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    height: 100px;
    position: relative;
    overflow: hidden;
    /* Use GPU acceleration for image container */
    transform: translateZ(0);
    will-change: transform;
}

.image-container img:first-child {
    width: 100%;
    height: auto;
    max-height: 90%;
    object-fit: contain;
    z-index: 1;
}

.image-container .student-image {
    width: 60%;
    position: absolute;
    right: 0;
    top: -15px;
    height: 120%;
    object-fit: contain;
    z-index: 2;
}

.card h3 {
    color: #333;
    font-size: 18px;
    line-height: 1.3;
    margin: 8px 0;
    min-height: 46px;
    max-height: 46px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-align: left;
    /* Improve scrolling performance for static content */
    transform: translateZ(0);
}

.card h4 {
    margin: 4px 0;
    display: inline-block;
}

.card p {
    color: #555;
    margin: 6px 0;
    line-height: 1.4;
    display: flex;
    align-items: center;
    min-height: 20px;
    /* Improve scrolling performance for static content */
    transform: translateZ(0);
}

.card p strong {
    margin-right: 5px;
}

.card p a {
    display: block;
    text-align: center;
    width: 100%;
}

.card button {
    margin-top: 0;
    margin-bottom: 10px;
    height: 44px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    background-color: #0A2647;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
}

.card button:hover {
    background-color: #00396b;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.badge-container {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
    min-height: 32px;
    /* Improve scrolling performance for static content */
    transform: translateZ(0);
}

/* Badges */
.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin: 0;
}

.purple {
    background-color: #8B5CF6;
    color: #ffffff;
}

.blue {
    background-color: #3B82F6;
    color: #ffffff;
}

.green {
    background-color: #10B981;
    color: #ffffff;
}

.yellow {
    background-color: #DC2626;
    color: #ffffff;
}

button {
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    padding: 10px 15px;
    margin: 10px 0;
}

button:hover {
    background-color: #0056b3;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.card-info {
    margin: 8px 0;
    min-height: 18px;
    display: flex;
    align-items: center;
    /* Improve scrolling performance for static content */
    transform: translateZ(0);
}

.card-info p {
    margin: 0;
}

p.know-more {
    display: none;
}

.card-cta-button {
    margin-top: 12px;
    margin-bottom: 0;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
    }

    .hero-cards-section,
    .hero-form-section {
        max-width: 100%;
        min-width: unset;
    }

    .hero-form-section {
        position: static;
        width: 100%;
        max-width: 480px;
        margin: 0 auto;
    }

    .card {
        min-height: 260px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 32px 16px;
        /* Optimize mobile performance */
        transform: none;
    }

    .hero-title {
        font-size: 28px;
        margin-bottom: 32px;
    }

    .card {
        min-height: 240px;
    }
    
    .card h3 {
        min-height: 50px;
        max-height: 50px;
        font-size: 16px;
    }

    .enquiry-form {
        padding: 24px;
    }

    .enquiry-form h2 {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .enquiry-form input,
    .enquiry-form select {
        padding: 10px 14px;
        font-size: 14px;
        height: 42px;
    }

    .enquiry-form .form-submit-btn {
        padding: 12px 20px;
        font-size: 15px;
        height: 44px;
    }

    .hero-form-section {
        position: relative !important;
        top: 0 !important;
        margin-top: 30px;
        max-width: 100%;
        min-width: unset;
        will-change: auto;
        transform: none;
        transition: none;
        /* Remove unnecessary properties on mobile */
        perspective: none;
        backface-visibility: visible;
        -webkit-backface-visibility: visible;
    }

    .image-container.single-image {
        height: 120px;
    }
}

/* Hide the old button styles since we're using a tags instead */
.card button {
    display: none;
}

/* Form accessibility improvements */
.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #1a202c;
    font-size: 14px;
    text-align: left;
}

.form-group input:focus,
.form-group select:focus {
    outline: 2px solid #2563EB;
    outline-offset: 1px;
}

/* Add a container for the third card to ensure stable layout */
.hero-cards-section .card:nth-child(3) {
    position: relative;
    z-index: 1;
}

/* Add class for transitioning between positions */
.form-relative {
    position: relative !important;
    transition: top 0.3s var(--transition-function) !important;
}

/* Optimize animation performance site-wide */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Single image container for full-width images */
.image-container.single-image {
    justify-content: center;
    height: 150px;
    margin-bottom: 16px;
}

.full-width-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* End of hero.css */
/* recognition */
/* Recognition Section Styles */

.recognition-section {
  padding: 80px 20px;
  background-color: #f8fafc;
}

.recognition-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  color: #1e293b;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 48px;
}

.recognition-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin: 0 auto;
  max-width: 1100px;
}

.recognition-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 32px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 180, 216, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 180, 216, 0.1);
}

.recognition-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 180, 216, 0.2);
  border-color: rgba(0, 180, 216, 0.2);
}

.recognition-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 24px;
}

.recognition-icon {
  font-size: 56px;
  color: #00B4D8;
  margin-bottom: 24px;
  background: rgba(0, 180, 216, 0.1);
  padding: 20px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.recognition-card:hover .recognition-icon {
  transform: scale(1.1);
  background: rgba(0, 180, 216, 0.15);
}

.recognition-info h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
}

.recognition-info p {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
  max-width: 300px;
  margin: 0 auto;
}

/* Alumni Section */
.alumni-section {
  text-align: center;
  margin: 48px 0;
}

.alumni-title {
  color: #1e293b;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 32px;
}

.alumni-logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 40px;
  align-items: center;
  justify-items: center;
  margin-bottom: 24px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.alumni-logo {
  max-width: 140px;
  height: auto;
  object-fit: contain;
}

.alumni-more {
  color: #64748b;
  font-size: 14px;
  font-style: italic;
  margin-top: 16px;
}

/* Recognised By */
.recognised-by {
  text-align: center;
  margin-top: 48px;
}

.recognised-by span {
  display: block;
  color: #1e293b;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 32px;
}

.recognised-logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  align-items: center;
  justify-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.recognised-logo {
  max-width: 160px;
  height: auto;
  object-fit: contain;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .recognition-section {
    padding: 60px 16px;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 32px;
  }

  .recognition-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .recognition-card {
    padding: 32px 24px;
  }

  .recognition-icon {
    font-size: 48px;
    padding: 16px;
  }

  .recognition-info h3 {
    font-size: 22px;
  }

  .recognition-info p {
    font-size: 15px;
  }

  .alumni-logos-grid,
  .recognised-logos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .alumni-logo,
  .recognised-logo {
    max-width: 120px;
  }

  .alumni-title {
    font-size: 20px;
  }
}

.hackathon-slider {
  position: relative;
  margin: 48px 0;
  display: flex;
  align-items: center;
}

.hackathon-cards {
  display: flex;
  gap: 24px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  padding: 20px 0;
  margin: 0 48px;
}

.hackathon-card {
  min-width: 480px;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.hackathon-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.hackathon-card:hover .hackathon-image {
  transform: scale(1.05);
}

.hackathon-info {
  padding: 24px;
  text-align: center;
}

.hackathon-info h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 12px;
}

.hackathon-info p {
  font-size: 16px;
  color: #64748b;
  line-height: 1.5;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 1;
}

.slider-btn:hover {
  background: #00B4D8;
  color: white;
}

.slider-btn.prev {
  left: 0;
}

.slider-btn.next {
  right: 0;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e2e8f0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  width: 24px;
  border-radius: 12px;
  background: #00B4D8;
}

@media (max-width: 768px) {
  .hackathon-cards {
    gap: 16px;
    margin: 0 40px;
  }

  .hackathon-card {
    min-width: 300px;
  }

  .hackathon-image {
    height: 200px;
  }

  .hackathon-info {
    padding: 16px;
  }

  .hackathon-info h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .hackathon-info p {
    font-size: 14px;
  }
}

/* End of recognition.css */
/*companies.css */

/* Company.css */

/* Companies section styling */
.companies-section {
    padding: 80px 20px;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.companies-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#e6f7ff 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    pointer-events: none;
}

.companies-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.companies-title {
    color: #0A2647;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 48px;
    line-height: 1.3;
    position: relative;
    display: inline-block;
}

.companies-title span {
    color: #00B4D8;
    position: relative;
}

.companies-title span::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #00B4D8;
    border-radius: 2px;
}

.companies-description {
    color: #64748b;
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 32px;
    margin: 40px 0;
    place-items: center;
}

.company-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
    width: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.company-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.company-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0A2647, #00B4D8);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.company-card:hover::before {
    opacity: 1;
}

.company-logo {
    max-width: 80%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(60%);
    transition: all 0.3s ease;
}

.company-card:hover .company-logo {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.company-name {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.company-card:hover .company-name {
    opacity: 1;
    transform: translateY(0);
}

.companies-more {
    color: #1e293b;
    font-size: 16px;
    font-weight: 500;
    margin: 24px 0;
}

.companies-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-box {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #0A2647;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-number span {
    color: #00B4D8;
    font-size: 24px;
    margin-left: 4px;
}

.stat-label {
    font-size: 14px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#companies-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .companies-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 20px;
    }
    
    .company-card {
        height: 100px;
    }
    
    .companies-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .companies-title {
        font-size: 28px;
        margin-bottom: 32px;
    }
    
    .companies-description {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .companies-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    #companies-cta {
        flex-direction: column;
        gap: 12px;
    }
    
    .company-card {
        height: 90px;
    }
}
/* End of companies.css */
/* awards.css */
/* Awards Section Styles */
.awards-section {
  padding: 60px 0;
  background-color: var(--primary-white);
}

.awards-container {
  max-width: var(--container-max-width);
  padding: 0 var(--container-padding);
  margin: 0 auto;
  text-align: center;
}

.awards-section .section-title {
  margin-bottom: 48px;
}

.workshop-slider {
  position: relative;
  margin: 48px 0;
  display: flex;
  align-items: center;
  overflow: hidden; /* Hide overflow to create a clean scrolling effect */
}

.workshop-cards {
  display: flex;
  gap: 24px;
  animation: scroll 20s linear infinite; /* Infinite scrolling animation */
}

.workshop-card {
  min-width: 320px;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.workshop-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.workshop-card:hover .workshop-image {
  transform: scale(1.05);
}

.workshop-description {
  padding: 16px;
  text-align: center;
  font-size: 16px;
  color: #1e293b;
  line-height: 1.5;
}

/* Keyframes for scrolling animation */
@keyframes scroll {
  0% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(-50%); /* Move left by 50% of the container */
  }
}

/* Pause the animation on hover */
.workshop-slider:hover .workshop-cards {
  animation-play-state: paused; /* Pause the animation on hover */
}

/* Slider Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e2e8f0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  width: 24px;
  border-radius: 12px;
  background: #00B4D8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .workshop-cards {
      gap: 16px;
      margin: 0 40px;
  }

  .workshop-card {
      min-width: 280px;
  }

  .workshop-image {
      height: 200px;
  }

  .workshop-description {
      font-size: 14px;
      padding: 12px;
  }
}
/* End of awards.css */

/* teams */

/* Teams Section Styles */

.teams-section {
  padding: 80px 20px;
  background-color: #f8fafc;
}

.teams-container {
  max-width: 1200px;
  margin: 0 auto;
}

.teams-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
}

/* Yukti Chatbot Styles */
.yukti-chatbot {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 600px;
}

.chatbot-header {
  padding: 16px;
  border-bottom: 1px solid #e2e8f0;
}

.status-dot {
  color: #10b981;
  font-size: 14px;
  font-weight: 500;
}

.status-dot::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  margin-right: 8px;
}

.chat-messages {
  flex-grow: 1;
  padding: 24px;
  overflow-y: auto;
}

.bot-message {
  background: #f1f5f9;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
  max-width: 80%;
}

.bot-message p {
  margin: 0;
  color: #1e293b;
  line-height: 1.5;
}

.chat-input {
  padding: 16px;
  border-top: 1px solid #e2e8f0;
  display: flex;
  gap: 12px;
}

.chat-input input {
  flex-grow: 1;
  padding: 12px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s ease;
}

.chat-input input:focus {
  border-color: #00B4D8;
}

.send-btn {
  background: #00B4D8;
  color: white;
  border: none;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.send-btn:hover {
  background: #0091ad;
}

/* Yukti Features Styles */
.yukti-features {
  padding: 32px;
}

.feature-title {
  color: #00B4D8;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-subtitle {
  color: #1e293b;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
}

.feature-description {
  color: #64748b;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  color: #00B4D8;
  font-size: 24px;
  padding: 8px;
  background: rgba(0, 180, 216, 0.1);
  border-radius: 8px;
}

.feature-text h4 {
  color: #1e293b;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.feature-text p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.5;
}

.try-yukti-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #00B4D8;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.try-yukti-btn:hover {
  background: #0091ad;
}

.try-yukti-btn span {
  font-size: 14px;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .teams-section {
    padding: 60px 16px;
  }

  .teams-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .yukti-chatbot {
    height: 500px;
  }

  .feature-title {
    font-size: 28px;
  }

  .feature-subtitle {
    font-size: 20px;
  }

  .feature-description {
    font-size: 15px;
  }

  .feature-item {
    gap: 12px;
  }

  .feature-text h4 {
    font-size: 16px;
  }

  .feature-text p {
    font-size: 13px;
  }
}
/* End of teams.css */

/* testimonials.css */
/* Testimonials Section Styles */

.testimonials-section {
  padding: 80px 0;
  background-color: #f8fafc;
  position: relative;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.testimonials-section .section-title {
  text-align: center;
  margin-bottom: 40px;
  color: #0A2647;
  font-size: 36px;
  font-weight: 700;
}

.carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  padding: 20px 0;
  margin: 20px 0;
  border-radius: 16px;
  background-color: #f8fafc;
  box-shadow: none;
}

.shorts-title {
  display: none; /* Hide this as we're using section-title instead */
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(10, 38, 71, 0.2);
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.dot:hover {
  background-color: rgba(10, 38, 71, 0.4);
}

.dot.active {
  background-color: #0A2647;
  transform: scale(1.2);
}

/* Testimonial Slider */
.testimonial-slider {
  position: relative;
  margin: 0 auto;
  max-width: 900px;
}

.testimonial-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
}

.testimonial-content {
  background-color: var(--primary-white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
  position: relative;
  text-align: center;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-content::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  width: 24px;
  height: 24px;
  background-color: var(--primary-white);
  transform: translateX(-50%) rotate(45deg);
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-dark);
  margin-bottom: 16px;
  font-weight: 500;
  position: relative;
}

.testimonial-text::before {
  content: "\201C";
  font-size: 48px;
  color: #4790f5;
  position: absolute;
  top: -20px;
  left: -10px;
  opacity: 0.2;
}

.testimonial-text::after {
  content: "\201D";
  font-size: 48px;
  color: #4790f5;
  position: absolute;
  bottom: -40px;
  right: -10px;
  opacity: 0.2;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 12px;
}

.author-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.author-role {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray);
  margin-bottom: 8px;
}

.author-company {
  display: flex;
  align-items: center;
  gap: 8px;
}

.company-logo {
  height: 24px;
}

.company-name {
  font-size: 14px;
  font-weight: 600;
  color: #4790f5;
}

/* Testimonial Navigation */
.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #d4d9e2;
  cursor: pointer;
  transition: var(--transition-fast);
}

.nav-dot.active {
  background-color: #4790f5;
  transform: scale(1.2);
}

/* Testimonial CTA */
.testimonial-cta {
  margin-top: 48px;
}

/* Responsive */
@media (max-width: 1024px) {
  .testimonial-content {
    padding: 32px;
  }
  
  .testimonial-text {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 50px 0;
  }
  
  .testimonials-section .section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  
  .carousel-container {
    margin: 15px 0;
    padding: 15px 0;
  }
  
  .testimonial-content {
    padding: 20px;
    min-height: 180px;
  }
  
  .testimonial-text {
    font-size: 15px;
  }
  
  .author-avatar {
    width: 56px;
    height: 56px;
  }
  
  .author-name {
    font-size: 16px;
  }
  
  .carousel-item.shorts-item {
    flex: 0 0 180px; /* Smaller on mobile */
    max-width: 180px;
  }
  
  /* Ensure video fills container properly */
  .video-container.shorts {
    padding-top: 177.78%; /* Keep 9:16 ratio */
    width: 100%;
  }
  
  /* Make arrows more visible on mobile */
  .arrow {
    width: 36px;
    height: 36px;
  }
  
  /* Keep slider dots visible */
  .slider-dots {
    margin-top: 15px;
  }
  
  .dot {
    width: 8px;
    height: 8px;
  }
}

/* Improve YouTube shorts alignment - hide captions and show only thumbnails */
.carousel-item.shorts-item {
  margin: 0;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  flex: 0 0 240px;
  max-width: 240px;
  position: relative; /* For absolute positioning of iframe */
}

.video-container.shorts {
  padding-top: 177.78%; /* 9:16 aspect ratio */
  margin: 0;
  background-color: #000;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.video-container.shorts iframe {
  position: absolute;
  top: -60%; /* Move the iframe up to show only the thumbnail portion */
  left: 0;
  width: 100%;
  height: 250%; /* Larger height to have more control over visible area */
  border: none;
  object-fit: cover;
  pointer-events: none; /* Disable direct interaction with iframe initially */
  opacity: 0.99;
  transition: all 0.3s ease; /* Smooth transition when playing */
  z-index: 1;
}

/* Styles for when video is playing */
.carousel-item.shorts-item.playing .video-container.shorts iframe {
  top: 0;
  height: 100%;
  opacity: 1;
  pointer-events: auto; /* Enable interaction when playing */
  z-index: 10;
}

/* Hide gradient overlay when playing */
.carousel-item.shorts-item.playing .video-container.shorts::after {
  opacity: 0;
}

/* Hide hover overlay when playing */
.carousel-item.shorts-item.playing::before {
  display: none;
}

/* Pause indicator for playing videos */
.carousel-item.shorts-item.playing::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  background-color: rgba(255,255,255,0.8);
  border-radius: 50%;
  z-index: 11;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='%23000000'%3E%3Cpath d='M6 19h4V5H6v14zm8-14v14h4V5h-4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  cursor: pointer;
}

/* Reset button to close video */
.video-reset-button {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  background-color: rgba(255,255,255,0.8);
  border-radius: 50%;
  z-index: 12;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #000;
  font-size: 18px;
  line-height: 1;
  transition: background-color 0.3s ease;
}

.carousel-item.shorts-item.playing .video-reset-button {
  display: flex;
}

.video-reset-button:hover {
  background-color: rgba(255,255,255,1);
}

/* Make the active playing item wider */
.carousel-item.shorts-item.playing {
  flex: 0 0 300px;
  max-width: 300px;
  z-index: 20;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

/* Make videos clickable as a whole item */
.carousel-item.shorts-item a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  cursor: pointer;
}

/* Add a play button overlay */
.carousel-item.shorts-item::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%23FFFFFF'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.carousel-item.shorts-item:hover::after {
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.7);
}

/* Adjust carousel spacing */
.carousel {
  display: flex;
  gap: 15px; /* Consistent gap between videos */
  padding: 10px 0;
  margin: 0;
}

/* Ensure arrows don't interfere with video visibility */
.arrow {
  z-index: 10;
  background-color: rgba(10, 38, 71, 0.8);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.arrow:hover {
  background-color: rgba(10, 38, 71, 1);
  transform: scale(1.1);
}

/* Add clear clickable overlay */
.carousel-item.shorts-item {
  cursor: pointer;
  position: relative;
}

/* Add CSS for a play button overlay */
.carousel-item.shorts-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.2);
  z-index: 5;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.carousel-item.shorts-item:hover::before {
  opacity: 1;
}

/* Override any YouTube UI that might appear */
.video-container.shorts::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%; /* Cover the bottom portion where captions might appear */
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  z-index: 3;
  pointer-events: none;
}

/* End of testimonials.css */
/* masterclasses */

/* masterclass css */
.masterclasses-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #0A2647 0%, #144272 100%);
  color: white;
}

.masterclasses-container {
  max-width: 1200px;
  margin: 0 auto;
}

.masterclass-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.masterclass-text {
  text-align: left;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
  color: white;
}

.section-description {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 48px;
}

.company-logos {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.company-logo {
  height: 32px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.company-logo:hover {
  opacity: 1;
}

.masterclass-video {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.masterclass-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.cta-button {
  margin-top: 32px;
}

.request-callback {
  display: inline-block;
  background-color: #0A2647;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.request-callback:hover {
  background-color: #001c3d;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 968px) {
  .masterclass-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section-title {
    font-size: 36px;
  }

  .section-description {
    font-size: 16px;
  }

  .company-logos {
    gap: 24px;
  }

  .company-logo {
    height: 28px;
  }

  .masterclass-video {
    order: -1;
  }
} 
/* End of masterclass css */
/* fundraise */
/* fundriase section  */
.fundraise-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.fundraise-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.fundraise-content {
  margin-top: 48px;
}

.investor-logo {
  max-width: 300px;
  height: auto;
  margin-bottom: 32px;
}

.welcome-text {
  font-size: 24px;
  color: #1e293b;
  line-height: 1.5;
  margin: 24px 0;
}

.existing-partners {
  margin-top: 48px;
}

.existing-partners p {
  color: #64748b;
  font-size: 18px;
  margin-bottom: 24px;
}

.partner-logos {
  margin: 32px 0;
}

.partner-logos img {
  max-width: 100%;
  height: auto;
}

.fundraise-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .welcome-text {
    font-size: 20px;
  }

  .fundraise-cta {
    flex-direction: column;
    align-items: center;
  }
} 
/* End of fundraise.css */
/* placements.css */

/* Placement section */
.placement-section {
  padding: 80px 20px;
  background-color: #ffffff;
}

.placement-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  color: #1e293b;
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
}

/* Slider layout */
.placement-slider {
  position: relative;
  margin: 48px 0;
  display: flex;
  align-items: center;
}

.placement-cards {
  display: flex;
  gap: 24px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  padding: 20px 0;
  margin: 0 60px;
  width: 100%;
}

/* Card styling */
.placement-card {
  min-width: 280px;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  flex: 1;
}

.placement-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.student-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.placeholder-image {
  background-color: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #94a3b8;
}

/* Navigation button styling */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.slider-btn:hover {
  background: #00B4D8;
  color: white;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.slider-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.slider-btn.prev {
  left: 0;
}

.slider-btn.next {
  right: 0;
}

.slider-btn .material-icons {
  font-size: 28px;
  line-height: 1;
}

/* Dots navigation */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e2e8f0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  width: 24px;
  border-radius: 12px;
  background: #00B4D8;
}

/* Responsive styling */
@media (max-width: 768px) {
  .placement-section {
    padding: 60px 16px;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .placement-cards {
    gap: 16px;
    margin: 0 45px;
    padding: 16px 0;
  }

  .placement-card {
    min-width: 240px;
  }

  .student-image {
    height: 240px;
  }

  /* Mobile navigation buttons */
  .slider-btn {
    width: 40px;
    height: 40px;
  }

  .slider-btn .material-icons {
    font-size: 24px;
  }

  .dot {
    width: 6px;
    height: 6px;
  }

  .dot.active {
    width: 18px;
  }
}

/* End of placements.css */

/* footer.css */


/* Footer Styles */
.footer {
  background-color: #0A2647;
  color: #f6f6f5;
  padding: 30px 40px;
  font-family: Arial, sans-serif;
  width: 100%;
  box-sizing: border-box;
  text-align: left;
}

.footer-container {
max-width: 1200px;
/* margin: 0 auto; */
padding: 0 20px;
/* padding-left: 0px; */

}
.footer-container  a{
  padding-right: 10px;
  border-right: 1px solid #ffffff;
}
.footer-container .social-links a {
 padding-right: 0px;
 border: none;
}
.footer-row {
/* display: flex;
flex-wrap: wrap;
justify-content: space-between; */
margin-bottom: 40px;
}

.footer-col {
width: 100%;
/* max-width: 250px; */
margin-bottom: 30px;
}
#icon-divs{
  display: flex;
  flex-direction: row;
 
  
  justify-content: space-between;
  align-items: right;
  margin-bottom: 20px;
  margin-top: 0px;
  margin-left: 10px;
  
}
.footer-col h3 {
  color: #ffffff;
font-size: 18px;
font-weight: 600;
margin-bottom: 4px;
position: relative;
line-height: 20px;
}



.footer-col ul {
list-style: none;
padding: 0;
margin: 0;
}

.footer-col ul li {
margin-bottom: 10px;
}

.footer-col ul li a {
color: #f6f6f5;
text-decoration: none;
font-size: 14px;
transition: all 0.3s ease;
}
.footer-col a {
text-decoration: none;
color: rgb(255, 255, 255);
margin-right: 10px;
/* padding-right: 0px; */
/* border-right: 1px solid rgb(255, 255, 255); */
}

.footer-col ul li a:hover {
color: #000000;
padding-left: 5px;
}

.contact-info li {
display: flex;
align-items: left;
margin-bottom: 15px;
}

.social-links {
display: flex;
flex-direction: column;
align-items: flex-start;
margin-top: 0px;
margin-left: 160px;
}

.social-links a {
display: inline-flex;
align-items: center;
justify-content: center;
height: 36px;
width: 36px;
background-color: rgba(255, 255, 255, 0.1);
margin-right: 0px;
border-radius: 50%;
color: #f6f6f5;
transition: all 0.3s ease;
}

.social-links a:hover {
background-color: #206dd4;
transform: translateY(-3px);
}

.footer-bottom {
border-top: 1px solid rgba(255, 255, 255, 0.1);
padding-top: 20px;
/* text-align: center; */
}

.footer-logo {
margin-bottom: 15px;
}

.footer-logo img {
width: 100%;
}

.copyright {
font-size: 14px;
color: rgba(255, 255, 255, 0.7);
}

/* Responsive Styles */
@media (max-width: 768px) {
.footer-row {
justify-content: flex-start;
}

.footer-col {
width: 50%;
max-width: none;
padding-right: 15px;
}
}

@media (max-width: 576px) {
.footer-col {
width: 100%;
}

.social-links {
justify-content: center;
}
}
/* #icon-divs {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end; 
  margin-bottom: 20px;
  margin-top: 0px;
  margin-left: 10px;
} */

/* Change direction to column on smaller screens (e.g., below 768px) */
@media (max-width: 768px) {
  #icon-divs {
    flex-direction: column;
margin-left: 0px;
  }
  .social-links{
    margin-left: 0px;
    margin-top:32px;
  }
}

/* End of footer.css */


/* faq.css  */


@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700;800&amp;display=swap');

/* faq css */
.faq_8 .responsive-cell-block {
  min-height: 75px;
}

.faq_8 * {
  font-family: Nunito, sans-serif;
}

.faq_8 .text-blk {
  line-height: 25px;
  text-align: left;
  margin-top: 0px;
  margin-right: auto;
  margin-left: auto;
}

.faq_8 .responsive-container-block {
  min-height: 75px;
  height: fit-content;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  justify-content: flex-start;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
}

.faq_8 .responsive-container-block.container {
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
}

.faq_8 .responsive-container-block.faqheading-bg {
  background-color: transparent;
  height: auto;
  flex-direction: column;
  text-align: center;
  color: #0A2647;
  align-items: center;
  padding: 40px 0 20px;
}

.faq_8 .text-blk.faq-heading {
  font-size: 36px;
  line-height: 50px;
  font-weight: 800;
  margin: 0 0 20px;
  color: #0A2647;
  position: relative;
  display: inline-block;
}

.faq_8 .text-blk.faq-heading::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #00B4D8;
  border-radius: 2px;
}

.faq_8 .text-blk.faq-subhead {
  max-width: 650px;
  font-size: 18px;
  line-height: 26px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 28px;
  margin-left: 0px;
}

.faq_8 .heading-content {
  margin-top: 65px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
}

.faq_8 .responsive-container-block.dropdown-container {
  background-color: white;
  max-width: 850px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 20px 7px;
  height: 500px;
  margin-top: -120px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
}

.faq_8 .responsive-container-block.dropdown-container-wrapper {
  padding-top: 0px;
  padding-right: 30px;
  padding-bottom: 0px;
  padding-left: 30px;
  max-width: 1320px;
  display: block;
  margin-top: 50px;
  margin-right: auto;
  margin-bottom: 50px;
  margin-left: auto;
}

.faq_8 .responsive-container-block.box-container {
  max-width: 1200px;
  justify-content: center;
  gap: 20px;
  display: flex;
  flex-wrap: wrap;
  padding: 30px 10px;
}

.faq_8 .card-img {
  width: 150px;
}

.faq_8 .text-blk.card-head {
  font-weight: 700;
  font-size: 20px;
  margin-top: 30px;
  margin-right: 0px;
  margin-bottom: 10px;
  margin-left: 0px;
}

.faq_8 .text-blk.subheading {
  font-size: 18px;
  line-height: 28px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 40px;
  margin-left: auto;
  text-align: center;
}

.faq_8 .card {
  width: 100%;
  min-height: auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin: 0;
  transition: all 0.3s ease;
  overflow: hidden;
  border-top: 3px solid transparent;
}

.faq_8 .card:hover,
.faq_8 .card.hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  border-top: 3px solid #00B4D8;
}

.faq_8 .card.gray {
  background-color: #f5f9ff;
}

.faq_8 .card.gray:hover,
.faq_8 .card.gray.hover {
  background-color: #f0f7ff;
}

.faq_8 .text-blk.card-text {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 30px;
  margin-left: 0px;
  font-size: 17px;
  text-align: left;
}

.faq_8 .responsive-cell-block.wk-desk-4.wk-ipadp-4.wk-tab-6.wk-mobile-12 {
  width: calc(33.33% - 20px);
  padding: 0;
}

.faq_8 .box-container {
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
}

/* FAQ Item Styling */
.faq_8 .faq-item {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.faq_8 .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px;
  cursor: pointer;
  background-color: #0A2647;
  color: white;
  border-radius: 8px 8px 0 0;
}

.faq_8 .faq-question h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: white;
  text-align: left;
  flex: 1;
  padding-right: 10px;
}

.faq_8 .toggle-icon {
  color: white;
  font-size: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq_8 .faq-question.active .toggle-icon {
  transform: rotate(180deg);
}

.faq_8 .faq-answer {
  padding: 0 20px 20px;
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  text-align: left;
  display: none;
  background-color: white;
  border-radius: 0 0 8px 8px;
}

.faq_8 .faq-answer.active {
  display: block;
}

.faq_8 .faq-answer p {
  margin-top: 20px;
  margin-bottom: 15px;
}

.faq_8 .faq-answer ul, 
.faq_8 .faq-answer ol {
  padding-left: 20px;
  margin-bottom: 15px;
}

.faq_8 .faq-answer li {
  margin-bottom: 8px;
}

@media (max-width: 1024px) {
  .faq_8 .responsive-cell-block.wk-desk-4.wk-ipadp-4.wk-tab-6.wk-mobile-12 {
    width: calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  .faq_8 .responsive-container-block.faqheading-bg {
    padding: 30px 30px 10px;
  }

  .faq_8 .text-blk.faq-heading {
    font-size: 30px;
    line-height: 42px;
  }

  .faq_8 .text-blk.faq-subhead {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 24px;
    margin-left: 0px;
  }

  .faq_8 .responsive-container-block.box-container {
    gap: 15px;
    padding: 20px 10px;
  }
  
  .faq_8 .responsive-cell-block.wk-desk-4.wk-ipadp-4.wk-tab-6.wk-mobile-12 {
    width: calc(50% - 15px);
    padding: 0;
  }
  
  .faq_8 .card {
    min-height: auto;
  }
}

@media (max-width: 500px) {
  .faq_8 .responsive-container-block.dropdown-container-wrapper {
    padding: 0 15px;
  }

  .faq_8 .text-blk.faq-heading {
    font-size: 26px;
    line-height: 36px;
  }

  .faq_8 .heading-content {
    margin: 0;
    padding: 20px 0;
  }

  .faq_8 .text-blk.faq-subhead {
    font-size: 18px;
  }

  .faq_8 .responsive-container-block.box-container {
    gap: 15px;
    padding: 10px 0;
  }

  .faq_8 .responsive-cell-block.wk-desk-4.wk-ipadp-4.wk-tab-6.wk-mobile-12 {
    width: 100%;
  }

  .faq_8 .faq-question h3 {
    font-size: 16px;
  }
  
  .faq_8 .faq-answer {
    font-size: 14px;
  }

  .faq_8 .text-blk.subheading {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 20px;
  }

  .faq_8 .responsive-cell-block.wk-desk-4.wk-ipadp-4.wk-tab-6.wk-mobile-12 {
    width: 100%;
  }

  .faq_8 .card {
    width: 100%;
    min-height: 300px;
    padding: 15px;
  }
}

*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  margin: 0;
}

.wk-desk-1 {
  width: 8.333333%;
}

.wk-desk-2 {
  width: 16.666667%;
}

.wk-desk-3 {
  width: 25%;
}

.wk-desk-4 {
  width: 33.333333%;
}

.wk-desk-5 {
  width: 41.666667%;
}

.wk-desk-6 {
  width: 50%;
}

.wk-desk-7 {
  width: 58.333333%;
}

.wk-desk-8 {
  width: 66.666667%;
}

.wk-desk-9 {
  width: 75%;
}

.wk-desk-10 {
  width: 83.333333%;
}

.wk-desk-11 {
  width: 91.666667%;
}

.wk-desk-12 {
  width: 100%;
}

@media (max-width: 1024px) {
  .wk-ipadp-1 {
    width: 8.333333%;
  }

  .wk-ipadp-2 {
    width: 16.666667%;
  }

  .wk-ipadp-3 {
    width: 25%;
  }

  .wk-ipadp-4 {
    width: 33.333333%;
  }

  .wk-ipadp-5 {
    width: 41.666667%;
  }

  .wk-ipadp-6 {
    width: 50%;
  }

  .wk-ipadp-7 {
    width: 58.333333%;
  }

  .wk-ipadp-8 {
    width: 66.666667%;
  }

  .wk-ipadp-9 {
    width: 75%;
  }

  .wk-ipadp-10 {
    width: 83.333333%;
  }

  .wk-ipadp-11 {
    width: 91.666667%;
  }

  .wk-ipadp-12 {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .wk-tab-1 {
    width: 8.333333%;
  }

  .wk-tab-2 {
    width: 16.666667%;
  }

  .wk-tab-3 {
    width: 25%;
  }

  .wk-tab-4 {
    width: 33.333333%;
  }

  .wk-tab-5 {
    width: 41.666667%;
  }

  .wk-tab-6 {
    width: 50%;
  }

  .wk-tab-7 {
    width: 58.333333%;
  }

  .wk-tab-8 {
    width: 66.666667%;
  }

  .wk-tab-9 {
    width: 75%;
  }

  .wk-tab-10 {
    width: 83.333333%;
  }

  .wk-tab-11 {
    width: 91.666667%;
  }

  .wk-tab-12 {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .wk-mobile-1 {
    width: 8.333333%;
  }

  .wk-mobile-2 {
    width: 16.666667%;
  }

  .wk-mobile-3 {
    width: 25%;
  }

  .wk-mobile-4 {
    width: 33.333333%;
  }

  .wk-mobile-5 {
    width: 41.666667%;
  }

  .wk-mobile-6 {
    width: 50%;
  }

  .wk-mobile-7 {
    width: 58.333333%;
  }

  .wk-mobile-8 {
    width: 66.666667%;
  }

  .wk-mobile-9 {
    width: 75%;
  }

  .wk-mobile-10 {
    width: 83.333333%;
  }

  .wk-mobile-11 {
    width: 91.666667%;
  }

  .wk-mobile-12 {
    width: 100%;
  }
}

/* Additional styles to ensure material icons display properly */
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}

/* End of faq.css */

/* whyTop  */

/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    text-align: center;
}

/* Main Section */
.why-top-companies {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Flexbox Layout */
.content-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    /* border: 2px solid #6c0d0d;
    background: #ab4e4e; */
}

/* Left Section */
.text-container {
    flex: 1;
    text-align: left;
}

.heading {
    font-size: 36px;
    font-weight: bold;
    color: #1f1f1f;
}

.highlight {
    color: #0066ff;
}

.description {
    font-size: 18px;
    color: #555;
    max-width: 500px;
}

/* Right Section - Video */
.video-container {
    flex: 1;
    max-width: 600px;
}

.video-container iframe {
    width: 100%;
    height: 350px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Video Slider Section */
.slider-container {
    position: relative;
    width: 100%;
    margin-top: 40px;
    overflow: hidden;
    text-align: center;
}

/* Video Slider */
.video-slider {
    display: flex;
    width: 100%;
    overflow: hidden;
    scroll-behavior: smooth;
}

.video-slide {
    flex: 0 0 100%;
    transition: transform 0.5s ease-in-out;
    
    
}


.video-slide iframe {
    width: 100%;
    height: 300px;
    border-radius: 10px;
}

/* Slider Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 20px;
    transition: background 0.3s;
}

.slider-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.left-btn {
    left: 10px;
}

.right-btn {
    right: 10px;
}

/* Navigation Dots */
.nav-slide {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.nav-slide div {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.nav-slide .active {
    background-color: #0066ff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-container {
        flex-direction: column;
        text-align: center;
    }

    .text-container {
        text-align: center;
    }

    .slider-btn {
        font-size: 16px;
        padding: 8px 12px;
    }
}

/* End of whyTop.css */

