* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

::selection {
  background-color: #f47820;
  color: #372a28;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 15px;
  max-width: 1500px;
  margin: auto;
}

header {
  padding: 10px 40px;
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.image-container {
  height: 60px;
  width: 200px;
}

.image-container img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 50%;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  height: 100%;
}

nav {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.nav-container ul {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}

nav a:hover {
  color: #f47820;
  font-weight: 600;
}

nav a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s linear;
}

nav li {
  list-style: none;
}

.btns {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.nav-container button {
  padding: 4px 10px;
  background-color: #372a28;
  border: none;
  outline: none;
  color: white;
  border-radius: 8px;
  cursor: pointer;
}

.nav-container button a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
}

.nav-container button:nth-child(2) {
  background-color: #f47820;
}

.menu {
  display: flex;
  align-items: center;
  z-index: 4;
}

.hamburger {
  position: relative;
  width: 30px;
  height: 4px;
  background-color: #000;
  border-radius: 10px;
  cursor: pointer;
  z-index: 2;
  transition: 0.3s;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  height: 4px;
  right: 0;
  background-color: #000;
  border-radius: 10px;
  transition: 0.3s;
}

.hamburger::before {
  top: -8px;
  width: 20px;
}

.hamburger::after {
  top: 8px;
  width: 25px;
}

.toggle-menu {
  position: absolute;
  width: 30px;
  height: 100%;
  z-index: 3;
  cursor: pointer;
  opacity: 0;
}

.hamburger,
.toggle-menu {
  display: none;
}

header input:checked ~ .hamburger {
  background-color: transparent;
}

header input:checked ~ .hamburger::before {
  top: 0;
  transform: rotate(-45deg);
  width: 30px;
}

header input:checked ~ .hamburger::after {
  top: 0;
  transform: rotate(45deg);
  width: 30px;
}

