/* font-family: "Cinzel", serif;
    font-family: "Poppins", sans-serif;
    font-family: "Raleway", sans-serif;
    font-family: "K2D", sans-serif;
     font-family: "Anek Devanagari", sans-serif; */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}




.top-navbar {
  background: #13082d;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(254, 119, 67, 0.2);
  padding: 12px 0;
  font-size: 0.875rem;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1032;
}

.top-navbar a {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.top-navbar a:hover {
  color: #FE7743;
}

.top-contact-info {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.top-contact-info span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.top-contact-info span i {
  color: #FE7743;
  font-size: 1rem;
}

.social-icons {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.social-icons a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(254, 119, 67, 0.1);
  border: 1px solid rgba(254, 119, 67, 0.3);
  border-radius: 50%;
  font-size: 0.95rem;
  color: #FE7743;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icons a:hover {
  background: #FE7743;
  border-color: #FE7743;
  color: #ffffff;
  transform: translateY(-5px) rotate(360deg);
  box-shadow: 0 10px 30px rgba(254, 119, 67, 0.4);
}

.main-navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(30px);
  border-bottom: 1px solid rgba(254, 119, 67, 0.2);
  padding: 16px 0;
  position: fixed;
  top: 56px;
  width: 100%;
  z-index: 1031;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #13082d !important;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.navbar-brand:hover {
  transform: scale(1.05);
  color: #FE7743 !important;
}

.nav-link {
  color: #13082d !important;
  font-weight: 500;
  margin: 0 12px;
  position: relative;
  transition: all 0.3s ease;
  padding: 8px 4px !important;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #FE7743;
  transform: translateX(-50%);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 10px #FE7743;
}

.nav-link:hover::before,
.nav-link.active::before {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: #FE7743 !important;
}

.dropdown-menu {
  /*background: rgba(10, 10, 10, 0.98);*/
  backdrop-filter: blur(20px);
  border: 1px solid rgba(254, 119, 67, 0.3);
  border-radius: 12px;
  padding: 8px;
  margin-top: 8px !important;
  min-width: 220px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.dropdown-item {
  /*color: rgba(255, 255, 255, 0.9);*/
  padding: 10px 14px;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.dropdown-item:hover {
  background: linear-gradient(135deg, rgba(254, 119, 67, 0.2), rgba(255, 69, 0, 0.2));
  color: #FE7743;
  transform: translateX(8px);
}

.dropdown-item i {
  font-size: 1rem;
  color: #FE7743;
}

.navbar-toggler {
  border-color: #FE7743 !important;
  padding: 8px 12px;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(254, 119, 67, 0.25);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23FE7743' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.btn-primary-custom {
  padding: 18px 45px;
  background: linear-gradient(135deg, #FE7743, #ff4500);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 15px 40px rgba(254, 119, 67, 0.5);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.btn-primary-custom::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-primary-custom:hover::before {
  width: 400px;
  height: 400px;
}

.btn-primary-custom:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 60px rgba(254, 119, 67, 0.7);
  color: white;
}

.btn-secondary-custom {
  padding: 18px 45px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(10px);
}

.btn-secondary-custom:hover {
  background: #ffffff;
  color: #13082d;
  border-color: #13082d;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 50px rgba(255, 255, 255, 0.3);
}

.advanced-hero-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  margin-top: 112px;
  z-index: 10;
}

.swiper {
  width: 100%;
  height: 100%;
  overflow: visible !important;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
  background-color: #0a0a0a;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 130%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.3) blur(2px);
  z-index: 1;
  transition: all 0.5s ease;
}

.swiper-slide:nth-child(1) .slide-bg {
  background-image: url('https://images.unsplash.com/photo-1517694712202-14dd9538aa97?auto=format&fit=crop&w=1920&q=80');
}

.swiper-slide:nth-child(2) .slide-bg {
  background-image: url('https://images.unsplash.com/photo-1549490349-f9f10a65383a?auto=format&fit=crop&w=1920&q=80');
}

.swiper-slide:nth-child(3) .slide-bg {
  background-image: url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?auto=format&fit=crop&w=1920&q=80');
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(254, 119, 67, 0.2));
  opacity: 0.9;
  z-index: 2;
}

.starfield {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 30;
}

.star {
  position: absolute;
  width: 3px;
  height: 3px;
  background: #FE7743;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(254, 119, 67, 0.9), 0 0 5px #ffffff;
  opacity: 0;
  animation: starTwinkle 8s infinite ease-in-out, starFloat 30s infinite alternate;
  transform: translateZ(0);
}

@keyframes starTwinkle {

  0%,
  100% {
    opacity: 0;
    transform: scale(0.5);
  }

  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

@keyframes starFloat {
  0% {
    transform: translate3d(0px, 0px, 0px);
  }

  50% {
    transform: translate3d(20px, -20px, 50px);
  }

  100% {
    transform: translate3d(-10px, 15px, -30px);
  }
}

.slide-content-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.slide-content {
  max-width: 900px;
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.subtitle {
  display: inline-block;
  padding: 12px 28px;
  background: rgba(254, 119, 67, 0.15);
  border: 2px solid rgba(254, 119, 67, 0.6);
  border-radius: 50px;
  color: #FE7743;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  animation: borderPulse 3s infinite alternate;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0;
}

@keyframes borderPulse {
  0% {
    border-color: rgba(254, 119, 67, 0.6);
    box-shadow: 0 0 0 0 rgba(254, 119, 67, 0.2);
  }

  100% {
    border-color: #FE7743;
    box-shadow: 0 0 20px rgba(254, 119, 67, 0.8);
  }
}

.slide-content h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 28px;
  color: #ffffff;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
  opacity: 0;
}

.type-animation-container {
  display: inline-block;
  position: relative;
  overflow: hidden;
  height: 1.2em;
  vertical-align: top;
}

.type-animation-text {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  color: #FE7743;
  width: 0;
  background: linear-gradient(135deg, #FE7743 0%, #ff9a76 50%, #FE7743 100%);
  background-size: 400% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.type-animation-text::after {
  content: '|';
  position: absolute;
  right: 0;
  top: 0;
  display: inline-block;
  background: #FE7743;
  color: transparent;
  width: 3px;
  height: 100%;
  animation: blink-caret 0.75s step-end infinite;
}

@keyframes typing {
  from {
    width: 0
  }

  to {
    width: 100%
  }
}

@keyframes blink-caret {

  from,
  to {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

.slide-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.8;
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
  opacity: 0;
}

.btn-group-banner {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
}

.swiper-pagination-bullet {
  background: #ffffff !important;
}

.swiper-pagination-bullet-active {
  background: #FE7743 !important;
}

.swiper-button-prev,
.swiper-button-next {
  color: #FE7743 !important;
  opacity: 0.8;
  transition: opacity 0.3s;
  z-index: 30;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  opacity: 1;
}

.services-section {
  position: relative;
  background-color: #0f172a;
  min-height: 100vh;
}

canvas {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: #0f172a;
}

.services-overlay {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  width: 100%;
  /*padding: 60px 20px;*/
}

.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: rgba(30, 41, 59, 0.95);
  backdrop-filter: blur(8px);
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(249, 115, 22, 0.4);
  border-color: #f97316;
  background-color: rgba(30, 41, 59, 1);
}

.icon-container {
  color: #f97316;
  background-color: rgba(249, 115, 22, 0.1);
  width: 48px;
  /* Equivalent to w-12 */
  height: 48px;
  /* Equivalent to h-12 */
  border-radius: 50%;
  /* Equivalent to rounded-full */
  display: flex;
  /* Equivalent to flex */
  align-items: center;
  /* Equivalent to items-center */
  justify-content: center;
  /* Equivalent to justify-center */
  margin-bottom: 1rem;
  /* Equivalent to mb-4 */
}

.button-primary {
  background-color: #f97316;
  transition: background-color 0.3s ease;
}

.button-primary:hover {
  background-color: #ea580c;
}

.footer {
  background: #13082d;
  border-top: 2px solid rgba(254, 119, 67, 0.3);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 0;
}

.footer h5 {
  color: #ffffff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  margin-bottom: 24px;
  font-size: 1.3rem;
  position: relative;
  padding-bottom: 12px;
}

.footer h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #FE7743, transparent);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: #FE7743;
  transform: translateX(8px);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(254, 119, 67, 0.1);
  border: 2px solid rgba(254, 119, 67, 0.3);
  border-radius: 50%;
  color: #FE7743;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-social a:hover {
  background: #FE7743;
  color: white;
  transform: translateY(-8px) rotate(360deg);
  box-shadow: 0 15px 40px rgba(254, 119, 67, 0.5);
}

.footer-bottom {
  border-top: 1px solid rgba(254, 119, 67, 0.2);
  padding: 24px 0;
  text-align: center;
  font-size: 0.95rem;
  margin-top: 40px;
}

.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #FE7743, #ff4500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 1000;
  box-shadow: 0 10px 30px rgba(254, 119, 67, 0.4);
}

.scroll-top.active {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-8px) scale(1.1);
  box-shadow: 0 15px 40px rgba(254, 119, 67, 0.6);
}

@media (max-width: 991.98px) {
  .advanced-hero-banner {
    margin-top: 76px;
  }

  .main-navbar {
    top: 0;
  }

  .top-navbar {
    display: none;
  }

  .navbar-collapse {
    display: none !important;
  }
}

@media (max-width: 767.98px) {

  .btn-primary-custom,
  .btn-secondary-custom {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 14px 30px;
    font-size: 1rem;
  }

  .footer .row {
    text-align: center;
  }

  .footer h5::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-social {
    justify-content: center;
  }

  .top-contact-info {
    justify-content: center;
  }
}



/* about page css */



/* BUTTONS */
.btn-primary,
.btn-outline-primary,
.contact-cta-section .btn-light {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #FE7743 0%, #ff5e1c 100%);
    border: none;
    color: white;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(254, 119, 67, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(254, 119, 67, 0.5);
    color: white;
}

.btn:focus {
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(254, 119, 67, 0.5);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-outline-primary {
    border: 2px solid #FE7743;
    color: #FE7743;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 12px;
    background: transparent;
}

.btn-outline-primary:hover {
    background: #FE7743;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(254, 119, 67, 0.3);
}

/* Hero Section */
.hero-section-main {
    background: linear-gradient(135deg, rgba(19, 8, 45, 0.05) 0%, rgba(255, 255, 255, 0.95) 100%);
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center; 
}

.hero-section-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(254, 119, 67, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(14, 165, 233, 0.05) 0%, transparent 50%);
    animation: backgroundShift 15s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%,
    100% {
        transform: scale(1) rotate(0deg);
    }

    50% {
        transform: scale(1.1) rotate(180deg);
    }
}

.hero-content-main {
    position: relative;
    z-index: 2;
}

.hero-section-main h1 {
    font-weight: 800;
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #0f172a;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-section-main .lead {
    font-size: 22px;
    color: #64748b;
    margin-bottom: 40px;
    font-weight: 400;
}

.gradient-text-main {
    background: linear-gradient(135deg, #FE7743 0%, #ff9a76 25%, #8b5cf6 50%, #3b82f6 75%, #FE7743 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 6s ease infinite;
}

@keyframes gradientFlow {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero-img-container-main {
    position: relative;
    perspective: 1000px;
}

.hero-img-main {
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.8);
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    filter: brightness(1.05) contrast(1.05);
}

.hero-img-main:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
    box-shadow: 0 35px 60px -12px rgba(19, 8, 45, 0.3),
        0 0 0 1px rgba(19, 8, 45, 0.2);
}

/* Section Styling */
.content-section-main {
    padding: 21px 0;
    position: relative;
}

.section-title-main {
  
    font-weight: 800;
    font-size: 48px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    color: #0f172a;
}

.section-title-main::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 80px;
    height: 6px;
    background: linear-gradient(90deg, #FE7743, #ff5e1c);
    border-radius: 3px;
}

.section-subtitle-main {
    color: #64748b;
    font-size: 20px;
    /*margin-bottom: 60px;*/
    font-weight: 400;
}

/* NEW: Minimal Card Design */
.minimal-card-main {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.minimal-card-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FE7743, #ff5e1c);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.minimal-card-main:hover::before {
    transform: scaleX(1);
}

.minimal-card-main:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(19, 8, 45, 0.1);
}

/* Value Cards */
.value-card-main {
    border-left: 6px solid #FE7743;
    padding: 28px;
    background: #ffffff;
    border-radius: 16px;
    margin-bottom: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
}

.value-card-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(19, 8, 45, 0.05), transparent);
    transition: 0.6s;
}

