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

:root {
  --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --primary-color: #667eea;
  --secondary-color: #764ba2;
  --primary-light: rgba(102, 126, 234, 0.1);
  --primary-medium: rgba(102, 126, 234, 0.2);
  --text-dark: #1a1a1a;
  --text-gray: #666;
  --text-light: #94a3b8;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
    Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--primary-light);
  box-shadow: 0 2px 20px rgba(102, 126, 234, 0.1);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: #64748b;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu a:hover {
  color: var(--primary-color);
  transform: translateY(-1px);
}

.nav-menu a:hover::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-gradient);
  border-radius: 2px;
}

.nav-buttons {
  display: flex;
  gap: 1rem;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--primary-gradient);
  color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

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

.btn-secondary:hover {
  background: var(--primary-gradient);
  color: white;
  border-color: transparent;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.05) 0%,
    rgba(255, 255, 255, 0.9) 50%,
    rgba(118, 75, 162, 0.05) 100%
  );
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(102, 126, 234, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(118, 75, 162, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 80%,
      rgba(102, 126, 234, 0.08) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
  position: relative;
  z-index: 2;
  margin-bottom: 50px;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-top: 6.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 0.2s;
}

.hero .highlight {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.3rem;
  color: var(--text-gray);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 0.4s;
}

.hero-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto 3rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  padding: 0.5rem;
  backdrop-filter: blur(20px);
  border: 2px solid var(--primary-light);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
  opacity: 0;
  animation: fadeInUp 1s ease forwards 0.6s;
}

.hero-input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: none;
  background: transparent;
  color: #333;
  font-size: 1rem;
  outline: none;
}

.hero-input::placeholder {
  color: #999;
}

.hero-btn {
  background: var(--primary-gradient);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  transform: translateX(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.hero-image {
  margin-top: 3rem;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 0.8s;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.hero-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 25% 25%,
      rgba(102, 126, 234, 0.15) 0%,
      transparent 25%
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(118, 75, 162, 0.12) 0%,
      transparent 30%
    ),
    radial-gradient(
      circle at 50% 10%,
      rgba(255, 107, 107, 0.08) 0%,
      transparent 20%
    ),
    linear-gradient(
      135deg,
      rgba(102, 126, 234, 0.05) 0%,
      rgba(118, 75, 162, 0.05) 100%
    );
  border-radius: 16px;
  filter: blur(1px);
  opacity: 0.8;
  pointer-events: none;
  z-index: -1;
}

.hero-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70%;
  height: 60%;
  background:
    radial-gradient(
      ellipse at 80% 80%,
      rgba(102, 126, 234, 0.2) 0%,
      transparent 40%
    ),
    radial-gradient(
      ellipse at 60% 100%,
      rgba(118, 75, 162, 0.15) 0%,
      transparent 35%
    ),
    radial-gradient(
      circle at 90% 60%,
      rgba(64, 224, 255, 0.1) 0%,
      transparent 25%
    );
  border-radius: 12px;
  filter: blur(0.5px);
  pointer-events: none;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) scale(1);
  }

  50% {
    transform: translateY(-5px) scale(1.01);
  }
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}

/* Features Section */
.features {
  padding: 8rem 0;
  background: linear-gradient(
    135deg,
    rgba(248, 250, 255, 1) 0%,
    rgba(102, 126, 234, 0.02) 50%,
    rgba(248, 250, 255, 1) 100%
  );
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-title .highlight {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 6rem;
}

.feature-item {
  background: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  border-radius: 16px;
  backdrop-filter: blur(20px);
  border: 2px solid var(--primary-light);
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.08);
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.feature-item:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
  border-color: var(--primary-medium);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.feature-item h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.feature-item p {
  color: var(--text-gray);
  line-height: 1.6;
}

/* Services Section */
.services {
  padding: 8rem 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(102, 126, 234, 0.03) 100%
  );
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.9);
  padding: 2.5rem;
  border-radius: 20px;
  backdrop-filter: blur(20px);
  border: 2px solid var(--primary-light);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.08);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.service-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 25px 50px rgba(102, 126, 234, 0.15);
  border-color: var(--primary-medium);
}

.service-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* Pricing Section - UPDATED FROM YOUR CSS */
.pricing {
  padding: 5rem 2rem;
  background: linear-gradient(
    135deg,
    rgba(248, 250, 252, 1) 0%,
    rgba(102, 126, 234, 0.04) 50%,
    rgba(248, 250, 252, 1) 100%
  );
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(102, 126, 234, 0.08);
  position: relative;
  border: 2px solid var(--primary-light);
  transition: all 0.3s ease;
}

.pricing-card.featured {
  border: 2px solid var(--primary-color);
  transform: scale(1.05);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(102, 126, 234, 0.02) 100%
  );
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
}

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

