@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --gradient-warm: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
  --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  
  --color-primary: #667eea;
  --color-secondary: #f5576c;
  --color-accent: #00f2fe;
  --color-warning: #fee140;
  --color-success: #10b981;
  
  --color-dark: #1a1a2e;
  --color-text: #2d3748;
  --color-text-light: #718096;
  
  --shadow-sm: 0 2px 8px rgba(102, 126, 234, 0.15);
  --shadow-md: 0 4px 20px rgba(102, 126, 234, 0.2);
  --shadow-lg: 0 10px 40px rgba(102, 126, 234, 0.3);
  --shadow-glow: 0 0 20px rgba(102, 126, 234, 0.5);
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}
.scrolling-navbar.top-nav-collapse a{
  color: #0b0b0b !important;
}
body {
  background: #ffffff;
  font-size: 16px;
  font-weight: 400;
  font-family: 'Inter', 'Open Sans', sans-serif;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--color-text);
  line-height: 1.7;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow-x: hidden;
  overflow-y: hidden;
}

*, *::before, *::after {
  box-sizing: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', 'Titillium Web', sans-serif;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

a {
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

a:focus {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

p {
  font-weight: 400;
  font-family: 'Inter', 'Open Sans', sans-serif;
  margin: 0 0 1rem 0;
  font-size: 1rem;
  line-height: 1.7;
}

ul, ol {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}

ul li, ol li {
  list-style: none;
}

a:not([href]):not([tabindex]) {
  color: #fff;
}

.section-header {
  margin-bottom: 60px;
  text-align: center;
}

.section-header p {
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-text-light);
  font-size: 1.1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  font-weight: 800;
  text-transform: uppercase;
  position: relative;
  margin-bottom: 1rem;
  animation: fadeInUp 0.6s ease-out;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-secondary);
  border-radius: 2px;
}

.padding-none {
  padding: 0;
}

.bg-gray {
  background: linear-gradient(180deg, #f7fafc 0%, #edf2f7 100%);
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
}

.btn {
  font-size: 16px;
  padding: 14px 36px;
  cursor: pointer;
  font-weight: 600;
  color: #fff;
  border-radius: 50px;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
  z-index: -1;
  transition: all 0.3s ease;
}

.btn:hover::before {
  transform: translateY(-100%);
}

.btn:focus,
.btn:active {
  box-shadow: 0 0 0 3px rgba(0, 242, 254, 0.4);
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
  color: #fff;
}

.btn-common {
  background: var(--gradient-primary);
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-md);
}

.btn-common:hover {
  color: #fff;
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.btn-common:active {
  transform: translateY(-1px);
}

.btn-border {
  color: var(--color-primary);
  background-color: transparent;
  border: 2px solid var(--color-primary);
  border-radius: 50px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.btn-border::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.btn-border:hover {
  color: #fff;
  border-color: transparent;
}

.btn-border:hover::before {
  left: 0;
}

.btn-border:focus {
  color: #fff;
}

.btn-lg {
  padding: 16px 40px;
  text-transform: uppercase;
  font-size: 18px;
}

.btn-rm {
  padding: 10px 24px;
  text-transform: capitalize;
}

button:focus {
  outline: 3px solid var(--color-accent) !important;
  outline-offset: 2px !important;
  box-shadow: 0 0 0 3px rgba(0, 242, 254, 0.3) !important;
}

.icon-close, .icon-check {
  color: var(--color-primary);
}

.social-icon a {
  color: #fff;
  background: var(--gradient-primary);
  width: 42px;
  height: 42px;
  line-height: 42px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  font-size: 18px;
  margin: 15px 6px 12px 4px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
}

.social-icon a:hover {
  transform: translateY(-5px) rotate(5deg);
  box-shadow: var(--shadow-lg);
}

.topnavs__nav_menu2 {
  width: 20rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.topnavs__nav_menu2-items {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(102, 126, 234, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.8), 0 0 30px rgba(245, 87, 108, 0.5);
  }
}

#language {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 9999;
  display: flex;
  gap: 10px;
}

#language a {
  display: block;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

#language a:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: var(--shadow-md);
}

#language img {
  display: block;
  border-radius: 50%;
  border: 3px solid #fff;
}

