
/* Hero section styles */
.hero-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

@media (min-height: 500px) and (max-height: 600px)
  and (min-width: 1300px) and (max-width: 1400px) {
  .hero-section {
  padding: 2rem 0 !important;
  position: relative;
  overflow: hidden;
}
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.hero-text {
  flex: 1;
  max-width: 560px;
}

.hero-heading {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #334A8B;
}

.hero-heading span {
  background: linear-gradient(to right, #000, #333);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-description {
  font-size: 1.25rem;
  color: #505050;
  margin-bottom: 2.5rem;
  font-weight: 500;
}

/* CTA Button */
.hero-cta {
  display: inline-flex;
  align-items: center;
  background: #000;
  color: white;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.hero-image {
  flex: 1;
  position: relative;
  min-height: 400px;  
  display: flex;
  flex-direction: column;
}
.hero-image img,
.hero-image video {
  width: 100%;
  height: 360px;  
  max-width: 600px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  background-color: #f8f9fa;  
}

  .step-visual img,
  .step-visual video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }

.hero-image img {
  width: 100%;
  height: 360px;  
  max-width: 600px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  background-color: #f8f9fa;  
}

.integration-logos {
  margin-top: 2rem;
}

.integration-logos h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #777;
  margin-bottom: 1rem;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.logo {
  height: 40px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.logo img {
  height: 100%;
  width: auto;
  box-shadow: none;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
}

.logo:hover {
  opacity: 1;
}

 /*.hero-bg-element {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 50%;
  height: 80%;
  background: #f8f9fa;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: -1;
} */

/* Responsive styles */
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
  }
  
  .hero-text, .hero-image {
    max-width: 100%;
  }

  
  .hero-heading {
    font-size: 2.5rem;
  }
  
  .logo-container {
    justify-content: center;
  }
}

/* Why Choose Us section styles */
.why-choose-section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: #0f1c2e;
}

.section-description {
  font-size: 1.25rem;
  color: #505050;
  font-weight: 500;
}


.features-additional-icon {
  padding: 12px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}

.features-additional-icon svg {
  width: 24px;
  height: 24px;
}

/* Icon-Specific Styles */
.icon-blue {
  background-color: rgba(51, 74, 139, 0.3);
  color: #334A8B;
}

.icon-gold {
  background-color: rgba(var(--primary-blue-light-rgb), 0.3);
  color: var(--primary-blue-light);
}

.icon-dark {
  background-color: rgba(var(--primary-purple-light-rgb), 0.3);
  color: var(--primary-purple-light);
}

.icon-purple {
  background-color: rgba(94, 75, 139, 0.3);
  color: #5E4B8B;
}



.features-additional {
  padding: 6rem 0;
  background-color: white;
}

.features-additional-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.features-additional-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.features-additional-subtitle {
  font-size: 1.25rem;
  color: var(--text-color);
  font-weight: 500;
}

.features-additional-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr)); 
  gap: 0.5rem;
  max-width: 1050px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: border-box; 
}

.features-additional-item {
  text-align: left;
  padding: 2rem;
  border-radius: 12px;
  background-color: white !important;
  transition: transform 0.3s ease;
  height: auto;
  min-height: 250px;
  width: 100%;
  max-width: 100%; 
  border: 1px solid lightgray;
  box-sizing: border-box; 
}

.features-additional-item:hover {
}

.features-additional-icon {
  width: 3rem;
  height: 3rem;
  margin-bottom: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.features-additional-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.features-additional-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.features-additional-description {
  font-size: 1rem;
  color: var(--text-color);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 4rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
}

.benefit-icon {
  margin-right: 1.25rem;
  width: 48px;
  height: 48px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
  stroke: #000;
}

.benefit-content {
  flex: 1;
}

.benefit-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #0f1c2e;
}

.benefit-description {
  font-size: 1rem;
  color: #505050;
  margin-bottom: 0;
  line-height: 1.6;
}