.value-card-main:hover {
    transform: translateX(8px);
    box-shadow: 0 20px 40px rgba(19, 8, 45, 0.1);
}

.value-card-main:hover::before {
    left: 100%;
}

/* NEW: Enhanced Timeline */
.timeline-container-main {
    position: relative;
    padding-left: 40px;
}

.timeline-container-main::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #FE7743, #ff9a76, #ff5e1c);
    border-radius: 2px;
}

.timeline-item-main {
    position: relative;
    padding: 28px 20px 28px 60px;
    margin-bottom: 30px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(226, 232, 240, 0.8);
    opacity: 0;
    transform: translateY(30px);
}

.timeline-item-main.animate {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item-main::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 32px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #FE7743;
    box-shadow: 0 0 0 8px rgba(254, 119, 67, 0.15);
    z-index: 2;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 8px rgba(254, 119, 67, 0.15);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(254, 119, 67, 0.08);
    }
}

.timeline-year-main {
    font-weight: 700;
    color: #FE7743;
    font-size: 20px;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.timeline-year-main::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #FE7743, #ff5e1c);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.timeline-item-main:hover .timeline-year-main::after {
    transform: scaleX(1);
}

.timeline-item-main:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(19, 8, 45, 0.1);
}

/* Team Section */
.team-avatar-main {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 3px solid rgba(254, 119, 67, 0.3);
    transition: all 0.4s ease;
    filter: grayscale(0.3);
}

