@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-padding-top: 2rem;
    scroll-behavior: smooth;
    list-style: none;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
}
:root{
    --main-color: #fe5b3d;
    --second-color: #ffac38;
    --text-color: #444;
    --gradient: linear-gradient(#fe5b3d, #ffac38);

}

html::-webkit-scrollbar{
    width: 0.5rem;
}

html::-webkit-scrollbar-track{
    background: transparent;
}

html::-webkit-scrollbar-thumb {
    background: var(--main-color);
    border-radius: 5rem;
}

section {
    padding: 50px 100px;
}

/* NAV  */

.navbar{
    display: flex;

}
.navbar li {
    position: relative;
}

.header{
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 1rem 2rem;
   background: #fff;
   box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
   position: relative;
}

.logo img {
    height: 40px;
    width: auto;
}

.menu-icon {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}


#menu-icon:hover{
    background-color: #f0f0f0;
}

.navbar {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1rem;
}

.navbar li {
    margin: 0;
}

.navbar button {
    background: none;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    font-size: 1rem;
}

.navbar button:hover {
    background-color: #f0f0f0;
}
.header-btn{
    margin-left: 1rem;
}

.sign-in{
    background: #007bff;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.sign-in:hover{
    background: #0056b3;
}

/* Hero */

.home {
    width: 100%;
    min-height: 100vh;
    position: relative;
    background: url(/img/home.png);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    display: grid;
    align-items: center;
    grid-template-columns: repeat(2, 1fr);
    padding: 30px;
}

.text h1{
    font-size: 3.5rem;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.text span {
    color: var(--main-color);
}

.text > p {
    margin: 00.5rem 0 1rem;
}

.app-stores{
    display: flex;
}

.app-stores img{
    width: 50px;
    margin-right: 1rem;
    
}

/* Repair */

.heading{
    text-align: center;
}

.heading span{
    font-weight: 500;
    
}
.heading h1{
    font-size: 1.5rem;
}

.repair-container{
    display: grid;
    align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(250px, auto));
    gap: 1rem;
    margin-top: 2rem;
}

.repair-container .box{
    text-align: center;
    padding: 20px;

}

.repair-container .box #icon{
    font-size: 34px;
    padding: 10px;
    background: #eeeff1;
    border-radius: 0.5rem;
    color: var(--main-color)
}
.repair-container .box h2{
    font-size: 1.3rem;
    font-weight: 500;
    margin: 1.4rem 0 0.5rem;

}
.repair-container .box #icon:hover, 
.repair-container .box ri-calendar-check-fill{
    background: var(--gradient);
    color: #ffffff;
}

/* services */

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, auto));
    gap: 1rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.services-container .box{
    padding: 10px;
    border-radius: 1rem;
    box-shadow: 1px 4px 41px rgba(0, 0, 0, 0.1);
}

.services-container .box .box-img{
    width: 100%;
    height: 200px;
}

.services-container .box .box-img img{
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    object-fit: cover;
    object-position: center;
}

.summary {
  font-size: 10.5px;
  color: #000;
}

h3 {
  text-decoration: none;
  color: #000;
}
.middle, .relative {
  text-align: center;
  padding: 5px 20px;
}

.jobs{
  line-height: 2;
}

.details{
  font-size: 12px;
  padding: 30px;
  margin: 20px
}

.details ul {
  padding: 10px;
}

.details h2{
  padding: 10px 0px;
}

.details li{
  list-style: disc;
}

/* About */

.about-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 2rem;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.about-img img{
    width: 100%;
}

.about-text span{
    font-weight: 500;
    color: var(--main-color);
    text-transform: uppercase;
}

.about-text p{
    margin: 0.5rem 0 1.4rem;
}

.about-text .btn{
    padding: 10px 20px;
    background: #474fa0;
    color: #fff;
    border-radius: 0.5rem;
}

.about-text .btn:hover{
    background: var(--main-color);
}

/* Reviews */
.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, auto));
    gap: 1rem;
   margin: 3rem 1rem;
}

.rev-img{
    width: 70px;
    height: 70px;
}

.rev-img img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 2px solid var(--second-color);
}

.reviews-container .box{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    box-shadow: 1px 4px 41px rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
}

.reviews-container .box h2 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0.5rem 0 0.5rem;
}

.reviews-container .box p{
    font-style: italic;
}

.reviews-container .box .stars .bx{
    color: var(--main-color);
}

/* Footer */

.contact{
    background: linear-gradient(to top right, #fe5b3d, #ffec38);
    display: flex;
    justify-content: space-around;
    padding: 50px;
}

#logo {
    width: 50px;
}

.links a {
    font-weight: bold;
    color: rgb(255, 255, 255);
}

.contact > .logo img{
   margin-left: 100px;
}

.logo p {
    font-weight: bold;
    color: #444;
}

