/* ============================================
   BIZTO INDIA - Premium Corporate Website
   Modern Redesign with Animations
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --primary: #1B2A4A;
  --secondary: #FF9933;
  --accent: #7C3AED;
  --gradient: linear-gradient(135deg, #2563EB, #7C3AED);
  --gradient-reverse: linear-gradient(135deg, #7C3AED, #2563EB);
  --light-bg: #F8FAFC;
  --card-bg: #FFFFFF;
  --dark-bg: #0F172A;
  --darker-bg: #0A1128;
  --text-primary: #1E293B;
  --text-secondary: #64748B;
  --text-light: #94A3B8;
  --success: #10B981;
  --warning: #F59E0B;
  --border: #E2E8F0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-primary);
  background: #fff;
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
}

/* ---------- Skeleton Loading ---------- */
.skeleton-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.skeleton-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.skeleton-content {
  width: 90%;
  max-width: 800px;
}

.skeleton-line {
  height: 16px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;
  margin-bottom: 12px;
}

.skeleton-line.wide { width: 100%; height: 200px; border-radius: 16px; margin-bottom: 24px; }
.skeleton-line.medium { width: 70%; }
.skeleton-line.short { width: 40%; }
.skeleton-line.tiny { width: 25%; height: 12px; }

.skeleton-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.skeleton-card {
  height: 180px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 16px;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ---------- Preloader Spinner ---------- */
.loader-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid var(--border);
  border-top-color: var(--secondary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-bottom: 24px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---------- Top Bar ---------- */
.top-bar {
  background: var(--dark-bg);
  color: #fff;
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-bar a {
  color: #CBD5E1;
  transition: var(--transition);
}

.top-bar a:hover {
  color: var(--secondary);
}

.top-bar i {
  margin-right: 6px;
  color: var(--secondary);
}

/* ---------- Navigation ---------- */
.navbar-main {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  /* padding: 12px 0; */
  transition: var(--transition);
  z-index: 1000;
}

.navbar-main.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  padding: 8px 0;
}

.navbar-brand {
  font-size: 1.6rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.navbar-brand span {
  -webkit-text-fill-color: var(--primary);
  font-weight: 400;
}

.navbar-main .nav-link {
  color: var(--text-primary) !important;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 16px !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.navbar-main .nav-link:hover,
.navbar-main .nav-link.active {
  color: var(--secondary) !important;
  background: rgba(37, 99, 235, 0.06);
}

.navbar-main .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #ff9933;
  border-radius: 2px;
  transition: var(--transition);
}

.navbar-main .nav-link:hover::after,
.navbar-main .nav-link.active::after {
  width: 60%;
}

.dropdown-menu {
  border: none;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  padding: 8px;
  margin-top: 8px;
  animation: fadeInDown 0.3s ease;
}

.dropdown-item {
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}

.dropdown-item:hover {
  background: rgba(37, 99, 235, 0.08);
  color: var(--secondary);
}

.navbar-toggler {
  border: none;
  padding: 8px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Animated Hamburger */
.hamburger {
  width: 28px;
  height: 20px;
  position: relative;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  position: absolute;
  transition: var(--transition);
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { bottom: 0; }

.hamburger.active span:nth-child(1) { top: 9px; transform: rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { bottom: 9px; transform: rotate(-45deg); }

/* ---------- Hero Section ---------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark-bg);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15,23,42,0.9) 0%, rgba(37,99,235,0.4) 50%, rgba(124,58,237,0.3) 100%);
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  animation: float-particle 15s infinite linear;
}

@keyframes float-particle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-badge i {
  color: var(--warning);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-title .gradient-text {
  /* background: linear-gradient(135deg, #60A5FA, #A78BFA, #F472B6); */
  background-color: #FF9933;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Playfair Display", Sans-serif !important;
  background-clip: text;
}

.hero-description {
  font-size: 1.15rem;
  color: #CBD5E1;
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-image-wrapper {
  position: relative;
  animation: fadeInRight 1s ease 0.5s both;
}

.hero-floating-card {
  position: absolute;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  color: #fff;
  animation: float 6s ease-in-out infinite;
}

.hero-floating-card.card-1 {
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}

.hero-floating-card.card-2 {
  bottom: 15%;
  left: -5%;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* ---------- Buttons ---------- */
.btn-gradient {
  /* background: var(--gradient); */
  background-color: #00013fff;
  color: #fff !important;
  border: none;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
  color: #ff9933 !important;
}

.btn-gradient::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-gradient:hover::before {
  left: 100%;
}

.btn-outline-light-custom {
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff !important;
  padding: 12px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  background: transparent !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-light-custom:hover {
  background: rgba(255,255,255,0.1) !important;
  border-color: rgba(255,255,255,0.5);
  color: #fff !important;
  transform: translateY(-2px);
}

.btn-outline-gradient {
  border: 2px solid var(--secondary);
  color: var(--secondary) !important;
  padding: 12px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  background: transparent !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.accordion-body{
     text-align: justify;
}
.btn-outline-gradient:hover {
  background: var(--gradient) !important;
  color: #fff !important;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.3);
}

/* ---------- Section Styles ---------- */
.section-padding {
  padding: 40px 0;
}

.section-header {
  margin-bottom: 60px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--secondary);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.8;
}

.section-subtitle.centered {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Stats Section ---------- */
.stats-section {
  /* background: var(--dark-bg); */
  background-color: #00013fff;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  /* background: radial-gradient(circle, rgba(37,99,235,0.1) 0%, transparent 50%); */
  animation: rotate-slow 30s linear infinite;
}

@keyframes rotate-slow {
  to { transform: rotate(360deg); }
}

.stat-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  /* background: var(--gradient); */
  background-color: #FF9933;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
  font-family: 'Playfair Display', Sans-serif;
}

.stat-label {
  color: #94A3B8;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---------- Service Cards ---------- */
.service-card {
  background: var(--card-bg);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  border: 1px solid var(--border);
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-slow);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
  transition: var(--transition);
}

.service-icon.whatsapp { background: rgba(37, 211, 102, 0.1); color: #25D366; }
.service-icon.social { background: rgba(37, 99, 235, 0.1); color: #2563EB; }
.service-icon.ads { background: rgba(245, 158, 11, 0.1); color: #F59E0B; }
.service-icon.web { background: rgba(124, 58, 237, 0.1); color: #7C3AED; }

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(-5deg);
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary);
}

.service-card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-price {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.08);
  color: var(--success);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.service-link {
  color: var(--secondary);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.service-link:hover {
  gap: 12px;
  color: var(--accent);
}

/* ---------- About Section ---------- */
.about-image-wrapper {
  position: relative;
}

.about-image {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
}

.about-experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  /* background: var(--gradient); */
  background-color: #00013fff;
  color: #fff;
  padding: 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-experience-badge .number {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.about-experience-badge .text {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--light-bg);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.about-feature:hover {
  background: rgba(37, 99, 235, 0.06);
  transform: translateX(4px);
}

.about-feature i {
  color: var(--secondary);
  font-size: 18px;
}

.about-feature span {
  font-weight: 600;
  font-size: 14px;
}

/* ---------- Team Section ---------- */
.team-card {
  background: var(--card-bg);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition-slow);
  text-align: center;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.team-avatar {
  width: 100%;
  height: 200px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.team-avatar-initials {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  opacity: 0.9;
}

.team-avatar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(transparent, var(--card-bg));
}

.team-info {
  padding: 20px 24px 28px;
}

.team-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.team-info p {
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
}

.team-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.team-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 14px;
  transition: var(--transition);
}

.team-socials a:hover {
  background: var(--gradient);
  color: #fff;
  transform: translateY(-3px);
}

/* ---------- Testimonial Section ---------- */
.testimonial-section {
  background: var(--light-bg);
}

.testimonial-card {
  background: var(--card-bg);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid var(--border);
  position: relative;
}

.testimonial-card .quote-icon {
  font-size: 3rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.3;
  position: absolute;
  top: 20px;
  right: 30px;
}

.testimonial-stars {
  color: var(--warning);
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 1.05rem;
  color: var(--text-primary);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  /* background: var(--gradient); */
  background-color: #ff9933;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
}

.testimonial-author-name {
  font-weight: 700;
  color: var(--primary);
}

.testimonial-author-role {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ---------- Blog Cards ---------- */
.blog-card {
  background: var(--card-bg);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition-slow);
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.blog-card-image {
  height: 220px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.08);
}

.blog-card-body {
  padding: 28px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--text-secondary);
}

.blog-card-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.blog-card-meta i {
  color: var(--secondary);
}

.blog-card-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-card-body p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ---------- Contact Section ---------- */
.contact-form-wrapper {
  background: var(--card-bg);
  border-radius: var(--radius-xl);
  padding: 48px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.form-floating .form-control,
.form-floating .form-select {
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  font-size: 15px;
  transition: var(--transition);
  background: var(--light-bg);
}

.form-floating .form-control:focus,
.form-floating .form-select:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
  background: #fff;
}

.contact-info-card {
  /* background: var(--gradient); */
  background-color: #00013fff;
  border-radius: var(--radius-xl);
  padding: 48px;
  color: #fff;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: #ff9933;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-info-text h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-info-text p {
  font-size: 14px;
  opacity: 0.85;
  margin: 0;
}

/* ---------- FAQ Accordion ---------- */
.faq-accordion .accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg) !important;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  font-weight: 600;
  font-size: 16px;
  color: var(--primary);
  padding: 20px 24px;
  background: var(--card-bg);
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: rgba(37, 99, 235, 0.04);
  color: var(--secondary);
}

.faq-accordion .accordion-button::after {
  background-image: none;
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 12px;
  color: var(--secondary);
  transition: var(--transition);
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

.faq-accordion .accordion-body {
  color: var(--text-secondary);
  line-height: 1.8;
  padding: 0 24px 20px;
}

/* ---------- Newsletter Section ---------- */
.newsletter-section {
  background: var(--gradient);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.08) 0%, transparent 50%);
}

.newsletter-input-group {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-input-group input {
  flex: 1;
  padding: 16px 24px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 15px;
  outline: none;
  transition: var(--transition);
}

.newsletter-input-group input::placeholder {
  color: rgba(255,255,255,0.6);
}

.newsletter-input-group input:focus {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.15);
}

.newsletter-input-group button {
  padding: 16px 32px;
  border-radius: var(--radius-full);
  background: #fff;
  color: var(--secondary);
  font-weight: 700;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.newsletter-input-group button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--dark-bg);
  color: #CBD5E1;
  padding: 80px 0 0;
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.footer-brand span {
  background: #ff9933;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Playfair Display', Sans-serif !important;
}

.footer-description {
  font-size: 14px;
  line-height: 1.8;
  color: #94A3B8;
  margin-bottom: 24px;
}

.footer h5 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: #ff9933;
  border-radius: 3px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #94A3B8;
  font-size: 14px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--secondary);
  transform: translateX(4px);
}

.footer-links a::before {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 10px;
  color: var(--secondary);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94A3B8;
  font-size: 16px;
  transition: var(--transition);
}

.footer-social a:hover {
  background: #ff9933;
  border-color: transparent;
  color: #fff;
  transform: translateY(-4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  margin-top: 60px;
}

.footer-bottom p {
  font-size: 13px;
  color: #64748B;
  margin: 0;
}

.footer-bottom-links a {
  color: #64748B;
  font-size: 13px;
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--secondary);
}

/* ---------- Page Banner ---------- */
.page-banner {
  background: var(--dark-bg);
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(37,99,235,0.15) 0%, rgba(124,58,237,0.1) 100%);
}

.page-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.page-banner-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.page-banner h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.page-banner .breadcrumb {
  justify-content: center;
  margin: 0;
}

.page-banner .breadcrumb-item,
.page-banner .breadcrumb-item a {
  color: #94A3B8;
  font-size: 14px;
}

.page-banner .breadcrumb-item.active {
  color: var(--secondary);
}

.page-banner .breadcrumb-item + .breadcrumb-item::before {
  color: #64748B;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent 40%, rgba(15,23,42,0.8));
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h4 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
}

/* ---------- Parallax Section ---------- */
.parallax-section {
  position: relative;
  padding: 120px 0;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15,23,42,0.9), rgba(37,99,235,0.7));
}

.parallax-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Scroll Animation Classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.from-left {
  transform: translateX(-40px);
}

.animate-on-scroll.from-left.animated {
  transform: translateX(0);
}

.animate-on-scroll.from-right {
  transform: translateX(40px);
}

.animate-on-scroll.from-right.animated {
  transform: translateX(0);
}

.animate-on-scroll.scale-in {
  transform: scale(0.9);
}

.animate-on-scroll.scale-in.animated {
  transform: scale(1);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ---------- Carousel Custom ---------- */
.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--secondary);
  background: transparent;
  opacity: 0.5;
}

.carousel-indicators .active {
  background: var(--secondary);
  opacity: 1;
}

/* ---------- Tab Custom ---------- */
.nav-tabs-custom {
  border: none;
  background: var(--light-bg);
  border-radius: var(--radius-full);
  padding: 6px;
  display: inline-flex;
}

.nav-tabs-custom .nav-link {
  border: none;
  border-radius: var(--radius-full);
  padding: 10px 24px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-secondary);
  transition: var(--transition);
}