.team-card-main:hover .team-avatar-main {
    transform: scale(1.1);
    filter: grayscale(0);
    border-color: #FE7743;
}

.team-card-main {
    padding: 32px;
    height: 100%;
    transition: all 0.4s ease;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.team-card-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FE7743, #ff5e1c);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.team-card-main:hover::before {
    transform: scaleX(1);
}

.team-card-main:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(19, 8, 45, 0.1);
}

.team-name-main {
    font-weight: 700;
    margin-bottom: 6px;
    color: #0f172a;
}

.team-role-main {
    color: #FE7743;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 16px;
}

/* Why Choose Us */
.feature-card-main {
    padding: 40px 28px;
    text-align: center;
    height: 100%;
    border-radius: 16px;
    transition: all 0.4s ease;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.feature-card-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FE7743, #ff5e1c);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card-main:hover::before {
    transform: scaleX(1);
}

.feature-card-main:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(19, 8, 45, 0.1);
}

.feature-icon-main {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(254, 119, 67, 0.1), rgba(255, 154, 118, 0.1));
    border-radius: 20px;
    margin: 0 auto 28px;
    font-size: 36px;
    color: #FE7743;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card-main:hover .feature-icon-main {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(254, 119, 67, 0.15), rgba(255, 154, 118, 0.15));
}

