:root {
  --primary: #1d4ed8;
  --primary-dark: #1e3a8a;
  --secondary: #f59e0b;
  --secondary-hover: #d97706;
  --dark: #0f172a;
  --text: #334155;
  --light-gray: #f8fafc;
  --white: #ffffff;
  --gradient: linear-gradient(135deg, #1d4ed8, #10b981);

  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.07);

  --radius: 12px;
  --radius-lg: 24px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--dark);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Utilities */
.text-primary {
  color: var(--primary);
}

.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: 1.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: inherit;
  font-size: 1rem;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 14px 0 rgba(29, 78, 216, 0.39);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(29, 78, 216, 0.23);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-white {
  background: var(--white);
  color: var(--primary);
}

.btn-white:hover {
  background: var(--light-gray);
  color: var(--primary-dark);
}

.btn-block {
  width: 100%;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.05rem 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
}

.logo i {
  font-size: 2rem;
}

.logo img {
  height: 110px;
  width: 110px;
  object-fit: contain;
  background-color: white;
  border-radius: 50%;
  display: block;
}


.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a:not(.btn) {
  font-weight: 500;
  color: var(--text);
  position: relative;
}

.nav-links a:not(.btn):hover,
.nav-links a:not(.btn).active {
  color: var(--primary);
}

.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-links a:not(.btn):hover::after,
.nav-links a:not(.btn).active::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark);
  cursor: pointer;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  position: absolute;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background: var(--white);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.mobile-menu-overlay.active .mobile-menu-content {
  right: 0;
}

.close-menu-btn {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  margin-bottom: 2rem;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-links a {
  font-size: 1.125rem;
  font-weight: 600;
}

/* Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

/* Floating animation */
@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

.floating {
  animation: float 6s ease-in-out infinite;
}

.floating-delayed {
  animation: float 6s ease-in-out 3s infinite;
}

/* Hero Section */
/* ================= HERO SECTION ================= */

.hero {
  position: relative;
  padding: 9rem 0 6rem;
  background: var(--light-gray);
  overflow: hidden;
}

/* Background Shapes */

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: rgba(29, 78, 216, 0.18);
  top: -120px;
  right: -120px;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: rgba(245, 158, 11, 0.18);
  bottom: -80px;
  left: -80px;
}

/* Hero Layout */

.hero-container {
  position: relative;
  z-index: 1;

  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
}

.hero-content {
  max-width: 850px;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Badge */

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0.7rem 1.3rem;
  border-radius: 50px;

  background: rgba(29, 78, 216, 0.1);
  color: var(--primary);

  font-size: 0.9rem;
  font-weight: 600;

  margin-bottom: 1.8rem;
}

/* Heading */

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

/* Paragraph */

.hero p {
  max-width: 700px;

  font-size: 1.15rem;
  line-height: 1.8;

  color: var(--text);

  margin-bottom: 2.8rem;
}

/* CTA */

.hero-ctas {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;

  margin-bottom: 3rem;
}

/* Stats */

.hero-stats-small {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;

  gap: 2rem;

  width: 100%;

  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;

  font-weight: 600;
  color: var(--dark);
}

.stat-item i {
  font-size: 1.3rem;
  color: var(--secondary);
}

/* ================= Responsive ================= */

