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

/* cursor */
.cursor,
.cursor-trail {
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
}

.cursor {
  width: 12px;
  height: 12px;
  background: #fa6901;
  border-radius: 50%;
  mix-blend-mode: difference;
}

.cursor-trail {
  width: 30px;
  height: 30px;
  background: #fa6901;
  border-radius: 50%;
  filter: blur(8px);
}

/* scroll bar */
html::-webkit-scrollbar {
  width: 7px;
}

html::-webkit-scrollbar-track {
  background: rgba(227, 148, 148, 0.442);
}

html::-webkit-scrollbar-thumb {
  background: #fa6901;
  border-radius: 5rem;
}


html {
  font-size: 62.5%;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.5;
}

header {
  min-height: 60px;
  background-color: black;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  min-height: 60px;
}

.logo {
  float: left;
}

.logo img {
  width: 96px;
  flex-grow: 0.1;
  align-items: center;
  cursor: pointer;
}

nav ul {
  flex-grow: 0.8;
  cursor: pointer;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  list-style: none;
  transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

nav a {
  color: white;
  text-decoration: none;
  padding: 20px 1em;
  transition: background-color .5s linear;
  font-size: 17px;
  font-weight: 400;
}

nav a:hover {
  color: #fa6901;
  transition: all .5s linear;
}

.login-sec button {
  padding: 7px 15px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 18px;
  background-color: #fa6901;
  color: white;
  text-transform: capitalize;
  border: none;
  margin-left: 10px;
}

.login-sec button:hover {
  border: 1px solid#fa6901;
  background-color: white;
  color: #fa6901;
  transition: .5s linear;
}

.container i {
  color: white;
  float: right;
  font-size: 27px;
  font-weight: 500;
  display: none;
}

@media (max-width: 1400px) {
  .container-xxl {
    padding-left: 0;
    padding-right: 0;
  }
}

@media(max-width:1200px) {
  nav ul {
    margin-top: 16px;
    position: absolute;
    top: 80px;
    left: 80;
    right: 0px;
    height: 900px;
    width: 400px;
    text-align: left;
    flex-direction: column;
    background-color: #fa6901;
    border-left: 4px solid black;
    overflow: hidden;
    max-height: 0;
    cursor: pointer;
  }

  .container i {
    display: block;
  }

  nav a {
    color: black;
    text-align: center;
    font-weight: 500;
  }

  nav a:hover {
    color: #fa6901;
  }

  nav ul li {
    width: 90%;
    padding: 4px 4px;
  }

  nav ul:hover {
    background-color: #fa6901;
    transition: all .5s linear;
    color: white;
    border-left: 4px solid black;

  }
}


@media(max-width:415px) {
  nav ul {
    margin-top: 16px;
    position: absolute;
    top: 80px;
    left: 80;
    right: 0px;
    height: 400px;
    width: 250px;
    text-align: left;
    flex-direction: column;
    background-color: #fa6901;
    border-left: 4px solid black;
  }

  nav a {
    font-size: 15px;
    padding: 2px 5px;

  }

  nav a:hover {
    color: black;
  }

  .login-sec button {
    padding: 4px 13px;
    border-radius: 5px;
    font-weight: 500;
    font-size: 14px;
    background-color: #fa6901;
    color: white;
    text-transform: capitalize;
    border: none;
    margin-left: 4px;
  }
}

@media (max-width: 1320px) {
  .container-xxl {
    padding-left: 0;
    padding-right: 0;
  }
}

/* hero section  */
.about-hero {
  background-color: rgb(61, 60, 58);
  color: white;
  text-align: center;
  padding: 100px 20px;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  object-fit: contain;
  align-items: center;

}

.about-hero-content h1 {
  cursor: pointer;
  font-size: 48px;
  font-weight: bold;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1.5s ease-in-out forwards;
}

.about-hero-content p {
  cursor: pointer;
  color: #ddd;
  font-size: 18px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1.5s ease-in-out forwards;
  animation-delay: 0.3s;
}

/* Keyframes for  upward motion */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
}

/* Foam */
.main-contact {
  position: relative;
  min-height: 100vh;
  padding: 50px 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: rgb(216, 215, 215);
}

.form {

  width: 100%;
  max-width: 820px;
  background-color: #fff;
  border-radius: 10px;
  /* box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1); */
  z-index: 1000;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;

}

.contact-form {
  background-color: #fa6901;
  position: relative;
}

.contact-form:before {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  background-color: #eb0029;
  transform: rotate(45deg);
  top: 50px;
  left: -13px;
}