/* Awards & Testimonials */
.partner-logo-main {
    height: 70px;
    object-fit: contain;
    opacity: 0.7;
    transition: all 0.4s ease;
    padding: 12px;
    border-radius: 12px;
}

.partner-logo-main:hover {
    opacity: 1;
    transform: scale(1.1);
    background: rgba(19, 8, 45, 0.05);
}

.testimonial-card-main {
    padding: 40px;
    border-radius: 16px;
    background: #ffffff;
    position: relative;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-card-main:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(19, 8, 45, 0.1);
}

.testimonial-card-main::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 28px;
    font-size: 80px;
    color: rgba(19, 8, 45, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(19, 8, 45, 0.9);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.4s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    background: #13082d;
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

/* Office Locations */
.office-card-main {
    padding: 40px;
    height: 100%;
    border-radius: 16px;
    transition: all 0.4s ease;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.office-card-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FE7743, #ff5e1c);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.office-card-main:hover::before {
    transform: scaleX(1);
}

.office-card-main:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(19, 8, 45, 0.1);
}

.office-icon-main {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(254, 119, 67, 0.1);
    border-radius: 16px;
    margin-bottom: 20px;
    font-size: 24px;
    color: #FE7743;
    transition: all 0.4s ease;
}

.office-card-main:hover .office-icon-main {
    transform: scale(1.1) rotate(5deg);
    background: rgba(254, 119, 67, 0.15);
}