.cta-container {
  text-align: center;
  margin-top: 4rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  background: #000;
  color: white;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.cta-button:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

    .hero-bg-element {
    display: none;
}

.step-icon {
    width: 3rem;
    height: 3rem;
    padding: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
    margin-bottom: 15px;
    margin: 0 auto;
    margin-bottom: 15px;
}
.signature-cta-button {
    margin-bottom: 30px;
}
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .benefit-icon {
    width: 40px;
    height: 40px;
  }
  
  .benefit-icon svg {
    width: 20px;
    height: 20px;
  }
}

@media (min-width: 769px) {
  .features-additional-grid {
    grid-template-columns: repeat(2, 1fr); 
  }
  
  .features-additional-item {
    max-width: 500px; 
  }
}

/* Mobile specific styles for Why Choose section */
@media (max-width: 768px) {
  .features-additional-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 0 1rem;
    width: 100%;
    overflow-x: hidden; 
  }
  
  .features-additional-item {
    min-height: auto;
    padding: 1.5rem;
    width: 100%;
    max-width: 100%; 
  }
  
  .features-additional-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
  }
  
  .features-additional-icon svg {
    width: 20px;
    height: 20px;
  }
  
  .features-additional-name {
    font-size: 1.1rem;
    word-wrap: break-word; 
  }
}

/* Extra small devices */
@media (max-width: 580px) {
  .features-additional-grid {
    padding: 0 0.5rem;
    grid-template-columns: 1fr; 

  }

    .signature-cta-container {
    text-align: center !important;
    margin-top: 3rem !important;
    margin-bottom: -6rem !important;
}

    .sec-features {
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 100% !important;
    margin: 0 auto;
  }

  .hero-section {
    padding: 3rem 0 !important;
    position: relative;
    overflow: hidden;
}

.step-icon {
    margin: 0 auto;
    margin-bottom: 15px;
}

  .hero-bg-element {
    display: none;
}
  
  .features-additional-item {
    padding: 1.25rem; 
  }
  
  .features-additional-name {
    font-size: 1rem; 
  }
}


/* How It Works section styles */
.how-it-works-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: #0f1c2e;
}

.section-description {
  font-size: 1.25rem;
  color: #505050;
  font-weight: 500;
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.step {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.step:nth-child(even) {
  flex-direction: row-reverse;
}

.step-content {
  flex: 1;
  max-width: 400px;
}

.step-icon {
  width: 3rem;
  height: 3rem;
  padding: 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5rem;
  margin-bottom: 15px;
}

.step-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}


.step-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #0f1c2e;
  margin-bottom: 1rem;
}

.step-description {
  font-size: 1.125rem;
  color: #505050;
  margin-bottom: 0;
}

.step-visual {
  flex: 1.25;
  position: relative;
  min-height: 360px;
  background: #f8f9fa;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.step-visual img,
.step-visual video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.cta-container {
  text-align: center;
  margin-top: 5rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  background: #000;
  color: white;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.cta-button:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive styles */
@media (max-width: 992px) {
  .step {
    flex-direction: column !important;
    gap: 2rem;
  }
  
  .step-content {
    max-width: 100%;
    text-align: center;
  }
  
  .step-number {
    margin-left: auto;
    margin-right: auto;
  }
  
  .step-visual {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .how-it-works-section {
    padding: 4rem 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .step-title {
    font-size: 1.5rem;
  }
}


/* ROI Calculator section */
.roi-calculator-section {
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  background-color: #FAFAFA;
}

.calculator-container {
  max-width: 1040px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.calculator-header {
  text-align: center;
  padding: 50px 30px 30px;
  position: relative;
}

.calculator-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 25px;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
}

.calculator-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--secondary-color);
  border-radius: 3px;
}

.calculator-header p {
  font-size: 1.25rem;
  font-weight: 500;
  max-width: 650px;
  margin: 0 auto;
  color: #505050 !important;
}

.calculator-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 30px;
}

@media (max-width: 992px) {
  .calculator-body {
    grid-template-columns: 1fr;
    padding: 0px;
  }
}

.input-section {
  padding: 40px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(41, 50, 65, 0.05);
}

.input-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(41, 50, 65, 0.1);
}