form {
  padding: 2.3rem 2.2rem;
  z-index: 10;
  overflow: hidden;
  position: relative;

}

.title {
  color: #fff;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.7rem;
}

.input-container {
  position: relative;
  margin: 1rem 0;
}

.input {
  width: 100%;
  outline: none;
  border: 2px solid #fafafa;
  background: none;
  padding: 0.6rem 1.2rem;
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: 25px;
  transition: 0.3s;
}

.icon {
  cursor: pointer;
  min-width: 50px;
  height: 50px;
  font-size: 22px;
  border-radius: 50%;
  background-color: #fa6901;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

textarea.input {
  padding: 0.8rem 1.2rem;
  min-height: 150px;
  border-radius: 22px;
  resize: none;
  overflow-y: auto;
}

.input:focus {
  border: 3px solid yellow;
  /* border-color: yellow ; */
  outline: none;
}

.input-container .input:focus+label {
  color: #c6590b;
  font-size: 0.9rem;
  font-style: italic;
}

.input-container label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  padding: 0 0.4rem;
  color: #fafafa;
  font-size: 0.9rem;
  font-weight: 400;
  pointer-events: none;
  z-index: 1000;
  transition: 0.5s;
}

.input-container.textarea label {
  top: 1rem;
  transform: translateY(0);
}

.btn {
  padding: 0.6rem 1.3rem;
  background-color: #fff;
  border: 2px solid #fafafa;
  font-size: 0.95rem;
  color: #fa6901;
  line-height: 1;
  border-radius: 25px;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  margin: 0;
}

.btn:hover {
  background-color: transparent;
  /* color: #fff; */
  /* background: linear-gradient(50deg, #ebee2d,  #f8e216,  #e4e71f, #94283a);
  */
  background-color: #fa6901;
}

.input-container span {
  position: absolute;
  top: 0;
  left: 25px;
  transform: translateY(-50%);
  font-size: 0.8rem;
  padding: 0 0.4rem;
  color: transparent;
  pointer-events: none;
  z-index: 500;
}

.input-container span:before,
.input-container span:after {
  content: "";
  position: absolute;
  width: 10%;
  opacity: 0;
  transition: 0.3s;
  height: 5px;
  background-color: #fa6901;
  top: 50%;
  transform: translateY(-50%);
}

.input-container span:before {
  left: 50%;
}

.input-container span:after {
  right: 50%;
}

.input-container.focus label {
  top: 0;
  transform: translateY(-50%);
  left: 25px;
  font-size: 0.8rem;
}

.input-container.focus span:before,
.input-container.focus span:after {
  width: 50%;
  opacity: 1;
}

.contact-info {
  padding: 2.3rem 2.2rem;
  position: relative;

}

.about-hero {
  /* background-position:top; */
  background-size: cover;
  background-image: url(https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRArGZsVrLcuOFEWer_rT5ifqeDH6vbU1VmGw&s)
}
.contact-info .title {
  color: #fa6901;
  font-size: 1.9rem;
  ;
  font-weight: bold;
}

.text {
  color: #333;
  margin: 1.5rem 0 2rem 0;
  /* font-size: 1.3rem; */
  font-style: italic;
}

.information {
  display: flex;
  color: #555;
  margin: 0.7rem 0;
  align-items: center;
  font-size: 1.1rem;
}

.icon {
  width: 28px;
  margin-right: 0.7rem;
}

.social-media {
  padding: 2rem 0 0 0;
}

.social-media p {
  color: #333;
}

.social-icons {
  display: flex;
  margin-top: 0.5rem;
}