#header-wrap {
  position: relative;
  background: var(--gradient-hero);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.navbar {
  background: transparent !important;
  padding: 20px 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  padding: 15px 0;
}

.navbar-brand img {
  max-height: 50px;
  transition: all 0.3s ease;
  filter: brightness(0) invert(1);
}

.navbar.scrolled .navbar-brand img {
  filter: none;
  max-height: 45px;
}

.navbar-nav .nav-item {
  margin: 0 15px;
}

.navbar-nav .nav-link {
  color: #fff !important;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding: 8px 0 !important;
  transition: all 0.3s ease;
}

.navbar.scrolled .navbar-nav .nav-link {
  color: var(--color-dark) !important;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--gradient-secondary);
  transform: translateX(-50%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-item.active .nav-link::after {
  width: 100%;
}

.navbar-nav .nav-link:hover {
  transform: translateY(-2px);
}

.navbar-toggler {
  border: none;
  padding: 0;
}

.navbar-toggler:focus {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(0, 242, 254, 0.3);
}

.navbar-toggler .lni-menu {
  color: #fff;
  font-size: 28px;
}

.navbar.scrolled .navbar-toggler .lni-menu {
  color: var(--color-dark);
}

#hero-area {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
}

#hero-area::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}

.hero-area-bg {
  background: var(--gradient-hero);
  position: relative;
}

.hero-area-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to bottom, transparent, #fff);
}

.contents {
  position: relative;
  z-index: 10;
}

.head-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: #fff;
  font-weight: 800;
  margin-bottom: 30px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.8s ease-out;
  line-height: 1.2;
}

.header-button {
  margin-top: 40px;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.img-thumb {
  animation: fadeInUp 1s ease-out 0.6s both;
}

.img-thumb img {
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

.min-vh-80 {
  min-height: 80vh;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(2px 2px at 60% 70%, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(3px 3px at 50% 50%, rgba(255, 255, 255, 0.2), transparent),
    radial-gradient(2px 2px at 80% 10%, rgba(255, 255, 255, 0.3), transparent);
  background-size: 200% 200%;
  background-position: 0% 0%;
  animation: particles 15s ease-in-out infinite;
}

@keyframes particles {
  0%, 100% { background-position: 0% 0%; }
  50% { background-position: 100% 100%; }
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 40px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 50px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge i {
  font-size: 1.2rem;
  color: var(--color-accent);
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: #fff;
  font-weight: 900;
  margin-bottom: 25px;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.gradient-text {
  background: linear-gradient(135deg, #fff 0%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 35px;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1rem;
}

.btn-lg i {
  margin-right: 8px;
  font-size: 1.1rem;
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #fff 0%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-image-wrapper {
  position: relative;
  height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 450px;
  height: 450px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

.hero-image-bg::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.03) 100%);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite 0.5s;
}

.hero-floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  padding: 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.hero-floating-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.hero-floating-card i {
  font-size: 2rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-floating-card strong {
  display: block;
  color: var(--color-dark);
  font-size: 1.1rem;
  margin-bottom: 3px;
}

.hero-floating-card p {
  color: var(--color-text-light);
  font-size: 0.85rem;
  margin: 0;
}

.hero-card-1 {
  top: 10%;
  left: 5%;
  animation: float 6s ease-in-out infinite;
}

.hero-card-2 {
  top: 50%;
  right: 5%;
  animation: float 6s ease-in-out infinite 1s;
}

.hero-card-3 {
  bottom: 10%;
  left: 15%;
  animation: float 6s ease-in-out infinite 2s;
}

#feature {
  padding: 100px 0;
  position: relative;
  background: #fff;
}

.feature-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f7fafc 0%, #fff 50%, #f7fafc 100%);
  position: relative;
}

.feature-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  margin-bottom: 30px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(102, 126, 234, 0.1);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.feature-card:hover::before {
  opacity: 0.03;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.15);
  border-color: var(--color-primary);
}

.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
  transform: rotateY(360deg) scale(1.1);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.feature-icon i {
  font-size: 2.5rem;
  color: #fff;
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.feature-card p {
  color: var(--color-text-light);
  line-height: 1.8;
  margin: 0;
  position: relative;
  z-index: 1;
}

.text-link {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: underline;
  transition: all 0.3s ease;
}

.text-link:hover {
  color: var(--color-secondary);
  text-decoration: none;
}

.services-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #fff 0%, #f7fafc 100%);
  position: relative;
}

.service-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 30px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 0;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-10px);
  box-shadow: 0 25px 70px rgba(102, 126, 234, 0.2);
}

