/* Base Styles (unchanged from your original) */
body {
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
}
:root {
  --primary-color: #2560dffe;
  --secondary-color: #00d5b9;
}
.logo {
  width: auto;
  height: 65px;
}
.btn-primary {
  background-color: var(--primary-color);
  padding: 8px 20px;
  font-weight: 600;
  font-size: 14px;
}
.btn_large {
  padding: 12px 25px;
  min-width: 220px;
  font-size: 16px;
}
.bg_light {
  background-color: rgb(230 230 230 / 100%);
}
.bg_primary {
  background-color: var(--primary-color);
}
.bg_secondary {
  background-color: var(--secondary-color);
}
.color_primary {
  color: var(--primary-color);
}
.color_secondary {
  color: var(--secondary-color);
}
.radius_10 {
  border-radius: 10px;
}
.font_40 {
  font-size: 40px;
}
.font_50 {
  font-size: 50px;
}
header .nav-link {
  padding: 5px 20px !important;
  font-weight: 500;
  color: #000;
  transition: all 0.3s;
}
header .nav-link:hover {
  color: var(--primary-color);
  transition: all 0.3s;
}
.search_bar input {
  height: 45px;
}
.search_bar .btn {
  background-color: var(--secondary-color);
  display: inline-flex;
  align-items: center;
  color: #fff;
  width: 120px;
  justify-content: center;
}
.listing {
  display: flex;
  justify-content: space-between;
  color: #fff;
}
.listing li {
  list-style: none;
  padding-left: 20px;
  position: relative;
}
.listing li::before {
  position: absolute;
  content: "";
  background-color: var(--secondary-color);
  height: 10px;
  width: 10px;
  border-radius: 50%;
  left: 0px;
  margin-top: 7px;
}
.small_container {
  max-width: 1100px;
}
.builder_tabs a {
  color: #000;
  font-weight: 600;
  transition: all 0.3s;
}
.builder_tabs a:hover, .builder_tabs a.nav-link.active {
  color: var(--primary-color);
  transition: all 0.3s;
}
.carousel-control-prev-icon {
  background-color: #000;
  position: absolute;
  left: -40px;
  border-radius: 50%;
  opacity: 1;
  background-size: 60%;
}
.carousel-control-next-icon {
  background-color: #000;
  position: absolute;
  right: -40px;
  border-radius: 50%;
  opacity: 1;
  background-size: 60%;
}
.carousel-control-prev {
  width: auto;
}
.footer {
  background: #f6f6f6;
  padding: 50px 20px;
  font-family: 'Arial', sans-serif;
  font-size: 14px;
  border-top: 1px solid #ddd;
}

.container_footer {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-column {
  flex: 1 1 250px;
  color: #000;
}

.footer-column h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #111;
}

.footer-column p {
  color: #333;
  line-height: 1.6;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--primary-color);
}

.footer-column.contact strong {
  color: var(--primary-color);
}

.footer-logo {
  width: 280px;
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
  display: block;
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  display: inline-block;
  width: 30px;
  height: 30px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  margin-right: 10px;
  font-size: 14px;
  transition: background 0.3s ease;
}

.social-icons a:hover {
  background: var(--secondary-color);
}

/* Pricing Section (unchanged) */
.pricing-section {
  font-family: 'Segoe UI', sans-serif;
  padding: 2rem 1rem;
  background-color: #ffffff;
  color: #333;
  max-width: 1200px;
  margin: 0 auto;
}
.pricing-section h2 {
  font-size: 2rem;
  text-align: center;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.pricing-section p.subtitle {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 2rem;
}
.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
}
.plan-card {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 2rem 1.5rem;
  transition: all 0.3s ease;
  text-align: center;
  background-color: #f9f9f9;
}
.plan-card:hover {
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}
.plan-card .popular-badge {
  background-color: gold;
  color: #000;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 0.3rem 0.6rem;
  border-radius: 5px;
  display: inline-block;
  margin-bottom: 0.5rem;
}
.plan-card .price {
  font-size: 2rem;
  color: #007bff;
  margin: 1rem 0;
}
.plan-card .btn-buy {
  background-color: #007bff;
  color: #fff;
  padding: 0.6rem 1.2rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 1.5rem;
}
.plan-card ul {
  list-style-type: disc;
  padding-left: 1.2rem;
  text-align: left;
  font-size: 0.95rem;
  color: #444;
}

