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

/* CSS Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Core brand colors */
  --background: hsl(210, 20%, 98%);
  --foreground: hsl(222, 47%, 15%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(222, 47%, 15%);
  --primary: hsl(222, 60%, 25%);
  --primary-foreground: hsl(0, 0%, 100%);
  --accent: hsl(192, 70%, 40%);
  --accent-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(210, 25%, 95%);
  --secondary-foreground: hsl(222, 47%, 20%);
  --muted: hsl(210, 20%, 94%);
  --muted-foreground: hsl(215, 16%, 47%);
  --border: hsl(214, 32%, 91%);
  --navy: hsl(222, 60%, 25%);
  --navy-light: hsl(222, 50%, 35%);
  --navy-dark: hsl(222, 70%, 15%);
  --teal: hsl(192, 70%, 40%);
  --teal-light: hsl(192, 60%, 55%);
  --radius: 0.75rem;
  --shadow-sm: 0 1px 2px 0 hsla(222, 60%, 25%, 0.05);
  --shadow-md: 0 4px 6px -1px hsla(222, 60%, 25%, 0.1), 0 2px 4px -2px hsla(222, 60%, 25%, 0.1);
  --shadow-lg: 0 10px 15px -3px hsla(222, 60%, 25%, 0.1), 0 4px 6px -4px hsla(222, 60%, 25%, 0.1);
  --shadow-xl: 0 20px 25px -5px hsla(222, 60%, 25%, 0.1), 0 8px 10px -6px hsla(222, 60%, 25%, 0.1);
  --shadow-glow: 0 0 40px hsla(192, 70%, 40%, 0.3);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

/* Header */
/*.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}*/
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);

  border-bottom: 1px solid transparent;
  box-shadow: none;

  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease,
    border 0.35s ease;

  will-change: transform;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  border-bottom: 1px solid var(--border);

  transform: translateY(0);
}


.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo img {
  height: 48px;
  width: auto;
}

.nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .nav { display: flex; }
}

.nav-item {
  position: relative;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  padding: 0.5rem 0;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  padding: 0.5rem 0;
  min-width: 220px;
}

.dropdown-link {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--foreground);
  transition: all 0.2s;
}

.dropdown-link:hover {
  background: var(--secondary);
  color: var(--accent);
}

/* Header Buttons */
.header-buttons {
  display: none;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .header-buttons { display: flex; }
}

/* Mobile Menu */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--foreground);
}

@media (min-width: 1024px) {
  .mobile-menu-btn { display: none; }
}

.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
}

.mobile-nav {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
}

.mobile-nav.active {
  display: block;
}

@media (min-width: 1024px) {
  .mobile-nav { display: none !important; }
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  border-radius: var(--radius);
  transition: all 0.2s;
}

.mobile-nav-link:hover {
  background: var(--secondary);
  color: var(--accent);
}

.mobile-dropdown {
  margin-left: 1rem;
  margin-top: 0.25rem;
}

.mobile-dropdown a {
  color: var(--muted-foreground);
  padding: 0.5rem 1rem;
}

.mobile-nav-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
  padding: 0 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.btn svg {
  width: 16px;
  height: 16px;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--navy-light);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--primary-foreground);
}

.btn-hero {
  background: var(--accent);
  color: var(--accent-foreground);
  box-shadow: var(--shadow-lg);
}

.btn-hero:hover {
  background: var(--teal-light);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.btn-hero-outline {
  background: transparent;
  color: var(--primary-foreground);
  border: 2px solid var(--primary-foreground);
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
}

.btn-lg {
  padding: 0.875rem 2rem;
  font-size: 1rem;
}

.btn-xl {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    hsla(222, 70%, 15%, 0.3) 0%,
    hsla(222, 60%, 25%, 0.25) 50%,
    hsla(192, 70%, 35%, 0.2) 100%
  );
}


.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  padding: 5rem 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--primary-foreground);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 2rem;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-foreground);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero h1 { font-size: 3rem; }
}

