
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Utilities */
.text-center {
    text-align: center;
}

.text-green {
    color: #00c969;
}

.text-white {
    color: white;
}

.block {
    display: block;
}

.mb-12 {
    margin-bottom: 48px;
}

/* Grid System */
.grid {
    display: grid;
    gap: 32px;
    align-items: center;
}

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

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
     .grid-4 {
    grid-template-columns: repeat(2, 1fr); /* 2 items on tablet and smaller */
    /*grid-template-columns: repeat(2, 1fr);*/
      grid-template-columns: 50%;


  }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #e5e7eb;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
}

.logo-img {
    height: 60px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #00c969;
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #00c969;
    color: white;
}

.btn-primary:hover {
    background-color: #00a855;
    transform: scale(1.05);
}

.btn-hero {
    background-color: #00c969;
    color: white;
    padding: 16px 32px;
    font-size: 18px;
}

.btn-hero:hover {
    background-color: #00a855;
    transform: scale(1.05);
}

.btn-white {
    background-color: white;
    color: #00c969;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 700;
}

.btn-white:hover {
    background-color: #f3f4f6;
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-carousel {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

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

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    padding: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border: none;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.carousel-prev {
    left: 24px;
}

.carousel-next {
    right: 24px;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    padding: 0 24px;
    max-width: 1024px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    margin-bottom: 32px;
    opacity: 0.9;
    line-height: 1.5;
}

.carousel-indicators {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.indicator.active {
    background: #00c969;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-gray {
    background-color: #f9fafb;
}

.section-dark {
  background-image: linear-gradient(rgba(17, 24, 39, 0.8), rgba(17, 24, 39, 0.8)), url('https://hissaydar.com/wp-content/uploads/2025/06/slide-1.avif');
  background-size: cover;
  background-position: center;
}


.section-green {
    background: linear-gradient(135deg, #00c969, #00a855);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: clamp(2.5rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 24px;
    color: #111827;
}

.section-dark .section-title {
    color: white;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    /* max-width: 512px; */
    margin: 0 auto;
    line-height: 1.5;
    margin-bottom: 30px;
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

/* Cards */
.card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 2px solid #f3f4f6;
    transition: all 0.3s ease;
}

.card:hover {
    border-color: #00c969;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.step-card {
    position: relative;
    text-align: center;
}

.step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: #00c969;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.card-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 201, 105, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 16px auto 24px;
    color: #00c969;
    transition: background-color 0.3s ease;
}

.card:hover .card-icon {
    background: rgba(0, 201, 105, 0.2);
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.card-description {
    color: #6b7280;
    line-height: 1.5;
}

.safety-card {
    text-align: center;
}

.safety-card:hover {
    transform: scale(1.05);
}

/* Feature List */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.icon-green {
    color: #00c969;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-item span {
    font-size: 1.125rem;
    color: #374151;
}

/* Mockups */
.mockup-container {
    position: relative;
    text-align: right;
}
.mockup-container img{
    max-width: 500px;
    border-radius: 20px;
}

.mockup {
    background: linear-gradient(135deg, #00c969, #00a855);
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.mockup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.mockup-controls {
    display: flex;
    gap: 8px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.red {
    background: #ef4444;
}

.control.yellow {
    background: #eab308;
}

.control.green {
    background: #22c55e;
}

.badge {
    background: #00c969;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}
.derisked{
    text-align: left;
}

/* grid design */

   .custom-grid {
      display: grid;
      grid-template-columns: repeat(3, 150px);
      grid-template-rows: repeat(3, 150px);
      gap: 10px;
      border-radius: 20px;
      overflow: hidden;
    }

    .custom-grid .grid-item {
      background-color: #00c969;
      border-radius: 10px;
    }

    .custom-grid .grid-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 10px;
    }


    /* grid design */

.mockup-content {
    background: white;
    padding: 24px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.property-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    background: #f9fafb;
    border-radius: 8px;
}

.property-item i {
    color: #00c969;
    margin-right: 12px;
}

.return {
    color: #00c969;
    font-weight: 700;
}

.security-mockup {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.security-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
}

.security-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.security-item {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.8);
}

.verified {
    color: #22c55e;
    font-weight: 700;
}

/* Proof Cards */
.proof-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: background-color 0.3s ease;
}

.proof-card:hover {
    background: rgba(255, 255, 255, 0.2);
}

.flag {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.proof-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255 , 255, 255, 0.8);
    margin-bottom: 8px;
}

.proof-desc {
    color: #00c969;
    font-weight: 500;
    margin-bottom: 4px;
}

.proof-country {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.proof-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 201, 105);
    padding: 12px 24px;
    border-radius: 9999px;
    font-weight: 500;
    color: white;
    max-width: fit-content;
    margin: 20px auto 0px;
}

/* CTA Section */
.cta-title {
    font-size: clamp(2.5rem, 4vw, 3.75rem);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
    color: white;
}

.cta-subtitle {
    font-size: 1.25rem;
    /*margin-bottom: 32px;*/
    opacity: 0.9;
    color: white;
    max-width: 512px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.cta-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 48px;
    opacity: 0.8;
}

.stat {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
}

@media (max-width: 768px) {
    .cta-stats {
        flex-direction: column;
        gap: 16px;
    }
}

/* Footer */
.footer {
    background-color: #111827;
    padding: 24px 0;
}

.copyright {
    color: #9ca3af;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .carousel-btn {
        display: none;
    }
}

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

/* Icon Styling */
[data-lucide] {
    width: 24px;
    height: 24px;
}

.card-icon [data-lucide] {
    width: 32px;
    height: 32px;
}

.security-header [data-lucide] {
    width: 32px;
    height: 32px;
}



/* steps section css */

    
    
    /*how it works */
    
    
    /* Reset and base styles */

.process-header h1{
    font-size: 3rem;
}

#how-it-works{
    padding:70px 0px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(10, 175, 92, 0.1);
    color: #0aaf5c;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 32px;
    border: 1px solid rgba(10, 175, 92, 0.2);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #0aaf5c;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1f2937;
}

.highlight {
    color: #0aaf5c;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0aaf5c, #089a4f);
    border-radius: 2px;
}

.subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    padding: 40px 0px;
    text-align: center;
}