.about-section {
  width: 100%;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.about-section h1 {
  text-align: center;
  font-size: 4rem;
  margin-top: 10px;
  -webkit-text-stroke: 0.8px #f47820;
}

.about {
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;
  gap: 20px;
}

.about-image {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #372a28;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-info {
  width: 70%;
}

.about-info p {
  width: 100%;
  line-height: 1.8rem;
  text-align: justify;
}

.about-info p:nth-child(1) {
  margin-bottom: 28px;
}

.about-info button {
  margin-top: 6px;
  padding: 8px 12px;
  border-radius: 20px;
  background-color: #f47820;
  border: 1px solid #372a28;
  outline: none;
  cursor: pointer;
}

.about-info button a {
  text-decoration: none;
  color: #372a28;
  font-weight: 500;
}

.founder-info {
  margin-top: 20px;
  color: rgb(5, 5, 69);
}

.founder-info h4 {
  color: inherit;
}

.platform-section {
  width: 100%;
  min-height: 100vh;
  background-color: #fff6f0;
  padding-top: 40px;
}

.platform-section h1 {
  text-align: center;
  font-size: 4rem;
  -webkit-text-stroke: 0.8px #f47820;
}

.platform-section > p {
  text-align: center;
  width: 70%;
  font-family: cursive;
  margin: 10px auto;
  color: rgb(83, 83, 83);
}

.platform-cards {
  margin-top: 4rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  flex-wrap: wrap;
}

.cards {
  width: 50%;
  height: 100%;
}

.platform-cards .card {
  width: 100%;
  background-color: #fff;
  border-radius: 20px;
  padding: 40px 20px;
  border: 2px solid #372a28;
  margin-bottom: 20px;
}

.card h4 {
  font-size: 1.4rem;
  text-align: center;
  color: #f47820;
}

.card p {
  margin-top: 20px;
  text-align: justify;
  font-family: cursive;
  color: rgb(83, 83, 83);
}

.gif {
  width: 40%;
  background-color: white;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid #372a28;
}

.gif img {
  width: 100%;
  height: 100%;
}

.services-section {
  width: 100%;
  min-height: 100vh;
  padding-top: 40px;
  padding-bottom: 40px;
}

.services-section h1 {
  text-align: center;
  font-size: 4rem;
  -webkit-text-stroke: 0.8px #f47820;
}

.services-section > p {
  text-align: center;
  width: 70%;
  font-family: cursive;
  margin: 10px auto;
  color: rgb(83, 83, 83);
}

.service-container {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
  padding: 20px;
}

.item {
  opacity: 0;
  transform: scale(0.8); /* Start smaller */
  transition: opacity 0.6s ease, transform 0.6s ease;
  width: 400px;
  height: 400px;
  background-color: #fff6f0;
  margin-top: 10px;
  border-radius: 10px;
  overflow: hidden;
  padding: 20px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  border: 2px solid #f47820;
}

.item.show {
  opacity: 1;
  transform: scale(1); /* Scale to normal size */
}

.item h4 {
  font-size: 1.4rem;
}

.item ul li {
  margin-bottom: 10px;
}

.platform-features {
  width: 100%;
  padding-top: 40px;
  background-color: #fffbf8;
}

.platform-features h1 {
  text-align: center;
  font-size: 4rem;
  -webkit-text-stroke: 0.8px #f47820;
}

.features-section {
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  width: 90%;
  margin: 0 auto;
}

.platform-features > p {
  text-align: center;
  margin: 0 auto;
  width: 60%;
  color: #777;
  font-family: cursive;
}

.steps {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  gap: 1.8rem;
  flex-wrap: wrap;
}

.step {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  width: 400px;
  padding: 15px 24px;
  text-align: left;
  position: relative;
}

.step.show {
  opacity: 1;
  transform: translateY(0);
}

.step:nth-child(1) {
  border-top: 2px dotted #372a28;
  border-left: 2px dotted #372a28;
  border-right: 2px dotted #372a28;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.step:nth-child(3) {
  border-right: 2px dotted #372a28;
  border-bottom: 2px dotted #372a28;
  border-left: 2px dotted #372a28;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.step h3 {
  font-size: 1.3em;
  color: #333;
  margin-bottom: 10px;
}

.step p {
  font-size: 0.93rem;
  color: #666;
}

.contact-us-section {
  width: 100%;
  background-color: #fff7f1;
  padding-top: 20px;
  padding-bottom: 20px;
}

.contact-us-section > h1 {
  text-align: center;
  font-size: 4rem;
  -webkit-text-stroke: 0.8px #f47820;
}

.contact-us-section > p {
  margin: 0 auto;
  text-align: center;
  font-family: "Oleo Script", system-ui;
  font-size: 20px;
  color: #555;
}

.contact-container {
  width: 100%;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 10%;
}

.contact-item {
  width: 45%;
  border: 2px solid #414141;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-item i {
  font-size: 30px;
  color: #414141;
  margin-bottom: 20px;
}

.contact-info h4 {
  font-size: 16px;
  color: #555;
}

.footer {
  background-color: #1a1e2c;
  color: #e5e7eb;
  padding: 50px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

.company-info {
  margin-right: 40px;
}

.company-info p strong {
  color: #f47820;
  font-weight: 700;
  font-size: 24px;
}

.footer-col {
  flex: 1;
  min-width: 200px;
  margin-bottom: 30px;
}

.footer-logo {
  max-width: 150px;
  margin-bottom: 15px;
  border-radius: 10px;
}

.footer-col h4 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #e5e7eb;
  color: #f47820;
}

.footer-col ul {
  list-style: none;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #e5e7eb;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #ff6b6b;
}

.footer .social-icons {
  display: flex;
  gap: 15px;
}

.footer .social-icons a {
  font-size: 24px;
  color: #e5e7eb;
  transition: color 0.3s;
}

.footer .social-icons a:hover {
  color: #ff6b6b;
}

.footer p {
  font-size: 14px;
  line-height: 1.6;
}

.footer .company-info {
  flex-basis: 100%;
  max-width: 300px;
}

.copyright {
  margin-top: 20px;
  text-align: center;
  color: #fff;
}

.copyright span {
  color: #f47820;
  font-weight: 600;
}



.background-container {
  position: absolute;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  max-width: 1500px;
}


.floating-image {
  position: absolute;
  opacity: 0.2;
  animation: float 10s infinite ease-in-out;
  width: 250px;
  z-index: 1;
}


.floating-image:nth-child(1) {
  top: 10%;
  left: -2%;
}
.floating-image:nth-child(2) {
  top: 5%;
  left: 16%;
}
.floating-image:nth-child(3) {
  top: 5%;
  left: 75%;
}
.floating-image:nth-child(4) {
  top: 30%;
  left: 85%;
}
.floating-image:nth-child(5) {
  top: 45%;
  left: 5%;
}
.floating-image:nth-child(6) {
  top: 55%;
  left: 85%;
}
.floating-image:nth-child(7) {
  top: 80%;
  left: -6%;
}
.floating-image:nth-child(8) {
  top: 70%;
  left: 10%;
}
.floating-image:nth-child(9) {
  top: 80%;
  left: 85%;
}
.floating-image:nth-child(10) {
  top: 80%;
  left: 30%;
}
.floating-image:nth-child(11) {
  top: 10%;
  left: 65%;
}
.floating-image:nth-child(12) {
  top: 75%;
  left: 60%;
}
.floating-image:nth-child(13) {
  top: 40%;
  left: 20%;
}
.floating-image:nth-child(14) {
  top: 52%;
  left: 72%;
  scale: 2;
}
.floating-image:nth-child(15) {
  top: 80%;
  left: 45%;
}
.floating-image:nth-child(16) {
  top: -3%;
  left: 30%;
}
.floating-image:nth-child(17) {
  top: 6%;
  left: 45%;
}


@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}


