 :root {
            --primary-orange: #1C4297 !important;
            --secondary-cream: #f0f3fb;
            --text-dark: #333;
            --accent-light: f0f3fb;
        }

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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background: linear-gradient(135deg, var(--secondary-cream) 0%, var(--accent-light) 100%);
        }

        .text-orange{
            color: #1C4297;
        }
        .bg-orange{
            background-color: #1C4297 !important;

        }
        .bgorange{
            background-color: #f0f3fb  !important;
        }

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

/* Hero Section */
/* === HERO SECTION STYLING === */

.hero {
  padding: 100px 0 80px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-light) 100%);
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  animation: fadeInUp 0.8s ease-out;
}

.hero-content > * {
  margin-left: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1C4297;
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #2d3748 0%, #1C4297 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #4a5568;
  margin-bottom: 15px;
  line-height: 1.6;
}

.hero-description {
  color: #4a5568;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.hero-meta {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4a5568;
  font-size: 0.95rem;
}

.meta-item i {
  color: #1C4297;
}

.hero-cta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.bg-orange {
  background: #1C4297;
}

.text-white {
  color: white;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-visual {
  animation: fadeInRight 0.8s ease-out;
}

.visual-card {
  position: relative;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transform: rotate(5deg);
  transition: transform 0.3s ease;
}

.visual-card:hover {
  transform: rotate(0deg) scale(1.02);
}

.hero-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.visual-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #1C4297;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}


/* === RESPONSIVE DESIGN === */

@media (max-width: 991px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-meta {
    justify-content: center;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-content {
    align-items: center;
  }

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

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

  .hero-image {
    height: 300px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.8rem;
  }

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

  .hero-description {
    font-size: 0.95rem;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-meta {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .visual-overlay {
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}



        .section-title {
            color: var(--primary-orange);
            font-weight: 700;
            margin-bottom: 30px;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--primary-orange);
        }

        .content-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(28, 66, 151, 0.1);
            padding: 40px;
            margin: 30px 0;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .content-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(28, 66, 151, 0.15);
        }

        .mechanism-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }

        .mechanism-item {
            background: var(--secondary-cream);
            border-radius: 12px;
            padding: 25px;
            border-left: 4px solid var(--primary-orange);
            transition: all 0.3s ease;
        }

        .mechanism-item:hover {
            background: white;
            box-shadow: 0 8px 25px rgba(28, 66, 151, 0.1);
        }

        .image-container {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            margin: 20px 0;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }

        .image-container img {
            width: 100%;
            height: auto;
            transition: transform 0.3s ease;
        }

        .image-container:hover img {
            transform: scale(1.05);
        }

        .video-container {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            margin: 20px 0;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }

        /* .video-container video {
            width: 100%;
            height: auto;
        } */

        .video-container {
    aspect-ratio: 16 / 9; /* Force all videos to have the same ratio */
    height: auto;
}

.video-container video {
    width: 100%;
    height: 100%; /* Ensure it fills the container */
    object-fit: cover; /* Prevent black bars if aspect doesn't match */
}


        .highlight-box {
            background: linear-gradient(135deg, var(--primary-orange), #1C4297);
            color: white;
            padding: 25px;
            border-radius: 12px;
            margin: 30px 0;
            position: relative;
        }

        .highlight-box::before {
            content: '"';
            font-size: 60px;
            position: absolute;
            top: -10px;
            left: 20px;
            opacity: 0.3;
        }

        .supervisor-info {
            background: var(--accent-light);
            border: 2px solid var(--secondary-cream);
            border-radius: 12px;
            padding: 20px;
            margin: 30px 0;
            text-align: center;
        }

        .btn-custom {
            background: var(--primary-orange);
            border: none;
            color: white;
            padding: 12px 30px;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-custom:hover {
            background: #1C4297;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(28, 66, 151, 0.3);
            color: white;
        }

        .stats-row {
            background: white;
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .stat-item {
            text-align: center;
            padding: 20px;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-orange);
            display: block;
        }

        .stat-label {
            color: var(--text-dark);
            font-weight: 500;
            margin-top: 5px;
        }

        @media (max-width: 768px) {
            .hero-section {
                padding: 50px 0;
            }
            
            .content-card {
                padding: 25px;
            }
            
            .mechanism-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }