*{
    margin: 0px;
    padding: 0px;
}
body {
  font-family: "Figtree", sans-serif;
}
/* font-sizes  */
.text-64{
    font-size: 64px;
    font-weight: 700;
    line-height: 76.8px;
    letter-spacing: -0.04em;
    }
    .text-55{
      font-size: 55px;
    font-weight: 700;
    line-height: 76.8px;
    letter-spacing: -0.04em;
    }
    .text-48{
    font-size: 48px;
    font-weight: 500;
    line-height: 57.6px;
    letter-spacing: -0.04em;
    }
    .text-32{
    font-size: 32px;
    font-weight: 500;
    line-height: 38.4px;
    letter-spacing: -0.05em;
    }
    .text-80{
    font-size: 80px;
    font-weight: 700;
    line-height: 96px;
    letter-spacing: -0.05em;
    }
    .text-40{
    font-size: 40px;
    font-weight: 600;
    line-height: 46px;
    }
    .text-28{
    font-size: 28px;
    font-weight: 400;
    line-height: 32.2px;
    }
    .text-24{
    font-size: 24px;
    font-weight: 400;
    line-height: 28.8px;
    letter-spacing: -0.04em;
    }
    .text-20{
    font-size: 20px;
    font-weight: 400;
    line-height: 23px;
    }
    .text-18{
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    }
    
    /* color  */
    .brown-color{
      color: rgba(28, 3, 1, 1);
    }
    .grey-color{
      color: rgba(103, 103, 103, 1);
    }
    .gold-color{
      color: rgba(255, 168, 0, 1);
    }
    .red-color{
      color: rgba(178, 21, 4, 1);
    }
    .blue-color{
      color: rgba(23, 15, 73, 1);
    }
    .lb-color{
      color: rgba(111, 108, 144, 1);
    
    }
    
    /* background color  */
    .red-bg{
      background-color: rgba(178, 21, 4, 1);
    }
    .pink-bg{
      background-color: rgba(255, 168, 0, 0.1);
    }
    .brown-bg{
      background: rgba(28, 3, 1, 1);
    }
    .gold-bg{
      background-color: rgba(255, 168, 0, 1);
    }
    .grey-bg{
        background-color: rgba(103, 103, 103, 1);;
    }
    .blur-whitebg{
      background-color: rgba(255, 255, 255, 0.842);
    }
    
    /* nav bar  */
    .navbar{
        z-index: 1000;
        border-bottom: 5px solid rgba(178, 21, 4, 1) ;
    }
    #service{
      color: rgba(178, 21, 4, 1);
    }
      .con{
        color: white;
        &:hover{
            color:rgba(103, 103, 103, 1);
        }
      }

      .btn-brown-con{
        color: white;
      &:hover{
        color:  rgba(178, 21, 4, 1) ;
        border: 2px solid rgba(28, 3, 1, 1);
      }
      }


      /* first content  */
      .first-content{
        margin-top: -30%;
        margin-left: 5%;
      }

      /* Styling for border bottom only and transition effects */
.border-bottom-only {
    border: none;
    border-bottom: 2px solid grey;
    border-radius: 0;
    outline: none;
    box-shadow: none;
    transition: border-color 0.3s ease-in-out;
}

/* Change border color to red on focus */
.border-bottom-only:focus {
    border-bottom: 2px solid red;
}

.logbtn{
  background-color:rgba(178, 21, 4, 1) ;
  color: white;
  &:hover{
    background: white;
    color: rgba(178, 21, 4, 1) ;
    border: 2px solid rgba(178, 21, 4, 1) ;
  }
}

h1 {
  margin-bottom: 30px;
}

.form-group {
  position: relative;
  margin-bottom: 20px;
}

.form-control {
  border: none; /* Remove all borders */
  border-bottom: 2px solid #ccc; /* Only bottom border */
  padding: 10px 0; /* Padding for the input */
  width: 100%; /* Full width */
  transition: border-color 0.3s ease; /* Smooth transition */
}

.form-control:focus {
  outline: none; /* Remove outline */
  border-bottom: 2px solid red; /* Change border color on focus */
}

textarea.form-control {
  height: 100px; /* Set height for textarea */
  resize: none; /* Disable resizing */
}

.btn-red-1{
  color: white;
  background-color: rgba(178,21,4,1);

  &:hover{
    color: rgba(178,21,4,1);
    border: 2px solid  rgba(178,21,4,1);
  }
}


.second-sec{
  margin: 150px 0px 150px 0px;
}

/* Default styling */
.follow-us {
  position: absolute;
  top: 115%; /* Adjust as needed */
  left: 50%; /* Center horizontally */
  transform: translate(-50%, -50%);
}

/* Responsive adjustments */
@media screen and (max-width: 767px) {
  .follow-us {
      position: static; /* Reset position on smaller screens */
      transform: none; /* Remove transform for normal alignment */
      margin-top: -50%; /* Adjust spacing as needed */
      margin-left: 130px;
      display: flex;
      flex-direction: column; /* Stack content vertically */
      align-items: center; /* Center the content */
  }

  .follow-us p {
      text-align: center; /* Center-align text */
      margin-bottom: 10px; /* Add space below text */
  }

  .follow-us .d-flex {
      justify-content: center; /* Center social icons */
      flex-wrap: wrap; /* Allow wrapping if needed */
  }

  .follow-us .d-flex img {
      margin: 5px; /* Add consistent spacing around icons */
  }
}