#hero-section {
  height: 100vh;
  width: 100%;
  background-image: url("https://rs.profiledraft.com/rs/site/turn2web/assets/img/web\ design\ wallpaper.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}


header {
  padding: 10px 40px;
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}


.image-container {
  height: 60px;
  width: 200px;
}


.image-container img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}


.home-section {
  height: 600px;
  width: 100%;
  padding: 0 20px;
}


.home-section .heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}


.home-section h1 {
  font-size: 6.25rem;
}


.home-section h1 span {
  color: #f47820;
}


.heading > h2 {
  font-size: 3.75rem;
  color: #f47820;
  text-align: start;
  line-height: 1rem;
  -webkit-text-stroke: 0.5px black;
  text-shadow: 6px 6px 8px rgba(0, 0, 0, 0.2);
  font-family: "Dancing Script", cursive;
  text-transform: lowercase;
}


.heading > p {
  font-size: 34px;
  color: #6b6b6b;
  font-weight: 500;
  font-family: "Oleo Script", system-ui;
}


.heading > span {
  align-self: flex-end;
  color: #f47820;
  font-size: 40px;
  letter-spacing: 4px;
  margin-top: -30px;
}


.website-creation {
  background-color: #372a28;
  padding: 20px 16px;
  color: white;
  width: 70%;
  margin: 16px auto;
  margin-top: 50px;
  border-radius: 24px;
  box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.2s linear;
}


.website-creation h2 {
  font-weight: 600;
  font-size: 27px;
  transition: all 0.2s linear;
  line-height: 1.2rem;
  letter-spacing: 2px;
  word-spacing: 1px;
  font-family: cursive;
}


.website-creation:hover {
  background-color: white;
  color: #372a28;
  border: 1px solid #372a28;
}


.design {
  background-color: #f47820;
  padding: 12px 30px;
  color: white;
  width: fit-content;
  margin: 0 auto;
  border-radius: 24px;
  cursor: pointer;
  transition: all 0.2s linear;
}


.design h2 {
  font-weight: 400;
  font-size: 20px;
  transition: all 0.2s linear;
}


.design:hover {
  background-color: white;
  color: #f47820;
  border: 1px solid #f47820;
}


.heading a {
  text-decoration: none;
  color: inherit;
}

@media (max-width: 1024px) {
  header {
    padding: 10px 20px;
  }

  .about {
    width: 100%;
  }



  .contact-item {
    width: 33%;
  }

  .contact-info p {
    font-size: 14px;
  }
  .heading h1 {
    font-size: 5.5rem;
  }


  .heading > h2 {
    font-size: 3rem;
  }


  .heading > span {
    font-size: 30px;
    letter-spacing: 3px;
    margin-top: -20px;
  }


  .heading a {
    font-size: 20px;
  }


  .website-creation {
    width: 60%;
  }


  .design {
    width: 40%;
  }

}

