/* Saral Typing Professional CSS */

:root {
  /* Professional Color Palette */
  --color-primary: #396ba0;
  --color-secondary: #dc2626;
  --color-accent: #cf4225;
  --color-warning: #d97706;
  --color-info: #0284c7;
  --color-light: #f8fafc;
  --color-dark: #1f2937;
  --color-white: #ffffff;
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-gray-600: #4b5563;
  --color-gray-700: #374151;
  --color-gray-800: #1f2937;
  --color-gray-900: #111827;

  /* Professional Font */
  --font-primary: 'Inter', system-ui, -apple-system, sans-serif;

  /* Professional Gradients */
  --gradient-primary: linear-gradient(135deg, #396ba0 0%, #396ba0 100%);
  --gradient-secondary: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  --gradient-accent: linear-gradient(135deg, #cf4225 0%, #cf4225 100%);
  --gradient-hero: linear-gradient(135deg, #396ba0 0%, #396ba0 50%, #396ba0 100%);

  /* Professional Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

  /* Border Radius */
  --border-radius: 8px;
  --border-radius-sm: 6px;
  --border-radius-lg: 12px;
  --border-radius-xl: 16px;

  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* 👇 Keyboard section styles 👇 */
/* Keyboard Alt Shortcode Section Styles */
.keyboard-intro .intro-card {
    /* ... all keyboard styles ... */
	    /* Keyboard Alt Shortcode Section Styles */
    .keyboard-intro .intro-card {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 40px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    }

    .keyboard-card {
        background: white;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
        position: relative;
        overflow: hidden;
    }

    .keyboard-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }

    .keyboard-card.featured {
        border: 3px solid #27ae60;
        transform: scale(1.02);
    }

    .keyboard-card.featured:hover {
        transform: scale(1.02) translateY(-10px);
    }

    .popular-badge {
        position: absolute;
        top: 20px;
        right: -35px;
        background: #27ae60;
        color: white;
        padding: 5px 40px;
        transform: rotate(45deg);
        font-size: 12px;
        font-weight: 600;
        box-shadow: 0 3px 10px rgba(0,0,0,0.2);
        z-index: 10;
    }

    .keyboard-card-header {
        text-align: center;
        padding: 30px 20px;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        border-bottom: 2px solid #dee2e6;
    }

    .keyboard-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 15px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
    }

    .keyboard-icon i {
        font-size: 35px;
        color: white;
    }

    .keyboard-card h4 {
        font-size: 22px;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 5px;
    }

    .keyboard-subtitle {
        color: #7f8c8d;
        font-size: 14px;
        margin: 0;
    }

    .keyboard-card-body {
        padding: 25px;
        flex-grow: 1;
    }

    .keyboard-features {
        margin-bottom: 20px;
    }

    .feature-item {
        display: flex;
        align-items: center;
        padding: 8px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .feature-item:last-child {
        border-bottom: none;
    }

    .feature-item i {
        color: #27ae60;
        margin-right: 10px;
        font-size: 16px;
    }

    .feature-item span {
        font-size: 14px;
        color: #555;
    }

    .keyboard-usage {
        background: #f8f9fa;
        padding: 15px;
        border-radius: 8px;
        margin-top: 15px;
    }

    .keyboard-usage h6 {
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 10px;
        font-size: 14px;
    }

    .keyboard-usage ul {
        margin: 0;
        padding-left: 20px;
    }

    .keyboard-usage ul li {
        font-size: 13px;
        color: #666;
        margin-bottom: 5px;
    }

    .keyboard-card-footer {
        padding: 20px;
        background: #f8f9fa;
        border-top: 1px solid #dee2e6;
    }

    .keyboard-card-footer .btn {
        font-weight: 600;
        padding: 12px 20px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .keyboard-card-footer .btn:hover {
        transform: scale(1.05);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    .how-to-use-card {
        background: white;
        padding: 40px;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .how-to-use-card h3 {
        color: #2c3e50;
        font-weight: 700;
        margin-bottom: 30px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .how-to-use-card h3 i {
        color: #667eea;
    }

    .usage-step {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 30px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        font-weight: 700;
        flex-shrink: 0;
        box-shadow: 0 3px 10px rgba(102, 126, 234, 0.3);
    }

    .step-content h5 {
        font-size: 18px;
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 8px;
    }

    .step-content p {
        color: #666;
        margin: 0;
        font-size: 14px;
        line-height: 1.6;
    }

    .usage-example {
        background: #fff3cd;
        padding: 20px;
        border-radius: 10px;
        border-left: 4px solid #ffc107;
    }

    .usage-example h5 {
        color: #856404;
        font-weight: 600;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .example-box {
        background: white;
        padding: 20px;
        border-radius: 8px;
        margin-top: 15px;
    }

    .example-box p {
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 10px;
    }

    .example-box ol {
        margin: 0;
        padding-left: 25px;
    }

    .example-box ol li {
        margin-bottom: 8px;
        color: #555;
    }

    .example-box code {
        background: #667eea;
        color: white;
        padding: 2px 8px;
        border-radius: 4px;
        font-weight: 600;
        font-size: 16px;
    }

    .alert-info {
        background: #d1ecf1;
        border: 1px solid #bee5eb;
        border-left: 4px solid #17a2b8;
        border-radius: 8px;
        padding: 20px;
    }

    .alert-info h5 {
        color: #0c5460;
        font-weight: 600;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .alert-info ul {
        margin: 0;
        padding-left: 25px;
    }

    .alert-info ul li {
        margin-bottom: 10px;
        color: #0c5460;
    }

    .alert-info strong {
        color: #004085;
    }

    .keyboard-support {
        background: white;
        padding: 40px;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .keyboard-support h4 {
        color: #2c3e50;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .keyboard-support p {
        color: #666;
        margin-bottom: 25px;
    }

    .support-buttons {
        display: flex;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }

    .support-buttons .btn {
        padding: 12px 30px;
        font-weight: 600;
        border-radius: 8px;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .keyboard-intro .intro-card {
            padding: 25px;
        }

        .how-to-use-card {
            padding: 25px;
        }

        .keyboard-support {
            padding: 25px;
        }

        .usage-step {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .support-buttons {
            flex-direction: column;
        }

        .support-buttons .btn {
            width: 100%;
        }

        .popular-badge {
            font-size: 10px;
            padding: 3px 30px;
        }
    }
}
body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--color-gray-700);
  background-color: var(--color-white);
}

html {
  scroll-behavior: smooth;
}

/* Top Contact Bar */
.top-bar {
  background: var(--color-gray-900);
  color: white;
  padding: 0.75rem 0;
  font-size: 0.875rem;
}

.top-contact span {
  margin-right: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.top-contact i {
  color: var(--color-accent);
}

.whatsapp-btn {
  background: #25D366;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.whatsapp-btn:hover {
  background: #128C7E;
  color: white;
  transform: translateY(-2px);
}

/* Navigation */
.navbar {
  padding: 1rem 0;
  transition: var(--transition);
  border-bottom: 1px solid var(--color-gray-200);
}

.navbar-brand img {
  height: 50px;
  width: auto;
}

.navbar-nav .nav-link {
  color: var(--color-gray-700) !important;
  font-weight: 500;
  padding: 0.75rem 1rem !important;
  margin: 0 0.25rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
  position: relative;
}

.navbar-nav .nav-link:hover {
  color: var(--color-primary) !important;
  background: var(--color-gray-50);
}

.navbar-nav .nav-link:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: var(--transition);
  transform: translateX(-50%);
}

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

/* Hero Section */
.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: white;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.floating-keys {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.key {
  position: absolute;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--border-radius);
  padding: 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  animation: float 8s ease-in-out infinite;
  color: rgba(255,255,255,0.9);
}

.key-1 { top: 15%; left: 8%; animation-delay: 0s; }
.key-2 { top: 25%; right: 12%; animation-delay: 1.5s; }
.key-3 { top: 55%; left: 5%; animation-delay: 3s; }
.key-4 { top: 75%; right: 8%; animation-delay: 4.5s; }
.key-5 { bottom: 25%; left: 12%; animation-delay: 6s; }
.key-6 { bottom: 15%; right: 18%; animation-delay: 7.5s; }

@keyframes float {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg);
    opacity: 0.6;
  }
  25% {
    transform: translateY(-30px) rotate(3deg);
    opacity: 1;
  }
  50% {
    transform: translateY(-15px) rotate(-2deg);
    opacity: 0.8;
  }
  75% {
    transform: translateY(-40px) rotate(2deg);
    opacity: 0.9;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: slideInLeft 1s ease-out;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.primary-text {
  color: #fbbf24;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.typing-animation {
  display: inline-block;
  min-height: 1.2em;
}

.cursor {
  animation: blink 1s infinite;
  color: #fbbf24;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  line-height: 1.7;
  max-width: 90%;
}

.hero-buttons {
  margin-bottom: 2.5rem;
}

.hero-buttons .btn {
  margin-right: 1rem;
  margin-bottom: 1rem;
  padding: 1rem 2rem;
  border-radius: var(--border-radius-lg);
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  border: 2px solid transparent;
}

.hero-buttons .btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.hero-buttons .btn-primary {
  background: white;
  color: var(--color-primary);
  border-color: white;
}

.hero-buttons .btn-primary:hover {
  background: var(--color-gray-50);
  color: var(--color-primary);
}

.hero-buttons .btn-outline-primary {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.8);
}

.hero-buttons .btn-outline-primary:hover {
  background: rgba(255,255,255,0.1);
  color: white;
  border-color: white;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.feature-badge {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.75rem 1.25rem;
  border-radius: var(--border-radius-xl);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  font-weight: 500;
}

.feature-badge:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

.feature-badge i {
  color: #fbbf24;
}

/* Hero Demo */
.hero-demo {
  position: relative;
  z-index: 2;
  animation: slideInRight 1s ease-out;
}

.typing-interface {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--border-radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-xl);
}

.interface-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.interface-controls {
  display: flex;
  gap: 0.5rem;
}

.control {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.control.red { background: #ef4444; }
.control.yellow { background: #eab308; }
.control.green { background: #22c55e; }

.interface-title {
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

.typing-area {
  background: var(--color-gray-900);
  border-radius: var(--border-radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  min-height: 120px;
  display: flex;
  align-items: center;
  font-family: 'Consolas', 'Monaco', monospace;
  border: 1px solid var(--color-gray-700);
}

.typing-text {
  display: flex;
  align-items: center;
}

.current-text {
  color: #10b981;
  font-size: 1.1rem;
  margin-right: 0.5rem;
}

.typing-cursor {
  width: 2px;
  height: 1.5rem;
  background: #10b981;
  animation: blink 1s infinite;
}

.typing-stats {
  display: flex;
  justify-content: space-around;
  background: rgba(255,255,255,0.1);
  border-radius: var(--border-radius-lg);
  padding: 1rem;
  border: 1px solid rgba(255,255,255,0.2);
}

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

.stat-label {
  font-size: 0.8rem;
  opacity: 0.8;
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fbbf24;
}

/* Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-gray-900);
  position: relative;
}

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

.section-header p {
  font-size: 1.125rem;
  color: var(--color-gray-600);
  max-width: 600px;
  margin: 0 auto;
}

/* Feature Cards */
.feature-card {
  background: white;
  border-radius: var(--border-radius-xl);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-gray-200);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.feature-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition);
}

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

.feature-card:hover:before {
  transform: scaleX(1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-icon:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-card:hover .feature-icon:before {
  left: 100%;
}

.feature-card h4 {
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-gray-900);
}

.feature-card p {
  color: var(--color-gray-600);
  line-height: 1.7;
}

/* Pricing Cards */
.pricing-card {
  background: white;
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
  border: 2px solid var(--color-gray-200);
}

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

.pricing-card.featured {
  border-color: var(--color-accent);
  transform: scale(1.05);
  position: relative;
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.popular-badge {
  position: absolute;
  top: 20px;
  right: -35px;
  background: var(--color-primary);
  color: white;
  padding: 0.5rem 2.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  transform: rotate(45deg);
  z-index: 1;
}

.pricing-header {
  background: var(--gradient-primary);
  color: white;
  padding: 2rem;
  text-align: center;
  position: relative;
}

.pricing-card.featured .pricing-header {
  background: var(--gradient-accent);
}

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

.pricing-header p {
  opacity: 0.9;
}

.pricing-plans {
  padding: 1.5rem;
}

.plan-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
  background: var(--color-gray-50);
  border-radius: var(--border-radius-lg);
  transition: var(--transition);
  border: 1px solid var(--color-gray-200);
}

.plan-row:hover {
  background: var(--color-gray-100);
  border-color: var(--color-primary);
}

.plan-row.popular {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border: 2px solid var(--color-warning);
  position: relative;
}

.plan-row.popular::after {
  content: "सबसे अच्छा";
  position: absolute;
  top: -8px;
  right: 10px;
  background: var(--color-warning);
  color: white;
  font-size: 0.7rem;
  padding: 0.25rem 0.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
}

.plan-duration {
  font-weight: 600;
  color: var(--color-gray-900);
}

.plan-price {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--color-primary);
}

.original-price {
  text-decoration: line-through;
  color: var(--color-gray-400);
  font-size: 0.875rem;
  margin-left: 0.5rem;
}

/* Exam Cards */
.exam-card {
  background: white;
  border-radius: var(--border-radius-xl);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-gray-200);
  transition: var(--transition);
  height: 100%;
  position: relative;
}

.exam-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transition: var(--transition);
}

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

.exam-card:hover:before {
  transform: scaleX(1);
}

.exam-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: white;
  transition: var(--transition);
}

.exam-card:hover .exam-icon {
  transform: scale(1.1) rotateY(180deg);
}

.exam-card h5 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-gray-900);
  font-size: 1.25rem;
}

.exam-card p {
  color: var(--color-gray-600);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Download Section */
.download-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--color-gray-900);
}

.download-features {
  margin-top: 2rem;
}

.download-feature {
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
}

.download-feature i {
  color: var(--color-accent);
  margin-right: 1rem;
  font-size: 1.25rem;
}

.download-form-card {
  background: white;
  border-radius: var(--border-radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-gray-200);
}

.download-form-card h4 {
  margin-bottom: 1.5rem;
  color: var(--color-gray-900);
  font-weight: 600;
}

/* Support Steps */
.support-step {
  background: white;
  border-radius: var(--border-radius-xl);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-gray-200);
  transition: var(--transition);
  height: 100%;
  position: relative;
}

.support-step:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition);
}

.support-step:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.support-step:hover:before {
  transform: scaleX(1);
}

.step-number {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.support-step h5 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-gray-900);
}

.support-contact-card {
  background: white;
  border-radius: var(--border-radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-xl);
  text-align: center;
  border: 1px solid var(--color-gray-200);
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
}

.contact-item i {
  color: var(--color-primary);
  font-size: 1.25rem;
}

.whatsapp-link {
  color: #25D366;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.whatsapp-link:hover {
  color: #128C7E;
}

/* Contact Section */
.contact-info-card, .contact-form-card {
  background: white;
  border-radius: var(--border-radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-gray-200);
  height: 100%;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
  font-size: 1.25rem;
}

.contact-text h6 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-gray-900);
}

