 :root {
            --primary-orange: #1C4297;
            --secondary-cream: #f0f3fb;
            --dark-text: #2c3e50;
            --light-text: #7f8c8d;
        }

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

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

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

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


    .hero {
  padding: 100px 0 80px;
  background: linear-gradient(135deg, #f0f3fb 0%, #f0f3fb 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-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: 30px;
  line-height: 1.6;
}

.hero-meta {
  display: flex;
  gap: 40px;
  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;
  font-size: 1.2rem;
  min-width: 20px;
}

.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 */

@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-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;
  }

  .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: 2rem;
            font-size: 2.5rem;
            text-align: center;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--primary-orange);
            margin: 1rem auto;
            border-radius: 2px;
        }

        .content-card {
            background: white;
            border-radius: 15px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            box-shadow: 0 10px 30px rgba(28, 66, 151, 0.15);
            border: 1px solid var(--secondary-cream);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

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

        .process-step {
            background: linear-gradient(135deg, var(--secondary-cream) 0%, white 100%);
            border-radius: 12px;
            padding: 2rem;
            margin-bottom: 2rem;
            border-left: 5px solid var(--primary-orange);
            transition: all 0.3s ease;
        }

        .process-step:hover {
            transform: translateX(10px);
            box-shadow: 0 8px 25px rgba(28, 66, 151, 0.15);
        }

        .step-number {
            background: var(--primary-orange);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .image-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .gallery-item {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .gallery-item:hover {
            transform: scale(1.05);
        }

        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: white;
            padding: 1.5rem 1rem 1rem;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .tech-highlight {
            background: linear-gradient(135deg, var(--primary-orange), #1C4297);
            color: white;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
            text-align: center;
        }

        .supervisor-info {
            background: var(--secondary-cream);
            border-radius: 12px;
            padding: 2rem;
            margin: 2rem 0;
            border: 2px solid var(--primary-orange);
            text-align: center;
        }

        .video-container {
            position: relative;
            width: 100%;
            height: 0;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            margin: 2rem 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .video-placeholder {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary-orange), #1C4297);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            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;
            margin: 0.5rem;
        }

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

        .icon-feature {
            text-align: center;
            padding: 2rem;
            margin: 1rem 0;
        }

        .icon-feature i {
            font-size: 3rem;
            color: var(--primary-orange);
            margin-bottom: 1rem;
        }

        .conclusion-section {
            background: linear-gradient(135deg, var(--dark-text) 0%, #34495e 100%);
            color: white;
            padding: 4rem 0;
            text-align: center;
            margin-top: 4rem;
        }

        .footer {
            background: var(--dark-text);
            color: white;
            text-align: center;
            padding: 2rem 0;
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .content-card {
                padding: 1.5rem;
            }
            
            .image-gallery {
                grid-template-columns: 1fr;
            }
        }

        .loading-animation {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255,255,255,.3);
            border-radius: 50%;
            border-top-color: #fff;
            animation: spin 1s ease-in-out infinite;
        }
.custom-image-wrapper {
                    position: relative;
                    display: inline-block;
                }
            /* Always visible caption below the image */
            .custom-image-wrapper .gallery-caption {
                position: absolute;
                bottom: 0;
                left: 0;
                right: 0;
                width: 100% !important;
                padding: 1.5rem 1rem 1rem;
                font-size: 0.9rem;
                font-weight: 500;
                border-radius: 10px;
                background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
                color: white;
                box-sizing: border-box;
            }
        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        .fade-in {
            animation: fadeIn 0.8s ease-in;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }