*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Inter',sans-serif;
}

body{
  background:#f8fafc;
  overflow-x:hidden;
  scroll-behavior: smooth;
}

/* ===== HEADER ===== */
header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;

  background: transparent;
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

/* Logo hover */
.logo{
  background:white;
  padding:8px 18px;
  border-radius:12px;
  box-shadow:0 4px 20px rgba(0,0,0,0.1);
  cursor:pointer;
  transition:0.3s ease;
}

.logo img{
  height:55px;
  transition:transform 0.3s ease;
}

.logo:hover img{
  transform:scale(1.1) rotate(-3deg);
}

/* NAVIGATION */
nav ul{
  display:flex;
  gap:35px;
  list-style:none;
  align-items:center;
}

nav ul li{
  position:relative;
}

nav ul li a{
  text-decoration:none;
  color:white;
  font-weight:500;
  display:flex;
  align-items:center;
  gap:8px;
  transition:0.3s;
  padding:6px 0;
}

nav ul li a i{
  font-size:14px;
  opacity:0.9;
}

nav ul li a:hover{
  color:#0ea5e9;
}

/* Animated underline */
nav ul li a::after{
  content:"";
  position:absolute;
  bottom:-4px;
  left:0;
  width:0%;
  height:2px;
  background:#0ea5e9;
  transition:0.3s;
}

nav ul li a:hover::after{
  width:100%;
}

/* MEGA MENU */
.mega-menu{
  position:absolute;
  top:50px;
  left:50%;
  transform:translateX(-50%) translateY(20px);
  width:750px;
  background:white;
  border-radius:15px;
  box-shadow:0 20px 50px rgba(0,0,0,0.15);
  padding:30px;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
  opacity:0;
  visibility:hidden;
  transition:all 0.3s ease;
  z-index:999;
}

.mega-parent:hover .mega-menu{
  opacity:1;
  visibility:visible;
  transform:translateX(-50%) translateY(0);
}

.mega-item{
  background:#f1f5f9;
  padding:20px;
  border-radius:10px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  cursor:pointer;
  transition:all 0.3s;
}

.mega-item i{
  font-size:24px;
  color:#3b82f6;
  margin-bottom:10px;
  transition:0.3s;
}

.mega-item span{
  font-weight:600;
  color:#111;
  font-size:14px;
  transition:0.3s;
}

