

body{
    background-color: aquamarine;
}


.bn{
    width: 100%;
    height: 400px;
}


/* Banner Container */
.banner {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Banner Image */
.banner .bn {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.6);
  z-index: 1;
}

/* Text Content */
.banner h1,
.banner p,
.banner #signup {
  position: relative;
  z-index: 2;
  color: white;
  margin: 0;
  padding: 0 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

/* Heading */
.banner h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: 1px;
  animation: fadeInDown 1s ease-out;
}

/* Paragraph */
.banner p {
  font-size: 1.25rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 30px;
  font-weight: 300;
  opacity: 0.95;
  animation: fadeInUp 1s ease-out 0.3s both;
}

/* Signup Button */
.banner #signup {
  animation: fadeInUp 1s ease-out 0.6s both;
}

.banner #signup a {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.banner #signup a:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(102, 126, 234, 0.6);
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .banner {
    height: 500px;
  }
  
  .banner h1 {
    font-size: 2.8rem;
  }
  
  .banner p {
    font-size: 1.1rem;
    max-width: 700px;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .banner {
    height: 450px;
  }
  
  .banner h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }
  
  .banner p {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 90%;
    margin-bottom: 25px;
  }
  
  .banner #signup a {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .banner {
    height: 400px;
  }
  
  .banner h1 {
    font-size: 1.8rem;
    padding: 0 15px;
  }
  
  .banner p {
    font-size: 0.9rem;
    line-height: 1.5;
    padding: 0 15px;
  }
  
  .banner #signup a {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
}

/* Very Small Screens */
@media (max-width: 360px) {
  .banner {
    height: 380px;
  }
  
  .banner h1 {
    font-size: 1.5rem;
  }
  
  .banner p {
    font-size: 0.85rem;
  }
}













/* About Section */
#our-story.about {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  position: relative;
  overflow: hidden;
}

/* Section Title */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #2c3e50;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
  margin: 0;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  border-radius: 2px;
}

/* About Content Container */
.about-content {
  max-width: 1200px;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* About Text */
.about-text h3 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 25px;
  font-weight: 600;
  line-height: 1.3;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
  text-align: justify;
}

.about-text .btn {
  display: inline-block;
  margin-top: 15px;
  padding: 14px 35px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.about-text .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(102, 126, 234, 0.5);
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

/* About Image */
.about-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.about-image:hover {
  transform: scale(1.03);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Features Grid */
.features {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Feature Cards */
.feature-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

/* Feature Icon */
.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: rotateY(360deg);
}

.feature-icon i {
  font-size: 2rem;
  color: white;
}

/* Feature Text */
.feature-card h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 600;
}

.feature-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

/* Fade In Animation */
.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
}

.fade-in:nth-child(1) {
  animation-delay: 0.2s;
}

.fade-in:nth-child(2) {
  animation-delay: 0.4s;
}

.fade-in:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  #our-story.about {
    padding: 60px 20px;
  }

  .section-title h2 {
    font-size: 2.5rem;
  }

  .about-content {
    gap: 40px;
    margin-bottom: 60px;
  }

  .about-text h3 {
    font-size: 1.75rem;
  }

  .about-text p {
    font-size: 1rem;
  }

  .features {
    gap: 30px;
  }

  .feature-card {
    padding: 35px 25px;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  #our-story.about {
    padding: 50px 15px;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .section-title {
    margin-bottom: 40px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 50px;
  }

  .about-text h3 {
    font-size: 1.5rem;
    text-align: center;
  }

  .about-text p {
    font-size: 0.95rem;
    text-align: left;
  }

  .about-text .btn {
    display: block;
    text-align: center;
    max-width: 200px;
    margin: 15px auto 0;
  }

  .features {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .feature-card {
    padding: 30px 20px;
  }

  .feature-icon {
    width: 70px;
    height: 70px;
  }

  .feature-icon i {
    font-size: 1.75rem;
  }

  .feature-card h3 {
    font-size: 1.3rem;
  }

  .feature-card p {
    font-size: 0.95rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  #our-story.about {
    padding: 40px 10px;
  }

  .section-title h2 {
    font-size: 1.75rem;
  }

  .about-text h3 {
    font-size: 1.3rem;
  }

  .about-text p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .about-text .btn {
    padding: 12px 28px;
    font-size: 0.9rem;
  }

  .feature-card {
    padding: 25px 15px;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
  }

  .feature-icon i {
    font-size: 1.5rem;
  }
}