/* Process Cards */
.desktop-grid {
    display: none;
}

@media (min-width: 1024px) {
    .desktop-grid {
        display: block;
    }
    
    .mobile-stack {
        display: none;
    }
}

.grid-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 64px;
    margin-bottom: 48px;
}

.grid-row:last-child {
    margin-bottom: 0;
}

.process-card {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    transition: all 0.5s ease;
    overflow: hidden;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.card-background {
    position: absolute;
    top: 0;
    right: 0;
    width: 128px;
    height: 128px;
    background: linear-gradient(135deg, rgba(10, 175, 92, 0.1), transparent);
    border-radius: 50%;
    transform: translate(64px, -64px);
}

 .card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.icon-container {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #0aaf5c, #089a4f);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(10, 175, 92, 0.3);
}

.icon {
    width: 28px;
    height: 28px;
    color: white;
    stroke-width: 2;
}

.card-header .steps-number {
    width: 40px;
    height: 40px;
    background: rgba(10, 175, 92, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0aaf5c;
    font-weight: 700;
    font-size: 18px;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.process-card:hover .card-title {
    color: #0aaf5c;
}

.card-description {
    color: #6b7280;
    line-height: 1.6;
    font-size: 16px;
}

.progress-container {
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: #f3f4f6;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #0aaf5c, #089a4f);
    border-radius: 4px;
    transition: width 1s ease;
}

.process-card:hover .progress-fill {
    width: 100% !important;
}

.check-icon {
    width: 20px;
    height: 20px;
    color: #0aaf5c;
    stroke-width: 2;
}

.arrow-connector {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 64px;
    height: 64px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border: 4px solid rgba(10, 175, 92, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: border-color 0.3s ease;
}

.process-card:hover .arrow-connector {
    border-color: rgba(10, 175, 92, 0.4);
}

.arrow-connector svg {
    width: 24px;
    height: 24px;
    color: #0aaf5c;
    stroke-width: 2;
}

.process-card[data-step="3"] .arrow-connector,
.process-card[data-step="6"] .arrow-connector {
    display: none;
}

/* Mobile Stack */
.mobile-stack {
    display: block;
}

@media (min-width: 1024px) {
    .mobile-stack {
        display: none;
    }
}

.mobile-card {
    margin-bottom: 32px;
}

.mobile-arrow {
    display: flex;
    justify-content: center;
    margin: 24px 0;
}

.mobile-arrow-icon {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border: 4px solid rgba(10, 175, 92, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-arrow-icon svg {
    width: 20px;
    height: 20px;
    color: #0aaf5c;
    stroke-width: 2;
    transform: rotate(90deg);
}

/* Statistics Section */
.statistics {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.stat-card {
    text-align: center;
    padding: 24px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
}

.stat-icon {
    width: 64px;
    height: 64px;
    background: rgba(10, 175, 92, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0aaf5c;
}

.stat-title {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.stat-description {
    color: #6b7280;
    font-size: 14px;
}

/* Call to Action */
.cta-section {
    margin-top: 64px;
    position: relative;
    background: linear-gradient(135deg, #0aaf5c, #089a4f);
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    color: white;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml,%3Csvg width=%2260%22 height=%2260%22 viewBox=%220 0 60 60%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cg fill=%22none%22 fill-rule=%22evenodd%22%3E%3Cg fill=%22%23ffffff%22 fill-opacity=%220.1%22%3E%3Ccircle cx=%2230%22 cy=%2230%22 r=%222%22/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
    opacity: 0.2;
}

.cta-content {
    position: relative;
    z-index: 10;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-description {
    font-size: 1.125rem;
    margin-bottom: 32px;
    max-width: 512px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.cta-button {
    background: white;
    color: #0aaf5c;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 16px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    background: #f9fafb;
}

/* Trust Indicators */
.trust-indicators {
    margin-top: 64px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 32px;
    opacity: 0.6;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
}

.trust-icon {
    width: 20px;
    height: 20px;
    color: #0aaf5c;
    stroke-width: 2;
}

.trust-item span {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 40px 16px;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.125rem;
    }
    
    .cta-section {
        padding: 32px 24px;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 16px;
    }
}

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

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #0aaf5c;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #089a4f;
}


.cta-card {
    background-color: white;
    padding: 50px 32px 10px;
    border-radius: 16px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -4px rgba(0, 0, 0, 0.4);
    transition: color 0.15s ease, background-color 0.15s ease;
    text-align:left;
}

.form-control {
    display: block;
    width: 100%;
    height: calc(2.25rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.contact-form{
    width:100%;
    margin:auto;
}

.btn-custom{
        padding: 10px 15px;
    font-size: 16px;
    background-color: #00c969;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 5px;
    margin-top:20px;
    cursor:pointer;
}

.btn-custom:hover{
        color: #00c969;
    background-color: #fff;
    border: 1px solid #00c969;
}



/** Space below each label */
.cta-card label.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

/* Space below each input/textarea */
.cta-card .wpcf7-form-control {
    display: block;
    margin-bottom: 20px;
    width: 100%;
}

/* Optional: spacing between form sections */
.cta-card .wpcf7-form p {
    margin-bottom: 24px;
}

.wpcf7-form {
  transition: padding 0.3s ease;
}

.sub-caption{
    text-align:left;
    margin-left:0px;
    margin-top: 20px;
}

.cta-title-head{
    font-size:48px;
    font-weight:700;
    line-height:60px;
    text-align:left;
}

.left-cta{
    text-align:left;
}

.btn-cta{
    margin-left: initial;
    text-align: left;
    color: #00c969;
    background-color: #fff;
    margin-top: 50px;
    padding: 16px 32px;
    font-size: 18px;
        border: none;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
}

.copyright a{
    color: #9ca3af;
}