/* Basic styling for the navbar 

  
  .navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
  }
  
  .dropdown-menu {
    border: none;
    border-radius: 8px;
    padding: 0.5rem;
  }
  
  .dropdown-item {
    padding: 0.5rem 1rem;
    border-radius: 4px;
  }

*/


:root {
    --mailer-green: #38C5A4;
    --mailer-yellow: #FF9E1F;
    --mailer-blue: #00A7D5;
    --mailer-light-cream: #FFF8EE;
    --mailer-text: #333333;
    --mailer-yellow-light:#00A7D5;

  --mailer-text: #333;
  --mailer-light-text: #666;
  --mailer-border: #eee;
}

body {
  padding-top: 70px; /* Add padding to body to prevent content from hiding behind fixed navbar */
}

.text-partner{
  color: black;
}

/* Navbar styling */
.navbar {
  padding: 10px 0;
  border-bottom: 1px solid var(--mailer-border);
}

/* Animated underline effect for nav links */
.animated-underline {
  position: relative;
  transition: color 0.3s ease;

  
}

.animated-underline::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #333; 
  transition: width 0.3s ease;
}


.dropdown-toggle {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border: none;
}



/* Hide the underline/indicator by default */
.nav-item .nav-link::after {
  opacity: 0;
  display: block;
  content: '';
  height: 2px;
  background-color: black;
  transition: opacity 0.3s ease;
}

/* Show the underline only on hover */
.nav-item .nav-link:hover::after {
  opacity: 1;
}


.animated-underline:hover::after {
  width: 100%;
}

.nav-item.dropdown .nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
}

.nav-item.dropdown .nav-link .fas.fa-chevron-right {
  transition: transform 0.3s ease;
  margin-left: 8px; /* space between text and arrow */
}

.nav-item.dropdown:hover .nav-link .fas.fa-chevron-right {
  transform: rotate(90deg); /* arrow points down on hover */
}

.nav-item.dropdown .nav-link .fas.fa-chevron-right {
  transform: rotate(0deg); /* arrow points right by default */
}

.nav-item.dropdown:not(:hover) .nav-link .fas.fa-chevron-right {
  transform: rotate(270deg); /* arrow points right when not hovered */
}


/* Make dropdown show on hover for desktop */
@media (min-width: 992px) {
  .dropdown:hover > .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    animation: fadeInUp 0.3s ease;
  }
  
  .nav-item.dropdown {
    position: relative;
  }
  
  .mega-dropdown {
    position: static;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg {
      padding-right: 5rem;
      padding-left: 5rem;
  }
  }