.input-group {
  margin-bottom: 30px;
  position: relative;
}

.input-group:last-child {
  margin-bottom: 0;
}

.input-label {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--primary-dark);
}

.input-wrapper {
  position: relative;
  margin-bottom: 10px;
}

.input-field {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(41, 50, 65, 0.1);
  border-radius: 10px;
  font-size: 1.1rem;
  color: var(--primary-dark);
  transition: all 0.3s ease;
  background-color: white;
  font-weight: 500;
  box-shadow: 0 2px 5px rgba(41, 50, 65, 0.05);
}

.currency-symbol {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-dark);
  opacity: 0.5;
  font-weight: 600;
}

.input-description {
  font-size: 0.85rem;
  color: var(--neutral-medium);
  margin-top: 8px;
}

.input-field:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 2px 8px rgba(61, 90, 128, 0.1);
}

.button-group {
  margin-top: 35px;
  display: flex;
  gap: 15px;
}

.btn {
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-calculate {
  background-color: var(--secondary-color);
  color: white;
}

.btn-clear {
  background-color: var(--neutral-light);
  color: var(--primary-dark);
  border: 1px solid rgba(41, 50, 65, 0.1);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(41, 50, 65, 0.1);
}

.results-section {
  background-color: rgba(51, 74, 139, 0.7);
  padding: 40px;
  border-radius: 20px;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(41, 50, 65, 0.05);
}

.results-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: white !important;
  position: relative;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.result-items {
  display: grid;
  gap: 25px;
}

.result-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
}

.result-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.result-label svg {
  margin-right: 6px;
}

.result-value {
  font-size: 2.4rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
}

.highlight-value {
  font-size: 2.4rem;
  font-weight: 700;
}


/* Security Section Styles */
.sec-wrapper {
  padding: 5rem 0;
  background-color: #fff;
}

.sec-header {
  text-align: center;
  margin-bottom: 4rem;
}

.sec-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: #0f1c2e;
}

.sec-desc {
  font-size: 1.25rem;
  color: #505050;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 500;
}

.sec-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.sec-item {
  display: flex;
  align-items: flex-start;
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 3px solid transparent;
}


.sec-item:hover {
  margin-top: -3px;
}




.sec-icon {
  margin-right: 1.25rem;
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sec-icon svg {
  width: 24px;
  height: 24px;
  stroke: #000;
}

.sec-content {
  flex: 1;
}

.sec-item-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #0f1c2e;
}

.sec-item-desc {
  font-size: 1rem;
  color: #505050;
  margin-bottom: 0;
  line-height: 1.6;
}

.sec-cta-container {
  text-align: center;
  margin-top: 4rem;
}

.sec-cta-button {
  display: inline-flex;
  align-items: center;
  background: #000;
  color: white;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.sec-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
  .sec-features {
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 50%;
    margin: 0 auto;
  }


    .hero-text {
    flex: 1;
    max-width: 560px;
    margin-left: 0% !important;
}

.integration-logos h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-left: 5%;
    color: #777;
    margin-bottom: 1rem;
}

}

@media (max-width: 769px) {
      .hero-text {
    flex: 1;
    max-width: 560px;
    margin-left: 10% !important;
}


.signature-cta-container {
    text-align: center;
    margin-top: 3rem;
    margin-bottom: -1rem;
}

#signature-carousel-section h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 42%;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 3px;
    margin: 0 auto;
}

  }

@media (max-width: 768px) {
  .sec-title {
    font-size: 2rem;
  }

  .integration-logos h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: left;
    color: #777;
    margin-bottom: 1rem;
}
  
  .sec-wrapper {
    padding: 4rem 0;
  }


    .hero-text {
    flex: 1;
    max-width: 560px;
    margin-left: 0% !important;
}
  
  .sec-icon {
    width: 40px;
    height: 40px;
  }
  
  .sec-icon svg {
    width: 20px;
    height: 20px;
  }
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: #333;
  line-height: 1.6;
}

/* Signature Carousel Section */
#signature-carousel-section {
  padding: 4rem 0;
  background-color: #fff;
}

