@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Josefin Sans", sans-serif;
    
}
/* .ball {
    width: 20px;
    height: 20px;
    border: 2px solid;
    border-radius: 50%;
} */
body, .container {
    margin: 0;
    padding: 0;
    color:  #C3C3C3;
}

#menu a {
    position: relative;
    text-decoration: none;
    /* color: #EB9C44; */
    padding-bottom: 2px;
    color: #C3C3C3;
    padding: 10px;
}

#menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0%;
    background-color: #EB9C44;
    transition: width 0.9s ease;
}

#two{
    align-items: center;
    margin-left: 70px;
    font-weight: 900;
}

#menu a:hover::after {
    width: 100%;
}

#span{
    color: #EB9C44;
}

.second{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.sec-container{
    height: 800px;
    width: 1100px;
    margin-top: 26px;
    background-color: #000000; 
}

body {
    background-color: #000;
    font-family: 'Poppins', sans-serif;
    color: white;
  }
  .section-title {
    text-transform: uppercase;
    font-size: 14px;
    color: #bbb;
    margin-bottom: 5px;
    letter-spacing: 1px;
  }

  .sec-container h1{
    font-size: 32px;
    color:  #C3C3C3;
    margin-top: 15px;
    font-weight: 800;
    margin-left: 17px;
  }
  .section-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: orange;
    margin-top: 5px;
  }
  h1 {
    font-size: 36px;
    margin: 10px 0 30px;
  }
  .contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
    margin-left: 20px;
  }
  
  /* UPDATED CONTACT BOX WITH HOVER EFFECTS */
  .contact-box {
    background-color: #1b1b1b;
    flex: 1 1 45%;
    min-width: 300px;
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 10px;
    margin-right: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }

  .contact-box:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(68, 168, 235, 0.2);
    border: 1px solid rgba(68, 146, 235, 0.3);
  }

  /* UPDATED ICON WITH ROTATION EFFECT */
  .icon {
    width: 50px;
    height: 50px;
    background-color: #2c2c2c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: rgb(12, 125, 255);
    margin-right: 15px;
    transition: all 0.5s ease;
  }

  .contact-box:hover .icon {
    transform: rotate(30deg);
    background-color: #EB9C44;
    color: white;
  }

  .box-content {
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
  }

  .contact-box:hover .box-content {
    transform: translateX(10px);
  }

  .box-content h3 {
    margin: 0;
    font-size: 18px;
    color: white;
  }
  .box-content p, .box-content a {
    margin: 5px 0 0;
    font-size: 14px;
    color: #ccc;
    text-decoration: none;
  }
  .social-icons {
    margin-top: 5px;
    display: flex;
    gap: 10px;
  }
  .social-icons a {
    color: rgb(0, 153, 255);
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  .social-icons a:hover {
    transform: translateY(-5px);
  }

  .contact-box:hover .social-icons a {
    transform: translateY(-8px) scale(1.1);
  }

  /* DIFFERENT COLORS FOR DIFFERENT BOXES ON HOVER */
  .contact-box:nth-child(1):hover .icon {
    background-color: #EB9C44;
  }

  .contact-box:nth-child(2):hover .icon {
    background-color: #4471eb;
  }

  .contact-box:nth-child(3):hover .icon {
    background-color: #34c759;
  }

  .contact-box:nth-child(4):hover .icon {
    background-color: #af52de;
  }

  .beta {
    background-color: grey;
    color: white;
    padding: 2px 5px;
    font-size: 10px;
    border-radius: 3px;
    margin-left: 5px;
    vertical-align: middle;
  }

#inputone:hover{
    border: 1px solid #EB9C44;
}
#inputAddress2:hover{
    border: 1px solid #EB9C44;
    border-radius: 9px;
}

.submit-btn:hover{
    transform: translateY(-6px);
    /* background-color: #4F3428; */
}

#back{
    background-color: #323232;
    color: white;
}

#back:hover{
    border: 1px solid #1e85c9;
}

#back:active{
    border: 0;
}

.form-control{
    border: none;
    color: white;
  }
  .form-control::placeholder {
    color: #bbb;
  }
  .submit-btn {
    height: 45px;
    width: 120px;
    border-radius: 30px;
    margin-top: 30px;
    color: whitesmoke;
    background-color: #4471eb;
    border: none;
    transition: all 0.3s ease;
  }
  .input-row {
    margin-bottom: 20px;
  }

textarea placeholder {
    color: #bbb;
}

#back {
    background: #1a1a1a !important;
    color: white !important;
    padding: 12px 15px !important;
    border-radius: 8px !important;
}

#back:focus {
    border-color: #333 !important;
    box-shadow: none !important;
    outline: none !important;
    background: #1a1a1a !important;
}

#back::placeholder {
    color: #ffffff !important;
    }


    
@media (max-width:786px) {
    #nav{
        width: 100%;
       overflow: hidden;
    }

    .three h1{
        margin-top: -10px;
    }
  
    .second{
        height: 1200px;
       background-color: #000;
      margin-top: 20px;
    }
    .sec-container h1{
        position: relative;
        bottom: 120px;
    }

    #fporm{
        position: relative;
        bottom: 100px;
    }

    .contact-container{
        position: relative;
        bottom: 120px;
    }

    #menu-btn{
        font-size: 20px;
    }
    #two h4{
      margin-left: -80px;
      font-size: 22px;
    }
    .iconone{
        width: 93%;
        height: auto;
        margin: auto;
        margin-top: 11px;
       color: aliceblue;
       height: 100px;
    }

    .second{
        width: 99%;
    }
    .byy{
      flex-direction: column; 
    }
    #inputone{
        width: 90%;
    }

    #inputtwo{
      width: 90%;
      margin-left: 20px;
    }

    .inputfive{
        width: 90%;
        margin-right: 10px;
      }
      #kkk{
        width: 70%;
      }

      #inputAddress2{
        width: 80%;
        margin-right: 0px;
        border-radius: 10px;
      }
}

@media (max-width: 1250px) {
  .second{
    height: 1200px;
   background-color: #000;
  margin-top: 20px;
}
}