@media (min-width: 1024px) {
  .hero h1 { font-size: 3.75rem; }
}

.hero h1 span {
  color: var(--accent);
}

.hero-text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .hero-text { font-size: 1.25rem; }
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-highlight {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-highlight svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons { flex-direction: row; }
}

.hero-shapes {
  position: absolute;
  right: 40px;
  top: 25%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  filter: blur(60px);
  animation: float 6s ease-in-out infinite;
}

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

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, hsla(222, 70%, 15%, 1) 0%, hsla(222, 60%, 25%, 1) 50%, hsla(192, 70%, 35%, 1) 100%);
  padding: 5rem 0 6rem;
  text-align: center;
}

.page-hero-label {
  display: inline-block;
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.page-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .page-hero h1 { font-size: 3rem; }
}

.page-hero p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

/* Stats Section */
.stats {
  background: linear-gradient(135deg, hsla(222, 70%, 15%, 1) 0%, hsla(222, 60%, 25%, 1) 50%, hsla(192, 70%, 35%, 1) 100%);
  padding: 4rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

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

.stat-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.stat-item:hover .stat-icon {
  background: var(--accent);
}

.stat-icon svg {
  width: 32px;
  height: 32px;
  color: var(--primary-foreground);
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .stat-value { font-size: 3rem; }
}

.stat-label {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary-foreground);
  margin-bottom: 0.25rem;
}

.stat-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

@media (min-width: 1024px) {
  .section { padding: 7rem 0; }
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.section-label {
  display: inline-block;
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title { font-size: 2.5rem; }
}

.section-text {
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Service Card */
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.3s;
  box-shadow: var(--shadow-md);
}

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

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(0, 153, 153, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}

.service-card:hover .service-icon {
  background: var(--accent);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
  transition: color 0.3s;
}

.service-card:hover .service-icon svg {
  color: var(--accent-foreground);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.service-card > p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-features {
  margin-bottom: 1.5rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.service-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent);
  transition: gap 0.3s;
}

.service-link:hover {
  gap: 0.75rem;
}

.service-link svg {
  width: 16px;
  height: 16px;
}

/* Why Choose Us */
.why-section {
  background: var(--secondary);
}

.why-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
}

.why-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .why-content h2 { font-size: 2.5rem; }
}

.why-content > p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.why-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .why-features { grid-template-columns: repeat(2, 1fr); }
}

.why-feature {
  display: flex;
  gap: 1rem;
}

.why-feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 153, 153, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.why-feature h4 {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.why-feature p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.why-card {
  position: relative;
  background: var(--card);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-xl);
}

@media (min-width: 1024px) {
  .why-card { padding: 3rem; }
}

.why-card::before {
  content: '';
  position: absolute;
  top: -1rem;
  right: -1rem;
  width: 100%;
  height: 100%;
  background: rgba(0, 153, 153, 0.1);
  border-radius: 1rem;
  z-index: -1;
}

.why-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.why-card-item {
  text-align: center;
}

.why-card-item .why-feature-icon {
  margin: 0 auto 1rem;
  width: 56px;
  height: 56px;
  border-radius: 0.75rem;
}

.why-card-item h4 {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.why-card-item p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.trust-section {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.trust-section p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.trust-badge {
  padding: 0.25rem 0.75rem;
  background: var(--secondary);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

/* Technologies */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .tech-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 768px) {
  .tech-grid { grid-template-columns: repeat(6, 1fr); gap: 1.5rem; }
}

.tech-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s;
}

.tech-item:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.tech-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  transition: color 0.3s;
}

.tech-item:hover .tech-name {
  color: var(--accent);
}

.tech-category {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

.tech-note {
  text-align: center;
  color: var(--muted-foreground);
  margin-top: 3rem;
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
}

.cta-box {
  position: relative;
  background: var(--primary);
  border-radius: 1.5rem;
  padding: 4rem 2rem;
  text-align: center;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .cta-box { padding: 5rem 4rem; }
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: var(--accent);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.2;
}

.cta-box::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background: var(--teal);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}

