/* modal.css */

/* Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6); /* dark semi-transparent bg */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease-in-out;
    font-family: 'Inter', sans-serif;
}

/* Modal Box */
.modal-box {
    background: #ffffff;
    width: 420px;
    max-width: 90%;
    border-radius: 1.2rem;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transform: translateY(-30px);
    opacity: 0;
    animation: slideUp 0.4s ease forwards;
}

/* Header */
.modal-header {
    background: linear-gradient(135deg, #2563eb, #1e40af); /* cool blue gradient */
    color: #fff;
    padding: 1.2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.5px;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.6rem;
    color: #fff;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.modal-close:hover {
    transform: rotate(90deg);
}

/* Body */
.modal-body {
    padding: 1.5rem;
    color: #334155;
    font-size: 0.95rem;
}

.modal-subtitle {
    margin-bottom: 1.2rem;
    color: #475569;
    font-size: 0.9rem;
}

/* Form */
.modal-form .form-group {
    margin-bottom: 1rem;
}

.modal-form label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: #1e293b;
}

.modal-form input {
    width: 100%;
    padding: 0.65rem 0.8rem;
    border: 1px solid #cbd5e1;
    border-radius: 0.6rem;
    outline: none;
    font-size: 0.9rem;
    transition: border 0.25s ease, box-shadow 0.25s ease;
}

.modal-form input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

