*{
    margin: 0;
    padding: 0;
}

.main{
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.5)50%, rgba(0,0.2,0,0.3)30%), url(/images/13338.jpg);
    background-position: center;
    background-size: cover;
    /* height: 100vh; */
    flex: 1;
}

/* Layout wrapper using flexbox */
.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main {
  flex: 1;
}

.navbar{
    width: 1200px;
    height: 75px;
    margin: auto;
    /* position: sticky;
    top: 0;
    z-index: 1000; */
}

.icon{
    width: 200px;
    float: left;
    height: 70px;
}

.logo{
    color: #ff7200;
    font-size: 35px;
    font-family: Arial;
    padding-left: 20px;
    float: left;
    padding-top: 10px;
}

.menu{
    width: 400px;
    float: left;
    height: 70px;
}

ul{
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
}

ul li{
    list-style: none;
    margin-left: 62px;
    margin-top: 27px;
    font-size: 14px;
}

ul li a{
    text-decoration: none;
    color: #fff;
    font-family: Arial;
    font-weight: bold;
    transition: 0.4s ease-in-out;
}

ul li a:hover{
    color: #ff7200;
}

.search{
    width: 330px;
    float: left;
    display: flex;
    margin-left: 270px;
}

.srch{
    font-family: 'Times New Roman';
    flex: 1;
    width: 200px;
    height: 30px;
    background: transparent;
    border: 1px solid #ff7200;
    margin-top: 13px;
    color: #fff;
    border-right: none;
    font-size: 16px;
    float: left;
    padding: 6px;
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
}

.btn{
    width: 100px;
    height: 30px;
    background: #ff7200;
    border: 2px solid #ff7200;
    color: #fff;
    font-size: 15px;
    float: right;
    padding: 5px;
    margin-top: 13px;
    cursor: pointer;
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.btn:focus{
    outline:none
}

.srch:focus{
    outline: none;
}

.content {
    width: 100%;
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
    text-align: center;
    color: #fff;
    padding: 20px;
}

.content h1 {
    font-size: 50px;
    font-family: 'Arial';
    margin-bottom: 20px;
}

.content h1 span {
    color: #ff7200;
}

.content p {
    font-size: 18px;
    line-height: 26px;
    font-family: 'Arial';
    margin-bottom: 30px;
}

.cta-btn {
    padding: 10px 25px;
    background-color: #ff7200;
    border: none;
    font-size: 16px;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    text-decoration: none; /* <-- Removes the underline */
}

.cta-btn:hover {
    background-color: #e55f00;
}


/* Fade-in on load */
body {
    opacity: 0;
    transition: opacity 0.6s ease-in;
}

body.fade-in {
    opacity: 1;
}

.logo-img {
    height: 175px;   /* adjust as needed */
    width: auto;
}

/* Reveal animation
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  .reveal.active {
    opacity: 1;
    transform: translateY(0);
  } */

/* Generic base */
.reveal {
    opacity: 0;
    transition: all 0.8s ease;
    will-change: opacity, transform;
  }
  
  /* Reveal directions */
  .reveal-up {
    transform: translateY(40px);
  }
  .reveal-left {
    transform: translateX(-40px);
  }
  .reveal-right {
    transform: translateX(40px);
  }
  .reveal-zoom {
    transform: scale(0.8);
  }
  
  /* When element becomes visible */
  .reveal.active {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

.feedback {
    margin-top: 10px;
    font-size: 0.9rem;
    font-weight: 500;
}