.signature-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.signature-header {
  width: 50%;
}

.signature-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0f1c2e;
  margin-bottom: 1rem;
}

.signature-header p {
  font-size: 1.125rem;
  color: #4b5563;
  margin-bottom: 2rem;
  margin-top: 1.25rem;
}

.signature-carousel-container {
  width: 50%;
}

.signature-carousel-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
}

.signature-display {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  height: 320px;
  width: 100%;
}

.signature-templates {
  display: flex;
  transition: transform 0.5s ease;
  height: 100%;
  width: 300%; 
}


.signature-template.active {
  opacity: 1;
  transform: scale(1);
}


.signature-template:not(.active) {
  opacity: 0;
}

/* Horizontal Email Signature Base Styles */
.horizontal-signature {
  display: flex;
  align-items: center;
  padding: 1rem;
  border-radius: 0.375rem;
  max-width: 100%;
  position: relative;
  width: 100%;
  margin: 0 auto; /* Center horizontally */
}

.signature-avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  margin-right: 1rem;
  border: 2px solid #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.signature-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.signature-info {
  margin-right: 1.5rem;
}

.signature-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.signature-template {
  flex: 0 0 33.333%;
  width: 33.333%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.signature-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.signature-title {
  font-size: 0.875rem;
  color: #4b5563;
  margin-bottom: 0.25rem;
}

.signature-company {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.signature-contact {
  font-size: 0.75rem;
  color: #6b7280;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.signature-contact span {
  display: inline-flex;
  align-items: center;
}

.signature-contact svg {
  width: 0.875rem;
  height: 0.875rem;
  margin-right: 0.25rem;
}

.signature-divider {
  width: 1px;
  height: 4rem;
  background-color: #e5e7eb;
  margin: 0 1.5rem;
}

.signature-branding {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.signature-logo {
  height: 2rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.signature-logo img {
  height: 100%;
  width: auto;
  max-width: 120px;
}

.signature-social {
  display: flex;
  gap: 0.5rem;
}

.signature-social a {
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
  color: #fff;
  transition: transform 0.2s ease;
}

.signature-social a:hover {
  transform: translateY(-2px);
}

.signature-social svg {
  width: 0.875rem;
  height: 0.875rem;
}

/* BANNER TEMPLATE */
.banner-signature {
  background-color: #f8f9ff;
  border: none;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
  max-width: 500px;
  margin: 0 auto;
}

.banner-signature .signature-content {
  display: flex;
  align-items: center;
  padding: 1rem;
}

.banner-signature .signature-name {
  color: #4361ee;
}

.banner-signature .signature-branding {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.banner-signature .signature-social {
  display: flex;
  align-items: center;
}

.banner-signature .signature-social a {
  background-color: #4361ee;
}

.banner-signature .signature-banner {
  width: 100%;
  background-color: #4361ee;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.12'%3E%3Cpath opacity='.5' d='M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9zm-1 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  padding: 0.85rem;
  margin-top: 0.5rem;
  color: white;
  font-size: 0.8rem;
  text-align: center;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.banner-signature .signature-banner::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
  z-index: 0;
}

.banner-signature .signature-banner span {
  position: relative;
  z-index: 1;
}

/* CTA TEMPLATE */
.cta-signature {
  background-color: #fff1f1;
  padding: 0;
  max-width: 500px;
  margin: 0 auto;
  flex-direction: column;
}

.cta-signature .signature-main {
  display: flex;
  align-items: center;
  padding: 1rem;
  width: 100%;
}

.cta-signature .signature-name {
  color: #e63946;
  font-weight: 700;
}

.cta-signature .signature-branding {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-signature .signature-social {
  display: flex;
  align-items: center;
}

.cta-signature .signature-social a {
  background-color: #e63946;
}

.cta-signature .signature-cta {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: rgba(230, 57, 70, 0.1);
  border-top: 1px solid rgba(230, 57, 70, 0.2);
  display: flex;
  justify-content: flex-start;
}

.cta-signature .cta-button {
  background-color: #e63946;
  color: white;
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  border-radius: 0.25rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.cta-signature .cta-button:hover {
  background-color: #d62f3d;
  transform: translateY(-1px);
}

/* CORPORATE TEMPLATE */
.corporate-signature {
  background-color: #f0f5fa;
  border: 1px solid #e1e8ed;
  padding: 0;
  max-width: 500px;
  margin: 0 auto;
  flex-direction: column;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.corporate-signature .signature-main {
  display: flex;
  align-items: center;
  padding: 1.25rem;
  width: 100%;
}

.corporate-signature .signature-name {
  color: #003366;
  font-weight: 600;
  font-size: 1.1rem;
}

.corporate-signature .signature-title {
  color: #003366;
  font-weight: 500;
}

.corporate-signature .signature-company {
  color: #003366;
  font-size: 1rem;
  font-weight: 600;
}

.corporate-signature .signature-contact {
  color: #4a6572;
  font-size: 0.8rem;
}

.corporate-signature .signature-avatar {
  border: 2px solid #003366;
}

.corporate-signature .signature-divider {
  background-color: #003366;
  opacity: 0.3;
}

.corporate-signature .signature-logo {
  height: 2.5rem; 
}

.corporate-signature .signature-disclaimer {
  width: 100%;
  padding: 0.75rem 1.25rem;
  font-size: 0.65rem;
  color: #666;
  line-height: 1.3;
  border-top: 1px solid rgba(0, 51, 102, 0.2);
  background-color: rgba(0, 51, 102, 0.05);
}

/* Navigation buttons */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: white;
  border: none;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
}

.carousel-nav:hover {
  transform: translateY(-50%) scale(1.05);
}

.carousel-nav.prev {
  left: -1.5rem;
}

.carousel-nav.next {
  right: -1.5rem;
}

.carousel-nav svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Template indicators */
.template-indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.template-indicator {
  width: 2rem;
  height: 0.375rem;
  border-radius: 9999px;
  background-color: #d1d5db;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border: none;
  padding: 0;
}

.template-indicator.active {
  background-color: #1f2937;
}

/* CTA Button */
.signature-cta-container {
  text-align: left;
  margin-top: 2rem;
}

.signature-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  color: white;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.signature-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive styles */
@media (max-width: 992px) {
  .signature-container {
    flex-direction: column;
  }
  
  .signature-header, 
  .signature-carousel-container {
    width: 100%;
    max-width: 100%;
  }
  
  .signature-header {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .horizontal-signature {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .banner-signature .signature-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .signature-avatar {
    margin-bottom: 1rem;
    margin-right: 0;
  }

  .signature-cta-container {
    text-align: center !important;
    margin-top: 3rem !important;
    margin-bottom: -3rem !important;
}

#signature-carousel-section h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 42% !important;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 3px;
    margin: 0 auto;
}
  
  .signature-divider {
    width: 100%;
    height: 1px;
    margin: 1rem 0;
  }
  
  .signature-branding {
    margin-left: 0;
    margin-top: 1rem;
    align-items: flex-start;
  }
  
  .carousel-nav.prev {
    left: -0.5rem;
  }
  
  .carousel-nav.next {
    right: -0.5rem;
  }
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-bg-element {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 60%;
  height: 88%;
  background: var(--primary-light);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: -1;
  opacity: 0.4;
  display: none;
}

.hero-heading span {
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-cta {
  background: var(--secondary-color);
}

.hero-cta:hover {
  transform: translateY(-2px);
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-section {
  position: relative;
  background: #FAFAFA;
}

.why-choose-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 25%;
  height: 40%;
  background: var(--primary-light);
  border-radius: 50% 50% 50% 0;
  z-index: -1;
  opacity: 0.4;
}

.why-choose-section .section-title {
  position: relative;
  display: inline-block;
}

.why-choose-section .section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--secondary-color);
  border-radius: 3px;
}


.benefit-icon svg {
  stroke: var(--primary-color);
}

.why-choose-section .cta-button {
  background: var(--secondary-color);
}

.why-choose-section .cta-button:hover {
  transform: translateY(-2px);
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works-section {
  position: relative;
}

.how-it-works-section::after {
    position: absolute;
    top: 20%;
    left: 0; 
    width: 35%;
    height: 50%;
    border-radius: 0 50% 50% 0; 
    z-index: -1;
    opacity: 0.4;
}


.how-it-works-section .section-title {
  position: relative;
  display: inline-block;
}

.how-it-works-section .section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--secondary-color);
  border-radius: 3px;
}

.step-number {
  background: var(--primary-color);
}

.how-it-works-section .cta-button {
  background: var(--secondary-color);
}

.how-it-works-section .cta-button:hover {
  transform: translateY(-2px);
}

.step-visual {
  border: 1px solid rgba(45, 91, 255, 0.1);
}


/* ===== SECURITY SECTION ===== */
.sec-wrapper {
  position: relative;
}

.sec-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 37%;
  background: var(--primary-light);
  border-radius: 0 0 0 50%;
  z-index: -1;
  opacity: 0.4;
}

.sec-title {
  position: relative;
  display: inline-block;
}

.sec-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--secondary-color);
  border-radius: 3px;
}

.sec-icon {
  box-shadow: 0 4px 15px rgba(45, 91, 255, 0.15);
}

.sec-icon svg {
  stroke: white;
}

.sec-item:hover {
  border-top: 3px solid var(--primary-color);
  margin-top: -3px;
}

.sec-cta-button {
  background: var(--secondary-color);
}

.sec-cta-button:hover {
  transform: translateY(-2px);
}

/* ===== SIGNATURE CAROUSEL SECTION ===== */
#signature-carousel-section {
  position: relative;
  background: #FAFAFA;
}

#signature-carousel-section::before {
  content: "";
  position: absolute;
  top: 10%;
  right: 5%;
  width: 35%;
  height: 60%;
  background: var(--secondary-light);
  border-radius: 70% 30% 50% 50% / 40% 40% 60% 60%;
  z-index: -1;
  opacity: 0.7;
}

#signature-carousel-section h2 {
  position: relative;
  display: inline-block;
}

#signature-carousel-section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0%;
  width: 60px;
  height: 3px;
  background: var(--secondary-color);
  border-radius: 3px;
}