.copyright{
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social a{
    color: #444;
    padding: 10px;
    font-size: 21px;
}

.header-btn a{
    padding: 10px 20px;
    color: var(--text-color);
    font-weight: 500;
}

.header-btn .sign-in{
    background: #057ee2;
    color: #fff;
    border-radius: 0.5rem;
}

.header-btn .sign-in:hover{
    background: var(--main-color);

}

.powerclip-box {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  border: 2px solid #333;
}

.powerclip-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.text {
    padding: 20px;
    margin: 2px;
}
.group{
    float: left;
    display: block;
    padding: 20px;
    height: 400px;
    width: 500px;
    margin: 0;
}

.grouped{
    float: right;
    display: block;
    padding: 20px;
    height: 450px;
    width: 500px;
}

.words{
    padding: 155px 15px;
    margin: 0px 0px;
    justify-content: center;
    align-items: baseline;
}

#first{
    background-color: #057ee2;
}

#second{
    background-color: #ffac38;
}

#third {
    background-color: #ffec38;
}

.bottom{
   clear: both;
}

.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #eeeff1;
  font-size: 3rem;
}

/* CONTACT */

.fourth{
    width: 600px;
}
#cont{
  background: none;
}

.text p, h2{
    padding: 0px 20px;
}
 .fa {
  padding: 10px 20px;
 }

 .center {
  text-align: center;
  padding: 2px 0px;
 }
/* MARKETPLACE */

.marketing{
    margin-top: 20px;
    padding: 10px;
}

.marketing h1, #buy {
      text-align: center;
      margin-bottom: 30px;
      color: #333;
    }

    .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      max-width: 1200px;
      margin: auto;
    }

    .product-card {
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s;
    }

    .product-card:hover {
      transform: translateY(-5px);
    }

    .product-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .product-info {
      padding: 15px;
    }

    .product-title {
      font-size: 18px;
      margin-bottom: 10px;
      color: #333;
    }

    .product-price {
      font-size: 16px;
      color: #007b00;
      margin-bottom: 15px;
    }

    .product-btn {
      display: inline-block;
      padding: 8px 16px;
      background-color: #0056b3;
      color: #fff;
      text-decoration: none;
      border-radius: 4px;
      font-size: 14px;
    }

    .product-btn:hover {
      background-color: #003e87;
    }

    /* FORM */


.form-wrapper {
  display: flex;
  justify-content: flex-end; /* Align form to the right */
  padding: 40px;
  background-color: #f9f9f9;
  min-height: 100vh;
  box-sizing: border-box;
}

.contact-form {
  background-color: #fff;
  padding: 32px;
  border-radius: 8px;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.form-title {
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 600;
  color: #333;
}

.form-group {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
}

input,
textarea,
select {
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #007bff;
}

.error {
  color: #e63946;
  font-size: 12px;
  margin-top: 4px;
}

.submit-btn {
  background-color: #007bff;
  color: white;
  padding: 12px 16px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.2s ease-in-out;
}

.submit-btn:hover {
  background-color: #b36e00;
}

.submit-btn:disabled {
  background-color: #aaa;
  cursor: not-allowed;
}
.hero-text {
    padding-right: 50px;
    margin-right: 50px;
}

.hero-text h1{
    font-size: 3rem;
}
.hero-text span{
    color: var(--main-color);
}

/* Form */
 form {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  animation: slideUp 0.6s ease-out;
} 

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.training::before {
  display: block;
  font-size: 2.5rem;
  font-weight: 300;
  text-align: center;
  color: #333;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 3px solid #667eea;
}

/* .training {
  margin: 20px ;
} */

.content {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-size: 25px;
  padding: 10px 0px;
}

form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  align-items: start;
}

.form-control {
  display: flex;
  flex-direction: column;
  grid-column: span 1;
}

.form-control label {
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: capitalize;
}

.form-control input,
.form-control select {
  padding: 15px 18px;
  border: 2px solid #e1e5e9;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fafbfc;
  font-family: inherit;
}

.form-control input:focus,
.form-control select:focus {
  outline: none;
  border-color: #667eea;
  background: white;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  transform: translateY(-2px);
}

.form-control input:hover,
.form-control select:hover {
  border-color: #b8c6ea;
}

/* File Input Specific Styling */
.form-control input[type="file"] {
  padding: 12px;
  background: white;
  cursor: pointer;
  border-style: dashed;
}

.form-control input[type="file"]::-webkit-file-upload-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  margin-right: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.form-control input[type="file"]::-webkit-file-upload-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Select Dropdown Styling */
.form-control select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
}

/* Error Message Styling */
.error {
  color: #e74c3c;
  font-size: 0.85rem;
  margin-top: 6px;
  font-weight: 500;
  min-height: 20px;
  display: flex;
  align-items: center;
}

/* Button Container */
form button {
  grid-column: 1 / -1;
  justify-self: center;
  margin-top: 20px;
}

/* Button Styling */
button {
  padding: 15px 40px;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  margin: 0 10px;
}