/* Mega menu styling */
.mega-menu {
  padding: 30px 0;
  margin-top: 0;
  border: none;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-top: 1px solid var(--mailer-border);
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link {
  font-size: 1rem; /* Increase from default 1rem */
  font-weight: 400;
  }


/* Platform columns styling */
.platform-row {
  padding-bottom: 20px;
}

.platform-col {
  transition: all 0.3s ease;
}

.platform-col:hover {
  transform: translateY(-5px);
}

.platform-title {
  text-decoration: none;
  color: var(--mailer-yellow);
  margin-bottom: 10px;
  display: block;
}

.platform-title h5 {
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
}

.platform-title i {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.platform-title:hover i {
  transform: translateX(3px);
}

.platform-desc {
  font-size: 14px;
  color: var(--mailer-light-text);
  margin-bottom: 15px;
}

.platform-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.platform-features li {
  display: flex;
  align-items: center;
  padding: 5px 0;
  font-size: 14px;
  transition: transform 0.3s ease;
}

.platform-features li:hover {
  transform: translateX(5px);
  color: var(--mailer-yellow);
}

.icon-feature {
  margin-right: 10px;
  color: var(--mailer-light-text);
  width: 18px;
  text-align: center;
}

/* Bottom features styling */
.bottom-features {
  border-top: 1px solid var(--mailer-border);
  padding-top: 20px;
}

.feature-box {
  display: block;
  text-decoration: none;
  color: inherit;
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 15px;
  height: 100%;
  transition: all 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  text-decoration: none;
  color: inherit;
}

.feature-content {
  flex: 1;
}

.feature-content h6 {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 15px;
}

.feature-content p {
  font-size: 13px;
  color: var(--mailer-light-text);
  margin-bottom: 0;
}

.feature-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background-color: var(--mailer-yellow-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 15px;
  color: var(--mailer-yellow);
  transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
  transform: rotate(10deg);
}

/* Standard dropdown menu */
.standard-dropdown {
  min-width: 200px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  padding: 8px 0;
  margin-top: 0;
}

.dropdown-item {
  padding: 8px 15px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background-color: var(--mailer-yellow-light);
  color: var(--mailer-yellow);
  transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .mega-menu {
    overflow-y: auto;
    max-height: 80vh;
    padding: 15px;
  }
  
  .platform-row {
    display: flex;
    flex-direction: column;
  }
  
  .platform-col {
    width: 100%;
  }
  
  .platform-features {
    display: block;
  }
  
  .platform-desc {
    display: block;
  }
  
  .bottom-features {
    display: block;
  }
  
  .mega-dropdown .dropdown-menu {
    width: 100%;
    position: relative;
  }
}



/* Hero Section */
.hero-section {
    background-color: var(--mailer-light-cream);
    padding: 70px 0;
    overflow: hidden;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(56, 197, 164, 0.05);
    top: -150px;
    left: -150px;
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(0, 167, 213, 0.05);
    bottom: -100px;
    right: -100px;
    z-index: 0;
}

.badge-pill-custom {
    background-color: var(--mailer-green);
    color: white;
    border-radius: 30px;
    padding: 8px 15px;
    font-weight: 400;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
}

.badge-pill-custom::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.badge-pill-custom:hover::after {
    left: 100%;
}

.hero-title {
    font-weight: 700;
    font-size: 2.8rem;
    margin-bottom: 15px;
    background: linear-gradient(to right, var(--mailer-text), #555);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.btn-discover {
    background-color: var(--mailer-green);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 500;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(56, 197, 164, 0.3);
}

.btn-discover:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(56, 197, 164, 0.4);
    color: white;
}

.btn-start-free {
    background-color: transparent;
    border: 1px solid #ccc;
    color: var(--mailer-text);
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-start-free:hover {
    background-color: rgba(0, 0, 0, 0.05);
    transform: translateY(-3px);
}

.hero-image-container {
    position: relative;
    z-index: 1;
}

.hero-image {
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

.floating-icon.icon-1 {
    top: 20%;
    left: -30px;
    animation-delay: 0s;
}

.floating-icon.icon-2 {
    top: 60%;
    right: -30px;
    animation-delay: 0.5s;
}

.floating-icon.icon-3 {
    bottom: -30px;
    left: 30%;
    animation-delay: 1s;
}

.floating-icon.icon-4 {
    top: -30px;
    right: 20%;
    animation-delay: 1.5s;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}



    
/* About Section */
.about-section {
    padding: 80px 0;
}

.section-badge {
    background-color: var(--mailer-blue);
    color: white;
    border-radius: 30px;
    padding: 8px 15px;
    font-weight: 400;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
}

.section-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.section-badge:hover::after {
    left: 100%;
}



.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(56, 197, 164, 0.1), rgba(0, 167, 213, 0.1));
    z-index: 1;
}



        
/* Responsive styles */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .step-circle {
        width: 120px;
        height: 120px;
    }
    
    .steps-connection {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-section,
    .about-section,
    .how-it-works,
    .features-section,
    .pricing-section,
    .blog-section,
    .get-started-section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .pricing-card {
        margin-bottom: 20px;
    }
    
    .pricing-card.popular {
        transform: none;
    }
}

    @keyframes float {
        0% { transform: translateY(0px); }
        50% { transform: translateY(-10px); }
        100% { transform: translateY(0px); }
    }
    
    .form-control:focus {
        border-color: #00C389;
        box-shadow: 0 0 0 0.25rem rgba(0, 195, 137, 0.25);
    }
    .rounded-4 {
        border-radius: 1rem !important;
    }
    
    /* Add this for form validation styling */
    .form-floating > .form-control:focus ~ label {
        color: #00C389;
    }

    .free-trial-section .btn-primary {
    background-color: #38C5A4;
    border-color: #38C5A4;
}

.free-trial-section .btn-primary:hover {
    background-color: #2ba58a;
}

.free-trial-section .btn-primary:hover span.position-absolute {
    width: 100%;
    background-color: #FF9E1F;
    opacity: 0.2;
}

.free-trial-section .card {
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.free-trial-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

@media (max-width: 991.98px) {
    .free-trial-section .display-1 {
        font-size: 8rem !important;
    }
}

@media (max-width: 767.98px) {
    .free-trial-section .display-1 {
        font-size: 6rem !important;
    }
}




  

p {
display: block;
margin-block-start: 1em;
margin-block-end: 1em;
margin-inline-start: 0px;
margin-inline-end: 0px;
unicode-bidi: isolate;
}



/* Add this for form validation styling */
.form-floating > .form-control:focus ~ label {
color: #00C389;
}

.free-trial-section .btn-primary {
background-color: #38C5A4;
border-color: #38C5A4;
}

.free-trial-section .btn-primary:hover {
background-color: #2ba58a;
}

.free-trial-section .btn-primary:hover span.position-absolute {
width: 100%;
background-color: #FF9E1F;
opacity: 0.2;
}

.free-trial-section .card {
overflow: hidden;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.free-trial-section .card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

@media (max-width: 991.98px) {
.free-trial-section .display-1 {
    font-size: 8rem !important;
}
}

@media (max-width: 767.98px) {
.free-trial-section .display-1 {
    font-size: 6rem !important;
}
}


/* Features Section */
.features-section {
padding: 80px 0;
background-color: #fafafa;
position: relative;
overflow: hidden;
}

.features-section::before {
content: '';
position: absolute;
width: 400px;
height: 400px;
border-radius: 50%;
background-color: rgba(56, 197, 164, 0.03);
top: -200px;
right: -200px;
}

.features-section::after {
content: '';
position: absolute;
width: 300px;
height: 300px;
border-radius: 50%;
background-color: rgba(255, 158, 31, 0.03);
bottom: -150px;
left: -150px;
}

.feature-card {
background-color: white;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
padding: 30px;
height: 100%;
transition: all 0.3s;
position: relative;
z-index: 2;
overflow: hidden;
}

.feature-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 5px;
background: linear-gradient(90deg, var(--mailer-green), var(--mailer-blue));
transition: height 0.3s;
z-index: -1;
}

.feature-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-card:hover::before {
height: 10px;
}

.feature-icon {
margin-bottom: 25px;
transition: all 0.3s;
}

.feature-card:hover .feature-icon {
transform: scale(1.1);
}

.feature-title {
font-weight: 600;
font-size: 1.2rem;
margin-bottom: 15px;
color: var(--mailer-text);
}

.btn-feature {
background-color: var(--mailer-yellow);
color: white;
border-radius: 30px;
padding: 8px 20px;
font-size: 0.9rem;
font-weight: 500;
border: none;
transition: all 0.3s;
box-shadow: 0 4px 15px rgba(255, 158, 31, 0.2);
}

.btn-feature:hover {
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(255, 158, 31, 0.3);
color: white;
}

.feature-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 5px;
background: linear-gradient(90deg, var(--mailer-green), var(--mailer-blue));
transition: height 0.3s;
z-index: -1;
}

.trial-section {
background-color: #faf8f3;
}
.trial-card {
background: #fff;
border: 2px dashed #e5e3dd;
border-radius: 1.5rem;
overflow: hidden;
box-shadow: 0 6px 32px rgba(56,197,164,0.07), 0 1.5px 6px rgba(0,0,0,0.07);
display: flex;
flex-direction: row;
position: relative;
}
.trial-left {
flex: 1.2 1 0;
position: relative;
z-index: 1;
background: #fff;
border-radius: 1.5rem 0 0 1.5rem;
}
.trial-right {
flex: 1 1 0;
background: #fff;
border-radius: 0 1.5rem 1.5rem 0;
}
.trial-divider {
width: 2px;
background: repeating-linear-gradient(
    to bottom,
    #e5e3dd,
    #e5e3dd 8px,
    transparent 8px,
    transparent 16px
);
min-height: 220px;
align-self: stretch;
}
.no-cc-badge {
background: #e6f8f1;
color: #38C5A4;
font-weight: 600;
font-size: 1.05rem;
padding: 0.6em 1.3em;
border-radius: 1em;
border: 1.5px solid #38C5A4;
box-shadow: 0 2px 8px rgba(56,197,164,0.07);
letter-spacing: 0.01em;
display: inline-flex;
align-items: center;
}
.trial-dollar {
font-size: 2.2rem;
color: #222;
margin-right: 0.15em;
}
.trial-zero {
font-size: 5.2rem;
color: #222;
line-height: 1;
}
.trial-desc {
font-size: 1.1rem;
}
.everything-in-free {
/* Removed the background since it's now on the main right side */
padding: 0.5rem 0;
}
.everything-in-free .feature-icon {
font-size: 1.1rem;
width: 28px;
height: 28px;
}
.everything-in-free a {
color: #1a56db;
font-weight: 600;
text-decoration: underline;
}
.underline-highlight {
display: inline-block;
position: relative;
z-index: 1;
}
.underline-highlight::after {
content: '';
display: block;
position: absolute;
left: 0;
bottom: -5px;
width: 100%;
height: 6px;
background: #38C5A4;
border-radius: 3px;
z-index: -1;
opacity: 0.25;
}
.trial-cta-btn {
box-shadow: 0 4px 16px rgba(26,86,219,0.08);
transition: background 0.2s, box-shadow 0.2s;
}
.trial-cta-btn:hover {
background: #1244a9;
box-shadow: 0 8px 18px rgba(26,86,219,0.12);
}
@media (max-width: 991.98px) {
.trial-zero { font-size: 3.5rem; }
.trial-dollar { font-size: 1.5rem; }
.trial-divider { min-height: 150px; }
.trial-left, .trial-right {
    border-radius: 1.5rem !important;
}
}
@media (max-width: 767.98px) {
.trial-card {
    flex-direction: column;
    border-radius: 1rem;
    padding: 1.5rem 0.5rem;
}
.trial-left, .trial-right {
    padding: 2rem 1rem !important;
    min-width: unset;
    border-radius: 1rem !important;
}
.trial-divider {
    display: none;
}
.trial-zero { font-size: 3.2rem; }
.trial-dollar { font-size: 1.3rem; }
}

      

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

/* Make sure Lottie is centered and not stretched */
.feature-icon lottie-player,
.feature-icon dotlottie-player {
    display: block;
    margin: 0 auto;
}

.main-btn-1.btn-text-light {
    color: white !important;
}


.main-btn-g {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 12px 30px;
  font-weight: 600;
  background: rgb(234, 153, 36);
  color: white !important;
  border-radius: 28px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  z-index: 1;
}


     /* card vibration fixing CSS */
     .card-wrapper {
      position: relative;
      display: block;
      height: 100%;
      width: 100%;
  }
  
  .card-wrapper .card {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      will-change: transform;
      transform: translateZ(0);
  }
  
  .card-wrapper:hover .card {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  /* Make sure button hover doesn't interfere with card hover */
  .card-wrapper .main-btn-1 {
      transition: background-color 0.3s ease;
      position: relative;
      z-index: 5;
  }

  .contact-form form .form_control {
    height: 50px;
    background-color: #ffffff;
    border-radius: 4px;
    border-radius: 50px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #080817;
}

/* Footer Subscription styles */
.subscription-section {
  background-color: #ffffff;
}

.bg-input {
  background-color: #f5f5f5 !important; /* Light gray background */
}

.subscription-section input::placeholder {
  color: rgba(0, 0, 0, 0.7);
}

.subscription-section .form-control:focus {
  box-shadow: none;
  border-color: transparent;
  background-color: #f5f5f5 !important;
}

.subscription-section .input-group {
  width: 100%;
}




/* Demo Form Styles */

:root {
  --primary: rgba(234, 153, 36, 1);
  --primary-dark: rgba(13, 162, 175, 1);
  --secondary: rgba(13, 162, 175, 1);
  --light: #f8fafc;
  --dark: #1e293b;
  --success: #22c55e;
}        
body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #f5f7fa 0%, #eef1f5 100%);
  color: var(--dark);
  overflow-x: hidden;
}

.demo-request-section {
  min-height: 100vh;
  position: relative;
  padding: 5rem 0;
}


/* Left side styling */
.info-section {
  padding-right: 3rem;
  position: relative;
}

.info-section h2 {
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.2;
}

.info-section p {
  color: #64748b;
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.feature-item {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateX(10px);
}

.feature-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  box-shadow: 0 4px 10px rgba(99, 102, 241, 0.3);
}

.feature-icon i {
  color: white;
  font-size: 1.25rem;
}

.feature-text {
  font-size: 1.1rem;
  font-weight: 500;
  padding-top: 0.5rem;
}

/* Right side styling */
.form-container {
  position: relative;
}

.form-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.5);
  overflow: hidden;
  transition: all 0.3s ease;
}

