* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #f7f9fc;
  color: #333;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 40px;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.about-text {
  flex: 1 1 500px;
}

.about-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.about-text span {
  color: #007acc;
}

.feature {
  margin-bottom: 25px;
}

.feature h3 {
  font-size: 20px;
  color: #007acc;
  margin-bottom: 8px;
}

.feature p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

.about-image {
  flex: 1 1 400px;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.why-choose {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 60px 10%;
  gap: 40px;
  flex-wrap: wrap;
  background: #f9f9f9;
  border-top: 1px solid #eee;
  margin-top: 60px;
}

.why-choose .text-content {
  flex: 1 1 50%;
  max-width: 600px;
}

.why-choose .text-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #111;
}

.why-choose .text-content p {
  margin-bottom: 30px;
  font-size: 1rem;
  color: #555;
}

.why-choose .feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.why-choose .feature img {
  width: 36px;
  margin-right: 15px;
  margin-top: 6px;
}

.why-choose .feature h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: #222;
}

.why-choose .feature p {
  font-size: 0.95rem;
  color: #444;
}

.why-choose .image-content {
  flex: 1 1 40%;
  text-align: center;
}

.why-choose .image-content img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  .why-choose {
    flex-direction: column-reverse;
    padding: 40px 5%;
  }

  .why-choose .text-content,
  .why-choose .image-content {
    flex: 1 1 100%;
    max-width: 100%;
  }
}


#hero-wrapper {
    color: rgb(38, 32, 32);
    text-transform: uppercase;
    font-size: 36px;
    font-weight: bold;
    font-family: 'Roboto';
    text-align: center;
    background-color: #e1eef5;
    position: relative;
    display: block;
    width: 100%;
    height: 230px;
}

#hero-title {
    font-size: 80px;
}

#hero-subtext {
    position: relative;
    top: -10px;
}

#hero-flip {
    position: relative;
    height: 50px;
    overflow: hidden;
    top: -10px;
}

#hero-tagline {
    position: relative;
    top: -10px;
}

#hero-flip > div > div {
    color: #fff;
    padding: 4px 12px;
    height: 50px;
    margin-bottom: 45px;
    display: inline-block;
}

#hero-flip div:first-child {
    animation: show 5s linear infinite;
}

#hero-flip div div {
    background: #42c58a;
}

#hero-flip div:first-child div {
    background: #4ec7f3;
}

#hero-flip div:last-child div {
    background: #DC143C;
}

@keyframes show {
    0% {
        margin-top: -270px;
    }
    5% {
        margin-top: -180px;
    }
    33% {
        margin-top: -180px;
    }
    38% {
        margin-top: -90px;
    }
    66% {
        margin-top: -90px;
    }
    71% {
        margin-top: 0px;
    }
    99.99% {
        margin-top: 0px;
    }
    100% {
        margin-top: -270px;
    }
}
/* ✅ Fix: Hero wrapper visibility in dark mode */
body.dark-mode #hero-wrapper {
  background-color: #1e1e1e !important;
  color: #ffffff !important;
}

body.dark-mode #hero-wrapper div,
body.dark-mode #hero-wrapper h1 {
  color: #ffffff !important;
}
@media only screen and (max-width: 500px) {
    /* #hero-wrapper {
        font-size: 20px;
        position: relative;
        top: 50px;
    }

    #hero-title {
        font-size: 25px;
        position: relative;
        top: 25px;
    }

    #hero-subtext {
        position: relative;
        top: 30px;
        align-items: center;
    }

    #hero-flip {
        position: relative;
        top: 30px;
    }

    #hero-tagline {
        position: relative;
        top: 30px;
    }*/
        #hero-title {
        font-size: 70px;
        position: relative;
    
    }
    
}
