/* Hero 2 Section Styles */
.hero-2 {
  padding: 80px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.hero-2 .hero-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

/* Hero Content (Left Side) */
.hero-2 .hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-2 .subtitle {
  display: inline-block;
  background: #e3f2fd;
  color: #1976d2;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.hero-2 .main-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #2c3e50;
  margin-bottom: 20px;
  font-family: var(--heading-font);
}

.hero-2 .main-subtitle {
  font-size: 18px;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* Hero Buttons */
.hero-2 .hero-buttons {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 60px;
}

.hero-2 .btn-primary {
  background: #1976d2;
  color: white;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(25, 118, 210, 0.3);
}

.hero-2 .btn-primary:hover {
  background: #1565c0;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(25, 118, 210, 0.4);
}

.hero-2 .btn-video {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #495057;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero-2 .btn-video:hover {
  color: #1976d2;
}

.hero-2 .video-play-circle {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 0.3s ease;
}

.hero-2 .video-play-circle::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(25, 118, 210, 0.1);
  animation: pulse 2s infinite;
}

.hero-2 .btn-video:hover .video-play-circle {
  transform: scale(1.1);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.hero-2 .video-play-circle i {
  font-size: 20px;
  color: #1976d2;
  margin-left: 3px;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Hero Stats */
.hero-2 .hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-2 .stat-item {
  display: flex;
  flex-direction: column;
}

.hero-2 .stat-number {
  font-size: 36px;
  font-weight: 700;
  color: #2c3e50;
  line-height: 1;
  margin-bottom: 8px;
}

.hero-2 .stat-text {
  font-size: 16px;
  color: #6c757d;
}

.hero-2 .stat-divider {
  width: 1px;
  height: 50px;
  background: #dee2e6;
}

/* Hero Image (Right Side) */
.hero-2 .hero-image {
  flex: 1;
  position: relative;
}

.hero-2 .image-wrapper {
  position: relative;
  z-index: 2;
}

.hero-2 .main-image {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}

/* Decorative Elements */
.hero-2 .pattern-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  background: #1976d2;
}

.hero-2 .pattern-circle-1 {
  width: 200px;
  height: 200px;
  top: -50px;
  right: 100px;
  animation: float 6s ease-in-out infinite;
}

.hero-2 .pattern-circle-2 {
  width: 150px;
  height: 150px;
  bottom: 50px;
  left: -30px;
  animation: float 8s ease-in-out infinite reverse;
}

.hero-2 .pattern-line {
  position: absolute;
  width: 300px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #1976d2, transparent);
  top: 50%;
  left: -100px;
  transform: rotate(-45deg);
  opacity: 0.2;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Cloud decorations */
.hero-2::before,
.hero-2::after {
  content: '';
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.5;
  z-index: 0;
}

.hero-2::before {
  width: 120px;
  height: 80px;
  top: 20%;
  right: 10%;
  background: radial-gradient(ellipse at center, #e3f2fd 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(20px);
}

.hero-2::after {
  width: 150px;
  height: 100px;
  bottom: 20%;
  left: 5%;
  background: radial-gradient(ellipse at center, #e3f2fd 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(25px);
}

/* Responsive Design */
@media (max-width: 991px) {
  .hero-2 .hero-wrapper {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-2 .main-title {
    font-size: 36px;
  }
  
  .hero-2 .hero-buttons {
    justify-content: center;
  }
  
  .hero-2 .hero-stats {
    justify-content: center;
  }
  
  .hero-2 .hero-image {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hero-2 {
    padding: 60px 0;
  }
  
  .hero-2 .main-title {
    font-size: 28px;
  }
  
  .hero-2 .main-subtitle {
    font-size: 16px;
  }
  
  .hero-2 .hero-buttons {
    flex-direction: column;
    gap: 20px;
  }
  
  .hero-2 .stat-number {
    font-size: 28px;
  }
  
  .hero-2 .stat-text {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .hero-2 .main-title {
    font-size: 24px;
  }
  
  .hero-2 .btn-primary {
    padding: 12px 28px;
    font-size: 14px;
  }
  
  .hero-2 .hero-stats {
    gap: 30px;
  }
}

/* Community Section Styles */


.community .content h3 {
  font-size: 36px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  line-height: 1.2;
}

.community .content p {
  font-size: 16px;
  color: #6c757d;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* Stats Row */
.community .stats-row {
  display: flex;
  gap: 50px;
  margin: 40px 0;
  padding: 30px 0;
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
}

.community .stat-item {
  flex: 1;
}

.community .stat-item .number {
  font-size: 42px;
  font-weight: 700;
  color: #1976d2;
  line-height: 1;
  margin-bottom: 10px;
}

.community .stat-item .label {
  font-size: 14px;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Mission Statement */
.community .mission-statement {
  position: relative;
  padding: 30px;
  padding-left: 50px;
  margin: 40px 0;
  background: #f8f9fa;
  border-radius: 8px;
}

.community .mission-statement::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #1976d2;
  border-radius: 4px 0 0 4px;
}

.community .mission-statement p {
  margin: 0;
  font-style: italic;
  font-size: 17px;
  line-height: 1.8;
  color: #495057;
}

/* Learn More Button */
.community .btn-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: #1976d2;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.community .btn-learn-more:hover {
  background: #1565c0;
  transform: translateX(5px);
  color: white;
}

.community .btn-learn-more i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.community .btn-learn-more:hover i {
  transform: translateX(5px);
}

/* Image Wrapper */
.community .image-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.community .image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

/* Experience Badge */
.community .experience-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: white;
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  text-align: center;
  min-width: 140px;
}

.community .experience-badge .years {
  font-size: 48px;
  font-weight: 700;
  color: #1976d2;
  line-height: 1;
  margin-bottom: 8px;
}

.community .experience-badge .text {
  font-size: 14px;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

/* Responsive Design for Community Section */
@media (max-width: 991px) {
  .community .stats-row {
    flex-direction: column;
    gap: 30px;
  }
  
  .community .stat-item {
    text-align: center;
  }
  
  .community .image-wrapper {
    margin-top: 40px;
  }
  
  .community .experience-badge {
    bottom: 20px;
    right: 20px;
    padding: 20px 25px;
  }
  
  .community .experience-badge .years {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .community .content h3 {
    font-size: 28px;
  }
  
  .community .stat-item .number {
    font-size: 36px;
  }
  
  .community .mission-statement {
    padding: 20px;
    padding-left: 30px;
  }
  
  .community .mission-statement p {
    font-size: 15px;
  }
  
  .community .btn-learn-more {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .community .content h3 {
    font-size: 24px;
  }
  
  .community .experience-badge {
    position: static;
    margin: 20px auto 0;
    width: fit-content;
  }
}

/* Profile List Styles */
.profile-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 40px 0;
}

.profile-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 16px;
  font-size: 16px;
  color: #6c757d;
  line-height: 1.6;
}

.profile-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background: #e3f2fd;
  color: #1976d2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
}

.community h4 {
  font-size: 20px;
  font-weight: 600;
  color: #2c3e50;
  margin-top: 30px;
  margin-bottom: 20px;
}

/* Responsive adjustments for profile list */
@media (max-width: 768px) {
  .profile-list li {
    font-size: 15px;
    padding-left: 30px;
  }
  
  .profile-list li::before {
    width: 20px;
    height: 20px;
    font-size: 12px;
  }
  
  .community h4 {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .profile-list {
    margin: 20px 0 30px 0;
  }
  
  .profile-list li {
    font-size: 14px;
    margin-bottom: 14px;
  }
}