.form-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.2);
}

.form-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 1.5rem;
  color: white;
  border-radius: 20px 20px 0 0;
}

.form-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.form-subtitle {
  opacity: 0.8;
  margin-top: 0.5rem;
}

.form-body {
  padding: 2rem;
}

.form-control, .form-select {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: var(--mailer-yellow);
}


/* Floating elements */
.floating-element {
  position: absolute;
  z-index: -1;
}

.floating-1 {
  top: -50px;
  right: -30px;
  animation: float 6s ease-in-out infinite;
}

.floating-2 {
  bottom: -30px;
  left: -40px;
  animation: float 8s ease-in-out infinite;
}

/* Testimonial section */
.testimonial-card {
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  margin-top: 3rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  position: relative;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 20px;
  font-size: 6rem;
  color: var(--primary);
  font-family: serif;
  opacity: 0.2;
  line-height: 1;
}

.client-info {
  display: flex;
  align-items: center;
  margin-top: 1rem;
}

.client-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(170deg, rgba(234, 153, 36, 1) 20%, rgba(13, 162, 175, 1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  margin-right: 1rem;
}

/* Animations */
@keyframes float {
  0% {
      transform: translateY(0px);
  }
  50% {
      transform: translateY(-20px);
  }
  100% {
      transform: translateY(0px);
  }
}

/* Stats */
.stats-container {
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #64748b;
  font-size: 0.9rem;
}

/* Responsive styles */
@media (max-width: 991.98px) {
  .info-section {
      padding-right: 0;
      margin-bottom: 4rem;
      text-align: center;
  }
  
  .feature-item {
      justify-content: center;
      text-align: left;
  }
  
  .testimonial-card, .stats-container {
      margin-top: 2rem;
  }
  
  .info-section h1 {
      font-size: 2.5rem;
  }
}


.main-btn-d {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 12px 30px;
  font-weight: 600;
  font-size: 1rem;
  color: white;
  
  background: rgb(234, 153, 36);
  background: linear-gradient(170deg, rgba(234, 153, 36, 1) 20%, rgba(13, 162, 175, 1) 100%);
  border-radius: 28px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  z-index: 1;
}

  .main-btn-d:hover {
      background: linear-gradient(170deg, rgba(13, 162, 175, 1) 20%, rgba(234, 153, 36, 1) 100%);
      color: #fff;
      transition: all .5s;
  }

.main-btn.bordered-btn.bordered-blue {
  border-color: #0DA2AF;
  color: #0DA2AF;
  transition: all .5s;
}




 /* Brand color palette based on MailerSpot partners page  */
 :root {
  --primary-color: #3172e0;
  --secondary-color: #09d6a9;
  --accent-color: #fb6d5e;
  --dark-color: #0a2540;
  --light-color: #f7f9fc;
  --gray-color: #627597;
  --gradient-start: #3172e0;
  --gradient-end: #1c54c2;
  --mailerspot-color: linear-gradient(#E3A54D, #0CA2B0);

}

:root {
--warning-start-color: #E3A54D;
--warning-end-color: #0CA2B0;
}

.gradient-box {
background: var(--warning-color);
width: 300px;
height: 200px;
border-radius: 10px;
display: flex;
justify-content: center;
align-items: center;
color: white;
font-family: Arial, sans-serif;
font-weight: bold;
text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
box-shadow: 0 4px 8px rgba(0,0,0,0.2);
transition: transform 0.3s ease;
}

.gradient-box:hover {
transform: scale(1.05);
}

body {
  background-color: var(--light-color);
  color: var(--dark-color);
  line-height: 1.6;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  overflow-x: hidden;
}

/* Creative animated wave background */
.wave-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.wave-bg .wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 320" xmlns="http://www.w3.org/2000/svg"><path fill="%233172e0" fill-opacity="0.1" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,202.7C672,203,768,181,864,181.3C960,181,1056,203,1152,213.3C1248,224,1344,224,1392,224L1440,224L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
  background-size: 1440px 100px;
  animation: wave-animation 10s linear infinite;
}

.wave-bg .wave:nth-child(2) {
  bottom: 10px;
  opacity: 0.5;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 320" xmlns="http://www.w3.org/2000/svg"><path fill="%2309d6a9" fill-opacity="0.1" d="M0,96L48,128C96,160,192,224,288,229.3C384,235,480,181,576,170.7C672,160,768,192,864,202.7C960,213,1056,203,1152,192C1248,181,1344,171,1392,165.3L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
  animation: wave-animation 8s linear infinite;
}

.wave-bg .wave:nth-child(3) {
  bottom: 20px;
  opacity: 0.2;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 320" xmlns="http://www.w3.org/2000/svg"><path fill="%23fb6d5e" fill-opacity="0.1" d="M0,288L48,272C96,256,192,224,288,197.3C384,171,480,149,576,165.3C672,181,768,235,864,245.3C960,256,1056,224,1152,213.3C1248,203,1344,213,1392,218.7L1440,224L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
  animation: wave-animation 12s linear infinite;
}

@keyframes wave-animation {
  0% {
      background-position-x: 0;
  }
  100% {
      background-position-x: 1440px;
  }
}

/* Floating Envelope Animation */
.floating-envelope {
  position: absolute;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% {
      transform: translateY(0px) rotate(0deg);
  }
  50% {
      transform: translateY(-15px) rotate(2deg);
  }
  100% {
      transform: translateY(0px) rotate(0deg);
  }
}

/* Creative email particle effect */
.email-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.particle {
  position: absolute;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.15;
  animation: particle-float 15s linear infinite;
}

.particle.envelope {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%233172e0"><path d="M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z"/></svg>');
}

.particle.chat {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2309d6a9"><path d="M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2z"/></svg>');
}

.particle.bell {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23fb6d5e"><path d="M12 22c1.1 0 2-.9 2-2h-4c0 1.1.89 2 2 2zm6-6v-5c0-3.07-1.64-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.63 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2z"/></svg>');
}

@keyframes particle-float {
  0% {
      transform: translateY(100vh) rotate(0deg);
      opacity: 0;
  }
  10% {
      opacity: 0.15;
  }
  90% {
      opacity: 0.15;
  }
  100% {
      transform: translateY(-100px) rotate(360deg);
      opacity: 0;
  }
}

/* Header styles */
.header-section {
background:linear-gradient(to bottom right, #0ca2b0, #e3a54d);
color: white;
padding: 2rem 0 6rem;
position: relative;
overflow: hidden;
}


.highlight {
  color: var(--dark-color);
  font-weight: 600;
}

/* Custom cards with hover effects */
.benefit-card {
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  z-index: 1;
  border-radius: 15px;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(to bottom right, #e3a54d, #0ca2b0);
  z-index: 2;
  transition: height 0.3s;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-card:hover::before {
  height: 10px;
}

.card-icon {
  margin: 2rem auto 1rem;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  border-radius: 50%;
  background: linear-gradient(#E3A54D, #0CA2B0);
  box-shadow: 0 5px 15px rgba(49, 114, 224, 0.3);
}

/* Steps with animation */
.steps-connector {
  position: absolute;
  left: 55px;
  top: 60px;
  bottom: 1px;
  width: 3px;
  background: linear-gradient(#E3A54D, #0CA2B0);
  opacity: 0.2;
}

.step-number {
  background: linear-gradient(#E3A54D, #0CA2B0);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(49, 114, 224, 0.3);
  position: relative;
  z-index: 1;
  transition: transform 0.3s;
}

.step:hover .step-number {
  transform: scale(1.1);
}

.step:hover .step-content {
  transform: translateX(10px);
}

.step-content {
  transition: transform 0.3s;
}

/* Audience types hover effect */
.audience-type {
  border-left: 4px solid var(--warning-end-color);
  transition: transform 0.3s, box-shadow 0.3s;
}

.audience-type:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.audience-type:nth-child(2) {
  border-left-color: var(--secondary-color);
}

.audience-type:nth-child(3) {
  border-left-color: var(--accent-color);
}

.audience-type:nth-child(2) i {
  color: var(--secondary-color);
}

.audience-type:nth-child(3) i {
  color: var(--accent-color);
}

/* Resource cards hover effect */
.resource-item {
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}

.resource-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.resource-image {
  height: 200px;
  background: linear-gradient(to bottom right, #e3a54d, #0ca2b0);;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: white;
  position: relative;
  overflow: hidden;
}

.resource-image::before {
  content: '';
  position: absolute;
  width: 150%;
  height: 150%;
  background: repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.1) 10px,
      rgba(255, 255, 255, 0.05) 10px,
      rgba(255, 255, 255, 0.05) 20px
  );
  top: -25%;
  left: -25%;
  transform: rotate(10deg);
}

/* CTA section with creative background */
.cta-section {
background: linear-gradient(to bottom right, #e3a54d, #0ca2b0);
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 80%);
  background-size: 20px 20px;
  opacity: 0.5;
}

/* Button effects */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-secondary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--dark-color);
}

.btn-outline-light:hover {
  background-color: var(--warning-start-color);
  border-color: var(--secondary-color);
  color: var(--light-color);
}

.cta-button {
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.3) 50%,
      rgba(255, 255, 255, 0) 100%
  );
  transition: left 0.8s;
}


.cta-button:hover::before {
  left: 100%;
}

/* Animations for when elements come into view */
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}



.accordion-button:not(.collapsed) {
color: #fff;
background-color: var(--warning-end-color);
box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}
/* Custom styles for Bootstrap components */
.navbar-brand i {
  font-size: 2rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #0a2540;
}

.text-white-75 {
  color: rgba(255, 255, 255, 0.75);
}

/* Testimonial styling for carousel */
.carousel-inner {
  border-radius: 15px;
}

.testimonial-quote::before {
  content: '\201C';
  font-size: 6rem;
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: Georgia, serif;
  color: var(--primary-color);
  opacity: 0.1;
  line-height: 1;
}

/* Social icons styling */
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s;
}