@media (max-width: 992px) {

  .hero {
    padding: 8rem 0 5rem;
  }

  .hero-container {
    min-height: auto;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero p {
    font-size: 1.05rem;
    max-width: 100%;
  }

  .hero-stats-small {
    gap: 1.5rem;
  }

}

@media (max-width: 768px) {

  .hero {
    padding: 7rem 0 4rem;
  }

  .hero h1 {
    font-size: 2.3rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-stats-small {
    flex-direction: column;
    gap: 1rem;
  }

}

@media (max-width: 480px) {

  .badge {
    font-size: 0.8rem;
    padding: 0.55rem 1rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

}
/* Stats Section */
.stats {
  padding: 4rem 0;
  background: var(--dark);
  color: white;
}

.stats h2,
.stats h3,
.stats p {
  color: white;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-box h2 {
  font-size: 3rem;
  display: inline-block;
  margin: 0;
}

.stat-box span {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
}

.stat-box p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  margin-top: 0.5rem;
}

/* Products Section */
.products {
  padding: 8rem 0;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(29, 78, 216, 0.2);
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.product-card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: white;
}

.bg-blue {
  background: #3b82f6;
}

.bg-green {
  background: #10b981;
}

.bg-orange {
  background: #f59e0b;
}

.bg-purple {
  background: #8b5cf6;
}

.bg-indigo {
  background: #6366f1;
}

.bg-teal {
  background: #14b8a6;
}

.bg-red {
  background: #ef4444;
}

.bg-cyan {
  background: #06b6d4;
}

.product-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.product-card p {
  margin-bottom: 1.5rem;
  color: var(--text);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 600;
  color: var(--primary);
}

.card-link:hover {
  gap: 0.5rem;
}

/* EMI Calculator */
.emi-calculator {
  padding: 8rem 0;
  background: var(--light-gray);
}

.emi-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.emi-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.emi-content h2 i {
  color: var(--primary);
}

.emi-content p {
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

.glass-panel {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.input-group {
  margin-bottom: 2rem;
}

.input-group:last-child {
  margin-bottom: 0;
}

.input-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.input-header label {
  font-weight: 600;
  color: var(--dark);
}

.val-display {
  background: rgba(29, 78, 216, 0.1);
  color: var(--primary);
  padding: 0.25rem 0.75rem;
  border-radius: 8px;
  font-weight: 700;
}

input[type=range] {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 24px;
  width: 24px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  margin-top: -8px;
  box-shadow: 0 0 10px rgba(29, 78, 216, 0.3);
}

input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 8px;
  cursor: pointer;
  background: #e2e8f0;
  border-radius: 4px;
}

.result-card {
  background: var(--gradient);
  color: white;
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.result-card h3 {
  color: white;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.result-item span {
  opacity: 0.8;
  font-size: 1rem;
}

.result-item h4 {
  color: white;
  font-size: 1.25rem;
  margin: 0;
}

.result-item.primary h4 {
  font-size: 2rem;
  color: var(--secondary);
}

hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 1.5rem 0;
}

.result-item.total {
  margin-top: 1.5rem;
  margin-bottom: 0;
}

/* About Us */
.about-us {
  padding: 6rem 0;
  background-color: #f4f8f9;
}

.about-us h2 {
  font-size: 2.75rem;
  margin-bottom: 1rem;
  color: #111827;
}

.text-green {
  color: #10b981;
}

.text-blue {
  color: #3b82f6;
}

.text-purple {
  color: #8b5cf6;
}

.text-red {
  color: #ef4444;
}

.about-subtitle {
  font-size: 1.125rem;
  color: #4b5563;
  margin: 0 auto 3.5rem;
  max-width: 1400px;
  width: 100%;
  line-height: 1.8;
  padding: 0 50px;
  box-sizing: border-box;
  text-align: center;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.about-stat-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.about-stat-card .stat-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about-stat-card h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 0.5rem;
}

.about-stat-card p {
  color: #6b7280;
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
}

/* Mission and Vision Grid */
.mt-5 {
  margin-top: 4rem;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.mv-card {
  background: var(--white);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.mv-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.mv-header h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #111827;
  margin: 0;
}

.mv-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}

.icon-green {
  background-color: #d1fae5;
  color: #10b981;
}

.icon-blue {
  background-color: #dbeafe;
  color: #3b82f6;
}

.mv-card p {
  color: #4b5563;
  font-size: 1.05rem;
  line-height: 1.7;
}

.mt-why-choose {
  margin-top: 6rem;
  margin-bottom: 0;
}

.dark-heading {
  font-size: 3rem;
  color: #111827;
}

/* Why Choose Us Grid */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  padding-bottom: 2rem;
}

.why-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

/* Floating Chat Button */
.floating-chat-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background-color: #10b981;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-chat-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6);
  color: white;
}

.floating-chat-btn .notification-dot {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 14px;
  height: 14px;
  background-color: #ff6b6b;
  border: 2px solid white;
  border-radius: 50%;
}

.why-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.why-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 0.75rem;
}

.why-card p {
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
  }
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
}

.cta-container {
  background: var(--gradient);
  border-radius: var(--radius-lg);
  padding: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}

.cta-text p,
.cta-text h2 {
  color: white;
}

.cta-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-text p {
  font-size: 1.125rem;
  margin-bottom: 0;
  opacity: 0.9;
}

/* Footer */
footer {
  background: var(--dark);
  color: white;
  padding-top: 4rem;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

footer h4,
footer p {
  color: white;
}

.footer-logo {
  color: white;
  margin-bottom: 1.5rem;
  display: inline-flex;
}

.brand-col p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.social-links a:hover {
  background: var(--primary);
}

.links-col ul {
  list-style: none;
}

.links-col li {
  margin-bottom: 0.75rem;
}

.links-col a {
  color: rgba(255, 255, 255, 0.7);
}

.links-col a:hover {
  color: white;
  padding-left: 5px;
}

.contact-col h4 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.contact-col h4:first-child {
  margin-top: 0;
}

.contact-col p {
  opacity: 0.8;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  text-align: center;
}

.footer-bottom p {
  opacity: 0.6;
  margin: 0;
  font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 2.75rem;
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .emi-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero p {
    margin: 0 auto 2.5rem;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-stats-small {
    justify-content: center;
  }

  .about-stats-grid {
    grid-template-columns: 1fr;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
  }

  .dark-heading {
    font-size: 2.5rem;
  }

  .cta-container {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
/* new changes */
/*=========================
PRICING SECTION
==========================*/

.pricing-section{
    padding:100px 0;
    background:#f5f8fd;
}

.pricing-section .container{
    max-width:1280px;
    margin:auto;
    padding:0 20px;
}

/*=========================
SECTION TITLE
==========================*/

.section-header{
    text-align:center;
    margin-bottom:60px;
}

.section-header h2{
    font-size:56px;
    font-weight:800;
    color:#162038;
    margin-bottom:35px;
}

/*=========================
TOGGLE
==========================*/

.plan-toggle{
    display:inline-flex;
    background:#eef2f8;
    padding:8px;
    border-radius:18px;
    gap:8px;
    box-shadow:0 5px 15px rgba(0,0,0,.05);
}

.toggle-btn{
    border:none;
    background:transparent;
    padding:16px 34px;
    border-radius:14px;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    color:#5f6d89;
    transition:.3s;
}

.toggle-btn.active{
    background:linear-gradient(135deg,#2563eb,#4f6df5);
    color:#fff;
    box-shadow:0 10px 25px rgba(37,99,235,.35);
}

/*=========================
CARD
==========================*/

.pricing-card{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:45px;

    background:#fff;
    border:1px solid #dbe8ff;
    border-radius:34px;

    padding:38px;

    box-shadow:
    0 25px 60px rgba(37,99,235,.10);
}

/*=========================
PRICE BOX
==========================*/

.price-box{

    width:330px;
    min-width:330px;

    background:linear-gradient(180deg,#204fc8,#3169f2);

    border-radius:24px;

    padding:34px 25px;

    text-align:center;

    color:#fff;
}

.card-tag{

    display:inline-block;

    background:#fff;

    color:#2150d8;

    padding:7px 18px;

    border-radius:30px;

    font-size:13px;

    font-weight:700;

    letter-spacing:.5px;

    margin-bottom:24px;
}

.price-box h3{

    font-size:38px;

    margin-bottom:6px;

    font-weight:700;
}

.plan-subtitle{

    opacity:.95;

    margin-bottom:22px;
}

.old-price{

    font-size:26px;

    text-decoration:line-through;

    opacity:.7;

    margin-bottom:10px;
}

.discount-badge{

    background:#ff9800;

    color:#fff;

    padding:5px 12px;

    border-radius:20px;

    font-size:14px;

    margin-left:10px;

    text-decoration:none;
}

.price{

    font-size:72px;

    font-weight:800;

    color:#fff;

    line-height:1;
}

.price-note{

    margin-top:18px;

    font-size:17px;

    opacity:.9;
}

/*=========================
FEATURES
==========================*/

.features-wrapper{

    display:flex;

    gap:70px;

    flex:1;
}

.feature-group h5{

    font-size:34px;

    color:#1d2943;

    margin-bottom:22px;
}

.bullet-list{

    list-style:none;

    padding:0;
}

.bullet-list li{

    position:relative;

    padding-left:30px;

    margin-bottom:18px;

    font-size:22px;

    color:#49566e;
}

.bullet-list li::before{

    content:"✔";

    position:absolute;

    left:0;

    color:#2563eb;

    font-weight:bold;
}

/*=========================
BUTTONS
==========================*/

.plan-actions{

    width:260px;

    text-align:center;
}

.select-btn{

    width:100%;

    border:none;

    border-radius:16px;

    padding:20px;

    cursor:pointer;

    font-size:28px;

    font-weight:700;

    color:#fff;

    background:linear-gradient(135deg,#3b82f6,#5b5fe9);

    box-shadow:0 15px 30px rgba(59,130,246,.3);

    transition:.3s;
}

.select-btn:hover{

    transform:translateY(-4px);
}

.demo-app-btn{

    width:100%;

    margin-top:24px;

    padding:20px;

    background:#fff;

    border:3px solid #2563eb;

    border-radius:16px;

    color:#2563eb;

    font-size:26px;

    font-weight:700;

    cursor:pointer;

    transition:.3s;
}

.demo-app-btn:hover{

    background:#2563eb;

    color:#fff;
}

.extra-note{

    margin-top:35px;

    font-size:20px;

    line-height:1.9;

    color:#222;
}

/*=========================
WRAPPER
==========================*/

.plans-wrapper{

    display:none;
}

.plans-wrapper.active{

    display:block;
}

/*=========================
RESPONSIVE
==========================*/

@media(max-width:1100px){

.pricing-card{

flex-direction:column;

align-items:stretch;
}

.price-box{

width:100%;

min-width:100%;
}

.features-wrapper{

flex-direction:column;

gap:35px;
}

.plan-actions{

width:100%;
}
}

@media(max-width:768px){

.section-header h2{

font-size:38px;
}

.feature-group h5{

font-size:28px;
}

.bullet-list li{

font-size:18px;
}

.price{

font-size:58px;
}

.select-btn,
.demo-app-btn{

font-size:20px;
}
}
/*new changes*/
/*==============================
PRICING SECTION
==============================*/

.pricing-section{
    padding:100px 0;
    background:#f5f8fd;
}

.pricing-section .container{
    max-width:1280px;
    margin:auto;
    padding:0 20px;
}

/*==============================
HEADING
==============================*/

.pricing-section .section-header{
    text-align:center;
    margin-bottom:60px;
}

.pricing-section .section-header h2{
    font-size:58px;
    font-weight:800;
    color:#111827;
    margin-bottom:30px;
}

/*==============================
TOGGLE
==============================*/

.plan-toggle{
    display:inline-flex;
    background:#eef2ff;
    padding:8px;
    border-radius:18px;
    box-shadow:0 8px 20px rgba(0,0,0,.05);
}

.toggle-btn{
    border:none;
    background:transparent;
    padding:15px 35px;
    border-radius:14px;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    color:#64748b;
    transition:.35s;
}

.toggle-btn.active{
    background:linear-gradient(135deg,#2563eb,#5b5fe9);
    color:#fff;
    box-shadow:0 10px 25px rgba(37,99,235,.35);
}

/*==============================
CARD
==============================*/

.pricing-card{

    display:flex;
    justify-content:space-between;
    align-items:center;

    gap:55px;

    background:#fff;

    padding:45px;

    border-radius:32px;

    border:1px solid #dbe8ff;

    box-shadow:0 25px 60px rgba(37,99,235,.08);

}

/*==============================
PRICE BOX
==============================*/

.price-box{

    width:320px;
    min-width:320px;

    background:linear-gradient(180deg,#2357da,#376cf8);

    border-radius:26px;

    text-align:center;

    color:#fff;

    padding:35px 30px;

}

.card-tag{

    display:inline-block;

    background:#fff;

    color:#2563eb;

    padding:8px 18px;

    border-radius:30px;

    font-size:13px;

    font-weight:700;

    letter-spacing:.5px;

    margin-bottom:25px;

}

.price-box h3{

    font-size:34px;

    font-weight:800;

    margin-bottom:10px;

    color:#fff;

}

.plan-subtitle{

    color:#f8fafc;

    font-size:20px;

    margin-bottom:18px;

}

.old-price{

    font-size:22px;

    opacity:.8;

    text-decoration:line-through;

    margin-bottom:15px;

}

.discount-badge{

    background:#ff9800;

    color:#fff;

    font-size:13px;

    font-weight:700;

    padding:5px 10px;

    border-radius:20px;

    margin-left:10px;

    text-decoration:none;

}

.price{

    font-size:66px;

    font-weight:800;

    color:#fff;

    margin-bottom:15px;

}

.price-note{

    font-size:17px;

    opacity:.9;

}

/*==============================
CENTER FEATURES
==============================*/

.features-wrapper{

    display:flex;

    flex:1;

    justify-content:center;

    gap:65px;

}

.feature-group{

    flex:1;

}

.feature-group h5{

    font-size:24px;

    color:#162038;

    margin-bottom:22px;

}

.bullet-list{

    list-style:none;

    padding:0;

}

.bullet-list li{

    position:relative;

    padding-left:28px;

    margin-bottom:18px;

    font-size:18px;

    color:#4b5563;

    line-height:1.6;

}

.bullet-list li::before{

    content:"✔";

    position:absolute;

    left:0;

    color:#2563eb;

    font-weight:bold;

}

/*==============================
RIGHT SIDE
==============================*/

.plan-actions{

    width:260px;

    text-align:center;

}

.select-btn{

    width:100%;

    border:none;

    background:linear-gradient(135deg,#3b82f6,#5b5fe9);

    color:#fff;

    padding:18px;

    border-radius:16px;

    font-size:22px;

    font-weight:700;

    cursor:pointer;

    transition:.3s;

    box-shadow:0 15px 30px rgba(37,99,235,.3);

}

.select-btn:hover{

    transform:translateY(-4px);

}

.demo-app-btn{

    width:100%;

    margin-top:18px;

    padding:18px;

    background:#fff;

    border:3px solid #2563eb;

    border-radius:16px;

    color:#2563eb;

    font-size:20px;

    font-weight:700;

    cursor:pointer;

    transition:.3s;

}

.demo-app-btn:hover{

    background:#2563eb;

    color:#fff;

}

.extra-note{

    margin-top:30px;

    text-align:left;

}

.extra-note p{

    font-size:17px;

    margin:10px 0;

    color:#111827;

}

/*==============================
BOTTOM CTA
==============================*/

.demo-cta{

    margin-top:35px;

    background:#fff;

    border-radius:24px;

    padding:28px 35px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    border:1px solid #dbe8ff;

    box-shadow:0 15px 35px rgba(37,99,235,.08);

}

.demo-content{

    display:flex;

    align-items:center;

    gap:18px;

}

.demo-icon{

    width:55px;

    height:55px;

    border-radius:50%;

    background:#eef2ff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:24px;

}

.demo-content h4{

    font-size:24px;

    color:#111827;

    margin-bottom:5px;

}

.demo-content p{

    color:#64748b;

    font-size:17px;

}

.book-demo-btn{

    border:none;

    background:linear-gradient(135deg,#2563eb,#5b5fe9);

    color:#fff;

    padding:18px 34px;

    border-radius:14px;

    font-size:17px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

.book-demo-btn:hover{

    transform:translateY(-3px);

}

/*==============================
SHOW / HIDE PLANS
==============================*/

.plans-wrapper{

    display:none;

}

.plans-wrapper.active{

    display:block;

}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:1100px){

.pricing-card{

flex-direction:column;

align-items:stretch;

}

.price-box{

width:100%;

min-width:100%;

}

.features-wrapper{

flex-direction:column;

gap:35px;

}

.plan-actions{

width:100%;

}

.demo-cta{

flex-direction:column;

gap:25px;

text-align:center;

}

.demo-content{

flex-direction:column;

}

}

@media(max-width:768px){

.pricing-section{

padding:70px 0;

}

.pricing-section .section-header h2{

font-size:40px;

}

.price{

font-size:50px;

}

.price-box h3{

font-size:28px;

}

.feature-group h5{

font-size:22px;

}

.bullet-list li{

font-size:16px;

}

.select-btn,

.demo-app-btn{

font-size:18px;

}

}
.pricing-card{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;

    background:#fff;
    padding:32px;

    border-radius:24px;

    border:1px solid #e8eefc;

    box-shadow:
        0 10px 30px rgba(15,23,42,.05),
        0 2px 8px rgba(37,99,235,.04);
}
.price-box{

    width:280px;
    min-width:280px;

    padding:28px 22px;

    border-radius:20px;

    background:linear-gradient(180deg,#15803d,#3b82f6);

    box-shadow:0 12px 30px rgba(37,99,235,.22);

    text-align:center;

    color:#fff;
}
.card-tag{

    display:inline-block;

    background:#3b82f6;

    color: whitesmoke;

    padding:6px 16px;

    border-radius:30px;

    font-size:11px;

    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:20px;
}
.price-box h3{

    font-size:28px;

    font-weight:700;

    color:#fff;

    margin:18px 0 8px;
}
.plan-subtitle{

    font-size:14px;

    color:rgba(255,255,255,.92);

    margin-bottom:16px;
}
.price{

    font-size:48px;

    font-weight:600;

    color:#fff;

    margin:12px 0;

    letter-spacing:-1px;
}
  .testimonial-card {
        width: 290px;
        padding: 20px;
        margin: 0 5px;
    }
    .testimonial-slider {
    overflow: hidden;
    position: relative;
    margin-top: 50px;
}

.testimonial-track {
    display: flex;
    gap: 25px;
    width: max-content;
    animation: slideTestimonials 25s linear infinite;
}

.testimonial-track:hover {
    animation-play-state: paused;
}

.testimonial-card {
    width: 380px;
    flex-shrink: 0;

    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, .2);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);

    padding: 30px;
    border-radius: 24px;
}

@keyframes slideTestimonials {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: 1s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
/*new testimonials*/
/*====================================
TESTIMONIAL SECTION
====================================*/

.testimonials{
    padding:100px 0;
    background:#f5f8fd;
    overflow:hidden;
}

.testimonials .container{
    max-width:1280px;
    margin:auto;
    padding:0 20px;
}

/* Heading */

.testimonials .section-header{
    text-align:center;
    margin-bottom:60px;
}

.testimonials .section-header h2{
    font-size:54px;
    font-weight:800;
    color:#111827;
    margin-bottom:12px;
}

.testimonials .section-header p{
    font-size:20px;
    color:#64748b;
}

/* Slider */

.testimonial-slider{
    overflow:hidden;
    position:relative;
}

.testimonial-track{

    display:flex;
    gap:28px;

    width:max-content;

    animation:scrollTestimonials 28s linear infinite;
}

.testimonial-slider:hover .testimonial-track{
    animation-play-state:paused;
}

/* Cards */

.testimonial-card{

    width:360px;

    background:#fff;

    border-radius:24px;

    padding:32px;

    border:1px solid #edf2f7;

    box-shadow:
    0 12px 30px rgba(15,23,42,.05);

    transition:.35s;

    flex-shrink:0;
}

.testimonial-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 25px 55px rgba(37,99,235,.12);
}

/* Stars */

.stars{

    font-size:22px;

    margin-bottom:22px;
}

/* Review */

.testimonial-card p{

    font-size:18px;

    line-height:1.8;

    color:#475569;

    margin-bottom:28px;

    min-height:95px;
}

/* Reviewer */

.reviewer{

    display:flex;

    flex-direction:column;
}

.reviewer strong{

    font-size:20px;

    color:#111827;

    margin-bottom:5px;
}

.reviewer span{

    font-size:17px;

    color:#64748b;
}

/* Animation */

@keyframes scrollTestimonials{

0%{

transform:translateX(0);

}

100%{

transform:translateX(-50%);
}

}

/*====================================
CTA SECTION
====================================*/

.cta-section{

    padding:80px 0;

    background:#0f3dd9;
}

.cta-container{

    max-width:1280px;

    margin:auto;

    padding:0 20px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:40px;
}

/* Text */

.cta-text h2{

    font-size:46px;

    color:#fff;

    font-weight:800;

    margin-bottom:16px;
}

.cta-text p{

    font-size:20px;

    color:rgba(255,255,255,.9);

    line-height:1.8;

    max-width:720px;
}

/* Button */

.btn-white{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:18px 38px;

    background:#fff;

    color:#2563eb;

    border-radius:16px;

    font-size:18px;

    font-weight:700;

    text-decoration:none;

    transition:.35s;

    box-shadow:
    0 15px 30px rgba(0,0,0,.18);
}

.btn-white:hover{

    transform:translateY(-4px);

    background:#f8fafc;
}

/*====================================
RESPONSIVE
====================================*/

@media(max-width:992px){

.cta-container{

flex-direction:column;

text-align:center;
}

.cta-text h2{

font-size:36px;
}

.testimonial-card{

width:320px;
}

}

@media(max-width:768px){

.testimonials{

padding:70px 0;
}

.testimonials .section-header h2{

font-size:38px;
}

.testimonials .section-header p{

font-size:17px;
}

.testimonial-card{

width:280px;

padding:24px;
}

.testimonial-card p{

font-size:16px;

min-height:auto;
}
}

/*====================================
FAQ SECTION
====================================*/

.faq{
    position:relative;
    padding:100px 0;
    background:#f5f8fd;
    overflow:hidden;
}

/* Decorative Background */

.faq::before{
    content:"";
    position:absolute;
    left:-180px;
    top:120px;
    width:420px;
    height:420px;
    border-radius:50%;
    background:radial-gradient(circle,#cfe0ff 0%,transparent 70%);
    opacity:.65;
}

.faq::after{
    content:"";
    position:absolute;
    right:-150px;
    top:60px;
    width:420px;
    height:420px;
    border-radius:50%;
    background:radial-gradient(circle,#dbe7ff 0%,transparent 70%);
    opacity:.7;
}

.faq .container{
    max-width:900px;
    margin:auto;
    padding:0 20px;
    position:relative;
    z-index:2;
}

/* Heading */

.faq .section-header{
    text-align:center;
    margin-bottom:55px;
}

.faq .section-header h2{
    font-size:56px;
    font-weight:800;
    color:#111827;
    line-height:1.2;
}

/* FAQ */

.faq-container{
    display:flex;
    flex-direction:column;
    gap:18px;
}

/* Card */

.faq-item{
    background:#fff;
    border:1px solid #edf2f7;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(15,23,42,.05);
    transition:.3s;
}

.faq-item:hover{
    box-shadow:0 18px 40px rgba(37,99,235,.10);
}

/* Question */

.faq-question{

    width:100%;

    background:none;

    border:none;

    padding:28px 30px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    cursor:pointer;

    font-size:23px;

    font-weight:700;

    color:#1f2937;

    text-align:left;

    transition:.3s;
}

.faq-question:hover{
    color:#2563eb;
}

/* Icon */

.faq-icon{

    width:34px;
    height:34px;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    background:#eef4ff;

    color:#2563eb;

    font-size:22px;

    font-weight:700;

    transition:.35s;
}

/* Active */

.faq-item.active .faq-icon{
    transform:rotate(45deg);
    background:#2563eb;
    color:#fff;
}

/* Answer */

.faq-answer{

    max-height:0;

    overflow:hidden;

    padding:0 30px;

    font-size:18px;

    line-height:1.8;

    color:#64748b;

    transition:
        max-height .45s ease,
        padding .35s ease;
}

/* Open */

.faq-item.active .faq-answer{

    max-height:300px;

    padding:0 30px 28px;
}

/*====================================
MODAL
====================================*/

.modal{

    display:none;

    position:fixed;

    inset:0;

    background:rgba(15,23,42,.55);

    backdrop-filter:blur(6px);

    z-index:9999;

    justify-content:center;

    align-items:center;
}

.modal.active{
    display:flex;
}

.modal-content{

    width:450px;

    background:#fff;

    border-radius:24px;

    padding:40px;

    position:relative;

    box-shadow:0 30px 60px rgba(15,23,42,.25);

    animation:popup .35s ease;
}

@keyframes popup{

    from{
        transform:translateY(20px) scale(.95);
        opacity:0;
    }

    to{
        transform:translateY(0) scale(1);
        opacity:1;
    }
}

.close-btn{

    position:absolute;

    top:18px;

    right:18px;

    width:36px;

    height:36px;

    border:none;

    border-radius:50%;

    background:#eef4ff;

    color:#2563eb;

    font-size:20px;

    cursor:pointer;
}

.modal-content h2{

    font-size:32px;

    margin-bottom:25px;

    color:#111827;
}

.plan-summary{

    background:#f8fbff;

    border-radius:18px;

    padding:22px;

    margin-bottom:30px;
}

#selectedPlan{

    font-size:22px;

    font-weight:700;

    color:#111827;

    margin-bottom:18px;
}

.selected-price-box{

    display:inline-block;

    background:#2563eb;

    color:#fff;

    padding:12px 22px;

    border-radius:12px;

    font-size:24px;

    font-weight:700;
}

#continueBtn{

    width:100%;

    border:none;

    background:linear-gradient(135deg,#2563eb,#5b5fe9);

    color:#fff;

    padding:18px;

    border-radius:14px;

    font-size:18px;

    font-weight:700;

    cursor:pointer;

    transition:.3s;
}

#continueBtn:hover{

    transform:translateY(-3px);
}

/*====================================
RESPONSIVE
====================================*/

@media(max-width:768px){

.faq{
    padding:70px 0;
}

.faq .section-header h2{
    font-size:38px;
}

.faq-question{
    font-size:18px;
    padding:22px;
}

.faq-answer{
    font-size:16px;
}

.modal-content{
    width:90%;
    padding:30px;
}
}
/*=========================
HERO BUTTONS
=========================*/

.hero-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    margin-top:45px;
    flex-wrap:wrap;
}

/* Common Button */

.hero-buttons a{
    text-decoration:none;
    display:inline-flex;
    justify-content:center;
    align-items:center;

    min-width:220px;
    height:68px;

    padding:0 38px;

    border-radius:18px;

    font-size:22px;
    font-weight:700;

    transition:all .35s ease;
}

/* Primary */

.btn-primary{

    color:#fff;

    background:linear-gradient(135deg,#3b82f6,#5b5fe9);

    box-shadow:
        0 18px 35px rgba(37,99,235,.28);

    border:none;
}

.btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:
        0 24px 40px rgba(37,99,235,.35);
}

/* Secondary */

.btn-secondary{

    color:#1f2937;

    background:#fff;

    border:1px solid #d9e2f1;

    box-shadow:
        0 8px 20px rgba(15,23,42,.05);
}

.btn-secondary:hover{

    border-color:#2563eb;

    color:#2563eb;

    transform:translateY(-4px);

    box-shadow:
        0 18px 35px rgba(37,99,235,.12);
}

/* Responsive */

@media(max-width:768px){

.hero-buttons{

flex-direction:column;

width:100%;
}

.hero-buttons a{

width:100%;

max-width:340px;

font-size:18px;

height:60px;
}

}
/*====================================
CTA SECTION
====================================*/

.cta-section{
    padding:90px 0;
    background:#f5f8fd;
}

.cta-container{

    max-width:1280px;

    margin:auto;

    padding:55px 65px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:60px;

    background:linear-gradient(135deg,#1d4ed8,#2563eb);

    border-radius:28px;

    overflow:hidden;

    position:relative;

    box-shadow:
        0 25px 60px rgba(37,99,235,.18);
}

/* Decorative circles */

.cta-container::before{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    background:rgba(255,255,255,.08);

    border-radius:50%;

    right:-120px;

    top:-120px;
}

.cta-container::after{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    background:rgba(255,255,255,.05);

    border-radius:50%;

    left:-60px;

    bottom:-60px;
}

/*====================================
TEXT
====================================*/

.cta-text{

    position:relative;

    z-index:2;

    flex:1;
}

.cta-text h2{

    font-size:50px;

    line-height:1.15;

    color:#fff;

    font-weight:800;

    margin-bottom:20px;

    max-width:760px;
}

.cta-text p{

    font-size:22px;

    line-height:1.8;

    color:rgba(255,255,255,.92);

    max-width:720px;
}

/*====================================
BUTTON
====================================*/

.cta-action{

    position:relative;

    z-index:2;
}

.btn-white{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:14px;

    min-width:260px;

    height:72px;

    padding:0 38px;

    background:#fff;

    color:#2563eb;

    text-decoration:none;

    border-radius:18px;

    font-size:20px;

    font-weight:700;

    transition:.35s;

    box-shadow:
        0 18px 40px rgba(0,0,0,.18);
}

.btn-white:hover{

    transform:translateY(-5px);

    box-shadow:
        0 28px 50px rgba(0,0,0,.25);

    background:#f8fafc;
}

.btn-white i{

    font-size:24px;

    transition:.35s;
}

.btn-white:hover i{

    transform:translateX(6px);
}

/*====================================
RESPONSIVE
====================================*/

@media(max-width:992px){

.cta-container{

flex-direction:column;

text-align:center;

padding:45px 30px;
}

.cta-text h2{

font-size:38px;
}

.cta-text p{

font-size:18px;

margin:auto;
}

.btn-white{

width:100%;

max-width:320px;
}

}

@media(max-width:576px){

.cta-section{

padding:60px 0;
}

.cta-container{

padding:35px 22px;

border-radius:22px;
}

.cta-text h2{

font-size:30px;
}

.cta-text p{

font-size:16px;
}

.btn-white{

height:60px;

font-size:17px;
}
}
.cta-container{
    max-width:1180px;
    margin:auto;

    padding:38px 50px;

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;

    background:linear-gradient(135deg,#2563eb 0%, #1d4ed8 45%, #10b981 100%);

    border-radius:26px;

    position:relative;
    overflow:hidden;

    box-shadow:0 20px 45px rgba(37,99,235,.18);
}
.cta-text h2{

    font-size:42px;

    line-height:1.2;

    font-weight:800;

    color:#fff;

    margin-bottom:14px;

    max-width:650px;
}
.cta-text p{

    font-size:18px;

    color:rgba(255,255,255,.92);

    line-height:1.7;

    max-width:560px;
}
.btn-white{

    min-width:230px;

    height:64px;

    padding:0 30px;

    border-radius:16px;

    background:#fff;

    color:#2563eb;

    font-size:18px;

    font-weight:700;

    text-decoration:none;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    transition:.3s;

    box-shadow:0 12px 30px rgba(0,0,0,.15);
}

.btn-white:hover{

    transform:translateY(-4px);

    background:#f8fafc;
}
.cta-container::before{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    right:-80px;

    top:-80px;
}
.cta-container::after{

    content:"";

    position:absolute;

    width:140px;

    height:140px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    left:-50px;

    bottom:-50px;
}
@media(max-width:992px){

.cta-container{

    flex-direction:column;

    text-align:center;

    padding:35px 25px;
}

.cta-text h2{

    font-size:32px;
}

.cta-text p{

    font-size:17px;
}

.btn-white{

    width:100%;
    max-width:300px;
}
}