.signature-cta-button {
  background: var(--secondary-color);
}

.signature-cta-button:hover {
  transform: translateY(-2px);
}

.carousel-nav {
}

.carousel-nav:hover {
}

.template-indicator.active {
}

/* ===== SIGNATURE TEMPLATE ===== */
/* Banner Template */
.banner-signature .signature-name {
  color: var(--primary-color);
}

.banner-signature .signature-social a {
  background-color: var(--primary-color);
}

.banner-signature .signature-banner {
  background-color: var(--primary-color);
}

/* CTA Template */
.cta-signature {
  background-color: var(--secondary-light);
}

.cta-signature .signature-name {
  color: var(--secondary-color);
}

.cta-signature .signature-social a {
  background-color: var(--secondary-color);
}

.cta-signature .signature-cta {
  background-color: rgba(10, 207, 131, 0.1);
  border-top: 1px solid rgba(10, 207, 131, 0.2);
}

.cta-signature .cta-button {
  background-color: var(--secondary-color);
}

.cta-signature .cta-button:hover {
  background-color: var(--secondary-dark);
}

/* Corporate Template */
.corporate-signature {
  background-color: var(--primary-light);
  border: 1px solid rgba(45, 91, 255, 0.2);
}

.corporate-signature .signature-name,
.corporate-signature .signature-title,
.corporate-signature .signature-company {
  color: var(--primary-dark);
}

.corporate-signature .signature-avatar {
  border: 2px solid var(--primary-color);
}

.corporate-signature .signature-divider {
  background-color: var(--primary-color);
}

.corporate-signature .signature-disclaimer {
  border-top: 1px solid rgba(45, 91, 255, 0.2);
  background-color: rgba(45, 91, 255, 0.05);
}

@media (max-width: 580px) {

    .signature-cta-container {
    text-align: center !important;
    margin-top: 3rem !important;
    margin-bottom: -6rem !important;
}

}