.cta-content {
  position: relative;
  z-index: 10;
}

.cta-box h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .cta-box h2 { font-size: 2.5rem; }
}

@media (min-width: 1024px) {
  .cta-box h2 { font-size: 3rem; }
}

.cta-box h2 span {
  color: var(--accent);
}

.cta-box > .cta-content > p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .cta-buttons { flex-direction: row; }
}

.cta-note {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2rem;
}

/* Footer */
.footer {
  background: var(--primary);
  color: var(--primary-foreground);
}

.footer-cta {
  padding: 3rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-cta-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-cta-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-cta h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .footer-cta h3 { font-size: 1.875rem; }
}

.footer-cta p {
  color: rgba(255, 255, 255, 0.8);
}

.footer-cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-main {
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}

.footer-brand img {
  height: 48px;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.social-link:hover {
  background: var(--accent);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.footer-col h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s;
}

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

.footer-links a svg {
  width: 12px;
  height: 12px;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.contact-info li svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info a,
.contact-info span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-info a:hover {
  color: var(--accent);
}

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: var(--accent);
}

/* About Page */
.about-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
}

.about-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .about-content h2 { font-size: 2.5rem; }
}

.about-content p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.about-content p:first-of-type {
  font-size: 1.125rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all 0.3s;
  box-shadow: var(--shadow-md);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.value-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 153, 153, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.value-icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.value-card h3 {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Contact Page */
.contact-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr 2fr; }
}

.contact-sidebar h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s;
}

.contact-card:hover {
  border-color: var(--accent);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 153, 153, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.contact-card h3 {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.contact-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.contact-form-wrapper {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
}

@media (min-width: 1024px) {
  .contact-form-wrapper { padding: 3rem; }
}

.contact-form-wrapper h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.contact-form-wrapper > p {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.form-grid {
  display: grid;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .form-row { grid-template-columns: repeat(2, 1fr); }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

.form-group input,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.875rem;
  background: var(--background);
  color: var(--foreground);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 153, 153, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted-foreground);
}

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

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-delay-1 { animation-delay: 0.1s; opacity: 0; }
.animate-delay-2 { animation-delay: 0.2s; opacity: 0; }
.animate-delay-3 { animation-delay: 0.3s; opacity: 0; }

/* Utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/***********/

/* Mega Menu Base */
.mega-menu {
  position: relative;
}

.mega-dropdown {
     position: absolute;
    top: calc(100% + 22px);
    left: 40px;
    right: 20px;
    margin: 0 auto;
    transform: translateX(-50%);
    width: calc(100vw - 400px);           
  /*background: #fff;*/
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
   border-top: 1px solid var(--border);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}


.mega-menu:hover .mega-dropdown {
  opacity: 1;
  visibility: visible;
   transform: translateX(-50%) translateY(0);
}


/* Mega Content */
.mega-content {
     max-width: 100%;
    margin: 0 auto;
    padding: 30px 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-content: space-evenly;
    align-items: baseline;
    justify-items: center;
}


.mega-col h4 {
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #000;
}

.mega-col a {
  display: block;
  color: #555;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.mega-col a:hover {
  color: #0d6efd;
}

/* Responsive */
@media (max-width: 991px) {
  .mega-content {
    grid-template-columns: 1fr 1fr;
  }
}

/*mobile nav new css */
/* Parent dropdown links */
.mobile-dropdown-parent .mobile-nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  font-size: 16px;
  cursor: pointer;
}

/* Submenu headings */
.submenu-parent h4.toggle-submenu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
  margin: 10px 0 5px;
  padding-left: 20px;
  cursor: pointer;
  color: #333;
}

/* Submenu links */
.submenu a.mobile-nav-link {
  padding-left: 35px;
  display: block;
  font-size: 14px;
  text-decoration: none;
}