.mega-item:hover{
  background:linear-gradient(135deg,#3b82f6,#06b6d4);
  transform:translateY(-5px);
}

.mega-item:hover i,
.mega-item:hover span{
  color:white;
}

/* HERO */
.hero {
  height:100vh;
  display:flex;
  align-items:center;
  padding:0 80px;
  color:white;
  position:relative;
  background:url('https://images.unsplash.com/photo-1557804506-669a67965ba0?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  background-size: 110%;
  animation: bgZoom 60s linear infinite;
  overflow:hidden;
}

/* Overlay */
.hero::before {
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: linear-gradient(270deg, rgba(15,23,42,0.8) 0%, rgba(15,23,42,0.6) 50%, rgba(15,23,42,0.9) 100%);
  z-index:1;
  animation: overlayShift 20s ease-in-out infinite alternate;
}

/* Content */
.hero-content{
  position:relative;
  max-width:700px;
  padding-left:30px;
  z-index:2;
  animation:fadeUp 1s ease forwards;
}

/* Label animation */
.hero-label{
  font-size:22px;
  font-weight:700;
  color:#06b6d4;
  letter-spacing:2px;
  margin-bottom:15px;
  display:flex;
  align-items:center;
  gap:10px;
  animation:floatLabel 3s ease-in-out infinite alternate;
}

.hero-label i{
  font-size:26px;
  color:#facc15;
  animation:rotateIcon 5s linear infinite;
}

@keyframes floatLabel{
  0%{ transform:translateY(0); }
  50%{ transform:translateY(-8px);}
  100%{ transform:translateY(0);}
}

@keyframes rotateIcon{
  0%{ transform:rotate(0deg);}
  100%{ transform:rotate(360deg);}
}

@keyframes bgZoom {
  0% { background-position: center center; background-size: 110%; }
  50% { background-position: top center; background-size: 115%; }
  100% { background-position: center center; background-size: 110%; }
}

@keyframes overlayShift {
  0% { background: linear-gradient(270deg, rgba(15,23,42,0.8) 0%, rgba(15,23,42,0.6) 50%, rgba(15,23,42,0.9) 100%);}
  50% { background: linear-gradient(90deg, rgba(15,23,42,0.7) 0%, rgba(15,23,42,0.5) 50%, rgba(15,23,42,0.85) 100%);}
  100% { background: linear-gradient(270deg, rgba(15,23,42,0.8) 0%, rgba(15,23,42,0.6) 50%, rgba(15,23,42,0.9) 100%);}
}

/* Typing title */
.animated-title{
  font-size:52px;
  font-weight:700;
  margin-bottom:20px;
  overflow:hidden;
  white-space:nowrap;
  display:block;
  width:0ch;
  animation:typing 2.5s steps(33) forwards;
}

@keyframes typing{
  0%{ width:0ch; }
  100%{ width:33ch; }
}

/* Description fade-in */
.animated-desc{
  font-size:18px;
  line-height:1.7;
  margin-bottom:40px;
  opacity:0;
  transform:translateY(20px);
  animation:fadeUpText 1s ease forwards 2.5s;
}

@keyframes fadeUpText{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* Buttons */
.hero-buttons{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

/* Base Button Style */
.btn {
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.4s;
  font-size: 15px;
  border: none;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
}

/* Primary Gradient Button */
.btn-gradient {
  background: linear-gradient(135deg, #3b82f6, #06b6d4, #10b981);
  color: #fff;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
  animation: gradientMove 6s ease infinite;
}
.btn-gradient:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.6);
}

/* Explore Features Button */
.btn-primary {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  color: #fff;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}
.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.6);
}

/* Enterprise Inquiry Button */
.btn-enterprise {
  background: linear-gradient(135deg, #f43f5e, #2563eb, #10b981);
  color: #fff;
  box-shadow: 0 8px 20px rgba(244, 63, 94, 0.4);
  animation: gradientMove 6s ease infinite;
  margin-top: 25px;
}
.btn-enterprise:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(244, 63, 94, 0.6);
}

/* Icon inside buttons */
.btn i {
  font-size: 18px;
}

/* Hero section buttons fade animation */
.hero-buttons .btn {
  opacity: 0;
  transform: translateY(20px);
  animation: btnFadeUp 0.8s forwards;
}
.hero-buttons .btn:nth-child(1) { animation-delay: 3.2s; }
.hero-buttons .btn:nth-child(2) { animation-delay: 3.5s; }

@keyframes btnFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Gradient animation */
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Mobile adjustments */
@media (max-width: 480px) {
  .btn {
    width: 100%;
    max-width: 260px;
    justify-content: center;
  }
  .btn i {
    font-size: 16px;
  }
}

/* ============================= */
/* MOBILE RESPONSIVE HEADER */
/* ============================= */

@media (max-width: 992px) {

  header{
    padding: 18px 40px;
  }

}

@media (max-width: 768px) {

  header{
    padding: 15px 25px;
  }

}

@media (max-width: 576px) {

  header{
    padding: 12px 18px;
    flex-wrap: wrap;
  }

}

/* ============================= */
/* MOBILE RESPONSIVE HERO TEXT */
/* ============================= */

@media (max-width: 992px){

  .animated-title{
    font-size:42px;
  }

}

@media (max-width: 768px){

  .animated-title{
    font-size:34px;

    /* Disable typing width lock for mobile */
    white-space: normal;
    width: 100%;
    animation: fadeUpMobile 1s ease forwards;
  }

  .animated-desc{
    font-size:16px;
    margin-bottom:30px;
  }

  .hero-buttons{
    justify-content:center;
  }

}

@media (max-width: 480px){

  .animated-title{
    font-size:28px;
    line-height:1.3;
  }

  .animated-desc{
    font-size:14px;
  }

  .btn{
    width:100%;
    max-width:260px;
    text-align:center;
  }

}

/* Simple mobile fade animation */
@keyframes fadeUpMobile{
  from{
    opacity:0;
    transform:translateY(20px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* INTRODUCTION */
.introduction{
  padding:120px 80px;
  background:#0f172a;
  color:white;
  position:relative;
  overflow:hidden;
}

.intro-container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:50px;
  max-width:1200px;
  margin:0 auto;
  flex-wrap:wrap;
  position:relative;
  z-index:1;
}

.intro-left{
  flex:1;
}

.intro-left h2{
  font-size:38px;
  margin-bottom:20px;
  color:#06b6d4;
}

.intro-left p{
  font-size:18px;
  line-height:1.8;
  margin-bottom:30px;
  color:rgba(255,255,255,0.85);
}

.intro-left .btn-primary{
  background:linear-gradient(135deg,#3b82f6,#06b6d4);
  box-shadow:0 6px 20px rgba(59,130,246,0.4);
}

.intro-left .btn-primary:hover{
  box-shadow:0 15px 35px rgba(59,130,246,0.6);
  transform:translateY(-5px);
}

.intro-right{
  flex:1;
  display:flex;
  justify-content:center;
  position:relative;
}

.intro-animation{
  width:100%;
  max-width:500px;
  position:relative;
}

.intro-animation img{
  width:100%;
  border-radius:20px;
  box-shadow:0 20px 50px rgba(0,0,0,0.3);
  transform: rotate(0deg);
  animation:floatImage 6s ease-in-out infinite alternate;
  position:relative;
  z-index:1;
}

.float-icon{
  position:absolute;
  font-size:28px;
  opacity:0.85;
  z-index:2;
  color:#06b6d4;
  transition:transform 0.2s ease;
}

.icon1{ top:-25px; left:-25px; }
.icon2{ bottom:-20px; left:10%; }
.icon3{ top:10%; right:-25px; }
.icon4{ bottom:0; right:15%; }
.icon5{ top:30%; left:50%; }
.icon6{ bottom:20%; right:50%; }

/* Hide hamburger on desktop */
.menu-toggle{
  display:none;
  font-size:28px;
  color:white;
  cursor:pointer;
}

@keyframes floatImage{
  0%{ transform:translateY(0px) rotate(0deg);}
  50%{ transform:translateY(-18px) rotate(2deg);}
  100%{ transform:translateY(0px) rotate(0deg);}
}

@media(max-width:1000px){

  header{
    padding:20px;
  }

  .menu-toggle{
    display:block;
  }

  nav ul{
    position:absolute;
    top:80px;
    right:0;
    background:#0f172a;
    flex-direction:column;
    width:100%;
    padding:20px 0;
    display:none;
    text-align:center;
  }

  nav ul li{
    padding:12px 0;
  }

  nav ul.show{
    display:flex;
  }

  /* Disable desktop hover effect */
  .mega-parent:hover .mega-menu{
    opacity:1;
    visibility:hidden;
  }

  .mega-menu{
    position:static;
    transform:none;
    width:100%;
    background:#1e293b;
    box-shadow:none;
    padding:15px;
    display:none;
    grid-template-columns:1fr;
    opacity:1;
    visibility:visible;
  }

  .mega-parent.active .mega-menu{
    display:grid;
  }

  .mega-item{
    background:#334155;
    margin:5px 15px;
  }

  .mega-item span{
    color:white;
  }

  .float-icon{
    display:none;
  }

  .introduction{
    padding:80px 20px;
  }

  .intro-container{
    flex-direction:column-reverse;
  }

  .intro-left h2{
    font-size:28px;
  }

  .intro-left p{
    font-size:16px;
  }

}

.hero-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to top right, #0f172a 50%, transparent 100%);
  clip-path: polygon(0 0, 100% 30%, 100% 100%, 0 100%);
  z-index: 2;
}

/* ===============================
   INTRO HEADER (Premium Dark)
================================= */

.intro-header{
  text-align:center;
  margin-bottom:80px;
  max-width:900px;
  margin-left:auto;
  margin-right:auto;
  animation:introFadeUp 1s ease forwards;
  opacity:0;
}

/* Small badge */
.intro-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:rgba(6,182,212,0.1);
  border:1px solid rgba(6,182,212,0.3);
  color:#06b6d4;
  padding:8px 18px;
  border-radius:30px;
  font-size:40px;
  font-weight: bold;
  font-weight:600;
  margin-bottom:25px;
  backdrop-filter:blur(10px);
  animation:badgeFloat 3s ease-in-out infinite;
}

.intro-badge i{
  font-size:40px;
  font-weight: bold;
}

/* Main Title */
.intro-main-title{
  font-size:42px;
  font-weight:700;
  margin-bottom:20px;
  color:white;
  line-height:1.3;
}

.intro-main-title span{
  color:#06b6d4;
  position:relative;
}

/* Animated underline */
.intro-main-title span::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:100%;
  height:3px;
  background:#06b6d4;
  border-radius:5px;
  transform:scaleX(0);
  transform-origin:left;
  animation:underlineExpand 1s ease forwards 0.5s;
}

/* Subtitle */
.intro-subtitle{
  font-size:18px;
  color:rgba(255,255,255,0.75);
  line-height:1.8;
  max-width:700px;
  margin:0 auto;
}

/* Animations */

@keyframes introFadeUp{
  from{
    opacity:0;
    transform:translateY(40px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes badgeFloat{
  0%{ transform:translateY(0); }
  50%{ transform:translateY(-6px); }
  100%{ transform:translateY(0); }
}

@keyframes underlineExpand{
  from{ transform:scaleX(0); }
  to{ transform:scaleX(1); }
}

.features-section {
  position: relative;
  padding: 120px 8%;
  overflow: hidden;
  background: linear-gradient(-45deg, #eef4ff, #f8fbff, #e6f0ff, #f0f7ff);
  background-size: 400% 400%;
  animation: gradientMove 15s ease infinite;
}

/* Gradient Animation */
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Watermark Logo */
.logo-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  opacity: 0.05;
  transform: translate(-50%, -50%) rotate(0deg) scale(1);
  animation: logoFloat 30s ease-in-out infinite alternate;
  z-index: 0;
  pointer-events: none;
}

.logo-watermark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Logo Float Animation */
@keyframes logoFloat {
  0% { transform: translate(-50%, -50%) rotate(0deg) scale(1); }
  50% { transform: translate(-48%, -52%) rotate(15deg) scale(1.05); }
  100% { transform: translate(-50%, -50%) rotate(0deg) scale(1); }
}

/* Particle Canvas */
#particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* Section Header and Cards */
.features-header { position: relative; z-index: 2; text-align: center; margin-bottom: 70px; animation: fadeUp 1s ease forwards; }
.features-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(0,102,255,0.1); color: #0066ff; padding: 6px 18px; border-radius: 30px; font-weight: 600; margin-bottom: 20px; animation: floatBadge 3s ease-in-out infinite alternate; }
.features-badge i { animation: rotateIcon 5s linear infinite; }
.features-main-title { font-size: 36px; font-weight: 700; }
.features-main-title span { color: #0066ff; }
.features-subtitle { max-width: 700px; margin: 15px auto 0; color: #666; font-size: 16px; }
.features-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2; /* Ensure cards are above watermark */
}
.feature-card {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  padding: 35px 25px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;

  opacity: 1; /* Make sure cards are visible */
  transform: translateY(0) rotateX(0deg) rotateY(0deg) scale(1);
}
.feature-card:hover { transform: translateY(-15px) scale(1.05) rotateX(2deg) rotateY(2deg); box-shadow: 0 25px 50px rgba(0,102,255,0.25); }
.feature-icon { font-size: 32px; color: #0066ff; margin-bottom: 18px; animation: floatIcon 3s ease-in-out infinite; }
.feature-card h3 { font-size: 18px; margin-bottom: 12px; }
.feature-card p { font-size: 14px; color: #666; line-height: 1.6; }
@keyframes floatIcon { 0% { transform: translateY(0px);} 50% { transform: translateY(-6px);} 100% { transform: translateY(0px);} }
@keyframes floatBadge { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-8px);} }
@keyframes rotateIcon { 0% { transform: rotate(0deg);} 100% { transform: rotate(360deg);} }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px);} to { opacity: 1; transform: translateY(0);} }

/* ===============================
   PREMIUM MODULE TIMELINE
================================ */

.modules-timeline-section {
  padding: 140px 8%;
  background: linear-gradient(135deg,#f0f6ff,#e6f0ff);
  position: relative;
}

.timeline-header {
  text-align: center;
  margin-bottom: 100px;
  animation: fadeUp 0.8s ease forwards;
}

/* Small Top Badge */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(0,102,255,0.08);
  color: #004aad;
  border-radius: 50px;
  font-weight: 600;
  font-size: 40px;
  margin-bottom: 25px;
  transition: 0.3s;
}

.section-badge i {
  color: #00c6ff;
}

.section-badge:hover {
  background: linear-gradient(135deg,#0066ff,#00c6ff);
  color: white;
  transform: translateY(-3px);
}

.section-badge:hover i {
  color: white;
}

/* Main Title */
.section-title {
  font-size: 44px;
  font-weight: 800;
  background: linear-gradient(90deg,#004aad,#00c6ff);
  -webkit-text-fill-color: transparent;
  margin-bottom: 25px;
  line-height: 1.2;
}

/* Subtitle */
.section-subtitle {
  font-size: 18px;
  color: #555;
  max-width: 850px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Entrance Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* LAYOUT */
.timeline-container {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

/* LEFT NAV */
.timeline-nav {
  width: 320px;
  padding-left: 40px;

  position: sticky;
  top: 120px; /* adjust based on your header height */
  align-self: flex-start;
}

/* Vertical Line */
.timeline-nav::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom,#0066ff,#00c6ff);
  border-radius: 10px;
}

/* Timeline Item */
.timeline-item {
  position: relative;
  margin-bottom: 35px;
  padding: 18px 25px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  box-shadow: 0 10px 30px rgba(0,102,255,0.08);
  transition: all 0.4s ease;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -30px;
  width: 18px;
  height: 18px;
  background: #ccc;
  border-radius: 50%;
  transition: 0.3s;
}

.timeline-item:hover {
  transform: translateX(8px);
  box-shadow: 0 20px 40px rgba(0,102,255,0.2);
}

.timeline-item.active {
  background: linear-gradient(135deg,#0066ff,#00c6ff);
  color: white;
  transform: translateX(10px);
}

.timeline-item.active::before {
  background: #00c6ff;
  box-shadow: 0 0 15px #00c6ff;
}

/* RIGHT CONTENT */
.timeline-content {
  flex: 1;
  position: relative;
}

/* IMPORTANT FIX (no absolute anymore) */
.module-content {
  display: none;
  animation: slideFade 0.6s ease forwards;
}

.module-content.active {
  display: block;
}

@keyframes slideFade {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ===============================
   EMPLOYEE MODULE
================================ */

.employee-module-section {
  position: relative;
  padding: 80px 60px;
  background: linear-gradient(-45deg,#e0f0ff,#d0e7ff,#c0dfff,#d9ecff);
  border-radius: 25px;
}

.module-header {
  text-align: center;
  margin-bottom: 60px;
}

.module-badge {
  display: inline-flex;
  gap: 8px;
  background: rgba(0,102,255,0.15);
  color: #0066ff;
  padding: 6px 18px;
  border-radius: 30px;
  font-weight: 600;
  margin-bottom: 20px;
}

.module-main-title {
  font-size: 34px;
  font-weight: 700;
  color: #004aad;
}

.module-subtitle {
  max-width: 750px;
  margin: 15px auto 0;
  line-height: 1.8;
  color: #004aad;
}

/* CONTENT LAYOUT */
.module-container {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

/* LEFT CARDS */
.module-left { flex: 1; min-width: 350px; }

/* ===============================
   UPDATED FEATURE CARD DESIGN
================================ */

.mdlfeaturecard {
  background: white;
  border-radius: 22px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 15px 40px rgba(0,102,255,0.08);
  transition: all 0.4s cubic-bezier(.25,.8,.25,1);
  position: relative;
  overflow: hidden;
}

.mdlfeaturecard::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(0,102,255,0.15), transparent);
  transition: 0.6s;
}

.mdlfeaturecard:hover::before {
  left: 100%;
}

.mdlfeaturecard:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0,102,255,0.2);
}

.mdlfeatureicon {
  font-size: 30px;
  color: #0066ff;
  margin-bottom: 18px;
  transition: 0.4s ease;
}

.mdlfeaturecard:hover .mdlfeatureicon {
  transform: scale(1.2) rotate(10deg);
}

.mdlfeaturecard h3 {
  margin-bottom: 15px;
  color: #0046cc;
  font-weight: 600;
}

.mdlfeaturecard p {
  color: #555;
  line-height: 1.7;
}

/* ===============================
   PREMIUM ROUNDED TAB LIST
================================ */

.tab-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px; /* proper spacing between items */
}

/* Individual Label */
.tab-list li {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: 50px;
  background: linear-gradient(135deg, #f5f9ff, #eaf2ff);
  font-size: 14px;
  font-weight: 500;
  color: #004aad;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* Soft Animated Shine */
.tab-list li::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.6), transparent);
  transition: 0.6s;
}

.tab-list li:hover::before {
  left: 120%;
}

/* Hover Effect */
.tab-list li:hover {
  transform: translateX(8px);
  background: linear-gradient(135deg, #0066ff, #00c6ff);
  color: #fff;
  box-shadow: 0 10px 25px rgba(0,102,255,0.25);
}

/* Icon Styling */
.tab-list li i {
  font-size: 14px;
  color: #0066ff;
  transition: 0.3s ease;
}

/* Icon Animation on Hover */
.tab-list li:hover i {
  color: #fff;
  transform: scale(1.2) rotate(8deg);
}

/* RIGHT IMAGES */
.module-right {
  flex: 1;
  min-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.image-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,102,255,0.1);
  border: 2px solid rgba(0,102,255,0.2);
  transition: 0.3s ease;
}

.image-wrapper:hover {
  transform: scale(1.03);
  box-shadow: 0 25px 60px rgba(0,102,255,0.25);
}

.zoomable-image {
  width: 100%;
  display: block;
  cursor: pointer;
}
/* ============================= */
/* RESPONSIVE IMAGE MODAL */
/* ============================= */

.image-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(6px);
  justify-content: center;
  align-items: center;
  padding: 20px;
  animation: fadeInModal 0.3s ease;
}

/* Modal Image */
.image-modal img {
  max-width: 95%;
  max-height: 85vh;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  animation: zoomIn 0.3s ease;
  object-fit: contain;
}

/* Caption */
#caption {
  margin-top: 15px;
  text-align: center;
  color: #f1f5f9;
  font-size: 16px;
  max-width: 90%;
}

/* Close Button */
.close-modal {
  position: absolute;
  top: 25px;
  right: 40px;
  font-size: 38px;
  color: white;
  cursor: pointer;
  transition: 0.3s ease;
}

.close-modal:hover {
  transform: scale(1.2);
  color: #38bdf8;
}

/* Animations */
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes zoomIn {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* ============================= */
/* MOBILE RESPONSIVE */
/* ============================= */

@media (max-width: 768px) {

  .image-modal {
    padding: 15px;
  }

  .image-modal img {
    max-width: 100%;
    max-height: 75vh;
    border-radius: 12px;
  }

  .close-modal {
    top: 15px;
    right: 20px;
    font-size: 32px;
  }

  #caption {
    font-size: 14px;
    padding: 0 10px;
  }
}

@media (max-width: 480px) {

  .image-modal img {
    max-height: 70vh;
  }

  .close-modal {
    font-size: 28px;
  }

  #caption {
    font-size: 13px;
  }
}

@media(max-width:1000px){
  .timeline-container { flex-direction: column; }
  .timeline-nav { width: 100%; }
}

/* ============================= */
/* MOBILE RESPONSIVE TIMELINE & MODULES */
/* ============================= */

@media (max-width: 1000px) {

  /* TIMELINE */
  .timeline-container {
    flex-direction: column;
    gap: 40px;
  }

  .timeline-nav {
    width: 100%;
    padding-left: 20px;
  }

  .timeline-nav::before {
    left: 10px;
  }

  .timeline-item {
    padding: 14px 20px;
    margin-bottom: 25px;
  }

  .timeline-item::before {
    left: -25px;
    width: 14px;
    height: 14px;
  }

  .timeline-content {
    flex: 1;
  }
}

/* EMPLOYEE MODULE */
@media (max-width: 992px) {
  .employee-module-section {
    padding: 60px 6%;
  }

  .module-header {
    margin-bottom: 40px;
  }

  .module-main-title {
    font-size: 28px;
  }

  .module-subtitle {
    font-size: 15px;
  }

  .module-container {
    flex-direction: column;
    gap: 30px;
  }

  .module-left,
  .module-right {
    min-width: 100%;
  }
}

/* SMALL MOBILE (480px) */
@media (max-width: 480px) {

  .modules-timeline-section {
    padding: 80px 5%;
  }

  .timeline-header {
    margin-bottom: 60px;
  }

  .section-badge {
    font-size: 28px;
    padding: 6px 16px;
  }

  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 14px;
    line-height: 1.5;
  }

  .timeline-item {
    padding: 12px 16px;
    margin-bottom: 20px;
    font-size: 14px;
  }

  .mdlfeaturecard {
    padding: 20px;
  }

  .mdlfeatureicon {
    font-size: 26px;
  }

  .tab-list li {
    font-size: 13px;
    padding: 10px 16px;
  }

  .image-wrapper {
    border-radius: 16px;
  }

  .zoomable-image {
    width: 100%;
  }
}

