/* Home Section */
.home-section {
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
 background: linear-gradient(to bottom, #f0f0f0, #ffffff);
  margin-bottom: 10px;
}

.home-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
}

.home-content {
  flex: 1;
  padding-right: 3rem;
  max-width: 800px;
}

.image-collage {
  border-radius: 8px;
  padding-top: 32px;
  position: relative;
  width: 55%;
  height: auto;
}

.collage-image {
  width: 100%;
  display: none;
  transition: opacity 0.5s ease;
  border-radius: 8px;
}

.collage-image.active {
  display: block;
}

.collage-dots {
  text-align: center;
  margin-top: 10px;
}

.collage-dots .dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: #bbb;
  display: inline-block;
  border-radius: 50%;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.collage-dots .dot.active {
  background-color: #333;
}

.home-section h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 300;
  color: #000;
  line-height: 1.2;
}

.home-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  color: #000;
  line-height: 1.6;
}

.btn-primary {
  background: #1e3a8a;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary:hover {
  background: #1e40af;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
}

/* Mobile Responsive Styles */

/* Tablet (768px and below) */
@media (max-width: 768px) {
  .home-section {
    padding: 3rem 1.5rem;
  }
  
  .home-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  
  .home-content {
    padding-right: 0;
    order: 2;
    max-width: 100%;
  }
  
  .image-collage {
    width: 80%;
    order: 1;
    padding-top: 50px;
    max-width: 400px;
  }
  
  .home-section h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
  }
  
  .home-section p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
  }
  
  .btn-primary {
    padding: 12px 25px;
    font-size: 1rem;
  }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
  .home-section {
    padding: 1rem 1rem;
  }
  
  .home-wrapper {
    gap: 1.5rem;
  }
  
  .image-collage {
    width: 90%;
    max-width: 350px;
    padding-top: 60px;
  }
  
  .home-section h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }
  
  .home-section p {
    font-size: 1rem;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
  }
  
  .btn-primary {
    padding: 12px 20px;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    width: auto;
    min-width: 200px;
  }
  
  .collage-dots .dot {
    height: 8px;
    width: 8px;
    margin: 0 3px;
  }
}

/* Small Mobile (360px and below) */
@media (max-width: 360px) {
  .home-section {
    padding: 1.5rem 0.75rem;
  }
  
  .home-section h1 {
    font-size: 1.8rem;
  }
  
  .home-section p {
    font-size: 0.95rem;
    padding: 0;
  }
  
  .btn-primary {
    padding: 10px 18px;
    font-size: 0.9rem;
    min-width: 180px;
  }
  
  .image-collage {
    width: 95%;
    max-width: 300px;
    padding-top: 60px;
  }
}