@font-face {
  font-family: Montserrat-Regular; /* set name */
  src: url(Montserrat-Regular.ttf); /* url of the font */
}
@font-face {
  font-family: Montserrat-Bold; /* set name */
  src: url(Montserrat-Bold.ttf); /* url of the font */
}
@font-face {
  font-family: Futura-Light-font; /* set name */
  src: url(Futura-Light-font.ttf); /* url of the font */
}
@font-face {
  font-family: futura-medium; /* set name */
  src: url(futura-medium.ttf); /* url of the font */
}
@font-face {
  font-family: Futura-Bold-font; /* set name */
  src: url(Futura-Bold-font.ttf); /* url of the font */
}
.montserrat-regular{
  font-family: Montserrat-Regular;
}

html, body {
  height: 100%;
  margin: 0;
  font-family: Montserrat-Regular, sans-serif;
  color: #0a4e8a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.evolv-hero {
  height: 100vh;
  background: #fff;
}

/* LEFT */
.evolv-left {
  padding: 0 80px;
}

.evolv-logo {
 font-size: 120px;
 font-weight: 300;
 letter-spacing: 6px;
 color: #0a4e8a;
 display: flex;
 align-items: center;
 margin: 0;
 font-family: Futura-Light-font;
}

.logo-o {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  margin: 0 20px;
  position: relative;

  /* Image */
  background: url("../media/o-image.jpg") center / cover no-repeat;

  /* Outer blue ring */
  border: 6px solid #0a4e8a;
}

/* Inner white ring */
.logo-o::before {
  content: "";
  position: absolute;
  inset: 0px; /* controls thickness of white ring */
  border-radius: 50%;
  border: 3px solid #ffffff;
  pointer-events: none;
}

.evolv-tagline {
  font-size: 18px;
  color: #0a4e8a;
  margin-bottom: 35px;
}

.evolv-tagline .text-high {
  /*font-weight: 600;*/
  font-family: futura-medium;
}

.evolv-question {
  margin-top: 20px;
  /*font-weight: 700;*/
  color: #0a4e8a;
  font-family: Montserrat-Bold;
}

.evolv-desc {
  max-width: 100%;
  color: #0a4e8a;
  font-size: 15px;
}

/* ICONS */
.evolv-icons {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  flex-wrap: wrap;        /* allow wrapping */
}

/* BASE CIRCLE */
.evolv-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: #f7f7f7;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  transition: 0.3s ease;
  flex: 0 0 140px;        /* NEVER shrink */
}

/* ICON */
.evolv-circle img {
  width: 34px;
  height: 34px;
  margin-bottom: 8px;
}

/* TEXT */
.evolv-circle p {
  font-size: 14px;
  line-height: 1.25;
  color: #0a4e8a;
  margin: 0;
  max-width: 110px;
  font-family: Futura-Bold-font;
}