.pricing-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-gradient);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.pricing-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.pricing-price {
  font-size: 3rem;
  font-weight: 800;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.pricing-period {
  color: #64748b;
  margin-bottom: 2rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-features li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.check-icon {
  color: var(--primary-color);
  font-weight: bold;
}

.cross-icon {
  color: #ef4444;
  font-weight: bold;
}

/* CTA Section */
.cta {
  background: var(--primary-gradient);
  padding: 5rem 2rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.cta p {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.cta-form {
  display: flex;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-form input {
  flex: 1;
  padding: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  backdrop-filter: blur(10px);
}

.cta-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.cta-form button {
  background: white;
  color: var(--primary-color);
  font-weight: 600;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: #94a3b8;
  padding: 3rem 2rem 1rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-section h3 {
  color: white;
  margin-bottom: 1rem;
  font-weight: 600;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  border-top: 1px solid #334155;
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
}

/* Custom Button Styles */
.learn_btn {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid var(--primary-color);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.learn_btn:hover {
  color: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateX(5px);
}

.btn_four {
  background: var(--primary-gradient);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn_four:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Navigation Enhancement */
.navbar-nav .nav-link:hover {
  color: var(--primary-color) !important;
}

.dropdown-menu .nav-link:hover {
  background: var(--primary-light);
  color: var(--primary-color) !important;
}

/* Icon Styling */
.icon_square {
  width: 60px;
  height: 60px;
  /* background: var(--primary-gradient); */
  background: gray;
  /* background: var(--primary-gradient); */
  background: gray;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-color);
  cursor: pointer;
}

/* =====================================================
           COMPREHENSIVE RESPONSIVE DESIGN
           ===================================================== */

/* Extra Large Screens (1400px and above) */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .hero p {
    font-size: 1.4rem;
  }

  .section-title h2 {
    font-size: 3rem;
  }
}

/* Large Screens (1200px - 1399px) */
@media (max-width: 1399px) {
  .hero h1 {
    font-size: 3rem;
  }

  .content-grid {
    gap: 3rem;
  }

  .dt-pricing-card {
    width: 320px;
    padding: 40px 28px;
  }
}

/* Medium-Large Screens (992px - 1199px) */
@media (max-width: 1199px) {
  .nav-container {
    padding: 1rem 1.5rem;
  }

  .nav-menu {
    gap: 1.5rem;
  }

  .hero h1 {
    font-size: 2.8rem;
    margin-top: 5.5rem;
  }

  .hero p {
    font-size: 1.15rem;
  }

  .features {
    padding: 6rem 0;
  }

  .services {
    padding: 6rem 0;
  }

  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .s_features_content.pl_120,
  .s_features_content.pr_120 {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }

  .deeptraq-inner-wrapper {
    gap: 40px;
  }

  .showcase-container {
    padding: 80px 30px;
    gap: 40px;
  }

  .dt-pricing-section {
    margin-top: 100px;
  }

  .dt-pricing-card {
    width: 300px;
    min-height: 550px;
  }
}

/* Tablet Landscape (992px and below) */
@media (max-width: 991px) {
  .nav-menu {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .nav-buttons {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 100px 0 60px;
  }

  .hero h1 {
    font-size: 2.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
  }

  .hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .hero-content {
    padding: 0 1.5rem;
  }

  .hero-form {
    flex-direction: row;
    max-width: 450px;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3rem 1.5rem;
  }

  .text-wrapper {
    max-width: 100%;
    text-align: center;
  }

  .image-wrapper {
    order: -1;
  }

  .main-heading h3 {
    font-size: 2.2rem;
  }

  .main-heading p {
    font-size: 1rem;
  }

  .input-groups {
    max-width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .deeptraq-inner-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 15px;
  }

  .deeptraq-content-block {
    padding-right: 0;
    text-align: center;
  }

  .deeptraq-features-grid {
    justify-items: center;
  }

  .deeptraq-feature-card {
    align-items: center;
    text-align: center;
  }

  .deeptraq-visual-area {
    order: -1;
  }

  .features {
    padding: 5rem 0;
  }

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

  .section-title h3 {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .feature-item {
    padding: 1.5rem;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .services {
    padding: 5rem 0;
  }

  .service-card {
    padding: 2rem;
  }

  .s_features_item {
    flex-direction: column !important;
  }

  .s_features_item .col-lg-6 {
    width: 100%;
    max-width: 100%;
  }

  .s_features_img {
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: center;
  }

  .s_features_img img {
    max-width: 100% !important;
    width: 100% !important;
  }

  .s_features_content {
    padding: 30px 15px !important;
    text-align: center;
  }

  .s_features_content .icon_square {
    margin: 0 auto 1.5rem;
  }

  .s_features_content .learn_btn {
    justify-content: center;
  }

  .design_tab_area .row {
    flex-direction: column;
  }

  .design_tab_area .col-lg-4,
  .design_tab_area .col-lg-8 {
    width: 100%;
    max-width: 100%;
  }

  .design_tab {
    flex-direction: row !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
  }

  .design_tab .nav-item {
    flex: 0 0 auto;
  }

  .design_tab .nav-link {
    padding: 15px 20px !important;
    text-align: center;
  }

  .design_tab .nav-link h5 {
    font-size: 14px;
    margin-bottom: 5px;
  }

  .design_tab .nav-link p {
    display: none;
  }

  .tab-content {
    margin-top: 2rem !important;
  }

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

  .showcase-container {
    grid-template-columns: 1fr;
    padding: 60px 20px;
    gap: 30px;
  }

  .info-panel {
    order: 2;
    padding-right: 0;
    text-align: center;
  }

  .gallery-section {
    order: 1;
  }

  .description-block h2 {
    font-size: 2rem;
  }

  .description-block p {
    font-size: 1rem;
  }

  .round_shape {
    transform: scale(0.8);
  }

  .pricing {
    padding: 4rem 1rem;
  }

  .pricing-card.featured {
    transform: none;
  }

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

  .dt-pricing-section {
    margin-top: 80px;
    margin-bottom: 60px;
  }

  .dt-pricing-header h1 {
    font-size: 2rem;
  }

  .dt-pricing-grid {
    flex-direction: column;
    align-items: center;
  }

  .dt-pricing-card {
    width: 100%;
    max-width: 400px;
    min-height: auto;
  }

  .cta {
    padding: 4rem 1.5rem;
  }

  .cta h2 {
    font-size: 2rem;
  }

  .cta-form {
    flex-direction: column;
    max-width: 100%;
  }

  .payment_subscribe_info {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .payment_subscribe_content h2 {
    font-size: 1.8rem;
  }

  .subscribe-form {
    flex-direction: column;
    gap: 15px;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer_top .row {
    gap: 30px;
  }

  .f_widget {
    margin-bottom: 30px;
  }
}

/* Tablet Portrait (768px and below) */
@media (max-width: 767px) {
  .header {
    padding: 0;
  }

  .nav-container {
    padding: 0.75rem 1rem;
  }

  .navbar-brand img {
    max-width: 140px;
  }

  .hero {
    padding: 80px 0 50px;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.3;
    margin-top: 1.5rem;
  }

  .hero p {
    font-size: 1rem;
    padding: 0 10px;
  }

  .hero-form {
    flex-direction: column;
    padding: 0.75rem;
    max-width: 100%;
  }

  .hero-input {
    padding: 0.875rem 1rem;
    text-align: center;
  }

  .hero-btn {
    padding: 0.875rem 1.5rem;
    width: 100%;
  }

  .hero-image {
    margin-top: 2rem;
  }

  .main-heading h3 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .input-groups {
    flex-direction: column;
    gap: 10px;
  }

  .input-field {
    width: 100%;
    text-align: center;
  }

  .submit-btn {
    width: 100%;
  }

  .deeptraq-primary-heading {
    font-size: 1.8rem;
  }

  .deeptraq-description-text {
    margin-bottom: 40px;
  }

  .deeptraq-features-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .features {
    padding: 4rem 0;
  }

  .section-title {
    margin-bottom: 2.5rem;
  }

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

  .section-title h3 {
    font-size: 1.3rem;
  }

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

  .feature-item {
    padding: 1.5rem;
  }

  .feature-item h3 {
    font-size: 1.2rem;
  }

  .services {
    padding: 4rem 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card {
    padding: 1.75rem;
  }

  .service-card h3 {
    font-size: 1.25rem;
  }

  .s_features_content h2 {
    font-size: 1.5rem !important;
    line-height: 1.3 !important;
  }

  .s_features_content p {
    font-size: 1rem !important;
  }

  .sec_title h2 {
    font-size: 1.5rem !important;
    line-height: 1.4 !important;
  }

  .sec_title p {
    font-size: 0.95rem !important;
  }

  .design_tab {
    flex-direction: column;
  }

  .design_tab .nav-link {
    padding: 12px 15px !important;
  }

  .design_tab .nav-link h5 {
    font-size: 13px;
  }

  .round_shape {
    transform: scale(0.6);
    margin: -50px 0;
  }

  .software_promo_area .sec_title h2 {
    font-size: 1.5rem !important;
  }

  .software_promo_area .sec_title p {
    font-size: 0.9rem !important;
  }

  .showcase-container {
    padding: 40px 15px;
  }

  .description-block h2 {
    font-size: 1.6rem;
  }

  .preview-slider {
    height: 350px;
  }

  .cta-button {
    padding: 14px 30px;
    font-size: 0.9rem;
  }

  .pricing {
    padding: 3rem 1rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    padding: 2rem;
  }

  .pricing-header h3 {
    font-size: 1.3rem;
  }

  .pricing-price {
    font-size: 2.5rem;
  }

  .hosting_title h2 {
    font-size: 1.6rem !important;
  }

  .dt-pricing-header h1 {
    font-size: 1.75rem;
  }

  .dt-pricing-header p {
    font-size: 1rem;
  }

  .dt-plan-toggle {
    gap: 8px;
  }

  .dt-toggle-btn {
    padding: 10px 20px !important;
    font-size: 0.85rem !important;
  }

  .cta {
    padding: 3rem 1rem;
  }

  .cta h2 {
    font-size: 1.75rem;
  }

  .cta p {
    font-size: 1rem;
  }

  .payment_subscribe_content h2 {
    font-size: 1.5rem;
  }

  .payment_subscribe_content p {
    font-size: 0.95rem;
  }

  .demo-request-btn,
  .btn_four {
    padding: 14px 24px;
    font-size: 0.9rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer_top .row {
    text-align: center;
  }

  .footer_top .col-lg-3,
  .footer_top .col-lg-2 {
    margin-bottom: 30px;
  }

  .f_widget.company_widget {
    text-align: center;
  }

  .f-logo {
    display: inline-block;
  }

  .footer_bottom .row {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .footer_bottom .col-lg-4 {
    width: 100%;
  }

  .f_menu {
    text-align: center !important;
    justify-content: center;
    flex-wrap: wrap;
  }

  .modern-dropdown {
    min-width: 100%;
    margin: 0;
    border-radius: 8px;
  }
}

/* Mobile Large (576px and below) */
@media (max-width: 575px) {
  .container {
    padding: 0 15px;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .hero-content {
    margin-bottom: 30px;
  }

  .main-heading h3 {
    font-size: 1.5rem;
  }

  .main-heading p {
    font-size: 0.95rem;
  }

  .deeptraq-primary-heading {
    font-size: 1.5rem;
  }

  .deeptraq-feature-heading {
    font-size: 1rem;
  }

  .section-title h2 {
    font-size: 1.5rem;
  }

  .section-title h3 {
    font-size: 1.15rem;
  }

  .feature-item h3 {
    font-size: 1.1rem;
  }

  .feature-item p {
    font-size: 0.9rem;
  }

  .service-card h3 {
    font-size: 1.15rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }

  .s_features_content h2 {
    font-size: 1.3rem !important;
  }

  .sec_title h2 {
    font-size: 1.3rem !important;
  }

  .design_tab .nav-link h5 {
    font-size: 12px;
  }

  .round_shape {
    transform: scale(0.45);
    margin: -80px 0;
  }

  .description-block h2 {
    font-size: 1.4rem;
  }

  .description-block p {
    font-size: 0.9rem;
  }

  .preview-slider {
    height: 280px;
  }

  .pricing-price {
    font-size: 2rem;
  }

  .dt-price {
    font-size: 2.25rem;
  }

  .dt-plan-name {
    font-size: 1.5rem;
  }

  .cta h2 {
    font-size: 1.5rem;
  }

  .payment_subscribe_content h2 {
    font-size: 1.3rem;
  }

  .f_widget h3,
  .f-title {
    font-size: 1rem !important;
    margin-bottom: 20px !important;
  }

  .f_list li a {
    font-size: 0.9rem;
  }
}

/* Mobile Small (400px and below) */
@media (max-width: 400px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .main-heading h3 {
    font-size: 1.35rem;
  }

  .deeptraq-primary-heading {
    font-size: 1.35rem;
  }

  .section-title h2,
  .section-title h3 {
    font-size: 1.1rem;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .round_shape {
    transform: scale(0.35);
    margin: -100px 0;
  }

  .dt-pricing-card {
    padding: 30px 20px;
  }

  .dt-price {
    font-size: 2rem;
  }
}

/* Height-based adjustments for landscape mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 100px 0 40px;
  }

  .hero h1 {
    font-size: 1.8rem;
    margin-top: 1rem;
  }

  .hero-image {
    margin-top: 1.5rem;
  }
}

/* Print styles */
@media print {
  .header,
  .nav-container,
  .footer,
  .cta,
  .payment_subscribe_area {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 20px 0;
  }

  body {
    font-size: 12pt;
  }
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Enhanced visual elements */
.symbols-pulse .pulse-1,
.symbols-pulse .pulse-2,
.symbols-pulse .pulse-3,
.symbols-pulse .pulse-4 {
  border-color: var(--primary-color);
}

.r_shape_five {
  background: transparent;
}

/* Testimonial section enhancements */
.feedback_item_two {
  border-left: 4px solid var(--primary-color);
}

.feedback_item_two .ratting a {
  color: var(--primary-color);
}

/* Tab styling */
.design_tab .nav-link.active {
  background: var(--primary-gradient);
  color: white;
  border-radius: 8px;
}

.design_tab .nav-link:hover {
  color: var(--primary-color);
}

/* ==========================================================================
           EXTERNAL CSS OVERRIDES - Force gradient theme across all external styles
           ========================================================================== */

/* Bootstrap Overrides */
.btn-primary,
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
  background: var(--primary-gradient) !important;
  /* border-color: var(--primary-color) !important; */
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3) !important;
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--primary-gradient) !important;
  /* border-color: var(--secondary-color) !important; */
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4) !important;
}

.btn-outline-primary {
  color: var(--primary-color) !important;
  /* border-color: var(--primary-color) !important; */
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background: var(--primary-gradient) !important;
  /* border-color: var(--primary-color) !important; */
  color: white !important;
}

/* Bootstrap Navbar Overrides */
.navbar-brand {
  color: var(--primary-color) !important;
}

.navbar-nav .nav-link {
  color: #64748b !important;
  transition: all 0.3s ease !important;
}

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

.dropdown-menu .nav-link:hover,
.dropdown-menu .dropdown-item:hover {
  background-color: var(--primary-light) !important;
  color: var(--primary-color) !important;
}

/* Bootstrap Form Controls */
.form-control:focus {
  /* border-color: var(--primary-color) !important; */
  box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25) !important;
}

.form-control {
  border-color: var(--primary-light) !important;
}

/* Bootstrap Badges */
.badge-primary {
  background: var(--primary-gradient) !important;
}

/* Bootstrap Progress */
.progress-bar {
  background: var(--primary-gradient) !important;
}

/* Bootstrap Links */
a {
  color: var(--primary-color);
}

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

/* Elagent Theme Overrides */
.btn_get,
.btn_get_two,
.btn_hover {
  background: var(--primary-gradient) !important;
  /* border-color: var(--primary-color) !important; */
  color: white !important;
  transition: all 0.3s ease !important;
}

.btn_get:hover,
.btn_get_two:hover,
.btn_hover:hover {
  /* background: linear-gradient(135deg, #764ba2 0%, #667eea 100%) !important; */
  transform: translateY(-2px) !important;
  /* box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4) !important; */
  color: white !important;
}

/* Theme Color Overrides */
.t_color,
.t_color3 {
  color: var(--text-dark) !important;
}

.w_color {
  color: white !important;
}

/* Section Title Colors */
.sec_title h2,
.section-header h2 {
  color: var(--text-dark) !important;
}

.sec_title h2 .highlight,
.section-header h2 .highlight {
  background: var(--primary-gradient) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* Owl Carousel Overrides */
.owl-nav i,
.owl-dots .owl-dot {
  background: var(--primary-gradient) !important;
  color: white !important;
  border: none !important;
}

.owl-nav i:hover,
.owl-dots .owl-dot:hover,
.owl-dots .owl-dot.active {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%) !important;
}

/* Star Rating Colors */
.ti-star,
.ratting a,
.rating i {
  color: #ffc107 !important;
}

.ratting a:hover {
  color: #ff9800 !important;
}

/* Icon Colors */
.ti-arrow-right,
.flaticon-rocket,
.flaticon-like,
.flaticon-trophy {
  color: var(--primary-color) !important;
}

/* Custom Theme Elements */
.learn_btn {
  color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}

.learn_btn:hover {
  color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
}

/* Social Media Icons */
.f_social_icon a,
.social-widget a {
  color: var(--primary-color) !important;
  transition: all 0.3s ease !important;
}

.f_social_icon a:hover,
.social-widget a:hover {
  color: white !important;
  background: var(--primary-gradient) !important;
  transform: translateY(-2px);
}

/* Payment Subscribe Section */
.payment_subscribe_area {
  /* background: var(--primary-gradient) !important; */
  background-color: #f9fafe !important;
}

.payment_subscribe_content h2 {
  color: white !important;
}

.payment_subscribe_content p {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* Footer Overrides */
.payment_footer_area {
  background: linear-gradient(135deg, #667eea2e 0%, #764ba226 100%) !important;
}

.f-title {
  background: var(--primary-gradient) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.f_list a:hover {
  color: var(--primary-color) !important;
}

/* Feedback Section */
.feedback_area_two {
  background: linear-gradient(
    135deg,
    rgba(248, 250, 255, 1) 0%,
    rgba(102, 126, 234, 0.03) 100%
  ) !important;
}

.feedback_item_two {
  border-left: 4px solid var(--primary-color) !important;
  background: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1) !important;
}

/* Features Section Enhancements */
.s_features_section {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(102, 126, 234, 0.02) 100%
  ) !important;
}

.s_features_content h2 {
  color: var(--text-dark) !important;
}

/* Tab Active States */
.nav-tabs .nav-link.active {
  background: var(--primary-gradient) !important;
  color: white !important;
  border-radius: 8px !important;
  border: none !important;
}

.nav-tabs .nav-link:hover {
  color: var(--primary-color) !important;
  border-color: var(--primary-light) !important;
}

/* Promo Items Animation */
.promo_item:hover {
  transform: scale(1.1) !important;
  transition: all 0.3s ease !important;
}

/* Pulse Animation Colors */
.pulse-1,
.pulse-2,
.pulse-3,
.pulse-4 {
  border-color: var(--primary-color) !important;
}

.pulse-x {
  background: var(--primary-gradient) !important;
}

/* Subscribe Form */
.subscribe-form input:focus {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25) !important;
}

/* Generic Color Overrides for Unknown Classes */
[class*="btn-"]:not(.btn-secondary):not(.btn-outline-secondary) {
  background: var(--primary-gradient) !important;
  border-color: var(--primary-color) !important;
  color: white !important;
}

[class*="btn-"]:not(.btn-secondary):not(.btn-outline-secondary):hover {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4) !important;
}

/* Background Color Overrides */
[class*="bg-primary"] {
  background: var(--primary-gradient) !important;
}

[class*="text-primary"] {
  color: var(--primary-color) !important;
}

[class*="border-primary"] {
  border-color: var(--primary-color) !important;
}

/* Ensure any remaining blue/purple colors match our theme */
.text-blue,
.text-purple,
.text-indigo {
  color: var(--primary-color) !important;
}

.bg-blue,
.bg-purple,
.bg-indigo {
  background: var(--primary-gradient) !important;
}

/* Additional button states */
button:not(.btn-secondary):not([class*="close"]):not(
    [class*="navbar-toggler"]
  ):not(.owl-prev):not(.owl-next):not(.demo-request-btn) {
  background: var(--primary-gradient) !important;
  border-color: var(--primary-color) !important;
  color: white !important;
}

button:not(.btn-secondary):not([class*="close"]):not(
    [class*="navbar-toggler"]
  ):not(.owl-prev):not(.owl-next):not(.demo-request-btn):hover {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%) !important;
  transform: translateY(-2px) !important;
}

.center_deeptraq_logo {
  width: 100px;
  height: 100px;
}

.center_deeptraq_logo img {
  width: 80%;
  overflow: visible;
  position: absolute;
  top: 50%;
  left: 50%;

  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.r_shape {
  border: none !important;
}

.r_shape_five {
  background: transparent !important;
}

.demo-request-btn {
  background-color: white !important;
  color: #1a1a1a !important;
  border: none;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.demo-request-btn:hover {
  background-color: #333;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.demo-request-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.demo-request-btn:focus {
  outline: none;
  /* box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3), 0 4px 12px rgba(0, 0, 0, 0.15); */
}
.modern-dropdown {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  min-width: 320px;
  padding: 8px 0;
  margin-top: 8px;
}

.modern-nav-link {
  display: flex !important;
  align-items: center !important;
  padding: 16px 20px !important;
  color: #334155 !important;
  text-decoration: none !important;
  transition: all 0.15s ease !important;
  border-bottom: 1px solid #f1f5f9 !important;
}

.modern-dropdown .nav-item:last-child .modern-nav-link {
  border-bottom: none !important;
}

.modern-nav-link:hover {
  background-color: #f8fafc !important;
  color: #1e293b !important;
  text-decoration: none !important;
}

.nav-link-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  flex-shrink: 0;
  background: #dbeafe;
}

.nav-link-icon svg {
  width: 18px;
  height: 18px;
  color: #3b82f6;
}

.nav-link-content {
  flex: 1;
}

.nav-link-title {
  font-size: 14px;
  font-weight: 500;
  color: #1e293b;
  margin-bottom: 2px;
  line-height: 1.2;
}

.nav-link-description {
  font-size: 12px;
  color: #64748b;
  line-height: 1.3;
}

.modern-nav-link:hover .nav-link-title {
  color: #0f172a !important;
}

.modern-nav-link:hover .nav-link-icon {
  background: #bfdbfe;
}

/* Specific icon colors for variety */
.modern-dropdown .nav-item:nth-child(1) .nav-link-icon {
  background: #dbeafe;
}

.modern-dropdown .nav-item:nth-child(2) .nav-link-icon {
  background: #dcfce7;
}

.modern-dropdown .nav-item:nth-child(2) .nav-link-icon svg {
  color: #16a34a;
}

.modern-dropdown .nav-item:nth-child(3) .nav-link-icon {
  background: #fef3c7;
}

.modern-dropdown .nav-item:nth-child(3) .nav-link-icon svg {
  color: #d97706;
}

.modern-dropdown .nav-item:nth-child(4) .nav-link-icon {
  background: #e0e7ff;
}

.modern-dropdown .nav-item:nth-child(4) .nav-link-icon svg {
  color: #6366f1;
}

.modern-dropdown .nav-item:nth-child(5) .nav-link-icon {
  background: #fce7f3;
}

.modern-dropdown .nav-item:nth-child(5) .nav-link-icon svg {
  color: #ec4899;
}

/* Override any conflicting Bootstrap styles */
.modern-dropdown .nav-link:hover {
  background-color: #f8fafc !important;
  color: #1e293b !important;
}

/* Mobile responsiveness for dropdown */
@media (max-width: 991px) {
  .modern-dropdown {
    min-width: 100%;
    margin-left: 0;
    margin-right: 0;
    border-radius: 8px;
    position: relative !important;
    box-shadow: none;
    border: 1px solid #e2e8f0;
  }

  .modern-nav-link {
    padding: 12px 15px !important;
  }

  .nav-link-icon {
    width: 35px;
    height: 35px;
  }

  .nav-link-title {
    font-size: 13px;
  }

  .nav-link-description {
    font-size: 11px;
  }
}

@media (max-width: 576px) {
  .modern-dropdown {
    min-width: 100%;
  }

  .modern-nav-link {
    padding: 10px 12px !important;
  }

  .nav-link-description {
    display: none;
  }
}
/* to help our clients section - responsive */
.deeptraq-main-wrapper {
  margin: 0 auto;
  align-items: start;
}
.deeptraq-inner-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.deeptraq-content-block {
  padding-right: 40px;
  max-width: 1200px;
}

.deeptraq-primary-heading {
  font-size: 2.5rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 20px;
  line-height: 1.2;
}

.deeptraq-description-text {
  font-size: 1rem;
  color: #718096;
  margin-bottom: 60px;
  line-height: 1.5;
}

.deeptraq-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.deeptraq-feature-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.deeptraq-icon-badge {
  width: 48px;
  height: 48px;
  background: #6366f1;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 20px;
  color: white;
}

.deeptraq-feature-heading {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 12px;
}

.deeptraq-feature-text {
  font-size: 0.9rem;
  color: #718096;
  line-height: 1.5;
}

.deeptraq-visual-area {
  display: flex;
  justify-content: center;
  align-items: center;
}

.deeptraq-demo-placeholder {
  width: 400px;
  height: 300px;
  background-color: #a0aec0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 2rem;
  color: #4a5568;
  font-weight: 500;
}

/* Icons using CSS */
.deeptraq-users-icon::before {
  content: "👥";
}

.deeptraq-setup-icon::before {
  content: "⚙️";
}

/* Deeptraq section responsive */
@media (max-width: 1199px) {
  .deeptraq-inner-wrapper {
    gap: 50px;
  }

  .deeptraq-content-block {
    padding-right: 20px;
  }
}

@media (max-width: 991px) {
  .deeptraq-inner-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .deeptraq-content-block {
    padding-right: 0;
    text-align: center;
  }

  .deeptraq-features-grid {
    justify-items: center;
  }

  .deeptraq-feature-card {
    align-items: center;
    text-align: center;
    max-width: 350px;
  }

  .deeptraq-visual-area {
    order: -1;
  }

  .deeptraq-primary-heading {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .deeptraq-features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .deeptraq-demo-placeholder {
    width: 100%;
    max-width: 400px;
    height: 250px;
  }

  .deeptraq-primary-heading {
    font-size: 1.75rem;
  }

  .deeptraq-description-text {
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .deeptraq-features-grid {
    grid-template-columns: 1fr;
  }

  .deeptraq-primary-heading {
    font-size: 1.5rem;
  }
}

.showcase-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  padding: 125px 40px;
  border-radius: 20px;
}

.decorative-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

.info-panel {
  z-index: 1;
  padding-right: 20px;
}

.description-block h2 {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.description-block p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  padding: 16px 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
}

.gallery-section {
  z-index: 1;
  position: relative;
}

.preview-slider {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.slide-item {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.slide-item.active {
  opacity: 1;
}

.slide-item img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 8px;
}

.nav-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot-nav {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid white;
}

.dot-nav.active {
  background: white;
  width: 30px;
  border-radius: 6px;
}

@media (max-width: 1199px) {
  .showcase-container {
    padding: 80px 30px;
    gap: 40px;
  }

  .description-block h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 991px) {
  .showcase-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 25px;
  }

  .info-panel {
    order: 2;
    padding-right: 0;
    text-align: center;
  }

  .gallery-section {
    order: 1;
  }

  .description-block h2 {
    font-size: 2rem;
  }

  .preview-slider {
    height: 400px;
  }
}

@media (max-width: 767px) {
  .showcase-container {
    padding: 40px 15px;
  }

  .description-block h2 {
    font-size: 1.6rem;
  }

  .description-block p {
    font-size: 1rem;
  }

  .preview-slider {
    height: 320px;
  }

  .cta-button {
    padding: 14px 32px;
    font-size: 0.95rem;
  }
}

@media (max-width: 575px) {
  .description-block h2 {
    font-size: 1.4rem;
  }

  .description-block p {
    font-size: 0.9rem;
  }

  .preview-slider {
    height: 260px;
  }

  .cta-button {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}
/* next gen landing section */
.landing-section {
  background: #ffffff;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 20px;
}

.visual-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.animated-shape {
  position: absolute;
  opacity: 0.04;
}

.shape-circle-1 {
  top: 10%;
  left: 5%;
  width: 80px;
  animation: spin 20s linear infinite;
}

.shape-square {
  top: 30%;
  right: 5%;
  width: 60px;
  animation: spin 15s linear infinite reverse;
}

.shape-triangle {
  bottom: 20%;
  left: 10%;
  width: 100px;
  animation: pulse 3s ease-in-out infinite;
}

.shape-circle-2 {
  bottom: 10%;
  right: 20%;
  width: 70px;
  animation: float 4s ease-in-out infinite;
}

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

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.04;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.08;
  }
}

.main-container {
  margin: 0 auto;
  position: relative;
  z-index: 2;
  width: 100%;
}

.text-wrapper {
  max-width: 100%;
}

.main-heading h3 {
  font-size: 2.6rem;
  color: #1a1a1a;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
  animation: fadeInUp 0.8s ease-out;
}

.main-heading h3 mark {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 0;
  border-radius: 0;
}

.main-heading p {
  font-size: 1.25rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 35px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.input-groups {
  display: flex;
  gap: 12px;
  max-width: 550px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.input-field {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  font-size: 1rem;
  background: #f8f9fa;
  color: #1a1a1a;
  transition: all 0.3s ease;
}

.input-field::placeholder {
  color: #999;
}

.input-field:focus {
  outline: none;
  border-color: #667eea;
  background: white;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.submit-btn {
  padding: 14px 30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  white-space: nowrap;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.dynamic-text {
  display: inline-block;
  border-right: 2px solid #667eea;
  animation: blink 0.7s step-end infinite;
}

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

/* Landing section responsive */
@media (max-width: 1199px) {
  .landing-section {
    padding: 70px 20px;
  }

  .main-heading h3 {
    font-size: 2.3rem;
  }

  .main-heading p {
    font-size: 1.15rem;
  }
}

@media (max-width: 991px) {
  .landing-section {
    padding: 60px 15px;
  }

  .main-heading h3 {
    font-size: 2rem;
  }

  .main-heading p {
    font-size: 1.1rem;
  }

  .input-groups {
    max-width: 100%;
    justify-content: center;
  }

  .visual-elements {
    opacity: 0.5;
  }
}

@media (max-width: 767px) {
  .landing-section {
    padding: 50px 15px;
  }

  .main-heading h3 {
    font-size: 1.75rem;
  }

  .main-heading p {
    font-size: 1rem;
  }

  .input-groups {
    flex-direction: column;
    gap: 10px;
  }

  .input-field {
    width: 100%;
    text-align: center;
  }

  .submit-btn {
    width: 100%;
  }

  .visual-elements {
    opacity: 0.3;
  }
}

@media (max-width: 575px) {
  .main-heading h3 {
    font-size: 1.5rem;
  }

  .main-heading p {
    font-size: 0.95rem;
  }

  .input-field,
  .submit-btn {
    padding: 14px 20px;
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.text-wrapper {
  max-width: 600px;
}

.image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  min-height: 250px;
}

.gen-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.12);
}

@media (max-width: 1199px) {
  .content-grid {
    gap: 3rem;
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 991px) {
  .content-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .text-wrapper {
    max-width: 100%;
    text-align: center;
  }

  .image-wrapper {
    order: -1;
  }

  .input-groups {
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .content-grid {
    padding: 2rem 1rem;
    gap: 2rem;
  }

  .image-wrapper {
    min-height: 200px;
  }
}

@media (max-width: 575px) {
  .content-grid {
    padding: 1.5rem 1rem;
  }
}

.dt-pricing-section {
  max-width: 1400px;
  margin: 0 auto;
  margin-top: 150px;
  margin-bottom: 100px;
}

.dt-pricing-header {
  text-align: center;
  margin-bottom: 60px;
}

.dt-pricing-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.dt-pricing-header p {
  font-size: 1.125rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.dt-plan-toggle {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.dt-toggle-btn {
  background: white !important;
  border: 2px solid #e0e0e0 !important;
  color: #333 !important;
  padding: 12px 28px !important;
  border-radius: 8px !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  outline: none !important;
  box-shadow: none !important;
}

.dt-toggle-btn:hover:not(.active) {
  border-color: #667eea !important;
  color: #667eea !important;
  background: white !important;
}

.dt-toggle-btn.active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  color: white !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.dt-pricing-container {
  display: none;
}

.dt-pricing-container.show {
  display: block;
  width: 100%;
}

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

.dt-pricing-grid {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 100%;
  margin: 0 auto;
}

.dt-pricing-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 36px 20px;
  position: relative;
  min-height: 550px;
  display: flex;
  flex-direction: column;
  width: calc(25% - 16px);
  min-width: 260px;
  max-width: 300px;
  flex-shrink: 1;
  flex-grow: 0;
}

.dt-pricing-card.recommended {
  background: #fafbfc;
  border: 1px solid #e8e8e8;
}

.dt-recommended-badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
  padding: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 12px 12px 0 0;
}

.dt-free-trial-badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  text-align: center;
  padding: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 12px 12px 0 0;
}

.dt-recommended .dt-card-content {
  margin-top: 20px;
}

.dt-card-header {
  text-align: center;
  margin-bottom: 32px;
}

.dt-plan-name {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.dt-plan-description {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 24px;
}

.dt-price {
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
  margin-bottom: 8px;
}

.dt-period {
  color: #666;
  font-size: 0.9rem;
}

.dt-billing-toggle {
  text-align: center;
  margin: 16px 0 24px 0;
  font-size: 0.875rem;
}

.dt-billing-toggle a {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
}

.dt-billing-toggle a:hover {
  text-decoration: underline;
}

.dt-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.dt-cta-btn {
  width: 100%;
  padding: 14px 24px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: block;
  text-align: center;
  border: 2px solid transparent;
}

.dt-cta-btn.primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-color: transparent;
}

.dt-cta-btn.primary:hover {
  background: linear-gradient(135deg, #5568d3 0%, #65438b 100%);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.dt-cta-btn.secondary {
  background: white;
  color: #333;
  border: 2px solid #333;
}

.dt-cta-btn.secondary:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-color: transparent;
}

.dt-cta-btn.link {
  background: transparent;
  color: #667eea;
  padding: 8px;
}

.dt-cta-btn.link:hover {
  text-decoration: underline;
}

.dt-divider {
  height: 1px;
  background: #e8e8e8;
  margin: 24px 0;
}

.dt-features-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.dt-features {
  list-style: none;
  flex-grow: 1;
}

.dt-features li {
  padding: 10px 0;
  color: #333;
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}

.dt-icon {
  margin-top: 2px;
  flex-shrink: 0;
}

.dt-icon.arrow {
  color: #666;
  font-size: 1rem;
}

@media (max-width: 1200px) {
  .dt-pricing-card {
    width: calc(50% - 16px);
    min-width: 280px;
    max-width: 340px;
  }
}

@media (max-width: 768px) {
  .dt-pricing-grid {
    flex-direction: column;
    align-items: center;
  }

  .dt-pricing-card {
    width: 100%;
    max-width: 400px;
  }

  .dt-pricing-header h1 {
    font-size: 2rem;
  }
}
