*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.h-font {
    font-family: 'Poppins', cursive;
}

h5 {
  font-size: 16px;
}
p {
  font-size: 15px;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.custom-bg {
    background-color: #2ec1ac;
    border: 1px solid #2ec1ac;
}
.custom-bg:hover {
    background-color: #279e8c;
    border-color: #279e8c;
}

#navbarSupportedContent ul li a {
  font-weight: 500;
  color: #111118;
}

#navbarSupportedContent ul li a:hover {
  color: #963d43 !important;
}


.logo{
  width: 65px;
  border-radius: 50%;
}

.intro-home{
  width: 100%;
  background: var(--primary-color);
  background-size: cover;
}

.home-explore {
  position: relative;
  height: 100vh;             
  display: flex;
  justify-content: center; 
  align-items: center;      
  overflow: hidden;
  overflow-x: hidden;
  overflow-y: hidden;
}

.back-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;         
  z-index: -1; 
  filter: brightness(30%);

}

.info-card {
  padding: 2rem 3rem;
  border-radius: 12px;
  text-align: center;
  max-width: 800px;
  max-height: 300px;
  line-height: 36px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.info-card h2 {
  color: #fff;
  font-size: 2.8em;
}
.info-card p {
  color: #fff;
  font-size: 1em;
  /* color: #44495e; */
  /* color: #7e3e42; */
  /* color: #2c7898; */
  /* color: #2f4660; */
  /* color: #693037; */
}

@media (max-width: 480px){
  .back-video{
    margin: auto;
    height: 100%;
    width: 100%;
 }
}

@media (max-width: 767px){
  .info-card{
    margin: auto;
    width: 100%;
 }
 .about-section h2 {
     text-align: left;
 }
}

.about-section {
    position: relative;
    background: url(../images/background1.png) center/cover no-repeat;
    width: 100%;
}

.about-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2); 
    z-index: 1;
}

.about-section > * {
    position: relative;
    z-index: 2;
}

.about-img2 {
    width: 80%;
    margin: auto;
    max-height: 100%;
}


.viewport-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* iPhone frame */
.iphone-frame {
  position: relative;
  width: 280px;   /* tweak for 14 vs 16 vibe */
  height: 560px;
  border-radius: 40px;
  padding: 10px;
  background: linear-gradient(145deg, #1f1f28, #3b3b4a);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.7),
    0 0 0 6px rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
}

.iphone-frame::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 34px;
  background: #050509;
}

/* Notch / Dynamic Island */
.iphone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  height: 28px;
  width: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 5;
}

.notch-pill {
  width: 90px;
  height: 24px;
  border-radius: 999px;
  background: linear-gradient(145deg, #040406, #111118);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03);
}

/* Side buttons (decorative) */
.iphone-btn {
  position: absolute;
  width: 3px;
  border-radius: 8px;
  background: #20202b;
}

.iphone-btn-left {
  left: -2px;
  top: 110px;
  height: 60px;
}

.iphone-btn-right.upper {
  right: -2px;
  top: 150px;
  height: 40px;
}

.iphone-btn-right.lower {
  right: -2px;
  top: 200px;
  height: 80px;
}

/* Screen area */
.iphone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: #000;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  z-index: 1;
}

/* Swiper should fill the screen */
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  width: 100%;
  height: 100%;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Arrows inside the phone (overriding Swiper defaults) */
.swiper-button-next,
.swiper-button-prev {
  color: #ffffff;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px;
  font-weight: bold;
}

.swiper-button-prev {
  left: 12px;
}

.swiper-button-next {
  right: 12px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(0, 0, 0, 0.65);
  transform: scale(1.05);
}

.swiper-button-next:active,
.swiper-button-prev:active {
  transform: scale(0.95);
}

/* Optional: dots/pagination at bottom of screen */
.swiper-pagination {
  bottom: 10px !important;
}

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
}

.swiper-pagination-bullet-active {
  background: #ffffff;
}


/* team */
.reveal{
  position: relative;
  transform: translateY(90px);
  opacity: 0;
  transition: all 1s ease;
}

.reveal.active{
  transform: translateY(0px);
  opacity: 1;
}

.uhai-info h5 {
  font-weight: 550;
}
/* .uhai-info p {
  font-size: 15px;
} */
.uhai-cta {
  padding: 12px;
}
.uhai-cta:hover {
  background-color: #963d43;
}
.team h6{
  color: #223142;
}


/* contact */

.contact {
    position: relative;
    background: url(../images/background2.png) center/cover no-repeat;
    width: 100%;
}

.contact::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2); 
    z-index: 1;
}

.contact > * {
    position: relative;
    z-index: 2;
}

.contact span {
  font-weight: 500;
}

.form-submit {
  background-color: #fefefe;
  color: #111118;
  font-weight: 500;
}

.form-submit:hover {
  background-color: #963d43;
  color: #fefefe;
}

/* footer */
.footer {
  background: #223142;
}

.footer a {
  font-size: 15px;
}

.footer a:hover {
  color: #963d43 !important;
}

.footer p {
  font-size: 15px;
}

.powered-by {
  font-size: 14px;
}