body {
    /* Create a dark linear gradient background */
    background: linear-gradient(to bottom, #0d0d0d, #000033);
    margin: 0;
    font-family: Arial, Helvetica, sans-serif !important;
    /*font-family: 'Arial', sans-serif;*/
    padding: 0;
    /*background-color: #f4f4f4;
    color: #333;*/
  }

 /* .container {
    // Center the content 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 80vh;
  }*/

  h1 {
    /* Style the heading */
    color: white;
    font-size: 5em;
  }

  img {
    /* Style the logo */
    width: 300px;
    height: auto;
  }

  .animation {
    /* Create a CSS animation */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1000;
  }

  .animation::before, .animation::after {
    /* Create two pseudo-elements */
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: radial-gradient(circle, transparent, #00ffff03, transparent);
    background-size: 50px 50px;
    background-repeat: repeat;
    animation: move 10s linear infinite alternate;
  }

  .animation::after {
    /* Rotate the second pseudo-element */
    transform: rotate(90deg);
  }

  @keyframes move {
    /* Define the animation */
    from {
      transform: translate(0, 0);
    }
  
    to {
      transform: translate(50px, 50px);
    }
  }

  hr {
    /* Style the horizontal rule */
    border-top: 1px solid white;
    width: 80%;
  }

  footer {
    /* Style the footer */
    color: white;
    font-size: 0.8em;
  }
  
  .navbar {
  background-color: #333;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-logo {
  color: #fff;
  font-size: 24px;
}
.navbar-logo img{
	width: 28px;
}
.navbar-logo a{
    font-size: larger;
    color: white;
    text-decoration: none;
    font-variant: petite-caps
}

.navbar-links {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.navbar-links li {
  margin-left: 20px;
  font-size: larger;
  padding: 10px;
}

.navbar-links a {
  color: #fff;
  text-decoration: none;
  font-variant: petite-caps;
}

.hamburger-menu {
  display: none;
  cursor: pointer;
}

.hamburger-menu span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #fff;
  margin: 5px;
}

@media (max-width: 768px) {
  .navbar-links {
    display: none;
  }

  .hamburger-menu {
    display: block;
  }
}





/******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/


/* sadomaha concept.css */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

header {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

.swiper-slide{
	background:#ffffff70;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav li {
    margin-right: 20px;
}

nav a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}

nav a:hover {
    color: #f05050;
}

.header-icons {
    display: flex;
    align-items: center;
}

.icon {
    margin-left: 15px;
    color: #333;
    font-size: 18px;
    transition: color 0.3s;
}

.icon:hover {
    color: #f05050;
}

.hero {
    background-color: #f4f4f4;
    padding: 100px 0;
}

.hero-content {
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #f05050;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #c03939;
}

.about {
    padding: 80px 0;
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about-text {
    width: 45%;
}

.about-text h2 {
    font-size: 36px;
    font-weight: bold;
    color: #eee;
    margin-bottom: 20px;
}

.about-text h3 {
    font-size: 24px;
    color: #edd;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 16px;
    color: #ddd;
    line-height: 1.6;
    margin-bottom: 30px;
}

.about-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.stat {
    text-align: center;
}

.stat .number {
    font-size: 48px;
    font-weight: bold;
    color: #f05050;
    margin-bottom: 5px;
}

.stat .label {
    font-size: 16px;
    color: #666;
}

.about-img {
    width: 45%;
}

.about-img img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.services {
    background-color: #fff;
    padding: 80px 0;
}

.services-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.service {
    width: 30%;
    text-align: center;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.service img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
}

.service h4 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.service p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.about-sadomaha {
    background-color: #f4f4f4;
    padding: 80px 0;
}

.about-sadomaha-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about-sadomaha-text {
    width: 45%;
}

.about-sadomaha-text h2 {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.about-sadomaha-text h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.about-sadomaha-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.about-sadomaha-img {
    width: 45%;
}

.about-sadomaha-img img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.projects {
    background-color: #fff;
    padding: 80px 0;
}

.projects-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.project {
    width: 30%;
    text-align: center;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.project img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
}

.project h4 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.project p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.proposal {
    background-color: #f4f4f4;
    padding: 80px 0;
}

.proposal-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.proposal-img {
    width: 45%;
}

.proposal-img img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.proposal-form {
    width: 45%;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.proposal-form h3 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

.call-to-action {
    background-color: #f05050;
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

.call-to-action h3 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.testimonials {
    background-color: #fff;
    padding: 80px 0;
}

.testimonials-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.testimonial {
    width: 45%;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.testimonial blockquote {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial p {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
}

.rating {
    display: flex;
    align-items: center;
    color: #f05050;
    font-size: 18px;
}

.news-blog {
    background-color: #f4f4f4;
    padding: 80px 0;
}

.news-blog-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.news-blog-item {
    width: 30%;
    text-align: center;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.news-blog-item .date {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.news-blog-item h4 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.news-blog-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.newsletter {
    background-color: #f05050;
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

.newsletter h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.newsletter form {
    display: inline-block;
}

.newsletter input {
    width: 300px;
    padding: 10px;
    border: 1px solid #fff;
    border-radius: 5px;
    font-size: 16px;
    color: #fff;
    margin-right: 10px;
}

.newsletter button {
    padding: 10px 20px;
    background-color: #fff;
    color: #f05050;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.newsletter button:hover {
    background-color: #eee;
}

footer {
    background-color: #333;
    color: #fff;
    padding: 80px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    width: 30%;
}

.footer-logo a {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

.footer-logo p {
    font-size: 14px;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-contact {
    width: 30%;
}

.footer-contact ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 10px;
}

.footer-contact i {
    margin-right: 10px;
    color: #f05050;
}

.footer-contact a {
    color: #fff;
    text-decoration: none;
}

.footer-posts {
    width: 30%;
}

.footer-posts ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-posts li {
    margin-bottom: 15px;
}

.footer-posts img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 10px;
}

.footer-posts a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
}

.footer-posts span {
    display: block;
    font-size: 12px;
    color: #999;
}

.copyright {
    background-color: #222;
    padding: 15px 0;
    text-align: center;
}

.copyright p {
    font-size: 12px;
    color: #666;
}

.social-icons {
    display: inline-block;
    margin-top: 10px;
}

.social-icons .icon {
    margin-left: 10px;
    color: #fff;
    font-size: 18px;
    transition: color 0.3s;
}

.social-icons .icon:hover {
    color: #f05050;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .about-content {
        flex-direction: column;
    }

    .about-text,
    .about-img {
        width: 100%;
        margin-bottom: 30px;
    }

    .services-content,
    .projects-content,
    .testimonials-content,
    .news-blog-content {
        flex-direction: column;
    }

    .service,
    .project,
    .testimonial,
    .news-blog-item {
        width: 100%;
        margin-bottom: 30px;
    }

    .proposal-content {
        flex-direction: column;
    }

    .proposal-img,
    .proposal-form {
        width: 100%;
        margin-bottom: 30px;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-logo,
    .footer-contact,
    .footer-posts {
        width: 100%;
        margin-bottom: 30px;
    }
}

section {
  transition: opacity 0.5s;
}

section.hidden {
  opacity: 0;
}

#smauthchallenge{
    width: 100%;
    background: url(../media/images/backgroundnew_01.jpg);
    background-size: contain;
    position: fixed;
    left: 0;
    top: 40vh;
    padding: 50px;
}



.timeline {
  display: flex;
  flex-direction: column;
  margin: 20px auto;
  position: relative;
}
.timeline__event {
  margin-bottom: 20px;
  position: relative;
  display: flex;
  margin: 20px 0;
  border-radius: 6px;
  align-self: center;
  width: 50vw;
}
.timeline__event:nth-child(2n+1) {
  flex-direction: row-reverse;
}
.timeline__event:nth-child(2n+1) .timeline__event__date {
  border-radius: 0 6px 6px 0;
}
.timeline__event:nth-child(2n+1) .timeline__event__content {
  border-radius: 6px 0 0 6px;
}
.timeline__event:nth-child(2n+1) .timeline__event__icon:before {
  content: "";
  width: 2px;
  height: 100%;
  background: #f6a4ec;
  position: absolute;
  top: 0%;
  left: 50%;
  right: auto;
  z-index: -1;
  transform: translateX(-50%);
  -webkit-animation: fillTop 2s forwards 4s ease-in-out;
          animation: fillTop 2s forwards 4s ease-in-out;
}
.timeline__event:nth-child(2n+1) .timeline__event__icon:after {
  content: "";
  width: 100%;
  height: 2px;
  background: #f6a4ec;
  position: absolute;
  right: 0;
  z-index: -1;
  top: 50%;
  left: auto;
  transform: translateY(-50%);
  -webkit-animation: fillLeft 2s forwards 4s ease-in-out;
          animation: fillLeft 2s forwards 4s ease-in-out;
}
.timeline__event__title {
  font-size: 1.2rem;
  line-height: 1.4;
  text-transform: uppercase;
  font-weight: 600;
  color: #9251ac;
  letter-spacing: 1.5px;
}
.timeline__event__content {
  padding: 20px;
  box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.25), 0 18px 36px -18px rgba(0, 0, 0, 0.3), 0 -12px 36px -8px rgba(0, 0, 0, 0.025);
  background: #fff;
  width: calc(40vw - 84px);
  border-radius: 0 6px 6px 0;
}
.timeline__event__date {
  color: #f6a4ec;
  font-size: 1.5rem;
  font-weight: 600;
  background: #9251ac;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 0 20px;
  border-radius: 6px 0 0 6px;
}
.timeline__event__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9251ac;
  padding: 20px;
  align-self: center;
  margin: 0 20px;
  background: #f6a4ec;
  border-radius: 100%;
  width: 40px;
  box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.25), 0 18px 36px -18px rgba(0, 0, 0, 0.3), 0 -12px 36px -8px rgba(0, 0, 0, 0.025);
  padding: 40px;
  height: 40px;
  position: relative;
}
.timeline__event__icon i {
  font-size: 32px;
}
.timeline__event__icon:before {
  content: "";
  width: 2px;
  height: 100%;
  background: #f6a4ec;
  position: absolute;
  top: 0%;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
  -webkit-animation: fillTop 2s forwards 4s ease-in-out;
          animation: fillTop 2s forwards 4s ease-in-out;
}
.timeline__event__icon:after {
  content: "";
  width: 100%;
  height: 2px;
  background: #f6a4ec;
  position: absolute;
  left: 0%;
  z-index: -1;
  top: 50%;
  transform: translateY(-50%);
  -webkit-animation: fillLeftOdd 2s forwards 4s ease-in-out;
          animation: fillLeftOdd 2s forwards 4s ease-in-out;
}
.timeline__event__description {
  flex-basis: 100%;
}
.timeline__event--type2:after {
  background: #555ac0;
}
.timeline__event--type2 .timeline__event__date {
  color: #87bbfe;
  background: #555ac0;
}
.timeline__event--type2:nth-child(2n+1) .timeline__event__icon:before, .timeline__event--type2:nth-child(2n+1) .timeline__event__icon:after {
  background: #87bbfe;
}
.timeline__event--type2 .timeline__event__icon {
  background: #87bbfe;
  color: #555ac0;
}
.timeline__event--type2 .timeline__event__icon:before, .timeline__event--type2 .timeline__event__icon:after {
  background: #87bbfe;
}
.timeline__event--type2 .timeline__event__title {
  color: #555ac0;
}
.timeline__event--type3:after {
  background: #24b47e;
}
.timeline__event--type3 .timeline__event__date {
  color: #aff1b6;
  background-color: #24b47e;
}
.timeline__event--type3:nth-child(2n+1) .timeline__event__icon:before, .timeline__event--type3:nth-child(2n+1) .timeline__event__icon:after {
  background: #aff1b6;
}
.timeline__event--type3 .timeline__event__icon {
  background: #aff1b6;
  color: #24b47e;
}
.timeline__event--type3 .timeline__event__icon:before, .timeline__event--type3 .timeline__event__icon:after {
  background: #aff1b6;
}
.timeline__event--type3 .timeline__event__title {
  color: #24b47e;
}
.timeline__event:last-child .timeline__event__icon:before {
  content: none;
}

@media (max-width: 786px) {
  .timeline__event {
    flex-direction: column;
    align-self: center;
  }
  .timeline__event__content {
    width: 100%;
  }
  .timeline__event__icon {
    border-radius: 6px 6px 0 0;
    width: 100%;
    margin: 0;
    box-shadow: none;
  }
  .timeline__event__icon:before, .timeline__event__icon:after {
    display: none;
  }
  .timeline__event__date {
    border-radius: 0;
    padding: 20px;
  }
  .timeline__event:nth-child(2n+1) {
    flex-direction: column;
    align-self: center;
  }
  .timeline__event:nth-child(2n+1) .timeline__event__date {
    border-radius: 0;
    padding: 20px;
  }
  .timeline__event:nth-child(2n+1) .timeline__event__icon {
    border-radius: 6px 6px 0 0;
    margin: 0;
  }
}
@-webkit-keyframes fillLeft {
  100% {
    right: 100%;
  }
}
@keyframes fillLeft {
  100% {
    right: 100%;
  }
}
@-webkit-keyframes fillTop {
  100% {
    top: 100%;
  }
}
@keyframes fillTop {
  100% {
    top: 100%;
  }
}
@-webkit-keyframes fillLeftOdd {
  100% {
    left: 100%;
  }
}
@keyframes fillLeftOdd {
  100% {
    left: 100%;
  }
}