/* ============================= */
/* Reset and Global Styles */
/* ============================= */

body {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

.fs-7  { font-size: 7px !important; }
.fs-8  { font-size: 8px !important; }
.fs-9  { font-size: 9px !important; }
.fs-10 { font-size: 10px !important; }
.fs-11 { font-size: 11px !important; }
.fs-12 { font-size: 12px !important; }
.fs-13 { font-size: 13px !important; }
.fs-14 { font-size: 14px !important; }
.fs-15 { font-size: 15px !important; }

.bottom-blur-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 90px; 
background: #ffffff;
background: linear-gradient(0deg, rgba(255, 255, 255, 1) 27%, rgba(0, 0, 0, 0.00) 100%);
  z-index: 1;
}


    .typing-text {
      overflow: hidden;
      white-space: nowrap;
      border-right: 2px solid white;
      width: 0;
      display: inline-block;
      animation: typing 3s steps(20, end) forwards, blink-caret 0.75s step-end infinite;
    }

    @keyframes typing {
      from { width: 0 }
      to { width: 100% } /* Adjust for your text length */
    }

    @keyframes blink-caret {
      0%, 100% { border-color: transparent }
      50% { border-color: white }
    }
    
      .logo-box {
    width: 100px;
    height: 100px;
    padding: 10px;
    background: white;
    border-radius: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  .icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
}

.hover-shadow:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.12) !important;
  transform: translateY(-4px);
}

.transition {
  transition: all 0.3s ease-in-out;
}
.icon-svg {
  stroke: currentColor;
  stroke-width: 2;
  width: 28px;
  height: 28px;
}

.whatsapp-ripple::before {
    content: '';
    position: absolute;
    width: 70px;
    height: 70px;
    border: 3px solid #25D366;
    border-radius: 50%;
    animation: rippleAnim 1.5s infinite;
    z-index: -1;
    opacity: 0.6;
}

@keyframes rippleAnim {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    70% {
        transform: scale(1.6);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}


/* ============================= */
/* Navbar Styles */
/* ============================= */

.navbar {
  transition: background-color 0.3s ease;
}

.navbar.navbar-transparent {
  background-color: transparent;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(237, 221, 83, 0) 100%);
}

.navbar.scrolled {
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
}

.navbar-dark .nav-link {
  color: white;
}

.navbar-nav .nav-link {
  font-weight: 300;
  font-size: 14px;
}

/* ============================= */
/* Footer Styles */
/* ============================= */

footer a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  margin-bottom: 5px;
  font-size: 0.95rem;
}

footer a:hover {
  color: rgba(144, 238, 144, 0.9); /* Light green */
}

/* ============================= */
/* Captions */
/* ============================= */

.caption-left-center {
  position: absolute;
  top: 50%;
  left: 15%;
  transform: translateY(-50%);
  text-align: left;
}

.caption-left-center h5,
.caption-left-center p {
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

/* ============================= */
/* Image Styles */
/* ============================= */

.zoom-img {
  transition: transform 0.5s ease;
}

.zoom-img:hover {
  transform: scale(1.2);
}

/* ============================= */
/* Hover Overlay */
/* ============================= */

.hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.position-relative:hover .hover-overlay {
  opacity: 1;
}

/* ============================= */
/* Testimonial Card */
/* ============================= */

.testimonial-card {
  border: none;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px #0d6efd;
}

.quote {
  font-size: 1.25rem;
  font-style: italic;
  color: #555;
}

/* ============================= */
/* Airplane Animation */
/* ============================= */

.plane {
  position: absolute;
  width: 60px;
  height: 60px;
  background: url('../assets2/plane.png') no-repeat center/contain;
  animation: flyAcross 50s linear infinite;
  z-index: 2;
}

@keyframes flyAcross {
  0% {
    transform: translate(-100px, 100vh) rotate(0deg);
    opacity: 1;
  }
  10%, 70% {
    opacity: 1;
  }
  100% {
    transform: translate(110vw, -100px) rotate(20deg);
    opacity: 0;
  }
}