.service-card:hover h3,
.service-card:hover p {
  color: #fff;
}

.service-card:hover .service-number {
  color: rgba(255, 255, 255, 0.3);
}

.service-card:hover .service-arrow {
  opacity: 1;
  transform: translateX(0);
}

.service-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1) rotate(5deg);
}

.service-icon i {
  font-size: 2.2rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-card:hover .service-icon i {
  background: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-number {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(102, 126, 234, 0.1);
  line-height: 1;
  transition: all 0.4s ease;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.service-card p {
  color: var(--color-text-light);
  line-height: 1.8;
  margin: 0;
  flex-grow: 1;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.service-arrow {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.4s ease;
  z-index: 1;
}

.service-arrow i {
  color: #fff;
  font-size: 1.2rem;
}

.text-wrapper {
  padding: 60px;
}

.title-hl {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-dark);
  font-weight: 800;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.title-hl::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--gradient-secondary);
  border-radius: 2px;
}

.text-wrapper p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text-light);
}

.feature-bg {
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.feature-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.feature-thumb {
  padding: 60px 40px;
}

.feature-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(10px);
  box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-item .icon {
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.feature-item:hover .icon {
  transform: scale(1.1) rotate(5deg);
  animation: pulse 1s ease-in-out infinite;
}

.feature-item .icon i {
  font-size: 32px;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-content h3 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.feature-content p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin: 0;
}

.feature-content a {
  color: #fff;
  text-decoration: underline;
  font-weight: 600;
}

.feature-content a:hover {
  color: var(--color-warning);
}

#price {
  padding: 100px 0;
  background: linear-gradient(180deg, #fff 0%, #f7fafc 100%);
}

.price-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 50px;
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
}

.price-form-wrapper h2 {
  text-align: center;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.input-group {
  margin-bottom: 30px;
}

.input-wrapper {
  position: relative;
}

.input-heading {
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.select-item,
input[type="text"],
input[type="number"],
textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e2e8f0;
  border-radius: 15px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fff;
}

.select-item:focus,
input[type="text"]:focus,
input[type="number"]:focus,
textarea:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 0;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

.service-choose-items {
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  padding: 30px;
  border-radius: 20px;
  margin: 30px 0;
}

.service-option-items {
  display: none;
  color: var(--color-text);
  line-height: 1.8;
  font-size: 1rem;
}

.service-option-items.active {
  display: block;
  animation: fadeInUp 0.5s ease-out;
}

#services {
  padding: 100px 0;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

#services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  background-size: 50px 50px;
}

.services-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 40px 30px;
  border-radius: 25px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.services-item::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%);
  opacity: 0;
  transition: all 0.5s ease;
}

.services-item:hover::before {
  opacity: 1;
  transform: translate(25%, 25%);
}