.contact-text p {
  color: var(--color-gray-600);
  margin: 0;
  line-height: 1.6;
}

/* Forms */
.form-group label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--color-gray-700);
}

.form-control {
  border: 2px solid var(--color-gray-200);
  border-radius: var(--border-radius);
  padding: 0.875rem;
  font-size: 1rem;
  transition: var(--transition);
  background: white;
}

.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
  outline: none;
}

.form-check-input:checked {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.form-check-label {
  color: var(--color-gray-600);
}

/* Buttons */
.btn {
  padding: 0.875rem 1.75rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1rem;
}

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

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

.btn-success {
  background: var(--gradient-accent);
  color: white;
}

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

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

.btn-outline-primary:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-2px);
}

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

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

/* Footer */
.footer {
  background: var(--color-gray-900);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-brand {
  margin-bottom: 2rem;
}

/* Footer Brand Logo */
.footer-brand img {
    filter: none !important;     /* Remove any brightness/invert filter */
    opacity: 1 !important;       /* Ensure full opacity */
}

.footer-brand h5 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-brand p {
  opacity: 0.8;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

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

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  text-decoration: none;
}

.social-links a:hover {
  background: var(--color-primary);
  transform: translateY(-3px);
  color: white;
}

.footer h6 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

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

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

.footer-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-contact p {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.8);
}