/* Responsive Additions */
@media (max-width: 1199.98px) {
  .small_container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 991.98px) {
  .font_40 {
    font-size: 32px;
  }
  .font_50 {
    font-size: 38px;
  }
  .navbar-collapse {
    padding-top: 15px;
  }
  .pe-5 {
    padding-right: 15px !important;
  }
}

@media (max-width: 767.98px) {
  /* Prevent horizontal scrolling */
  html, body {
    overflow-x: hidden;
    width: 100%;
  }

  /* Adjust font sizes */
  .font_40 {
    font-size: 28px;
  }
  .font_50 {
    font-size: 32px;
  }

  /* Stack columns vertically */
  .row {
    flex-direction: column;
  }

  /* Center align content on mobile */
  .text-center-mobile {
    text-align: center !important;
  }

  /* Adjust carousel controls */
  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }

  /* Full width for mobile */
  .col-md-5, .col-md-6, .col-md-7 {
    width: 100%;
    max-width: 100%;
  }

  /* Adjust padding for mobile */
  .px-5, .pe-5, .ps-5 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  /* Testimonial section adjustments */
  #testimonialCarousel .carousel-item .row {
    flex-direction: column;
  }
  #testimonialCarousel .col-md-5 {
    height: 250px;
  }
  #testimonialCarousel .col-md-7 {
    padding: 20px !important;
  }

  /* Footer adjustments */
  .container_footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-column {
    width: 100%;
    max-width: 500px;
  }

  .social-icons a {
    margin-right: 12px;
  }
}

@media (max-width: 575.98px) {
  .logo {
    height: 50px;
  }

  .font_40 {
    font-size: 24px;
  }

  .btn_large {
    width: 100%;
    max-width: 220px;
  }

  /* Pricing cards full width on smallest screens */
  .plans {
    grid-template-columns: 1fr;
  }
}

/* Utility classes for responsive behavior */
@media (max-width: 767.98px) {
  .text-md-center {
    text-align: center !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .order-md-1 {
    order: 1 !important;
  }
  .order-md-2 {
    order: 2 !important;
  }
  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
}
.email-campaign-section {
  position: relative;
  overflow: hidden;
}

.feature-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.feature-icon {
  color: var(--primary-color);
}

.feature-list {
  list-style: none;
  padding-left: 0;
  text-align: left;
}

.feature-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.feature-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

.step-number {
  background-color: var(--primary-color);
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.result-item {
  background-color: #f8f9fa;
  border-radius: 8px;
}

.result-number {
  line-height: 1;
}

.testimonial {
  border-left: 3px solid var(--secondary-color);
}

@media (max-width: 767.98px) {
  .results-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    margin-bottom: 1.5rem;
  }

  .how-it-works .step {
    flex-direction: column;
  }

  .step-content {
    padding-left: 0 !important;
    padding-top: 1rem;
  }
}

/* Marketing Image Styles */
.marketing-image-container {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.marketing-image-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.marketing-image-container:hover {
  transform: translateY(-5px);
}

.marketing-image-container:hover img {
  transform: scale(1.03);
}

@media (max-width: 767.98px) {
  .marketing-image-container {
    margin-top: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}
/* Contact form custom style */
#contact {
  background: linear-gradient(135deg, #f8f9fa, #eef3f7);
  padding: 60px 0;
}

#contact .card {
  background: #fff;
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
}

#contact .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

#contact h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #0d6efd;
}

#contact .form-label {
  font-weight: 600;
  color: #333;
}

#contact .form-label .required {
  color: red;
  margin-left: 2px;
}

#contact .form-control {
  border: 1px solid #ddd;
  padding: 12px 15px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

#contact .form-control:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.2rem rgba(13,110,253,0.2);
}

#contact textarea.form-control {
  border-radius: 15px;
}

#contact button {
  background: #0d6efd;
  border: none;
  border-radius: 50px;
  padding: 12px 40px;
  font-size: 1rem;
  font-weight: 600;
  /*transition: background 0.3s ease, transform 0.2s ease;*/
}

#contact button:hover {
  background: #084298;
  /*transform: scale(1.05);*/
  /*box-shadow: 0 8px 20px rgba(13,110,253,0.3);*/
}


