@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
  font-family: "Montserrat", sans-serif;
}

body {
  margin: 0;
  overflow-x: hidden;
}



@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate(-50%, -40%);
  }

  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.animate-hero-text {
  animation: fadeInUp 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}


/* 
.tab-content {
  display: none;
  opacity: 0;
  transform: translateY(60px);
  transition: transform 0.5s ease;
}

.tab-content.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
} */

.scroll-section {
  position: relative;
  height: 70vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/bg.png');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.animate-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
}

#preloader {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  color: white;
  background: #4E96A2;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  overflow: hidden;
  /* VERY IMPORTANT */
}


.loader-wrapper {
  text-align: center;
  position: relative;
}

.brand-text {
  font-weight: 700;
  letter-spacing: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.brand-text span {
  opacity: 0;
  display: inline-block;
}

.logo-o {
  margin: 0 10px;
}

.logo-o img {
  border-radius: 50%;
  height: auto;
  transform: scale(1);
}

.underline {
  height: 5px;
  background: #fff;
  width: 0%;
  margin-top: 20px;
}

#main-content {
  opacity: 0;
}

/* Smooth animation performance */
.network-section {
  overflow: hidden;
}

/* Professional hover effect */
.profile-img {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.profile-item:hover .profile-img {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.contact-strip {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  transform: translateY(40px);
  opacity: 0;
}

.icon-box {
  width: 48px;
  height: 48px;
  background: #eef2ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.4s ease;
}

.contact-item:hover .icon-box {
  transform: translateY(-5px);
  background: #dbeafe;
}


.contact-modern {
  background: linear-gradient(180deg, #eef4ff, #ffffff);
}



/* 3d Slider CSS */
body {
  overflow-x: hidden;
}

.scene {
  height: 100vh;
  overflow: hidden;
  width: 100vw;
  perspective: 3000px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel {
  position: relative;
  width: 100%;
  height: 500px;
  transform-style: preserve-3d;
}

.card {
  position: absolute;
  width: 240px;
  height: 400px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 20px;
  overflow: hidden;
  transform-style: preserve-3d;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#whats_icon {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
}

#whats_icon img {
  width: 60px;
  /* Control size here */
  height: 60px;
  object-fit: contain;
}