@media (max-width: 768px) {
  .hamburger,
  .toggle-menu {
    display: flex;
  }

  .nav-container {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 0;
    right: -300px;
    background-color: #00000084;
    width: 300px;
    height: 100%;
    padding-top: 20px;
    z-index: 3;
    backdrop-filter: blur(6px);
    transition: right 0.5s ease;
  }

  nav {
    height: unset;
    flex-direction: column;
  }

  nav li {
    margin-bottom: 24px;
  }

  nav li a {
    font-weight: 600;
    color: #fff;
  }

  .btns {
    height: unset;
    flex-direction: column;
    align-items: unset;
    gap: 0;
    margin-top: 4px;
  }

  .btns button {
    margin-bottom: 24px;
    padding: 8px;
  }

  .image-container {
    width: 150px;
    height: 50px;
  }

  .about {
    flex-direction: column;
    padding: 10px;
  }
  .about-info {
    width: 100%;
    height: 50%;
    gap: 20px;
  }

  .about-info p {
    text-align: justify;
  }

  .platform-cards {
    flex-direction: column;
  }

  .cards {
    width: 100%;
  }

  .gif {
    width: 100%;
  }


  .features-section {
    flex-direction: column;
    padding: unset;
    padding-bottom: 40px;
  }

  .content {
    width: 100%;
  }

  .steps {
    width: 100%;
  }

  .contact-container {
    flex-direction: column;
    gap: 20px;
  }

  .contact-item {
    width: 100%;
    height: 200px;
  }

  .contact-info p {
    font-size: 12px;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-col {
    flex-basis: 100%;
    max-width: none;
    margin-bottom: 40px;
  }

  .footer .social-icons {
    justify-content: center;
  }

  .company-info {
    margin-right: 0;
  }

  .footer-col ul {
    align-items: unset;
  }

  .hero-section {
    height: 100%;
    width: 100%;
    background-image: url("https://rs.profiledraft.com/rs/site/turn2web/assets/img/Untitled\ 768\ x\ 1024\ px\ 1.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }


  .home-section h1 {
    font-size: 60px;
  }


  .heading > span {
    font-size: 24px;
    letter-spacing: 2px;
  }


  .website-creation,
  .design {
    padding: 12px 20px;
    border-radius: 16px;
  }


  .website-creation {
    width: 70%;
  }


  .design {
    width: 50%;
  }


  .heading h1 {
    font-size: 3.7rem;
  }


  .heading > h2 {
    font-size: 2.55rem;
  }


  .heading > p {
    font-size: 24px;
  }


  .design h2 {
    font-size: 16px;
  }


  .website-creation h2 {
    font-size: 18px;
  }


  .image-container {
    width: 150px;
    height: 50px;
  }
}

@media (max-width: 517px) {
  header {
    padding: 10px;
  }

  .about-section h1 {
    font-size: 40px;
  }

  .platform-features h1 {
    font-size: 40px;
  }

  .platform-section h1 {
    font-size: 40px;
  }

  .contact-us-section > h1 {
    font-size: 40px;
  }

  .services-section  h1 {
    font-size: 40px;
  }


  .heading > h2 {
    text-align: center;
    margin-bottom: 1.2rem;
  }


  .heading h1 {
    line-height: 5rem;
    margin-bottom: 1rem;
    font-size: 4.25rem;
  }


  .heading > p {
    margin-top: 1rem;
  }


  .background-container {
    display: none;
  }


  .hero-section {
    height: 100%;
    width: 100%;
    background-image: url("https://rs.profiledraft.com/rs/site/turn2web/assets/img/Untitled\ 400\ x\ 768\ px\ 400\ x\ 768\ px.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }


  .heading > span {
    font-size: 20px;
    letter-spacing: 1px;
    margin-top: -1rem;
    align-self: center;
  }


  .website-creation h2,
  .design h2 {
    font-size: 18px;
  }


  .website-creation,
  .design {
    padding: 10px;
    margin: 10px auto;
    border-radius: 12px;
  }


  .website-creation {
    margin-top: 3rem;
  }
}

@media (max-width: 480px) {
  .nav-container {
    width: 60%;
  }

  .step p {
    font-size: 0.8rem;
  }

  .item {
    padding: 20px 10px;
  }

  .item p {
    font-size: 0.9rem;
  }

  .platform-features > p {
    width: 90%;
  }
}

@media (max-width: 400px) {
  .btns {
    gap: 2px;
  }

  .nav-container {
    right: -400px;
  }

  .nav-container {
    width: 100%;
  }

  .nav-container button:nth-child(2) {
    margin-right: 5px;
  }

  .platform-cards {
    gap: 2rem;
    margin-top: 20px;
  }

  .platform-section > p {
    width: 100%;
    font-size: 12px;
  }
  .heading > h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.25rem;
  }


  .heading a {
    font-size: 16px;
  }


  .heading h1 {
    line-height: 4.35rem;
    margin-bottom: 1rem;
    font-size: 3.75rem;
  }


  .heading > p {
    margin-top: 1rem;
  }


  .website-creation,
  .design {
    width: 100%;
  }


  .website-creation h2,
  .design h2 {
    font-size: 14px;
  }
}

#cookieBoard {
  position: fixed;
  bottom: 1rem;
  left: 0;
  background:white;
  border: 1px solid #ddd;
  padding: 1rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 0.4rem;
}

#cookieBoard h4 {
  margin-block: 0.5rem;
  padding: 0;
  color: black;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
}

#cookieBoard button {
  border: 1px solid #eee;
  background-color: black;
  color: white;
  border-radius: 0.4rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
}

#cookieBoard .close {
  position: absolute;
  top: 5px;
  right: 5px;
  padding: 0.3rem 0.5rem;
  background-color: transparent;
  color: #000;
  font-weight: 600;
}
#cookieBoard .close:hover {
  background-color: #db0000;
  color: #fff;
}
#cookieBoard{
  bottom: 1rem;
  right: 7px;
  background: #ffe3d0;
  width: 50%;
}

#cookieBoard button{
  text-transform: uppercase;
}
@media (max-width: 567px) {
  #cookieBoard{
    width: 90%;
  }
}