/* ==== 
 --------- (4.3) banner styles start ---------
 ==== */
.banner {
  padding: 96px 0px 295px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.05"/><circle cx="50" cy="10" r="1" fill="white" opacity="0.03"/><circle cx="20" cy="80" r="1" fill="white" opacity="0.04"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  animation: float 20s ease-in-out infinite;
}

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

@media only screen and (max-width: 991px) {
  .banner {
    padding: 76px 0px 275px;
  }
}

.banner__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.banner__content {
  animation: slideInLeft 1s ease-out;
}

.banner__badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.banner__title {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, #fff, #f8f9ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.banner__subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.banner__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.banner__btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.banner__btn--primary {
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.banner__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.banner__btn--outline {
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: transparent;
}

.banner__btn--outline:hover {
  background: white;
  color: #667eea;
  transform: translateY(-2px);
}

.banner__stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
}

.banner__stat {
  text-align: center;
}

.banner__stat-number {
  font-size: 2rem;
  font-weight: bold;
  color: white;
  display: block;
}

.banner__stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.5rem;
}

.banner__breadcrumb {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 1rem 2rem;
  border-radius: 25px;
  display: inline-block;
  margin-top: 2rem;
}

.banner__breadcrumb-item {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
}

.banner__breadcrumb-item:hover {
  color: white;
}

.banner__breadcrumb-separator {
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0.5rem;
}

.banner__visual {
  position: relative;
  animation: slideInRight 1s ease-out;
}

.banner__illustration {
  position: relative;
  z-index: 2;
}

.banner__floating-cards {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.banner__floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  animation: floatCard 6s ease-in-out infinite;
}

.banner__floating-card:nth-child(1) {
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.banner__floating-card:nth-child(2) {
  bottom: 20%;
  left: 5%;
  animation-delay: 2s;
}

.banner__floating-card:nth-child(3) {
  top: 50%;
  right: -5%;
  animation-delay: 4s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-15px) rotate(1deg); }
  66% { transform: translateY(5px) rotate(-1deg); }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Responsive Design */
@media only screen and (max-width: 1199px) {
  .banner__title {
    font-size: 3rem;
  }
  
  .banner__container {
    gap: 3rem;
  }
}

@media only screen and (max-width: 991px) {
  .banner__container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .banner__title {
    font-size: 2.5rem;
  }
  
  .banner__stats {
    justify-content: center;
  }
  
  .banner__cta {
    justify-content: center;
  }
  
  .banner__floating-card:nth-child(3) {
    right: 5%;
  }
}

@media only screen and (max-width: 767px) {
  .banner__title {
    font-size: 2rem;
  }
  
  .banner__subtitle {
    font-size: 1rem;
  }
  
  .banner__stats {
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  .banner__cta {
    flex-direction: column;
    align-items: center;
  }
  
  .banner__btn {
    width: 100%;
    justify-content: center;
  }
}

@media only screen and (max-width: 575px) {
  .banner__container {
    padding: 0 1rem;
  }
  
  .banner__title {
    font-size: 1.8rem;
  }
  
  .banner__stat-number {
    font-size: 1.5rem;
  }
  
  .banner__floating-card {
    padding: 1rem;
    font-size: 0.8rem;
  }
  
  .banner__floating-card:nth-child(1) {
    top: 5%;
    right: 5%;
  }
  
  .banner__floating-card:nth-child(2) {
    bottom: 15%;
    left: 2%;
  }
  
  .banner__floating-card:nth-child(3) {
    top: 40%;
    right: 2%;
  }
}

/* SVG Illustration Styling */
.banner__illustration svg {
  width: 100%;
  height: auto;
  max-width: 500px;
}

/* Secondary banner variations */
.banner--secondary {
  padding: 196px 0px 196px;
}

@media only screen and (max-width: 1199px) {
  .banner--secondary {
    padding: 120px 0px 116px;
  }
}

@media only screen and (max-width: 991px) {
  .banner--secondary {
    padding: 100px 0px 96px;
  }
}

.banner--tertiary {
  padding: 96px 0px 235px;
}

@media only screen and (max-width: 991px) {
  .banner--tertiary {
    padding: 76px 0px 215px;
  }
}

.banner--tertiary .banner__title {
  margin-bottom: 20px;
}

@media only screen and (max-width: 991px) {
  .banner--tertiary .banner__title {
    margin-bottom: 14px;
  }
}

/* ==== 
 --------- (4.3) banner styles end ---------
 ==== */