/* Button */
.submit-btn {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 0.8rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #2563eb, #1e40af);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Role Dropdown */
.modal-form select {
    width: 100%;
    padding: 0.65rem 0.8rem;
    border: 1px solid #cbd5e1;
    border-radius: 0.6rem;
    outline: none;
    font-size: 0.9rem;
    background: #fff;
    appearance: none; /* remove default arrow */
    transition: border 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
}

.modal-form select:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

/* Optional: custom dropdown arrow */
.modal-form select {
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%23637485'%3E%3Cpath d='M4 5l3 3 3-3z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 0.9rem;
}


/* Hero Section */
.hero-header {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #fff;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

/* Grid Layout */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Content */
.hero-content {
    animation: fadeUp 1s ease forwards;
}
.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}
.hero-title span {
    background: linear-gradient(90deg, #14b8a6, #6d28d9);
    background-clip: text;
    -webkit-background-clip: text;   /* Chrome/Safari ke liye */
    -webkit-text-fill-color: transparent; /* Text ko transparent banata hai */
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 500px;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Buttons */
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.btn-hero-main {
    background: linear-gradient(135deg, #6d28d9, #14b8a6);
    padding: 0.9rem 1.6rem;
    border-radius: 0.6rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.btn-hero-main:hover {
    transform: translateY(-3px) scale(1.02);
}
.btn-hero-alt {
    background: rgba(255, 255, 255, 0.15);
    padding: 0.9rem 1.6rem;
    border-radius: 0.6rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-hero-alt:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* Right Illustration */
.hero-illustration img {
    width: 100%;
    max-width: 500px;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    animation: float 4s ease-in-out infinite;
}

/* Floating Background Shapes */
.floating-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}
.circle1 {
    width: 200px; height: 200px;
    background: #14b8a6;
    top: -50px; left: -50px;
    animation: float 6s ease-in-out infinite;
}
.circle2 {
    width: 150px; height: 150px;
    background: #6d28d9;
    bottom: 80px; right: -60px;
    animation: float 7s ease-in-out infinite reverse;
}
.circle3 {
    width: 100px; height: 100px;
    background: #38bdf8;
    top: 20%; right: 20%;
    animation: float 5s ease-in-out infinite;
}

/* Animations */
@keyframes fadeUp {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-subtitle {
        margin: 0 auto 2rem;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-illustration img {
        margin: 2rem auto 0;
    }
}


/* Footer */
.site-footer {
  background: #0b1c33;
  color: #ddd;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}

.footer-about {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #bbb;
}

.footer-title {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #fff;
}

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

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

.footer-links a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #0dcaf0;
}

.footer-contact li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.footer-contact i {
  color: #0dcaf0;
}

.social-icons a {
  font-size: 1.4rem;
  color: #bbb;
  margin-right: 15px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #0dcaf0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: #aaa;
}



























.features-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #f9fafb, #eef2f7);
  font-family: 'Inter', sans-serif;
  color: #1e293b;
  position: relative;
  overflow: hidden;
}

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

.features-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.features-title span {
  background: linear-gradient(90deg, #14b8a6, #6d28d9);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.features-subtitle {
  font-size: 1.25rem;
  max-width: 650px;
  margin: 0 auto;
  opacity: 0.85;
  line-height: 1.6;
}

/* Feature Cards Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

/* Premium Card Style */
.feature-card {
  background: linear-gradient(145deg, #ffffff, #f0f4f8);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Card Hover Effect */
.feature-card::before {
  content: '';
  position: absolute;
  width: 120%;
  height: 120%;
  background: linear-gradient(45deg, #14b8a6, #6d28d9, #3b82f6);
  top: -10%;
  left: -10%;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.5s ease;
  transform: rotate(25deg);
  z-index: 0;
  border-radius: 2rem;
}

.feature-card:hover::before {
  opacity: 0.1;
  transform: rotate(0deg);
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
  background: linear-gradient(145deg, #ffffff, #f7f9fc);
}

/* Card Content */
.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.2rem;
  position: relative;
  z-index: 1;
}

.feature-icon img {
  width: 100%;
  height: 100%;
}

.feature-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  position: relative;
  z-index: 1;
}

.feature-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: #475569;
  position: relative;
  z-index: 1;
}

/* Call to Action */
.features-cta {
  margin-top: 3.5rem;
  text-align: center;
}

.features-cta .btn-hero-main {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

/* Optional Floating Shapes for Premium Look */
.features-section::before,
.features-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  z-index: 0;
}

.features-section::before {
  width: 300px; height: 300px;
  background: #14b8a6;
  top: -60px; left: -60px;
}

.features-section::after {
  width: 200px; height: 200px;
  background: #6d28d9;
  bottom: 50px; right: -40px;
}

/* Responsive */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .features-section::before,
  .features-section::after {
    display: none;
  }
}
.feature-icon i {
  width: 60px;
  height: 60px;
  color: #6d28d9; /* gradient nahi directly color set ho sakta */
  stroke-width: 2.5;
}



/* Container & Grid */
.workflow-section {
  padding: 5rem 2rem;
  background: #f9fafb;
  font-family: 'Inter', sans-serif;
  color: #1e293b;
}
.workflow-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Steps */
.workflow-step {
  position: relative;
  margin-bottom: 2.5rem;
  padding-left: 4rem;
}
.step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #14b8a6, #6d28d9);
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.step-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.step-desc {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.5;
}

/* Illustration */
.workflow-illustration img {
  width: 100%;
  max-width: 500px;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  animation: float 4s ease-in-out infinite;
}

/* Floating Animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Responsive */
@media (max-width: 992px) {
  .workflow-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .workflow-step {
    padding-left: 0;
    margin-bottom: 2rem;
  }
  .step-number {
    position: relative;
    margin: 0 auto 0.5rem;
  }
  .workflow-illustration img {
    margin: 2rem auto 0;
  }
}




/* Pricing Section */
.pricing-section {
  padding: 5rem 2rem;
  background: #ffffff;
  font-family: 'Inter', sans-serif;
  color: #1e293b;
}

.pricing-header {
  text-align: center;
  margin-bottom: 3rem;
}

.pricing-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.pricing-title span {
  background: linear-gradient(90deg, #14b8a6, #6d28d9);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing-subtitle {
  font-size: 1.2rem;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

/* Pricing Cards Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

/* Individual Card */
.pricing-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

/* Popular Plan Highlight */
.pricing-card.popular {
  border: 2px solid #6d28d9;
  transform: scale(1.05);
}

.plan-tag {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  background: #6d28d9;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 1rem;
}

.pricing-card.popular .plan-tag {
  background: linear-gradient(135deg, #14b8a6, #6d28d9);
}

/* Price */
.plan-price {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
}

.plan-price span {
  font-size: 1rem;
  font-weight: 500;
  color: #475569;
}

/* Features List */
.plan-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0 2rem;
  text-align: left;
}

.plan-features li {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.8rem;
}

.plan-features li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0;
  color: #14b8a6;
  font-weight: 700;
}

/* Button */
.btn-plan {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  background: linear-gradient(135deg, #6d28d9, #14b8a6);
  color: #fff;
  font-weight: 600;
  border-radius: 0.6rem;
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease;
}

.btn-plan:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #14b8a6, #6d28d9);
}

/* Responsive */
@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}




.cta-section {
  background: linear-gradient(135deg, #6d28d9, #14b8a6);
  color: #fff;
  padding: 5rem 2rem;
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
}

.cta-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.cta-content {
  flex: 1;
  max-width: 600px;
}

.cta-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.btn-cta {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: #fff;
  color: #6d28d9;
  font-weight: 600;
  border-radius: 0.6rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.cta-illustration img {
  width: 100%;
  max-width: 450px;
}

@media (max-width: 992px) {
  .cta-container {
    flex-direction: column;
    text-align: center;
  }
  .cta-illustration img {
    margin-top: 2rem;
  }
}



/* FAQ Section */
.faq-section {
  padding: 5rem 2rem;
  background: #f9fafb;
  font-family: 'Inter', sans-serif;
  color: #1e293b;
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.faq-title span {
  background: linear-gradient(90deg, #14b8a6, #6d28d9);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-subtitle {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.8;
}

.faq-items {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.faq-question {
  width: 100%;
  padding: 1.2rem 1.5rem;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  background: #fff;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  outline: none;
}

.faq-toggle {
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  padding: 0 1.5rem;
  overflow: hidden;
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px; /* adjust if content is longer */
  padding: 1rem 1.5rem;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 768px) {
  .faq-title {
    font-size: 2rem;
  }
  .faq-subtitle {
    font-size: 1rem;
  }
  .faq-question {
    font-size: 1rem;
  }
}


.flash-messages {
    width: 100%;
    max-width: 600px;
    margin: 1rem auto;
    padding: 0 1rem;
}

.alert {
    padding: 10px 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    font-weight: 500;
}

.alert-danger { background-color: #f8d7da; color: #721c24; }
.alert-success { background-color: #d4edda; color: #155724; }
.alert-info { background-color: #cce5ff; color: #004085; }
.alert-secondary { background-color: #e2e3e5; color: #383d41; }