.social-icons a {
  width: 35px;
  height: 35px;
  border-radius: 5px;
  background: linear-gradient(45deg, #fa6901);
  color: #fff;
  text-align: center;
  line-height: 35px;
  margin-right: 0.5rem;
  transition: 0.3s;
}

.icon:hover {
  transform: scale(1.15);
  border: 2px solid black;
  background: linear-gradient(40deg, #fa6901, #fa6901, #fa6901, #fa6901);

}

.social-icons a:hover {
  transform: scale(1.35);
}

.contact-info:before {
  content: "";
  position: absolute;
  width: 110px;
  height: 100px;
  border: 22px solid#fa6901;
  border-radius: 50%;
  bottom: -77px;
  right: 50px;
  opacity: 0.3;
}

@media (max-width: 850px) {
  .form {
    grid-template-columns: 1fr;
  }

  .contact-info:before {
    bottom: initial;
    top: -75px;
    right: 65px;
    transform: scale(0.95);
  }

  .contact-form:before {
    top: -13px;
    left: initial;
    right: 70px;
  }

  .text {
    margin: 1rem 0 1.5rem 0;
  }

  .social-media {
    padding: 1.5rem 0 0 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 1.5rem;
  }

  .contact-info:before {
    display: none;
  }

  .square,
  .big-circle {
    display: none;
  }

  form,
  .contact-info {
    padding: 1.7rem 1.6rem;
  }

  .text,
  .information,
  .social-media p {
    font-size: 0.8rem;
  }

  .title {
    font-size: 1.15rem;
  }

  .social-icons a {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }

  .icon {
    width: 23px;
  }

  .input {
    padding: 0.45rem 1.2rem;
  }

  .btn {
    padding: 0.45rem 1.2rem;
  }
}

@media (max-width: 455px) {
  .main-contact {
    padding: 20px;
  }

  .form {
    grid-template-columns: 1fr;
    max-width: 100%;
    padding: 15px;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .title {
    font-size: 1.1rem;
    text-align: center;
  }

  .input {
    font-size: 0.85rem;
    padding: 0.5rem;
    border-radius: 20px;
  }

  .btn {
    width: 100%;
    font-size: 0.9rem;
    padding: 0.5rem;
  }

  .social-icons {
    display: flex;
    justify-content: center;
    gap: 8px;
  }

  .social-icons a {
    font-size: 1rem;
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}

/* ////////////////////// footer///////////////////// */
.footer {
  padding-top: 5%;
  width: 100%;
  height: 100%;
  background-color: black;
}

.orange-info-box {
  margin: 0 auto;
  width: 80%;
  background-color: #fa6901;
  border-radius: 10px;
  flex-wrap: wrap;
  padding-bottom: 20px;

}

.orange-info-box div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 250px;
  margin: 10px;
}

.orange-info-box i {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: white;
  padding: 10px 10px;
  color: #fa6901;
  text-align: center;
}

@media(max-width:831px) {
  .orange-info-box {
    display: flex;
    flex-direction: column;
    height: auto;
    justify-content: center !important;
    justify-content: space-evenly;
  }
}

@media (max-width: 768px) {
  .orange-info-box {
    flex-direction: column;
    padding: 20px;
    width: 90%;
  }

  .orange-info-box div {
    min-width: 100%;
  }
}

@media (max-width: 480px) {
  .orange-info-box i {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .orange-info-box h6 {
    font-size: 14px;
  }
}

.custom-footer {
  padding-top: 5%;
  width: 100%;
  background-color: black;
  color: white;
}

.custom-footer-section h3 {
  color: white;
}

.custom-info-box {
  margin: 0 auto;
  width: 80%;
  background-color: #fa6901;
  border-radius: 10px;
  flex-wrap: wrap;
  padding: 20px;
  text-align: center;
}

.custom-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 200px;
  margin: 10px;
}

.custom-box i {
  font-size: 24px;
  color: white;
  background: #111;
  padding: 10px;
  border-radius: 50%;
}

/* Footer Sections */
.custom-footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  /* background: #222; */
  padding: 40px 20px;
}

.custom-footer-section {
  flex: 1;
  min-width: 200px;
  margin: 10px;
  text-align: center;
}

.custom-footer-section h3 {
  margin-bottom: 15px;
  font-size: 18px;
  border-bottom: 2px solid #ec9004;
  display: inline-block;
  padding-bottom: 5px;
}

.custom-footer-section a,
.custom-footer-section p {
  color: #bbb;
  font-size: 14px;
  text-decoration: none;
  display: block;
  margin: 5px 0;
}

.custom-footer-section a:hover {
  color: #f1c40f;
}

/* Social Media Icons */
.custom-social-icons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 40px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.social-icon i {
  font-size: 27px;
}

.social-icon i:hover {
  transition: all .5s ease-in-out;
  transform: scale(1.2);
  color: white;
}

.facebook i:hover {
  color: #3b5998;
}

.twitter i:hover {
  color: #1da1f2;
}

.instagram i:hover {
  color: #e4405f;
}

.linkedin i:hover {
  color: #0077b5;
}

.custom-footer-bottom {
  text-align: center;
  background: red;
  padding: 10px;
  font-size: 14px;
  color: white;
}

/* Back to Top Button */
#customBackToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #fa6901;
  color: white;
  border: none;
  padding: 10px 15px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 50%;
  display: none;
  transition: all 0.3s ease-in-out;
}

#customBackToTop:hover {
  background: #e05b00;
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 831px) {
  .custom-info-box {
    flex-direction: column;
  }

  .custom-footer-container {
    flex-direction: column;
  }

  .custom-social-icons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .custom-footer-section {
    min-width: 100%;
  }
}