/* Hover effect */
.submenu a.mobile-nav-link:hover,
.mobile-dropdown-parent .mobile-nav-link:hover {
  background-color: #f1f1f1;
}

/* Icon styling */
.toggle-icon {
  font-weight: bold;
  font-size: 18px;
}

/*whatsapp css*/
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 22px;
  left: 22px;
  background-color: #25d366;
  border-radius: 50%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  animation: whatsapp-pulse 2s infinite;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.06);
}

/* Icon */
.whatsapp-float img {
  width: 34px;
  height: 34px;
}

/* Pulse Animation */
@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Mobile size adjust */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 18px;
    right: 18px;
  }
   .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/*mlm-software pages*/
/* COMMON */
.mlm-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* HERO */
.mlm-hero {
    background: linear-gradient(135deg, #0d6efd, #003a9b);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.mlm-hero h1 {
    font-size: 46px;
    margin-bottom: 10px;
}

.mlm-breadcrumb {
    font-size: 14px;
    opacity: 0.9;
}

/* ABOUT */
.mlm-about {
    padding: 70px 0;
    text-align: center;
}

.mlm-about h2 {
    font-size: 34px;
    margin-bottom: 20px;
}

.mlm-about p {
    max-width: 800px;
    margin: 10px auto;
    color: #555;
}

/* UNIQUENESS */
.mlm-unique {
    background: #f8faff;
    padding: 70px 0;
}

.mlm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.mlm-box {
    background: #fff;
    padding: 18px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.4s;
}

.mlm-box:hover {
    transform: translateY(-8px);
}

/* FEATURES */
.mlm-features {
    padding: 70px 0;
}

.mlm-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.mlm-feature-card {
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
    transition: 0.4s;
}

.mlm-feature-card:hover {
    transform: translateY(-10px);
}

/* MODELS */
.mlm-models {
    background: #f1f5ff;
    padding: 70px 0;
}

.mlm-model-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 15px;
    list-style: none;
    padding: 0;
}

.mlm-model-list li {
    background: #fff;
    padding: 14px;
    border-radius: 8px;
    text-align: center;
}

/* CTA */
.mlm-cta {
    background: linear-gradient(135deg, #003a9b, #0d6efd);
    color: #fff;
    padding: 70px 0;
    text-align: center;
}

.mlm-btn {
    display: inline-block;
    background: #fff;
    color: #0d6efd;
    padding: 14px 28px;
    border-radius: 30px;
    margin-top: 15px;
    font-weight: 600;
    transition: 0.3s;
}

.mlm-btn:hover {
    background: #e6edff;
}

/* MOBILE */
@media(max-width:768px){
    .mlm-hero h1 { font-size: 32px; }
    .mlm-about h2 { font-size: 26px; }
}

/*nidhi software page css start*/
/* COMMON */
.nidhi-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    font-family: 'Segoe UI', sans-serif;
}

