/* General Styles */
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.crome {
  font-weight: 700 !important;
  color: #2c3e50;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Section Padding */
section {
  padding: 4rem 0;
}

@media (max-width: 768px) {
  section {
    padding: 3rem 0;
  }
}

/* Hero Section (if uncommented) */
.hero-section {
  min-height: 80vh;
  background: linear-gradient(135deg, #6e8efb, #a777e3);
  color: white;
}

.hero-section h1 {
  color: white;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-section .lead {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.btn-glass {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

/* Company Introduction */
.company-intro img {
  max-height: 500px;
  object-fit: cover;
  width: 100%;
}

/* Internship Program */
.internship-info {
  background-color: #f8f9fa;
}

/* Mission & Vision */
.glow-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
}

.glow-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Why Choose Us */
.why-us .feature-box {
  background: white;
  transition: transform 0.3s ease;
}

.why-us .feature-box:hover {
  transform: translateY(-10px);
}

.feature-box h4 {
  color: #050505;
  margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #6e8efb, #a777e3);
  color: white;
}

.cta-section h2 {
  color: white;
}

.cta-section .btn-primary {
  background-color: white;
  color: #6e8efb;
  border: none;
  padding: 0.75rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-section .btn-primary:hover {
  background-color: #f8f9fa;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }

  .hero-section .lead {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .company-intro .col-md-6,
  .internship-info .col-md-6 {
    order: initial !important;
  }

  .mission-vision .col-md-6 {
    margin-bottom: 1.5rem;
  }

  .why-us .col-md-4 {
    margin-bottom: 1.5rem;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-section .lead {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  section {
    padding: 2rem 0;
  }

  .hero-section {
    min-height: 70vh;
  }

  .hero-section h1 {
    font-size: 1.8rem;
  }

  .hero-section .lead {
    font-size: 1rem;
  }

  .btn-glass,
  .cta-section .btn-primary {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .glow-card,
  .feature-box {
    padding: 1.5rem !important;
  }
}

/* Animation Adjustments for Mobile */
@media (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0s !important;
  }
}