.services-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.services-item .icon {
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.services-item:hover .icon {
  transform: scale(1.15) rotate(360deg);
}

.services-item .icon i {
  font-size: 40px;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-content h3 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.services-content h3 a {
  color: #fff;
}

.services-content h3 a:hover {
  color: var(--color-warning);
}

.services-content p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin: 0;
}

#contact {
  padding: 100px 0;
  background: linear-gradient(180deg, #f7fafc 0%, #fff 100%);
}

.contact-form-wrapper {
  background: #fff;
  padding: 50px;
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
}

.form-control {
  padding: 15px 20px;
  border: 2px solid #e2e8f0;
  border-radius: 15px;
  font-size: 1rem;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.form-control:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 0;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.contact-right {
  padding: 40px;
}

.contact-right h3 {
  color: var(--color-dark);
  font-size: 2rem;
  margin-bottom: 30px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.contact-info-item i {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  margin-right: 20px;
  flex-shrink: 0;
}

.contact-info-item span {
  color: var(--color-text);
  font-size: 1rem;
}

footer {
  background: var(--gradient-hero);
  color: #fff;
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-warm);
}

.footer-content {
  margin-bottom: 50px;
}

.footer-content h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.footer-content p,
.footer-content a {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.footer-content a:hover {
  color: #fff;
  transform: translateX(5px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.section-padding {
  padding: 100px 0;
}

.card {
  background: #fff;
  border-radius: 25px;
  border: none;
  box-shadow: var(--shadow-md);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.card-header {
  background: var(--gradient-primary);
  color: #fff;
  border: none;
  padding: 25px 30px;
}

.card-title {
  color: #fff;
  font-weight: 700;
  margin: 0;
}

.card-category {
  color: rgba(255, 255, 255, 0.8);
  margin: 5px 0 0 0;
}

.card-body {
  padding: 30px;
}

.card-footer {
  background: transparent;
  border-top: 1px solid #e2e8f0;
  padding: 20px 30px;
}

.wow {
  visibility: hidden;
}

.scrolling-navbar {
  transition: all 0.3s ease;
}

.scrolling-navbar.top-nav-collapse {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  #language {
    top: 10px;
    left: 10px;
  }

  #language a img {
    width: 50px;
  }

  .navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    margin-top: 20px;
    padding: 20px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
  }

  .navbar-nav .nav-link {
    color: var(--color-dark) !important;
    padding: 12px 0 !important;
    border-bottom: 1px solid #e2e8f0;
  }

  .head-title {
    font-size: 2.5rem;
  }

  .text-wrapper,
  .feature-thumb {
    padding: 40px 20px;
  }

  .price-form-wrapper,
  .contact-form-wrapper {
    padding: 30px 20px;
  }

  #feature,
  #price,
  #services,
  #contact {
    padding: 60px 0;
  }
}

/* =====================================
   INFO PAGE - MODERN TABS STYLING
   ===================================== */

#body {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  padding: 120px 20px 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  min-height: 100vh;
  color: #333 !important;
}

#body * {
  color: inherit;
}

.tab-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.tab-wrapper {
  background: #fff !important;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  overflow: visible !important;
  display: block !important;
}

.tab-wrapper input[type="radio"] {
  display: none;
}

.tab-label {
  display: inline-block !important;
  padding: 20px 32px;
  font-weight: 600;
  font-size: 16px;
  color: #64748b !important;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  border-bottom: 3px solid transparent;
  background: #f8f9fa;
  vertical-align: top;
}

.tab-label:hover {
  color: #8B5CF6 !important;
  background: #f0f2f5;
}

/* Active tab styling */
input[type="radio"]:checked + .tab-label {
  color: #8B5CF6 !important;
  background: #fff !important;
  border-bottom: 3px solid #8B5CF6;
}

.tab-item {
  display: none;
  padding: 48px;
  line-height: 1.8;
  color: #475569;
  font-size: 15px;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Show tabs directly after their checked input + label */
input[type="radio"]:checked + label + .tab-item {
  display: block !important;
}

/* Also support ID-based selectors for the existing structure */
#tab1:checked ~ #tab-content1,
#tab2:checked ~ #tab-content2,
#tab3:checked ~ #tab-content3,
#tab4:checked ~ #tab-content4,
#tab5:checked ~ #tab-content5,
#tab6:checked ~ #tab-content6 {
  display: block !important;
}



.tab-item p {
  margin-bottom: 20px;
}

.tab-item b {
  color: var(--color-primary);
  font-weight: 600;
}

/* Tab wrapper responsive design */
@media (max-width: 768px) {
  .tab-label {
    display: block;
    width: 100%;
    text-align: left;
    padding: 16px 24px;
    border-bottom: 1px solid #e2e8f0;
  }

  .tab-item {
    padding: 24px;
  }

  #body {
    padding: 100px 0 60px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