.nav-tabs-custom .nav-link.active {
  background: #00013fff;
  color: #fff;
  box-shadow: var(--shadow-md);
}

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #00013fff;
  color: #fff;
  border: none;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
}

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: #fff;
}

/* ---------- Career Page ---------- */
.career-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: var(--transition-slow);
}

.career-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.career-tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  margin-right: 8px;
}

.career-tag.full-time { background: rgba(16,185,129,0.1); color: var(--success); }
.career-tag.remote { background: rgba(37,99,235,0.1); color: var(--secondary); }
.career-tag.onsite { background: rgba(245,158,11,0.1); color: var(--warning); }

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .hero-section { min-height: auto; padding: 120px 0 80px; }
  .hero-title { font-size: 2.5rem; }
  .section-padding { padding: 60px 0; }
  .about-features { grid-template-columns: 1fr; }
  .about-experience-badge { position: relative; bottom: auto; right: auto; margin-top: 20px; display: inline-block; }
  .contact-form-wrapper { padding: 32px; }
  .contact-info-card { margin-top: 32px; }
  .newsletter-input-group { flex-direction: column; }
}

@media (max-width: 767px) {
  .hero-title { font-size: 2rem; }
  .hero-description { font-size: 1rem; }
  .hero-buttons { flex-direction: column; }
  .stat-item { margin-bottom: 24px; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
  .top-bar .d-flex { flex-direction: column; gap: 4px; text-align: center; }
  .footer { padding: 60px 0 0; }
}

@media (max-width: 576px) {
  .hero-section { padding: 100px 0 60px; }
  .page-banner { padding: 120px 0 60px; }
  .section-padding { padding: 48px 0; }
  .service-card { padding: 28px 24px; }
  .contact-form-wrapper { padding: 24px; }
}