/* HERO */
.nidhi-hero {
    background: linear-gradient(135deg, #0d6efd, #003a9b);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.nidhi-hero h1 {
    font-size: 46px;
    margin-bottom: 10px;
}

.nidhi-breadcrumb {
    font-size: 14px;
    opacity: 0.9;
}

/* ABOUT */
/* ABOUT WITH IMAGE GRID */
.nidhi-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.nidhi-about-content h2 {
    font-size: 34px;
    margin-bottom: 20px;
}

.nidhi-about-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}
.nidhi-about-image{
    text-align:center;
}
.nidhi-about-image img {
    margin-top:10px;
    width: 60%;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.nidhi-about-image img:hover {
    transform: scale(1.03);
}

/* MOBILE RESPONSIVE */
@media(max-width: 768px){
    .nidhi-about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .nidhi-about-image {
        text-align: center;
    }

    .nidhi-about-content h2 {
        font-size: 28px;
    }
}

/* UNIQUENESS */
.nidhi-unique {
    background: #f8faff;
    padding: 70px 0;
}

.nidhi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.nidhi-box {
    background: #fff;
    padding: 18px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    text-align: center;
    transition: 0.4s;
    font-weight: 500;
}

.nidhi-box:hover {
    transform: translateY(-8px);
    background: #e6f0ff;
}

/* FEATURES */
.nidhi-features {
    padding: 70px 0;
}

.nidhi-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.nidhi-feature-card {
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
    text-align: center;
    font-weight: 500;
    transition: 0.4s;
}

.nidhi-feature-card:hover {
    transform: translateY(-10px);
    background: #e6f0ff;
}

/* CTA */
.nidhi-cta {
    background: linear-gradient(135deg, #003a9b, #0d6efd);
    color: #fff;
    padding: 70px 0;
    text-align: center;
}

.nidhi-btn {
    display: inline-block;
    background: #fff;
    color: #0d6efd;
    padding: 14px 28px;
    border-radius: 30px;
    margin-top: 15px;
    font-weight: 600;
    transition: 0.3s;
    text-decoration: none;
}

.nidhi-btn:hover {
    background: #e6edff;
}

/* MOBILE */
@media(max-width:768px){
    .nidhi-hero h1 { font-size: 32px; }
    .nidhi-about h2 { font-size: 26px; }
}


        /* =========================
   MICROFINANCE PAGE
========================= */

.mf-hero {
    background: linear-gradient(135deg, #0d6efd, #1e90ff);
    color: #fff;
    padding: 80px 0;
}

.mf-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.mf-hero-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.mf-hero-content p {
    font-size: 17px;
    line-height: 1.7;
}

.mf-points {
    margin: 20px 0;
    list-style: none;
}
.mf-points li {
    margin-bottom: 8px;
    font-size: 15px;
}

.mf-buttons {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.mf-hero-image img {
    width: 100%;
}

/* FEATURES */
.mf-features {
    padding: 70px 0;
    background: #f8f9fc;
}

.mf-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.mf-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: 0.3s;
}
.mf-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.mf-card img {
    width: 60px;
    margin-bottom: 15px;
}

/* WHY */
.mf-why {
    padding: 70px 0;
    background: #fff;
}

.mf-why-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.mf-why ul {
    margin-top: 15px;
}
.mf-why li {
    margin-bottom: 10px;
}

/* CTA */
.mf-cta {
    background: #0d6efd;
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .mf-hero-grid,
    .mf-why-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .mf-hero-content h1 {
        font-size: 30px;
    }

    .mf-buttons {
        justify-content: center;
    }
}

    /* =========================
   ERP SOFTWARE PAGE
========================= */

.erp-hero {
    background: linear-gradient(135deg, #198754, #20c997);
    color: #fff;
    padding: 80px 0;
}

.erp-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.erp-hero-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.erp-hero-content p {
    font-size: 17px;
    line-height: 1.7;
}

.erp-points {
    margin: 20px 0;
    list-style: none;
}
.erp-points li {
    margin-bottom: 8px;
}

.erp-buttons {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.erp-hero-image{
    text-align:center;
}
.erp-hero-image img {
    width: 70%;
}

/* FEATURES */
.erp-features {
    padding: 70px 0;
    background: #f8f9fc;
}

.erp-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.erp-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: 0.3s;
}
.erp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.erp-card img {
    width: 60px;
    margin-bottom: 15px;
}

/* WHY ERP */
.erp-why {
    padding: 70px 0;
    background: #fff;
}

.erp-why-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

/* CTA */
.erp-cta {
    background: #198754;
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}
.erp-why-image{
    text-align:center;
}
.erp-why-image img{
    width:60%;
}
/* RESPONSIVE */
@media (max-width: 768px) {
    .erp-hero-grid,
    .erp-why-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .erp-hero-content h1 {
        font-size: 30px;
    }

    .erp-buttons {
        justify-content: center;
    }
}

/* =========================
   CUSTOMISE SOLUTIONS PAGE
========================= */

.cs-hero {
    background: linear-gradient(135deg, #6f42c1, #845ef7);
    color: #fff;
    padding: 80px 0;
}

.cs-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.cs-hero-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.cs-hero-content p {
    font-size: 17px;
    line-height: 1.7;
}

.cs-points {
    margin: 20px 0;
    list-style: none;
}
.cs-points li {
    margin-bottom: 8px;
}

.cs-buttons {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cs-hero-image img {
    width: 80%;
}

/* FEATURES */
.cs-features {
    padding: 70px 0;
    background: #f8f9fc;
}

.cs-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.cs-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: 0.3s;
}
.cs-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.cs-card img {
    width: 60px;
    margin-bottom: 15px;
}

/* WHY */
.cs-why {
    padding: 70px 0;
    background: #fff;
}
.cs-why-image{
    text-align:center;
}
.cs-why-image img{
    width:60%;
}
.cs-why-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

/* CTA */
.cs-cta {
    background: #6f42c1;
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .cs-hero-grid,
    .cs-why-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cs-hero-content h1 {
        font-size: 30px;
    }

    .cs-buttons {
        justify-content: center;
    }
}

/* =========================
   CUSTOM SOFTWARE PAGE
========================= */

.csoft-hero {
    background: linear-gradient(135deg, #0b5ed7, #0dcaf0);
    color: #fff;
    padding: 80px 0;
}

.csoft-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.csoft-hero-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.csoft-hero-content p {
    font-size: 17px;
    line-height: 1.7;
}

.csoft-points {
    margin: 20px 0;
    list-style: none;
}
.csoft-points li {
    margin-bottom: 8px;
}

.csoft-buttons {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.csoft-hero-image img {
    width: 80%;
}

/* FEATURES */
.csoft-features {
    padding: 70px 0;
    background: #f8f9fc;
}

.csoft-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.csoft-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: 0.3s;
}
.csoft-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.csoft-card img {
    width: 60px;
    margin-bottom: 15px;
}

/* WHY */
.csoft-why {
    padding: 70px 0;
    background: #fff;
}

.csoft-why-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}
.csoft-why-image{
    text-align:center;
}
.csoft-why-image img{
    width:60%;
}

/* CTA */
.csoft-cta {
    background: #0b5ed7;
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .csoft-hero-grid,
    .csoft-why-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .csoft-hero-content h1 {
        font-size: 30px;
    }

    .csoft-buttons {
        justify-content: center;
    }
}

/* HERO */
.webpro-hero {
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    color: #fff;
    padding: 90px 20px;
    text-align: center;
}
.webpro-hero h1 {
    font-size: 44px;
}
.webpro-hero p {
    font-size: 18px;
    opacity: 0.9;
}

/* SERVICES */
.webpro-services {
    padding: 80px 0;
    background: #f5f7fb;
}
.webpro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

/* CARD */
.webpro-card {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.webpro-card:hover {
    transform: translateY(-15px) scale(1.02);
}
.webpro-card img {
    width: 200px;
    margin-bottom: 20px;
}
.webpro-card h2 {
    font-size: 22px;
    margin-bottom: 10px;
}
.webpro-card ul {
    list-style: none;
    padding: 0;
}
.webpro-card ul li {
    margin: 6px 0;
}

/* CTA */
.webpro-cta {
    background: linear-gradient(135deg, #0d6efd, #20c997);
    color: #fff;
    text-align: center;
    padding: 70px 20px;
}

/* MOBILE */
@media(max-width:768px) {
    .webpro-hero h1 {
        font-size: 30px;
    }
}

/* =========================
   PACKAGE IMAGE SECTION
========================= */

.webpkg-section {
    padding: 80px 0;
    background: #ffffff;
    text-align: center;
}

.section-title {
    font-size: 36px;
    margin-bottom: 50px;
}

/* GRID */
.webpkg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
    align-items: center;
}

/* IMAGE CARD */
.webpkg-img-card {
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s ease;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.webpkg-img-card img {
    width: 100%;
    display: block;
    transition: 0.4s ease;
}

/* HOVER EFFECT */
.webpkg-img-card:hover {
    transform: translateY(-15px) scale(1.01);
}

.webpkg-img-card:hover img {
    transform: scale(1.08);
}

/* MOBILE */
@media(max-width:768px) {
    .section-title {
        font-size: 28px;
    }
}

/* =========================
   OTHER SERVICES – PREMIUM
========================= */

.other-services {
    padding: 100px 0;
    background: linear-gradient(180deg, #f9fbff, #eef3ff);
    text-align: center;
}

.page-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
}

.page-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 70px;
}

/* GRID */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

/* CARD */
.service-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 5px 10px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
    transition: all 0.45s ease;
    position: relative;
    overflow: hidden;
}

/* GRADIENT BORDER EFFECT */
.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 22px;
    padding: 2px;
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    opacity: 0;
    transition: 0.4s;
}

.service-card:hover::before {
    opacity: 1;
}

/* ICON IMAGE */
/* IMAGE WRAPPER */
.service-card img {
    width: 100%;
    max-width: 100%;
    height: 180px;          /* fixed height for uniform cards */
    object-fit: contain;    /* JPG pura dikhega, cut nahi hoga */
    border-radius: 14px;
    background: #f6f8ff;    /* white JPG ke liye soft bg */
    padding: 12px;
    margin-bottom: 20px;
}



/* TEXT */
.service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

/* HOVER */
.service-card:hover {
    transform: translateY(-18px);
}

/* MOBILE */
@media(max-width:768px) {
    .page-title {
        font-size: 30px;
    }
}

/*pop up */
/* =========================
   REQUEST QUOTE POPUP
========================= */

.quote-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.4s ease;
}

.quote-modal-content {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 420px;
    padding: 35px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    animation: scaleUp 0.4s ease;
}

.quote-modal-content h3 {
    font-size: 26px;
    margin-bottom: 8px;
}

.quote-modal-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}

/* CLOSE */
.quote-close {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 26px;
    cursor: pointer;
}

/* FORM */
.quote-modal-content input,
.quote-modal-content textarea {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
    outline: none;
    font-size: 14px;
}

.quote-modal-content input:focus,
.quote-modal-content textarea:focus {
    border-color: #0d6efd;
}

/* BUTTON */
.quote-btn {
    width: 100%;
    padding: 12px;
    border-radius: 30px;
    border: none;
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.quote-btn:hover {
    opacity: 0.9;
}

/* ANIMATIONS */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleUp {
    from { transform: scale(0.8); }
    to { transform: scale(1); }
}

/* MOBILE */
@media(max-width:480px) {
    .quote-modal-content {
        margin: 0 15px;
    }
}

/* =========================
   TOP EXPERIENCE BAR
========================= */

.top-exp-bar {
    background: linear-gradient(90deg, #0c1d43, #1a6d94);
    color: #fff;
    font-size: 14px;
    padding: 8px 0;
    text-align: center;
    letter-spacing: 0.3px;
}

.top-exp-bar p {
    margin: 0;
    font-weight: 500;
}

/* MOBILE */
@media(max-width:768px) {
    .top-exp-bar {
        font-size: 12px;
        padding: 6px 10px;
    }
}

/* LEGAL HERO */
.legal-hero {
  background: linear-gradient(135deg, #1a1f71, #4b0082);
  padding: 80px 0;
  color: #fff;
  text-align: center;
}

.legal-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.legal-hero p {
  font-size: 18px;
  opacity: 0.9;
}

/* LEGAL SECTION */
.legal-section {
  padding: 70px 0;
  background: #f9fafc;
}

/* TABS */
.legal-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.legal-tab {
  padding: 12px 22px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  background: #e4e7ff;
  color: #333;
  transition: 0.3s;
}

.legal-tab.active,
.legal-tab:hover {
  background: linear-gradient(135deg, #0d6efd, #6610f2);
  color: #fff;
}

/* CONTENT */
.legal-content {
  display: none;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
  animation: fadeUp 0.5s ease;
}

.legal-content.active {
  display: block;
}

.legal-content h2 {
  margin-bottom: 15px;
  color: #1a1f71;
}

.legal-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.legal-content ul {
  padding-left: 0;
  list-style: none;
}

.legal-content li {
  margin-bottom: 10px;
  font-size: 15px;
}

/* ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .legal-hero h1 {
    font-size: 30px;
  }
  .legal-content {
    padding: 25px;
  }
}

/*icon right css*/
.floating-social {
    position: fixed;
    top: 40%;
    right: 0;
    z-index: 9999;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    margin: 5px 0;
    color: #fff;
    text-decoration: none;
    border-radius: 30px 0 0 30px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.social-btn i {
    font-size: 18px;
    min-width: 45px;
    text-align: center;
}

.social-btn span {
    white-space: nowrap;
    padding-right: 15px;
    font-size: 14px;
    display: none;
}

.social-btn:hover {
    width: 160px;
}

.social-btn:hover span {
    display: block;
}

/* Colors */
.whatsapp { background: #25D366; }
.call { background: #0d6efd; }
.facebook { background: #1877f2; }
.instagram { background: #E4405F; }
.linkedin { background: #0A66C2; }

/* Mobile View */
@media (max-width: 768px) {
    .social-btn:hover {
        width: 45px;
    }
    .social-btn span {
        display: none;
    }
}


/**********/
.social-float {
    position: fixed;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-float a {
  width: 35px;
    height: 35px;
    border-start-start-radius: 6px;
    border-bottom-left-radius: 6px;
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.social-float a:hover {
    transform: scale(1.1);
}

/* Brand Colors */
.youtube { background: #ff0033; }
.facebook { background: #1877F2; }
.instagram { 
    background: radial-gradient(circle at 30% 107%, 
    #fdf497 0%, #fdf497 5%, #fd5949 45%, 
    #d6249f 60%, #285AEB 90%); 
}
.linkedin { background: #0A66C2; }


.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.popup-box {
    background: linear-gradient(145deg, #ffffff, #f2f4f8);
    padding: 35px 30px;
    width: 92%;
    max-width: 420px;
    text-align: center;
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
    animation: popupEnter 0.4s ease;
}

.success-ring {
    width: 90px;
    height: 90px;
    margin: 0 auto 15px;
    border-radius: 50%;
    border: 5px solid #28a745;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: ringPop 0.5s ease;
}

.checkmark {
    font-size: 46px;
    color: #28a745;
    font-weight: bold;
}

.popup-box h2 {
    margin: 10px 0 8px;
    font-size: 22px;
    color: #222;
}

.popup-box p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.popup-btn {
    margin-top: 20px;
    padding: 12px 35px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border: none;
    border-radius: 30px;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(40,167,69,0.4);
}

/* Animations */
@keyframes popupEnter {
    from { transform: scale(0.85) translateY(30px); opacity: 0; }
    to   { transform: scale(1) translateY(0); opacity: 1; }
}

@keyframes ringPop {
    from { transform: scale(0.6); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}


/*Client slider */

.clients-slider-section {
    padding: 60px 20px;
    background: #f0f4f8;
    text-align: center;
}

.clients-slider-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #222;
}

.slider-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.slider-track {
    display: flex;
    gap: 40px; /* spacing between logos */
    align-items: center;
}

.client {
    flex: 0 0 auto;
    width: 120px;  /* fixed size for all logos */
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}


.call-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0d6efd, #20c997);
    color: #fff;
    border-radius: 50%;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

/* PULSE ANIMATION */
.call-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(13,110,253,0.4);
    animation: callPulse 1.8s infinite;
    z-index: -1;
}

@keyframes callPulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* MOBILE OPTIMIZATION */
@media(max-width:768px){
    .call-float{
        width:55px;
        height:55px;
        font-size:24px;
        bottom:20px;
        right:15px;
    }
}