/* IMAGE MODAL ALREADY RESPONSIVE */
@media (max-width: 768px) {
  .image-modal {
    padding: 15px;
  }

  .image-modal img {
    max-width: 100%;
    max-height: 75vh;
    border-radius: 12px;
  }

  .close-modal {
    top: 15px;
    right: 20px;
    font-size: 32px;
  }

  #caption {
    font-size: 14px;
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  .image-modal img {
    max-height: 70vh;
  }

  .close-modal {
    font-size: 28px;
  }

  #caption {
    font-size: 13px;
  }
}

.pricing-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  margin-top: 50px;
}

.pricing-left {
  display: flex;
  flex-direction: column;
}

.module-icon {
  font-size: 28px;
  margin-bottom: 15px;
  color: #4f46e5;
}

.pricing-card p span {
  display: block;
  font-size: 12px;
  color: #777;
}

.pricing-right {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.pricing-summary {
  background: linear-gradient(135deg,#4f46e5,#9333ea);
  padding: 40px;
  border-radius: 20px;
  color: white;
  text-align: center;
  box-shadow: 0 25px 60px rgba(79,70,229,0.4);
}

.enterprise-card {
  margin-top: 30px;
  padding: 30px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
  text-align: center;
  transition: 0.3s;
}

.enterprise-card:hover {
  transform: translateY(-8px);
}

.enterprise-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 25px;
  background: #4f46e5;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.enterprise-btn:hover {
  background: #9333ea;
}

@media(max-width: 992px){
  .pricing-wrapper {
    grid-template-columns: 1fr;
  }
}

.pricing-section {
  padding: 100px 8%;
  background: linear-gradient(135deg, #eef2ff, #f9fafc);
  text-align: center;
}

/* HEADER */
.pricing-main-title span {
  background: linear-gradient(90deg, #4f46e5, #9333ea);
  -webkit-text-fill-color: transparent;
}

/* USER SLIDER */
.user-slider-box {
  margin: 40px 0;
}

.user-slider-box input {
  width: 300px;
  margin-top: 15px;
}

/* GRID */
.pricing-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

/* CARD */
.pricing-card {
  position: relative;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  padding: 30px;
  border-radius: 20px;
  transition: all 0.4s ease;
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.pricing-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 45px rgba(79,70,229,0.2);
}

/* Mandatory Highlight */
.pricing-card.mandatory {
  border: 2px solid #4f46e5;
  background: #eef2ff;
}

.tag {
  margin-top: 10px;
  font-size: 12px;
  color: #4f46e5;
  font-weight: bold;
}

/* TOGGLE SWITCH */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
  margin-top: 15px;
}

.switch input {
  display: none;
}

.slider {
  position: absolute;
  cursor: pointer;
  background-color: #ccc;
  border-radius: 30px;
  inset: 0;
  transition: 0.4s;
}

.slider:before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: 0.4s;
}

input:checked + .slider {
  background: linear-gradient(90deg,#4f46e5,#9333ea);
}

input:checked + .slider:before {
  transform: translateX(24px);
}

/* SUMMARY */
.pricing-summary {
  margin-top: 70px;
  padding: 50px;
  border-radius: 25px;
  background: linear-gradient(135deg,#4f46e5,#9333ea);
  color: white;
  box-shadow: 0 25px 60px rgba(79,70,229,0.4);
  animation: fadeUp 1s ease;
}

.price-display {
  font-size: 48px;
  font-weight: bold;
  margin-top: 10px;
}

@keyframes fadeUp {
  from {opacity:0; transform: translateY(40px);}
  to {opacity:1; transform: translateY(0);}
}

/* Expandable Card */
.pricing-card.expandable {
  overflow: hidden;
  transition: all 0.4s ease;
}

.pricing-card.expandable:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(79,70,229,0.25);
}

/* Feature List Hidden Initially */
.feature-list {
  margin-top: 20px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.5s ease;
}

/* Show on Hover */
.pricing-card.expandable:hover .feature-list {
  max-height: 500px;
  opacity: 1;
}

/* Feature Strips */
.feature-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 15px;
  margin-bottom: 10px;
  border-radius: 30px;
  background: linear-gradient(90deg,#eef2ff,#ffffff);
  font-size: 14px;
  transform: translateX(-20px);
  opacity: 0;
  transition: all 0.4s ease;
}

/* Animate strips one by one */
.pricing-card.expandable:hover .feature-strip {
  transform: translateX(0);
  opacity: 1;
}

.feature-strip i {
  color: #4f46e5;
  font-size: 14px;
}

/* Glow effect */
.pricing-card.expandable:hover {
  border: 1px solid rgba(79,70,229,0.4);
}

/* ================= SERVICES SECTION ================= */

.services-section {
  padding: 100px 5%;
  background: linear-gradient(135deg, #f8fafc, #eef3ff);
  text-align: center;
}


.services-title {
  font-size: 38px;
  margin-bottom: 15px;
}

.services-title span {
  color: #2563eb;
}

.services-subtitle {
  max-width: 650px;
  margin: auto;
  color: #555;
  margin-bottom: 60px;
}

/* Grid */
.services-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

/* Card */
.service-card {
  background: #fff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* Icon */
.service-icon {
  font-size: 32px;
  margin-bottom: 20px;
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50%;
  margin-inline: auto;
  color: #fff;
}

.service-icon.cms { background: linear-gradient(135deg, #6366f1, #4f46e5); }
.service-icon.design { background: linear-gradient(135deg, #10b981, #059669); }
.service-icon.seo { background: linear-gradient(135deg, #f59e0b, #d97706); }

/* Description */
.service-desc {
  font-size: 15px;
  color: #666;
  margin-bottom: 20px;
}

/* Features */
.service-features {
  text-align: left;
  font-size: 14px;
  color: #444;
}

.service-features div {
  margin-bottom: 8px;
}

.service-features i {
  color: #2563eb;
  margin-right: 6px;
}

/* Hover Content */
.service-hover-content {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: #2563eb;
  color: #fff;
  padding: 25px;
  transition: 0.4s ease;
  font-size: 14px;
}

.service-card:hover .service-hover-content {
  bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .services-title {
    font-size: 28px;
  }
}

.clients-section {
  position: relative;
  padding: 120px 5%;
  background: #f5f7ff;
  overflow: hidden;
  text-align: center;
}

/* Parallax background */
.parallax-bg {
  position: absolute;
  top:0; left:0; width:100%; height:100%;
  background: url('images/parallax-bg.jpg') center/cover no-repeat;
  z-index: -1;
  transform: translateZ(-1px) scale(2);
  will-change: transform;
}


/* Gradient Animation */
@keyframes gradientAnimation {
  0%{background-position:0% 50%;}
  50%{background-position:100% 50%;}
  100%{background-position:0% 50%;}
}

.clients-title { font-size:42px; margin-bottom:15px; }
.clients-title span { color:#2563eb; }
.clients-subtitle { max-width:700px; margin:auto; color:#555; margin-bottom:50px; }

/* Counters */
.clients-counters { display:flex; justify-content:center; gap:60px; margin-bottom:50px; flex-wrap:wrap; }
.counter-box h3 { font-size:40px; color:#2563eb; margin-bottom:8px; }
.counter-box p { font-size:16px; color:#555; }

/* Filter Buttons */
.clients-filters { margin-bottom:50px; }
.filter-btn { padding:12px 24px; margin:0 8px; border:none; border-radius:30px; background:#e2e8f0; color:#333; cursor:pointer; transition:all 0.4s ease; }
.filter-btn.active, .filter-btn:hover { background:#2563eb; color:#fff; transform: scale(1.1); }

/* Clients carousel */
.clients-carousel { padding-bottom:60px; }
.swiper-slide.client-card {
  background:#fff;
  border-radius:20px;
  padding:20px;
  width:220px;
  height:260px;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
  display:flex; flex-direction:column; justify-content:center; align-items:center;
}
.client-card img { max-width:120px; max-height:80px; margin-bottom:15px; filter: grayscale(100%); transition: transform 0.4s ease, filter 0.6s ease; }
.client-card p { font-weight:600; font-size:16px; color:#333; }
.client-card:hover { transform: rotateY(6deg) rotateX(6deg) translateZ(15px); box-shadow:0 25px 50px rgba(0,0,0,0.18); }
.client-card:hover img { transform: scale(1.15); filter: grayscale(0%); }

/* Testimonials carousel */
.testimonials-wrapper { margin-top:80px; position:relative; }
.testimonial-card { background:#fff; border-radius:20px; padding:50px; box-shadow:0 15px 50px rgba(0,0,0,0.1); text-align:center; transition: transform 0.4s ease, box-shadow 0.4s ease; }
.testimonial-card:hover { transform: translateY(-10px); box-shadow:0 25px 60px rgba(0,0,0,0.15); }
.testimonial-card p { font-size:18px; color:#333; font-style:italic; margin-bottom:20px; }
.testimonial-card h4 { font-size:14px; color:#555; }

/* Swiper nav */
.swiper-button-next, .swiper-button-prev { color:#2563eb; }

/* CLIENT CARD (GLASS + ANIMATION) */
.swiper-slide.client-card {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 22px;
  padding: 25px;
  width: 240px;
  height: 300px;
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transition: all 0.5s ease;
  display:flex;
  align-items:center;
  justify-content:center;
  position: relative;
  overflow: hidden;
}

/* INNER */
.client-inner {
  text-align: center;
  z-index: 2;
}

/* LOGO (FULL COLOR DEFAULT) */
.client-inner img {
  max-width: 120px;
  max-height: 80px;
  margin-bottom: 15px;
  transition: all 0.5s ease;
  transform: scale(1);
}

/* TITLE */
.client-inner h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #222;
  transition: color 0.3s ease;
}

/* 🔥 HOVER CARD EFFECT */
.client-card:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 30px 70px rgba(0,0,0,0.2);
}

/* 🔥 LOGO ANIMATION */
.client-card:hover img {
  transform: scale(1.2) rotate(2deg);
}

/* ✨ TEXT COLOR CHANGE */
.client-card:hover h3 {
  color: #2563eb;
}

/* 🌟 LIGHT GLOW EFFECT */
.client-card::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(37,99,235,0.15), transparent 60%);
  top: -50%;
  left: -50%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.client-card:hover::before {
  opacity: 1;
}

/* 💎 SHINE SWEEP EFFECT */
.client-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.5),
    transparent
  );
  transform: skewX(-20deg);
}

/* Animate shine on hover */
.client-card:hover::after {
  left: 120%;
  transition: 0.8s;
}

/* ===== ICE BUTTON ===== */
.visit-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
  color: #2563eb;
  font-weight: 600;
  position: relative;

  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.6);

  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
}

.visit-btn i {
  transition: transform 0.3s ease;
}

/* BUTTON HOVER */
.visit-btn:hover {
  background: #2563eb;
  color: #fff;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 10px 25px rgba(37,99,235,0.4);
}

/* ICON MOVE */
.visit-btn:hover i {
  transform: translateX(4px);
}
/* Responsive */
@media(max-width:1024px){ .swiper-slide.client-card{width:200px; height:240px;} }
@media(max-width:768px){ .clients-title{font-size:32px;} .clients-counters{flex-direction:column; gap:25px;} .swiper-slide.client-card{width:180px; height:220px;} }

/* ==========================
   Contact Section Styles
========================== */
.contact-section {
  position: relative;
  padding: 120px 5%;
  background:#f5f7ff;
  overflow:hidden;
  font-family: 'Poppins', sans-serif;
}

/* Background */
.contact-bg {
  position:absolute;
  top:0; left:0; width:100%; height:100%;
  background: linear-gradient(135deg, #2563eb, #10b981, #f43f5e);
  opacity:0.05;
  transform: scale(1.5);
  z-index:0;
}

/* Header */
.contact-header {
  text-align:center;
  position:relative;
  z-index:1;
}
.contact-title { font-size:42px; margin-bottom:15px; font-weight:700; color:#222; }
.contact-subtitle { color:#555; max-width:700px; margin:auto; margin-bottom:60px; font-size:16px; line-height:1.7; }

/* Wrapper */
.contact-wrapper { display:flex; flex-wrap:wrap; gap:50px; justify-content:center; position:relative; z-index:1; }

/* Contact Form */
.contact-form-wrapper {
  flex:1 1 400px;
  background:#fff;
  border-radius:20px;
  padding:40px;
  box-shadow:0 20px 60px rgba(0,0,0,0.12);
  display:flex;
  flex-direction:column;
  gap:15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-form-wrapper:hover { transform: translateY(-5px); box-shadow:0 30px 80px rgba(0,0,0,0.2); }
.contact-form-wrapper h3 { font-size:24px; color:#2563eb; margin-bottom:15px; }

/* Inputs */
.input-group { position:relative; margin-bottom:15px; }
.input-group i {
  position:absolute; left:12px; top:50%; transform:translateY(-50%);
  color:#2563eb; font-size:16px;
}
.input-group input, .input-group textarea {
  width:100%; padding:12px 12px 12px 38px; border-radius:10px; border:1px solid #ddd;
  font-size:16px; font-family: inherit; transition: all 0.3s ease;
}
.input-group input:focus, .input-group textarea:focus { border-color:#2563eb; outline:none; }

/* Contact Cards */
.contact-info-wrapper { flex:1 1 450px; display:grid; grid-template-columns:1fr 1fr; gap:25px; }
.contact-card, .partners-card {
  background:#fff; border-radius:20px; padding:25px; text-align:center; box-shadow:0 20px 50px rgba(0,0,0,0.1);
  transition: all 0.3s ease; display:flex; flex-direction:column; justify-content:center; min-height:220px;
}
.contact-card:hover, .partners-card:hover { transform: translateY(-5px); box-shadow:0 30px 70px rgba(0,0,0,0.2); }
/* .contact-card i { font-size:28px; color:#2563eb; margin-bottom:10px; display:block; } */
.contact-card h4 { margin-bottom:8px; font-size:18px; color:#222; }
.contact-card p { color:#555; font-size:14px; line-height:1.6; word-break: break-word; }
.partners-card p { margin-bottom:12px; }

/* Social Links */
.social-links { grid-column:1/-1; display:flex; justify-content:center; gap:15px; margin-top:20px; }
.social-links a { font-size:24px; color:#555; transition:all 0.3s ease; }
.social-links a:hover { color:#2563eb; transform:scale(1.2); }

/* Footer */
.contact-footer { text-align:center; margin-top:50px; color:#555; font-size:14px; }

/* Tilt Card */
.tilt-card { transform-style: preserve-3d; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.tilt-card:hover { transform: perspective(1000px) rotateX(3deg) rotateY(3deg); }

/* Fade-in */
.pre-fade { opacity:0; transform:translateY(20px); transition: all 0.8s ease-out; }
.fade-in { opacity:1 !important; transform:translateY(0) !important; }

/* Responsive */
@media(max-width:1024px){ 
  .contact-wrapper{ flex-direction:column; align-items:center; }
  .contact-info-wrapper{ grid-template-columns:1fr; }
}

/* Particles */
.contact-particles { position:absolute; top:0; left:0; width:100%; height:100%; z-index:0; pointer-events:none; }

/* Gradient Animation */
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Base Gradient Setup */
.btn-gradient,
.btn-whatsapp,
.btn-phone,
.btn-email,
.btn-partner {
  background-size: 200% 200%;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Hover (same for all) */
.btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

/* Icon animation */
.btn i {
  transition: transform 0.3s ease;
}
.btn:hover i {
  transform: translateX(5px) rotate(15deg);
}

/* =========================
   Button Variants
========================= */

/* WhatsApp */
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E, #25D366);
  animation: gradientMove 6s ease infinite;
}

/* Phone */
.btn-phone {
  background: linear-gradient(135deg, #2563eb, #1E40AF, #3b82f6);
  animation: gradientMove 6s ease infinite;
}

/* Email */
.btn-email {
  background: linear-gradient(135deg, #F43F5E, #B91C1C, #f87171);
  animation: gradientMove 6s ease infinite;
}

/* Partner */
.btn-partner {
  background: linear-gradient(135deg, #10b981, #06b6d4, #2563eb);
  animation: gradientMove 6s ease infinite;
}

/* ===========================
   Form Top Info Section
=========================== */
.form-top-info {
  text-align: center;
  margin-bottom: 25px;
}

/* Animated Icon Circle */
.form-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #3b82f6, #06b6d4, #10b981);
  color: #fff;
  font-size: 28px;
  animation: floatIcon 3s ease-in-out infinite;
  box-shadow: 0 10px 25px rgba(59,130,246,0.4);
}

/* Floating animation */
@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.form-top-info h3 {
  font-size: 24px;
  color: #2563eb;
  margin-bottom: 8px;
}

.form-top-info p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

/* Highlights */
.form-highlights {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.form-highlights div {
  background: #f1f5ff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  color: #2563eb;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: 0.3s;
}

.form-highlights div i {
  color: #10b981;
}

/* Hover effect */
.form-highlights div:hover {
  background: #2563eb;
  color: #fff;
}
.form-highlights div:hover i {
  color: #fff;
}

/* ===========================
   QR Code Cards
=========================== */
.qr-card {
  text-align: center;
}

/* QR Box */
.qr-box {
  background: #f8fafc;
  padding: 15px;
  border-radius: 15px;
  margin: 15px auto;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.05);
}

.qr-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

/* Hover effect */
.qr-card:hover .qr-box img {
  transform: scale(1.08);
}

/* Icon styling */
.qr-card i {
  font-size: 30px;
  margin-bottom: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .qr-box {
    width: 130px;
    height: 130px;
  }

  .qr-card h4 {
    font-size: 16px;
  }

  .qr-card p {
    font-size: 13px;
  }
}