.footer-contact i {
  color: var(--color-primary);
}

.footer-divider {
  border-color: rgba(255,255,255,0.2);
  margin: 2rem 0 1rem;
}

.footer-bottom {
  padding-top: 1rem;
}

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

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.5rem;
  box-shadow: var(--shadow-xl);
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-float a:hover {
  background: #128C7E;
  transform: scale(1.1);
  color: white;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Modal */
.modal-content {
  border-radius: var(--border-radius-xl);
  border: none;
  box-shadow: var(--shadow-xl);
}
/* Make modal vertically and horizontally centered and full width */
.modal-dialog {
  max-width: 600px;      /* अपनी आवश्यकता के अनुसार समायोजित करें */
  margin: 1.75rem auto;   /* Center vertically with small top/bottom margin */
}
.modal-header {
  border-bottom: 1px solid var(--color-gray-200);
  padding: 1.5rem;
}

.modal-body {
  max-height: calc(100vh - 200px);  /* Viewport की ऊँचाई से header/footer घटा दें */
  overflow-y: auto;                 /* Only body scrolls, पूरा modal नहीं */
}

.modal-footer {
  border-top: 1px solid var(--color-gray-200);
  padding: 1.5rem;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.75rem;
  }

  .pricing-card.featured {
    transform: none;
    margin-top: 2rem;
  }

  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }

  .contact-info {
    flex-direction: column;
    align-items: center;
  }

  .top-contact span {
    margin-right: 1rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .hero-buttons .btn {
    display: block;
    margin: 0.75rem 0;
  }

  .hero-features {
    justify-content: center;
  }

  .typing-interface {
    padding: 1.5rem;
  }

  .typing-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .plan-row {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .top-bar {
    text-align: center;
  }

  .top-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .top-contact span {
    margin: 0;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 1rem;
  }

  .hero {
    padding: 2rem 0;
    text-align: center;
  }

  .hero-title {
    font-size: 1.875rem;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .download-content h2 {
    font-size: 1.875rem;
  }

  .feature-card, .exam-card, .support-step,
  .download-form-card, .contact-info-card, .contact-form-card {
    margin-bottom: 1.5rem;
    padding: 2rem 1.5rem;
  }

  .floating-keys .key {
    font-size: 1rem;
    padding: 0.5rem;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float a {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
}

/* Loading Animation */
.loading {
  position: relative;
  pointer-events: none;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-gray-200);
  border-top: 2px solid var(--color-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  transform: translate(-50%, -50%);
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-gray-100);
}

::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-secondary);
}

/* Selection */
::selection {
  background: var(--color-primary);
  color: white;
}

/* Focus visible for accessibility */
.btn:focus-visible,
.nav-link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}