/* BORDER COLORS */
.blue-dark { border: 3px solid #0a4e8a; }
.blue-light { border: 3px solid #64aef2; }
.blue-soft { border: 3px solid #a6cfee; }
.green { border: 3px solid #66b32e; }

/* ACTIVE + HOVER */
.evolv-circle:hover,
.evolv-circle.active {
  transform: translateY(-4px);
}

/* NOTE TEXT */
.circle-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
  padding: 8px 22px 8px 14px;
  background: #f0f6ff;
  border-left: 4px solid #0a4e8a;
  font-size: 14px;
  font-weight: 600;
  color: #0a4e8a;
  border-radius: 4px;
}

.heading-animate {
  display: inline-block;
  font-size: 16px;
  animation: arrowNudge 1.6s ease-in-out infinite;
}

@keyframes arrowNudge {
  0% {
    transform: translateY(0);
    opacity: 0.6;
    filter: drop-shadow(0 0 0 transparent);
  }
  50% {
    transform: translateY(-8px);
    opacity: 1;
    filter: drop-shadow(0 4px 6px rgba(10,78,138,0.35));
  }
  100% {
    transform: translateY(0);
    opacity: 0.6;
    filter: drop-shadow(0 0 0 transparent);
  }
}
/* TEXT ANIMATION */
.feature-text {
  margin-top: 20px;
  max-width: 520px;
  opacity: 0;
  transform: translateY(10px);
  transition: .5s ease;
}

.feature-text.show {
  opacity: 1;
  transform: translateY(0);
}

/* RIGHT MEDIA */
.evolv-right {
  padding: 30px 20px;
  height: 100%;
}

.evolv-right video,
.evolv-right img {
  width: 100%;
  height: 92%;
  object-fit: cover;
}
/*.logo{
    position: absolute;
    width: 170px;
    left: 75px;
    top: 5%;
    padding: 0;
}*/
.evolv-left {
  position: relative; /* IMPORTANT */
}

.logo {
  width: 150px;
  margin-bottom: 25px;
  margin-top: 10px;
}
.featureText{
  font-size: 15px;
  text-align: center;
  font-family: Montserrat-Bold;
  margin-top: 10px;
}
.main-title{
  position: relative;
  margin-left: -5px;
}
.pos-relative{
  position: relative;
}
.form-btn{
 position: fixed;
 top: 0;
 right: 50%;
 transform: translateX(50%);
 background: linear-gradient(135deg, #0a4e8a, #0d63a5);
 color: #fff;
 padding: 8px 34px;
 font-size: 14px;
 font-weight: 500;
 text-decoration: none;
 border-radius: 0 0 8px 8px;
 z-index: 999;
 box-shadow: 0 6px 18px rgba(10, 78, 138, 0.35);
 width: fit-content;
 transition: all 0.3s ease;
}
/* Initial state: almost invisible, slightly bigger than 0 for smoothness */
/* Initial state: almost invisible and slightly offset */
[data-aos="video-zoom-out"] {
  transform: scale(0.05) translateY(20px); /* tiny + soft vertical offset */
  opacity: 0;
  will-change: transform, opacity;
}

/* Animated state: full size and visible */
[data-aos="video-zoom-out"].aos-animate {
  transform: scale(1) translateY(0); /* zoom to normal size */
  opacity: 1;
  transition:
  transform 4s cubic-bezier(0.22, 1, 0.36, 1), /* very slow and smooth */
  opacity 3.5s ease-out; /* slow fade-in */
}
#mediaBox {
  transform: scale(0);
  opacity: 0;
  transition: transform 2.5s cubic-bezier(0.22, 1, 0.36, 1),
  opacity 2s ease-out;
  display: block;
}

#mediaBox.show {
  transform: scale(1);
  opacity: 1;
}

/* Feature text fade */
#featureText {
  opacity: 0;
  transition: opacity 0.8s ease-out;
}

#featureText.show {
  opacity: 1;
}



/*Media Small Desktop*/
@media (min-width: 900px) and (max-width:1500px) {
  .evolv-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #f7f7f7;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    transition: 0.3s ease;
    flex: 0 0 120px;        /* NEVER shrink */
  }
  .evolv-icons {
    justify-content: flex-start;
    gap: 10px;
  }
  .evolv-tagline {
    font-size: 16px;
  }
  .evolv-question{
    font-size: 15px;
  }
  .evolv-logo {
    font-size: 80px;
  }
  .evolv-left {
    padding: 0 50px;
  }
  .evolv-circle p {
    font-size: 13px;
  }
  .logo-o {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    margin: 0 20px;
    border: 5px solid #0a4e8a;
  }

}/*Media Small Desktop*/



/* For Mobile Landscape View */
/*@media screen and (max-device-width: 640px) and (orientation: landscape) {*/
  @media screen and (max-width: 600px) {
    .logo {
      width: 130px;
    }
    .evolv-left {
      padding: 15px; 
      margin-top: 45px;
    }
    .evolv-logo {
      font-size: 80px;
      letter-spacing: 2px;
    }
    .logo-o {
      width: 65px;
      height: 65px;
      margin: 0 18px;
    }
    .evolv-icons {
      gap: 15px;
    }
    .evolv-right {
      padding: 0 15px;
    }
    .evolv-right video, .evolv-right img {
      width: 100%;
      height: auto;
      object-fit: cover;
    }
    .featureText {
      margin-top: 20px;
    }

}/*Media Mobile Ends*/