.social-link:hover {
  background-color: #080817;
  transform: translateY(-3px);
}

/* Custom border and shadow for cards */
.shadow-hover {
  transition: all 0.3s ease;
}

.shadow-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important;
}



.footer-white .footer-copyright .text p {
    color: #fff;
    opacity: .6;
    font-size: 13px;
    font-weight: 300;
}



/* MailerSpot Partners Page Form */
.form-card {
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
border: none;
overflow: hidden;
}

.form-card .card-header {
background-color: var(--warning-start-color);
color: white;
border-bottom: none;
padding: 20px;
}

.form-control:focus {
border-color: var(--primary-color);
box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-label {
font-weight: 500;
margin-bottom: 0.5rem;
}

.form-section {
margin-bottom: 30px;
}

.form-section-title {
border-bottom: 2px solid #eee;
padding-bottom: 10px;
margin-bottom: 20px;
color: #0ca2b0;
}

.progress-indicator {
padding: 0;
margin: 20px 0;
list-style: none;
display: flex;
justify-content: space-between;
}

.progress-step {
display: flex;
flex-direction: column;
align-items: center;
position: relative;
flex: 1;
text-align: center;
}

.progress-step:not(:last-child):after {
content: '';
position: absolute;
top: 15px;
width: 100%;
height: 2px;
background-color: #e9ecef;
z-index: 0;
}

.step-icon {
width: 35px;
height: 35px;
border-radius: 50%;
background-color: #e9ecef;
color: #6c757d;
display: flex;
align-items: center;
justify-content: center;
z-index: 1;
position: relative;
margin-bottom: 5px;
transition: all 0.3s ease;
}

.step-active .step-icon {
background-color: var(--primary-color);
color: white;
}


.bg-primaryp {
  background: linear-gradient(#E3A54D, #0CA2B0);
  color: white;
}

/* Overall card container */
.feature-item {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 520px; /* Set a consistent minimum height */
}

/* Content area (title, description, button) */
.core-para {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 260px; /* Fixed height for content area */
  text-align: center; /* Center all text content including buttons */
}

/* Title styling */
.core-para h4 {
  height: 60px; /* Fixed height for title area */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Description styling */
.core-para p {
  height: 80px; /* Fixed height for description */
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

/* Button styling and positioning */
.para-main-btn-1 {
  margin-top: auto; /* Push button to bottom */
  margin-left: auto; /* Center horizontally */
  margin-right: auto;
  display: inline-block; /* Proper button display */
  min-width: 120px; /* Consistent button width */
}





/* floating email svg  */
@media only screen and (max-width: 576px) {
  /* Mobile phone styles */
  .floating-envelope-container {
        padding-top: 70px;
        padding-right: 120px;
        width: 140%; /* Make it full width on mobile */
        transform: scale(1.2); /* Increase size by 20% */
        height: auto; /* Maintain aspect ratio */
  }
}

@media only screen and (min-width: 577px) and (max-width: 992px) {
  /* Tablet and small laptop styles */
  .floating-envelope-container {
      padding-top: 70px;
  }
}


@media only screen and (min-width: 1440px) {
  .floating-envelope {
    width: 40%; /* maintains the same percentage as your original */
    max-width: 600px; /* prevents growth beyond this size */
    transform: translateX(-15%); /* keeps your existing positioning */
  }
}

.footer-white .footer-copyright .text p {
    color: #fff;
    opacity: .6;
    font-size: 13px;
    font-weight: 300;
    margin-right: 80px;
    margin-left: 10px;
}

