/* Template 2: Modern Startup Style */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary-color: #6366f1;     /* Indigo/Purple */
  --secondary-color: #06b6d4;   /* Cyan */
  --dark-color: #1e293b;        /* Soft Dark */
  --light-bg: #f8fafc;          /* Off white */
  --white: #ffffff;
  --text-body: #475569;
  --font-main: 'Poppins', sans-serif;
  --gradient: linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--text-body);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--dark-color);
  font-weight: 700;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.bg-light-soft { background-color: var(--light-bg); }

/* Buttons */
.btn-primary-gradient {
  background: var(--gradient);
  color: var(--white);
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary-gradient::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, #06b6d4 0%, #6366f1 100%);
  z-index: -1;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.btn-primary-gradient:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-primary-gradient:hover::before {
  opacity: 1;
}

.btn-outline-soft {
  background: transparent;
  color: var(--dark-color);
  padding: 10px 30px;
  border-radius: 50px;
  font-weight: 600;
  border: 2px solid var(--dark-color);
  transition: var(--transition);
}

.btn-outline-soft:hover {
  background: var(--dark-color);
  color: var(--white);
}

/* Navbar */
.navbar {
  padding: 20px 0;
  transition: var(--transition);
  background: transparent;
  backdrop-filter: blur(10px);
}

.navbar.sticky-top {
  background: rgba(255, 255, 255, 0.95);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}

.navbar-brand {
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--dark-color) !important;
}

.navbar-brand span {
  color: var(--primary-color);
}

.nav-link {
  font-weight: 500;
  color: var(--dark-color) !important;
  margin: 0 12px;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
  padding: 160px 0 120px;
  background-color: var(--light-bg);
  position: relative;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: var(--gradient);
  filter: blur(100px);
  opacity: 0.1;
  z-index: 0;
}

.hero-shape-1 { top: -200px; right: -100px; }
.hero-shape-2 { bottom: -200px; left: -100px; }

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 40px;
}

.hero-image {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
  transform: perspective(1000px) rotateY(-10deg);
  transition: var(--transition);
}

.hero-image:hover {
  transform: perspective(1000px) rotateY(0deg);
}

/* Section Title */
.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.badge-soft {
  background: rgba(99, 102, 241, 0.1);
  color: var(--primary-color);
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 15px;
}

/* Service Cards */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 30px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(0,0,0,0.05);
}

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

.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: var(--gradient);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 25px;
  box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}

/* Feature Section */
.feature-box {
  background: var(--white);
  padding: 25px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.feature-box:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}

.feature-icon-sm {
  width: 50px;
  height: 50px;
  background: rgba(99, 102, 241, 0.1);
  color: var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-right: 20px;
  flex-shrink: 0;
}

/* Floating Elements */
.floating {
  animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* Stats */
.stats-container {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 50px 30px;
  transform: translateY(-50px);
  position: relative;
  z-index: 2;
}

.stat-item h3 {
  font-size: 3.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 5px;
}

/* Testimonials */
.testimonial-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  margin: 20px;
  position: relative;
}

.quote-icon {
  position: absolute;
  top: -20px;
  left: 40px;
  width: 50px;
  height: 50px;
  background: var(--gradient);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4);
}

/* CTA Section */
.cta-wrapper {
  background: var(--gradient);
  border-radius: 30px;
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-wrapper h2 {
  color: var(--white);
}

.cta-wrapper p {
  color: rgba(255, 255, 255, 0.9);
}

.cta-wrapper .btn {
  background: var(--white);
  color: var(--primary-color);
}

/* Footer */
.footer {
  background-color: var(--dark-color);
  color: rgba(255, 255, 255, 0.6);
  padding: 80px 0 30px;
}

.footer-brand {
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  display: inline-block;
}

.footer h5 {
  color: var(--white);
  margin-bottom: 25px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li { margin-bottom: 15px; }

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
  color: var(--secondary-color);
}

.social-circle {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-right: 10px;
  font-size: 1.2rem;
  transition: var(--transition);
}

.social-circle:hover {
  background: var(--gradient);
  transform: translateY(-5px);
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient);
  color: white;
  border: none;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(99, 102, 241, 0.4);
  cursor: pointer;
  z-index: 999;
  transition: var(--transition);
}

.back-to-top:hover {
  transform: translateY(-5px);
}

/* Inner Page Header */
.inner-header {
  padding: 180px 0 80px;
  background-color: var(--light-bg);
  text-align: center;
  position: relative;
}