/* Submit Button */
button[type="submit"] {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

button[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

button:active {
  transform: translateY(0);
}

/* Input Validation States */
.form-control input:invalid:not(:focus):not(:placeholder-shown) {
  border-color: #e74c3c;
  background-color: #fdf2f2;
}

.form-control input:valid:not(:focus):not(:placeholder-shown) {
  border-color: #27ae60;
  background-color: #f2fdf5;
}

/* Placeholder Styling */
.form-control input::placeholder {
  color: #a0a0a0;
  font-style: italic;
}

/* Number Input Arrows */
.form-control input[type="number"]::-webkit-outer-spin-button,
.form-control input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* .form-control input[type="number"] {
  -moz-appearance: textfield;
} */

/* Loading State */
.loading {
  opacity: 0.7;
  pointer-events: none;
}

.loading button[type="submit"]::after {
  content: "";
  width: 16px;
  height: 16px;
  margin-left: 10px;
  border: 2px solid transparent;
  border-top: 2px solid #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  display: inline-block;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/* Mobile Styles */
         @media (max-width: 768px) {
          .header {
            padding: 1rem;
          }

          .home {
            background-image: none;
            background-color: #000;
            padding: 10px;
          }

          .app-stores img{
          width: 30px;
          margin-right: 1rem;
          }


          .text h1{
            font-size: 32px;
            text-align: center;
            justify-content: center;
            align-items: center;
            color: #fff;
          }

          .text p{
            color: #fff;
          }

          .words{
            padding: 5px 15px;
            margin: 0px 0px;
            justify-content: center;
            align-items: baseline;
          }
          
          .hidden {
            content: hidden;
          }

          /* FOOTER */

          .contact p{
            font-size: small;
          }

          .contact > .logo img{
            margin-left: 1px;
          }

          #cont{
            display: flex;
            justify-content: flex-end; /* Align form to the right */
            padding: 40px;
            background-color: #f9f9f9;
            min-height: 50vh;
            box-sizing: border-box;
          }

          #cont input{
            width: 100px;
            height: 20px;

          }

          #cont textarea{
            width: 100px;
          }

          #cont input::placeholder{
            font-size: 10px;
          }

          #cont textarea::placeholder{
            font-size: 10px;
          }

          #centered{
            font-size: 20px;
          }

          .training {
            margin: 10px;
          }
          /* ABOUT */
          #text p{
            color: black;
          }

          .centered{
            font-size: 32px;
          }

          .center {
            font-size: 20px;
          }

          #text h2{
            font-size: 20px;
          }

          .group {
            width: 350px;
            height: 300px;
          }

          .grouped {
            width: 350px;
            height: 300px;
          }

          .content {
            font-size: 20px;
          }

          /* Marketing */

          .marketing h1{
            font-size: 30px;
          }

          .box{
            padding-right: 20px;
          }

          .menu-icon {
            display: block;
            z-index: 1001;
          }

          .navbar {
            position: fixed;
            top: 0;
            right: -100%;
            width: 280px;
            height: 100vh;
            background: white;
            flex-direction: column;
            justify-content: flex-start;
            align-items: stretch;
            padding: 80px 2rem 2rem;
            box-shadow: -2px 0 10px rgba(0,0,0,0.1);
            transition: right 0.3s ease;
            z-index: 1000;
          }

          .navbar.active {
            right: 0;
          }

          .navbar li {
            width: 100%;
            margin-bottom: 1rem;
          }

          .navbar button {
            width: 100%;
            text-align: left;
            padding: 1rem;
            font-size: 1.1rem;
          }

          .header-btn {
            width: 100%;
            margin-left: 0;
            margin-top: 1rem;
          }

          .sign-in {
            display: block;
            width: 100%;
            text-align: center;
            padding: 1rem;
          }

          /* Overlay when menu is open */
          .navbar.active::before {
            content: '';
            position: fixed;
            top: 0;
            left: -280px;
            width: 100vw;
            height: 100vh;
            background: rgba(0,0,0,0.5);
            z-index: -1;
          }

          body {
            padding: 10px;
          }
  
          .training {
            grid-template-columns: 1fr;
          padding: 30px 20px;
          gap: 20px;
        }
        
          .form-control {
            grid-column: span 1;
          }
          
          .form-control:nth-child(4),
          .form-control:nth-child(8) {
            grid-column: span 1;
          }
          
          form::before {
            font-size: 2rem;
            margin-bottom: 20px;
          }
          
          button {
            width: 100%;
            margin: 5px 0;
          }

          
        }

        /* Small mobile devices */
        @media (max-width: 480px) {
          .training{
            width : 350px;
          }
          .navbar {
            width: 50%;
            right: -100%;
          }

          .navbar.active {
            right: 0;
          }
         
          form {
            padding: 20px 15px;
          }
          
          form::before {
            font-size: 1.8rem;
          }
          
          .form-control input,
          .form-control select {
            padding: 12px 15px;
            font-size: 16px; /* Prevents zoom on iOS */
            width: 300px;
          }
        }

        /* Dark Mode Support */
            @media (prefers-color-scheme: dark) {
              
              form {
                background: #2c3e50;
                color: #ecf0f1;
              }
              
              form::before {
                color: #ecf0f1;
                border-bottom-color: #3498db;
              }
              
              .form-control label {
                color: #ecf0f1;
              }
              
              .form-control input,
              .form-control select {
                background: #34495e;
                border-color: #4a6741;
                color: #ecf0f1;
              }
              
              .form-control input:focus,
              .form-control select:focus {
                border-color: #3498db;
                background: #2c3e50;
              }
            }