/* Contact CTA */
.contact-cta-section {
    background: linear-gradient(135deg, #13082d 0%, #27105a 100%);
    color: white;
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 25px 50px -12px rgba(19, 8, 45, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.contact-cta-section h3 {
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.contact-cta-section .btn-light {
    background: rgba(255, 255, 255, 0.95);
    color: #13082d;
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 12px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.contact-cta-section .btn-light:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    background: white;
    color: #13082d;
}

/* Floating Elements */
.floating-elements-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-element-main {
    position: absolute;
    opacity: 0.8;
    animation: floatElement 20s infinite linear;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.floating-element-main:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.floating-element-main:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 5s;
    animation-duration: 30s;
}

.floating-element-main:nth-child(3) {
    top: 40%;
    left: 85%;
    animation-delay: 10s;
    animation-duration: 20s;
}

.floating-element-main:nth-child(4) {
    top: 80%;
    left: 15%;
    animation-delay: 15s;
    animation-duration: 35s;
}

@keyframes floatElement {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    25% {
        transform: translate(20px, 20px) rotate(90deg) scale(1.1);
    }

    50% {
        transform: translate(40px, -20px) rotate(180deg) scale(1);
    }

    75% {
        transform: translate(-20px, 40px) rotate(270deg) scale(1.1);
    }

    100% {
        transform: translate(0, 0) rotate(360deg) scale(1);
    }
}

/* Particles */
.particles-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.particle-main {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(19, 8, 45, 0.6);
    border-radius: 50%;
    animation: particleRise 15s linear infinite;
    box-shadow: 0 0 10px rgba(19, 8, 45, 0.4);
}

@keyframes particleRise {
    0% {
        transform: translateY(100vh) scale(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) scale(1) rotate(360deg);
        opacity: 0;
    }
}

/* New Section: Our Approach */
.approach-card-main {
    padding: 40px;
    height: 100%;
    border-radius: 16px;
    transition: all 0.4s ease;
    background: #ffffff;
    text-align: center; 
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.approach-card-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FE7743, #ff5e1c);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.approach-card-main:hover::before {
    transform: scaleX(1);
}

.approach-card-main:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(19, 8, 45, 0.1);
}

.approach-number-main {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(254, 119, 67, 0.1);
    border-radius: 50%;
    margin: 0 auto 24px;
    font-size: 28px;
    font-weight: 800;
    color: #FE7743;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.approach-card-main:hover .approach-number-main {
    transform: scale(1.1);
    background: rgba(254, 119, 67, 0.15);
}

/* IMPROVED: Services Section */
.service-card-main {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    text-align: center; 
}

.service-card-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FE7743, #ff5e1c);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card-main:hover::before {
    transform: scaleX(1);
}

.service-card-main:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(19, 8, 45, 0.1);
    border-color: rgba(19, 8, 45, 0.3);
}

.service-icon-main {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(254, 119, 67, 0.1);
    border-radius: 20px;
    margin: 0 auto 24px;
    font-size: 32px;
    color: #FE7743;
    transition: all 0.4s ease;
}

.service-card-main:hover .service-icon-main {
    transform: scale(1.1) rotate(5deg);
    background: rgba(254, 119, 67, 0.15);
}

.service-card-main h5 {
    font-weight: 700;
    margin-bottom: 16px;
    color: #0f172a;
}

.service-card-main p {
    color: #64748b;
    margin-bottom: 0;
}

/* Statistics Section */
.stats-section-main {
    background: linear-gradient(135deg, rgba(254, 119, 67, 0.05) 0%, rgba(255, 255, 255, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.stats-section-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(254, 119, 67, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
}

.stat-card-main {
    padding: 40px;
    text-align: center; 
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.stat-card-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FE7743, #ff5e1c);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.stat-card-main:hover::before {
    transform: scaleX(1);
}

.stat-card-main:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(19, 8, 45, 0.1);
}

/* New Section: Mission/Vision */
.illustration-container-main {
    position: relative;
    padding: 20px;
}

.illustration-container-main .illustration-bg-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(254, 119, 67, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 24px;
    animation: morph 8s infinite ease-in-out;
    z-index: 0;
}

.illustration-container-main img {
    position: relative;
    z-index: 1;
}

.illustration-container-main .floating-main {
    animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage {
    0% {
        transform: translateY(0px) rotate(1deg);
    }

    50% {
        transform: translateY(-10px) rotate(-1deg);
    }

    100% {
        transform: translateY(0px) rotate(1deg);
    }
}

.morphing-shapes-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.morph-shape-main {
    position: absolute;
    background: rgba(19, 8, 45, 0.08);
    filter: blur(50px);
    animation: morph 20s infinite linear;
    z-index: 1;
}

@keyframes morph {
    0%,
    100% {
        border-radius: 40% 60% 70% 30% / 30% 30% 70% 70%;
        transform: scale(1) rotate(0deg);
    }

    33% {
        border-radius: 70% 30% 50% 30% / 30% 30% 70% 70%;
        transform: scale(1.1) rotate(120deg);
    }

    66% {
        border-radius: 40% 60% 70% 30% / 40% 40% 60% 50%;
        transform: scale(0.9) rotate(240deg);
    }
}

/* Text Effects */
.text-shimmer-main {
    background: linear-gradient(90deg, #FE7743, #ff5e1c, #ff9a76, #FE7743);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s infinite linear;
}

@keyframes shimmer {
    0% {
        background-position: 100% 0%;
    }

    100% {
        background-position: -100% 0%;
    }
}

/* Magnetic Button Effect */
.btn-magnetic-main {
    transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Media Queries */
@media (max-width: 991.98px) {
    .hero-section-main {
        padding: 100px 0 60px;
    }

    .hero-section-main h1 {
        font-size: 48px;
    }

    .hero-section-main .lead {
        font-size: 18px;
    }

    .section-title-main {
        font-size: 36px;
    }

    .contact-cta-section {
        padding: 40px 20px;
    }

    .carousel-control-prev {
        left: 0px;
    }

    .carousel-control-next {
        right: 0px;
    }
}

@media (max-width: 767.98px) {
    .timeline-container-main {
        padding-left: 20px;
    }

    .timeline-item-main {
        padding-left: 40px;
    }

    .timeline-item-main::before {
        left: -8px;
    }

    .hero-section-main {
        padding-top: 80px;
    }
}


/* contact page css */




/* Parallax Banner */
.banner-parallax {
  background-image: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  text-align: center;
  position: relative;
  padding: 180px 20px;
}

.banner-parallax::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(19, 8, 45, 0.6);
}

.banner-content {
  position: relative;
  z-index: 2;
}

.banner-title {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.banner-subtitle {
  font-size: 1.2rem;
  margin-top: 15px;
  color: #e2e2e2;
}

/* Section Headings */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-weight: 700;
  font-size: 2.5rem;
  color: #13082d;
  margin-bottom: 15px;
}

.gradient-text {
  background: linear-gradient(90deg, #FE7743, #0DC0A9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.underline {
  width: 90px;
  height: 6px;
  background: linear-gradient(90deg, #FE7743, #0DC0A9);
  border-radius: 3px;
  margin: 0 auto;
}

/* Buttons */
.btn-gradient {
  background: linear-gradient(135deg, #FE7743, #0DC0A9);
  color: #fff;
  border: none;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.4s ease;
  box-shadow: 0 8px 25px rgba(254, 119, 67, 0.35);
  text-decoration: none;
}

.btn-gradient:hover {
  transform: translateY(-5px);
  color: #fff;
  box-shadow: 0 12px 30px rgba(254, 119, 67, 0.45);
}

/* Contact Info Cards */
.info-box {
  background: #fff;
  border-radius: 16px;
  padding: 35px;
  border-left: 5px solid #0DC0A9;
  transition: 0.4s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}

.info-box:hover {
  transform: translateY(-5px);
  border-left-color: #FE7743;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.info-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 25px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
}

.info-item i {
  color: #FE7743;
  font-size: 1.3rem;
}

.info-item h4 {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 4px;
}

.info-item a {
  color: #0DC0A9;
  text-decoration: none;
}

.info-item a:hover {
  color: #FE7743;
}

/* Form Section */
.form-wrapper {
  background: #fff;
  border-radius: 20px;
  padding: 50px;
  border-top: 8px solid #FE7743;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.form-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin: 40px 0 25px;
  border-bottom: 2px solid #0DC0A9;
  padding-bottom: 8px;
}

.form-label {
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-label i {
  color: #0DC0A9;
}

.form-input,
.form-select,
textarea.form-input {
  background: #f1f3f5;
  border: 1px solid #dee2e6;
  border-radius: 12px;
  padding: 12px 18px;
  width: 100%;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus {
  background: #fff;
  border-color: #FE7743;
  box-shadow: 0 0 0 0.2rem rgba(254, 119, 67, 0.2);
  outline: none;
}

textarea.form-input {
  min-height: 120px;
}

/* Quick Connect Section */
.connect-section {
  background: #1e1347;
  color: #fff;
}

.connect-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
}

.connect-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
}

.connect-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #0DC0A9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  transition: 0.4s ease;
}

.connect-card:hover .connect-icon {
  background: #FE7743;
}

/* Map Section */
.map-wrapper {
  width: 100%;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Responsive */
@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  .banner-title {
    font-size: 2.2rem;
  }

  .form-wrapper {
    padding: 30px 20px;
  }
}


/* Container */
.ft-wrap {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

/* Button Base */
.ft-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(0,0,0,0.25);
    position: relative;
    transition: transform 0.3s ease;
    animation: ft-float 3s ease-in-out infinite;
}

/* Floating Animation */
@keyframes ft-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Pulse Effect */
.ft-btn::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    opacity: 0.6;
    z-index: -1;
    animation: ft-pulse 2s infinite;
}

@keyframes ft-pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    70% {
        transform: scale(1.5);
        opacity: 0;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Hover */
.ft-btn:hover {
    transform: scale(1.15);
}

/* Icons */
.ft-btn i {
    font-size: 26px;
}

/* Brand Colors */
.ft-wa {
    background-color: #25D366;
}

.ft-ms {
    background-color: #0084FF;
}

/* Tooltip */
.ft-btn::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 70px;
    background: #333;
    color: #fff;
    padding: 6px 10px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: 0.3s;
}

.ft-btn:hover::after {
    opacity: 1;
    transform: translateX(0);
}




