/* 
 * Bootcamps and Internships Page Specific Styles for Shraddha
 * This file contains styles specific to the bootcamps and internships page
 * It should be included after the main style.css file
 */

/* Hero Section Styles */
.bootcamp-hero {
    position: relative;
    background-color: #000;
    padding-top: 7rem;
    overflow: hidden;
    background-image: linear-gradient(to right, rgba(0,0,0,0.9) 50%, rgba(0,0,0,0.7) 100%), 
                      url('../images/bootcamp-hero-bg.jpg');
    background-size: cover;
    background-position: center right;
  }
  
  .bootcamp-hero .btn {
    transition: all 0.3s ease;
  }
  
  .bootcamp-hero .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }
  
  .bootcamp-counter-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 10px;
    background-color: rgba(245, 78, 2, 0.1);
    transition: all 0.3s ease;
  }
  
  .bootcamp-counter-item:hover {
    transform: translateY(-5px);
    background-color: rgba(245, 78, 2, 0.15);
  }
  
  .bootcamp-counter-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brand-color);
    font-family: 'Fredoka', sans-serif;
    margin-bottom: 0.5rem;
    line-height: 1;
  }
  
  .bootcamp-counter-label {
    font-size: 1rem;
    color: #717171;
    margin-bottom: 0;
  }
  
  /* Bootcamp Cards */
  .bootcamp-card {
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
  }
  
  .bootcamp-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(245, 78, 2, 0.15);
  }
  
  .bootcamp-card .card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .bootcamp-card:hover .card-img-top {
    transform: scale(1.05);
  }
  
  .bootcamp-card .card-body {
    padding: 1.5rem;
  }
  
  .bootcamp-card .badge {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
  }
  
  .bootcamp-card .badge-ai {
    background-color: #8C52FF;
    color: white;
  }
  
  .bootcamp-card .badge-ml {
    background-color: #00C7B1;
    color: white;
  }
  
  .bootcamp-card .badge-cloud {
    background-color: #0077FF;
    color: white;
  }
  
  .bootcamp-card .badge-web {
    background-color: #FF5722;
    color: white;
  }
  
  .bootcamp-card .badge-mobile {
    background-color: #FF9800;
    color: white;
  }
  
  .bootcamp-card .card-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  
  .bootcamp-card .card-date {
    font-size: 0.85rem;
    color: #717171;
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
  }
  
  .bootcamp-card .card-date i {
    color: var(--brand-color);
    margin-right: 0.5rem;
  }
  
  .bootcamp-card .card-location {
    font-size: 0.85rem;
    color: #717171;
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
  }
  
  .bootcamp-card .card-location i {
    color: var(--brand-color);
    margin-right: 0.5rem;
  }
  
  .bootcamp-card .card-text {
    color: #555;
    margin-bottom: 1.5rem;
  }

  /* ===== GALLERY SECTION STYLES ===== */
  /* Gallery Container */
  .gallery-container {
    max-width: 100%;
  }

  /* Gallery Item Styles */
  .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    height: 250px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: #f8f9fa;
  }

  .gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }

  /* Gallery Image Styles */
  .gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
  }

  .gallery-image[src] {
    opacity: 1;
  }

  .gallery-item:hover .gallery-image {
    transform: scale(1.1);
  }

  /* Gallery Overlay */
  .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
      135deg,
      rgba(245, 78, 2, 0.9) 0%,
      rgba(0, 0, 0, 0.7) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .gallery-item:hover .gallery-overlay {
    opacity: 1;
  }

  /* Gallery Content */
  .gallery-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.3s ease;
  }

  .gallery-item:hover .gallery-content {
    transform: translateY(0);
  }

  .gallery-content i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
  }

  .gallery-content p {
    margin: 0;
    font-weight: 500;
    font-size: 0.9rem;
  }

  /* Gallery Call to Action */
  .gallery-cta {
    background: linear-gradient(135deg, var(--brand-color) 0%, #d94500 100%);
    border-radius: 1rem;
    padding: 3rem 2rem;
    box-shadow: 0 10px 30px rgba(245, 78, 2, 0.3);
    position: relative;
    overflow: hidden;
  }

  .gallery-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 3s infinite;
  }

  @keyframes shimmer {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
    50% { transform: translate(-50%, -50%) rotate(180deg); }
  }

  .gallery-cta-content {
    position: relative;
    z-index: 2;
  }

  .gallery-cta-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-family: 'Fredoka', sans-serif;
  }

  .gallery-cta .btn {
    font-size: 1.1rem;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    font-weight: 600;
  }

  .gallery-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }

  /* Gallery Modal Styles */
  .modal-content {
    border: none;
    border-radius: 0.75rem;
    overflow: hidden;
  }

  #modalImage {
    border-radius: 0 0 0.75rem 0.75rem;
    max-height: 70vh;
    object-fit: contain;
  }

  /* Loading Animation for Gallery */
  .gallery-image:not([src]) {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
  }

  @keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
  }
  
  /* Technology Features */
  .tech-feature-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    padding: 2rem;
  }
  
  .tech-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .tech-feature-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(245, 78, 2, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
  }
  
  .tech-feature-card:hover .tech-feature-icon {
    background-color: var(--brand-color);
    color: white;
  }
  
  .tech-feature-icon i {
    font-size: 2rem;
    color: var(--brand-color);
    transition: all 0.3s ease;
  }
  
  .tech-feature-card:hover .tech-feature-icon i {
    color: white;
  }
  
  .tech-feature-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  
  .tech-feature-text {
    color: #555;
    margin-bottom: 0;
  }
  
  /* Testimonial Carousel */
  .bootcamp-testimonial {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    margin: 1rem;
  }
  
  .bootcamp-testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .testimonial-quote {
    color: var(--brand-color);
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .testimonial-content {
    color: #555;
    font-style: italic;
    margin-bottom: 1.5rem;
  }
  
  .testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
  }
  
  .testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .testimonial-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
  }
  
  .testimonial-role {
    color: #717171;
    font-size: 0.85rem;
  }
  
  /* Registration Form */
  .registration-form {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 2rem;
  }
  
  .form-control:focus, 
  .form-select:focus {
    border-color: rgba(245, 78, 2, 0.5);
    box-shadow: 0 0 0 0.25rem rgba(245, 78, 2, 0.25);
  }
  
  .form-control::placeholder {
    color: #adb5bd;
    font-size: 0.9rem;
  }
  
  .form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #495057;
  }
  
  /* College Partner Logos */
  .college-partner {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
  }
  
  .college-logo {
    height: 100px;
    width: 100px;
    padding: 1rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  
  .college-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }
  
  .college-logo img {
    max-width: 100%;
    max-height: 70px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
  }
  
  .college-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
  }
  
  .college-name {
    text-align: center;
    font-weight: 500;
    font-size: 0.9rem;
    color: #495057;
  }
  
  /* Process Timeline */
  .timeline-container {
    position: relative;
    padding-left: 2rem;
  }
  
  .timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: rgba(245, 78, 2, 0.2);
    border-radius: 2px;
  }
  
  .timeline-item {
    position: relative;
    margin-bottom: 0.6rem;
  }
  
  .timeline-item:last-child {
    margin-bottom: 0;
  }
  
  .timeline-point {
    position: absolute;
    left: -2.45rem;
    width: 30px;
    height: 30px;
    background-color: var(--brand-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
  }
  
  .timeline-content {
    background-color: white;
    border-radius: 10px;
    padding: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }
  
  .timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }
  
  .timeline-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
  
  .timeline-text {
    color: #555;
    margin-bottom: 0;
  }
  
  /* Features List */
  .feature-list-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
  }
  
  .feature-list-icon {
    color: var(--brand-color);
    font-size: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
  }
  
  .feature-list-content {
    flex: 1;
  }
  
  .feature-list-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
  }
  
  .feature-list-text {
    color: #555;
    margin-bottom: 0;
  }
  
  /* Bootcamp CTA */
  .bootcamp-cta {
    background-color: #000;
    border-radius: 10px;
    overflow: hidden;
    padding: 3rem;
    position: relative;
  }
  
  .bootcamp-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/cta-pattern.svg');
    background-size: cover;
    opacity: 0.05;
    z-index: 0;
  }
  
  .bootcamp-cta-content {
    position: relative;
    z-index: 1;
  }
  
  .bootcamp-cta .btn-brand {
    background-color: var(--brand-color);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .bootcamp-cta .btn-brand:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(245, 78, 2, 0.3);
  }
  
  /* Technology Stack Card */
  .tech-stack-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    text-align: center;
    height: 100%;
  }
  
  .tech-stack-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .tech-stack-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .tech-stack-logo img {
    max-width: 100%;
    max-height: 100%;
  }
  
  .tech-stack-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  
  .tech-stack-text {
    color: #555;
    margin-bottom: 0;
  }
  
  /* Featured Project Showcase */
  .project-showcase {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }
  
  .project-showcase:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .project-showcase-image {
    height: 250px;
    width: 100%;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .project-showcase-image img {
    max-width: 100%;
    max-height: 100%;
  }
  
  .project-showcase-content {
    padding: 2rem;
  }
  
  .project-showcase-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .project-showcase-text {
    color: #555;
    margin-bottom: 1.5rem;
  }
  
  .project-showcase-features {
    margin-bottom: 1.5rem;
  }
  
  .project-showcase-feature {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
  }
  
  .project-showcase-feature i {
    color: var(--brand-color);
    margin-right: 0.5rem;
  }
  
  .code-snippet {
    background-color: #f8f9fa;
    border-radius: 5px;
    padding: 1.5rem;
    font-family: monospace;
    font-size: 0.85rem;
    color: #333;
    margin-bottom: 1.5rem;
    overflow-x: auto;
  }
  
  .code-snippet pre {
    margin-bottom: 0;
  }
  
  /* Media Queries */
  @media (max-width: 991.98px) {
    .bootcamp-hero {
      padding-top: 6rem;
    }
    
    .bootcamp-counter-item {
      margin-bottom: 1rem;
    }
    
    .bootcamp-cta, .gallery-cta {
      padding: 2rem;
    }

    .gallery-item {
      height: 220px;
    }
  }
  
  @media (max-width: 767.98px) {
    .bootcamp-counter-value {
      font-size: 2rem;
    }
    
    .college-logo {
      height: 80px;
      width: 80px;
    }
    
    .college-logo img {
      max-height: 50px;
    }
    
    .timeline-container {
      padding-left: 1.5rem;
    }
    .timeline-item{
      padding-top: 2rem;
    }
    
    .timeline-point {
      left: -1.95rem;
      width: 25px;
      height: 25px;
      font-size: 0.8rem;
    }

    .gallery-item {
      height: 200px;
      margin-bottom: 1rem;
    }
    
    .gallery-cta {
      padding: 2rem 1rem;
    }
    
    .gallery-cta-content h3 {
      font-size: 1.5rem;
    }
    
    .gallery-content i {
      font-size: 1.5rem;
    }
  }
  
  @media (max-width: 575.98px) {
    .bootcamp-hero .btn {
      display: block;
      width: 100%;
      margin-bottom: 1rem;
    }
    
    .bootcamp-cta, .gallery-cta {
      padding: 1.5rem;
    }
    
    .tech-stack-logo {
      width: 60px;
      height: 60px;
    }

    .gallery-item {
      height: 180px;
    }
    
    .gallery-cta-content h3 {
      font-size: 1.3rem;
    }
  }