@import url("https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@100;200;300;400;500;600;700;800;900&amp;display=swap");

:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    --dark-gradient: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --accent-blue: #00d4ff;
    --accent-purple: #a855f7;
    --accent-pink: #ec4899;
}
/* Dropdown Menu Styles */
.header-area {
    position: relative;
    z-index: 1000;
}

.main-menu > nav > ul > li {
    position: relative;
}

.main-menu > nav > ul > li > .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    min-width: 1000px;
    padding: 20px;
}

.main-menu > nav > ul > li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.sub-menu-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.service-item {
    background: #f8f9fa;
    text-align: center;
    border-radius: 8px;
    padding: 15px;
    transition: all 0.3s ease;
    display: block;
    color: #333;
    font-weight: 500;
    border: 1px solid #e9ecef;
    text-decoration: none;
}

.service-item:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
    border-color: #3c72fc;
    color: #3c72fc;
}

/* Who We Are Section start here */
.who-we-are-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #e8e9ec 0%, #979599 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

.who-we-are-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    animation: backgroundFloat 6s ease-in-out infinite;
}

/* .container {
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 1;
} */

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    position: relative;
}

.text-content {
    position: relative;
    z-index: 3;
}

.decorative-circle {
    position: absolute;
    top: -40px;
    left: -40px;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    background-image: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&auto=format&fit=crop&w=120&q=80');
    background-size: cover;
    background-position: center;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

.content-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.1),
        0 10px 25px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #c56641, #764ba2, #f093fb, #f5576c);
    background-size: 400% 100%;
    animation: gradientShift 3s ease infinite;
}

.content-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.15),
        0 15px 35px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 24px;
    font-weight: 800;
    color: #c56641;
    margin-bottom: 24px;
    position: relative;
    letter-spacing: -0.02em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    /* background: linear-gradient(90deg, #667eea, #764ba2); */
    border-radius: 2px;
}

.section-description {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 3px;
   text-align: justify;
}

.feature-highlights {
    margin-bottom: 40px;
}

.highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: 0px;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(8px);
}

.highlight-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #c56641, #c78613);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    font-size: 0.8rem;
    color: white;
    flex-shrink: 0;
 
}

.highlight-text {
    font-size: 1rem;
    color: #2d3748;
    font-weight: 600;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.image-section {
    position: relative;
    height: 600px;
}

.main-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.main-image-container:hover {
    transform: scale(1.02);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.2),
        0 15px 35px rgba(0, 0, 0, 0.15);
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        45deg,
        rgba(102, 126, 234, 0.1) 0%,
        rgba(118, 75, 162, 0.1) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.main-image-container:hover .image-overlay {
    opacity: 1;
}

.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: floatAround 8s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: -30px;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    width: 100px;
    height: 100px;
    top: 60%;
    right: -50px;
    animation-delay: 4s;
}

.decorative-pattern {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: repeating-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.1) 0px,
        rgba(255, 255, 255, 0.1) 8px,
        transparent 8px,
        transparent 16px
    );
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.stats-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 20px 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stats-row {
    display: flex;
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
    display: block;
}

.stat-label {
    font-size: 0.8rem;
    color: #4a5568;
    font-weight: 500;
}

/* Animations */
@keyframes backgroundFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(1deg); }
    66% { transform: translateY(5px) rotate(-1deg); }
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1); 
        opacity: 0.7;
    }
    50% { 
        transform: scale(1.1); 
        opacity: 1;
    }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes floatAround {
    0%, 100% { transform: translate(0px, 0px); }
    25% { transform: translate(20px, -20px); }
    50% { transform: translate(-10px, -15px); }
    75% { transform: translate(15px, 10px); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .image-section {
        height: 500px;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .who-we-are-section {
        padding: 40px 15px;
    }
    
    .content-card {
        padding: 35px 25px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .image-section {
        height: 400px;
    }
    
    .stats-row {
        gap: 15px;
    }
    
    .floating-element {
        display: none;
    }
    
    .decorative-pattern {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .stats-overlay {
        left: 15px;
        bottom: 15px;
        padding: 15px 20px;
    }
    
    .stats-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .stat-item {
        text-align: left;
    }
}
/* Who We Are Section end here */

/* Our Process Section start here */
/* .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
} */
 /* .header {
    text-align: center;
    margin-bottom: 60px;
    color: white;
}

.header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
} *

.header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
} */
/* .header-top {
    background-color: #0c1923 !important;
    padding: 12px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  } */
/* .header__container {
    max-width: 1350px;
    padding: 0 15px;
}
.header-top .info a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
} */
.header-top {
    background-color: #0c1923 !important;
    padding: 12px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
.process-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 60px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #4facfe, #00f2fe);
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(79, 172, 254, 0.3);
}

.step-card {
    display: flex;
    align-items: center;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.step-card:nth-child(even) {
    flex-direction: row-reverse;
}

.step-card:nth-child(1) { animation-delay: 0.1s; }
.step-card:nth-child(2) { animation-delay: 0.2s; }
.step-card:nth-child(3) { animation-delay: 0.3s; }
.step-card:nth-child(4) { animation-delay: 0.4s; }
.step-card:nth-child(5) { animation-delay: 0.5s; }
.step-card:nth-child(6) { animation-delay: 0.6s; }

.step-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    margin: 0 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.step-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.step-number {
    position: absolute;
    left: 50%;
    top: -30px;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    z-index: 2;
    border: 4px solid white;
}

.step-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.step-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.step-subtitle {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 20px;
    font-style: italic;
}

.step-actions {
    list-style: none;
    margin-bottom: 20px;
}

.step-actions li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: #2d3748;
    line-height: 1.5;
}

.step-actions li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #48bb78;
    font-weight: bold;
    font-size: 1.1rem;
}

.why-matters {
    background: linear-gradient(135deg, #f7fafc, #edf2f7);
    border-radius: 12px;
    padding: 20px;
    border-left: 4px solid #667eea;
    margin-top: 20px;
}

.why-matters h4 {
    color: #667eea;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.why-matters p {
    color: #4a5568;
    line-height: 1.5;
}

.trust-section {
    
    backdrop-filter: blur(20px);
    border-radius: 25px;
    margin-top: 60px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    background:#c56641;
    padding: 50px;
    border-radius: 20px;
 
}

.trust-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #c56641, #c78613);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
}

.trust-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.trust-point {
    padding: 25px;
    background: linear-gradient(135deg, #f7fafc, #edf2f7);
    border-radius: 15px;
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
}

.trust-point:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.1);
}

.trust-point h3 {
    color: #2d3748;
    font-weight: 600;
    margin-bottom: 10px;
}

.trust-point p {
    color: #4a5568;
    line-height: 1.5;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    /* .header h1 {
        font-size: 2.5rem;
    } */
    
    .timeline-line {
        left: 30px;
    }
    
    .step-card {
        flex-direction: column !important;
        margin-left: 60px;
    }
    
    .step-number {
        left: 30px !important;
    }
    
    .step-content {
        margin: 0 20px 0 40px;
    }
    
    .trust-points {
        grid-template-columns: 1fr;
    }
}

.step-expanded {
    display: none;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.step-content.expanded .step-expanded {
    display: block;
}

.expand-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.expand-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}
/* .container {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.header {
    text-align: center;
    margin-bottom: 60px;
}

.header h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
} */

.process-timeline {
    position: relative;
    margin: 60px 0;
}
/* 
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #667eea, #764ba2);
    transform: translateX(-50%);
    border-radius: 2px;
} */

.step-card {
    position: relative;
    /* margin-bottom: 60px; */
    display: flex;
    align-items: flex-start;
}

/* Odd steps (1, 3, 5) - Left side */
.step-card:nth-child(odd) {
    justify-content: flex-end;
    padding-right: calc(50% + 40px);
}

.step-card:nth-child(odd) .step-content {
    text-align: left;
}

.step-card:nth-child(odd) .step-number {
    left: calc(100% - 25px);
    top: 20px;
}

/* Even steps (2, 4, 6) - Right side */
.step-card:nth-child(even) {
    justify-content: flex-start;
    padding-left: calc(50% + 40px);
}

.step-card:nth-child(even) .step-content {
    text-align: left;
}

/* .step-card:nth-child(even) .step-number {
    /* left: calc(50% - 25px); *
} */

.step-number {
    position: absolute;
    top: -30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.step-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    max-width: 500px;
    width: 100%;
}

.step-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.step-title {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 10px;
}

.step-card:nth-child(odd) .step-title {
    flex-direction: row-reverse;
}

.step-icon {
    font-size: 2rem;
    margin: 0 15px;
}

.step-subtitle {
    color: #666;
    font-size: 1rem;
    margin-bottom: 20px;
    font-style: italic;
}

.step-actions {
    list-style: none;
    margin-bottom: 20px;
}

.step-actions li {
    padding: 8px 0;
    color: #555;
    position: relative;
}

.step-card:nth-child(odd) .step-actions li::before {
    content: "✓";
    color: #c56641;
    font-weight: bold;
    margin-left: 0px;
    float: right;
}

.step-card:nth-child(even) .step-actions li::before {
    content: "✓";
    color: #c56641;
    font-weight: bold;
    margin-right: 10px;
}

.why-matters {
    background: linear-gradient(135deg, #f8f9ff, #e8f0ff);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid #667eea;
}

.why-matters h4 {
    color: #667eea;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.why-matters p {
    color: #555;
    font-size: 0.95rem;
}

.expand-btn {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.expand-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.trust-section {
    margin-top: 80px;
    text-align: center;
}

.trust-section h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 40px;
    background: linear-gradient(45deg, #c56641, #c78613);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.trust-point {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.trust-point:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.trust-point h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.trust-point p {
    color: #666;
    font-size: 1rem;
}

@media (max-width: 768px) {
    /* .container {
        padding: 20px;
    }

    .header h1 {
        font-size: 2rem;
    } */

    .step-card:nth-child(odd),
    .step-card:nth-child(even) {
        padding: 0;
        justify-content: center;
    }

    .step-card:nth-child(odd) .step-content,
    .step-card:nth-child(even) .step-content {
        text-align: center;
        max-width: 100%;
    }

    .step-card:nth-child(odd) .step-title {
        flex-direction: row;
    }

    .step-number {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%);
    }

    .timeline-line {
        left: 50%;
    }

    .trust-section h2 {
        font-size: 2rem;
    }
}

/* Our Process Section end here */
/* Tech stack start here */
/* body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: #333;
} */

.tech-stack-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.tech-stack-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    z-index: 0;
}

/* .container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
} */

.section-header {
    text-align: center;
    margin-bottom: 60px;
    width: 100%;
}

.section-header h5 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* text-shadow: 2px 2px 4px rgba(0,0,0,0.3); */
}


@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.section-header p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto 20px;
    /* text-shadow: 1px 1px 2px rgba(0,0,0,0.2); */
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.tech-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.tech-card:hover::before {
    left: 100%;
}

.tech-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 165, 0, 0.5);
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 165, 0, 0.3);
}

.card-icon {
    font-size: 2.5rem;
    margin-right: 15px;
    filter: drop-shadow(0 0 10px rgba(255, 165, 0, 0.5));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    color: #c56641;
    margin: 0;
    /* text-shadow: 1px 1px 2px rgba(0,0,0,0.3); */
}

.tech-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tech-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    border-left: 4px solid #ff6b35;
    transition: all 0.3s ease;
    position: relative;
}

.tech-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
    border-left-color: #ff8c42;
}

.tech-name {
    font-size: 1.1rem;
    font-weight: 600;
    color:#c56641;
    margin-bottom: 8px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.tech-description {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.5;
}

/* Why Section */
/* .why-section {
    background: linear-gradient(145deg, rgba(212, 19, 19, 0.1), rgba(12, 201, 235, 0.05));
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.why-title {
    font-size: 18px;
    font-weight: 700;
    color: #c56641;
    margin-bottom: 25px;
    /* text-shadow: 2px 2px 4px rgba(0,0,0,0.3); *
}

.why-description {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.benefit-card {
    background: linear-gradient(145deg, rgba(255, 165, 0, 0.15), rgba(255, 165, 0, 0.05));
    border-radius: 15px;
    padding: 30px 20px;
    border: 1px solid rgba(255, 165, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 165, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 165, 0, 0.6);
    box-shadow: 0 15px 30px rgba(255, 165, 0, 0.2);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(255, 165, 0, 0.5));
}

.benefit-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.benefit-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.trust-text {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.6;
    margin-top: 30px;
    /* font-style: italic; *
}

/* Reveal Animation *
.reveal {
    opacity: 0;
    transform: translateY(50px);
    animation: revealUp 0.8s ease forwards;
}

@keyframes revealUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal[data-delay="100"] { animation-delay: 0.1s; }
.reveal[data-delay="200"] { animation-delay: 0.2s; }
.reveal[data-delay="300"] { animation-delay: 0.3s; }
.reveal[data-delay="400"] { animation-delay: 0.4s; }
.reveal[data-delay="500"] { animation-delay: 0.5s; }
.reveal[data-delay="600"] { animation-delay: 0.6s; }
.reveal[data-delay="700"] { animation-delay: 0.7s; }
.reveal[data-delay="800"] { animation-delay: 0.8s; }

/* WOW Animation Classes *
.wow {
    visibility: hidden;
}

.wow.fadeInLeft {
    animation: fadeInLeft 1.5s ease forwards;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design *
@media (max-width: 768px) {
    .tech-stack-section {
        padding: 50px 0;
    }

    .section-header h5 {
        font-size: 2rem;
    }

    .tech-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tech-card {
        padding: 25px;
    }

    .why-section {
        padding: 30px 20px;
    }

    .why-title {
        font-size: 1.8rem;
    }

    .benefits-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .section-header h5 {
        font-size: 1.6rem;
        flex-direction: column;
        gap: 10px;
    }

    .tech-card {
        padding: 20px;
    }

    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .card-icon {
        margin-right: 0;
    }
}

/* Scrollbar Styling *
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ff6b35, #ff8c42);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ff8c42, #ff6b35);
} */

/* Our value */
/* .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 30px;
} */

.main-title {
    text-align: center;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ff9a9e, #fecfef, #fecfef, #ff9a9e);
    background-size: 400% 400%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 6s ease-in-out infinite;
    letter-spacing: -2px;
}

.intro-text {
    text-align: center;
    font-size: 1.3rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 80px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.value-section {
    margin-bottom: 120px;
    position: relative;
    padding-left: 100px;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.value-section.visible {
    opacity: 1;
    transform: translateX(0);
}

.value-section:nth-child(even) {
    padding-left: 0;
    padding-right: 100px;
    text-align: right;
    transform: translateX(50px);
}

.value-section:nth-child(even).visible {
    transform: translateX(0);
}

.value-number {
    position: absolute;
    font-size: 8rem;
    font-weight: 900;
    opacity: 0.08;
    line-height: 1;
    z-index: 1;
}

.value-section:nth-child(odd) .value-number {
    left: 0;
    top: -20px;
}

.value-section:nth-child(even) .value-number {
    right: 0;
    top: -20px;
}

.value-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.value-section:nth-child(2) .value-title { color: #c56641; }
.value-section:nth-child(3) .value-title { color: #c56641; }
.value-section:nth-child(4) .value-title { color: #c56641; }
.value-section:nth-child(5) .value-title { color: #c56641; }
.value-section:nth-child(6) .value-title { color: #c56641; }

.value-description {
    font-size: 1.1rem;
    color:#4a5568;
    position: relative;
    z-index: 2;
    max-width: 500px;
    text-align: justify;
}

.value-section:nth-child(even) .value-description {
    margin-left: auto;
    text-align: justify;
}

.decorative-line {
    position: absolute;
    height: 3px;
    background: linear-gradient(90deg, transparent, currentColor, transparent);
    top: 50%;
    transform: translateY(-50%);
    animation: pulse 3s ease-in-out infinite;
}

/* .value-section:nth-child(odd) .decorative-line {
    left: -80px;
    width: 60px;
} */

/* .value-section:nth-child(even) .decorative-line {
    right: -80px;
    width: 60px;
} */

.floating-dots {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    animation: floatDot 20s linear infinite;
}

.dot:nth-child(1) { left: 10%; animation-delay: 0s; }
.dot:nth-child(2) { left: 20%; animation-delay: -5s; }
.dot:nth-child(3) { left: 30%; animation-delay: -10s; }
.dot:nth-child(4) { left: 40%; animation-delay: -15s; }
.dot:nth-child(5) { left: 50%; animation-delay: -20s; }
.dot:nth-child(6) { left: 60%; animation-delay: -25s; }
.dot:nth-child(7) { left: 70%; animation-delay: -30s; }
.dot:nth-child(8) { left: 80%; animation-delay: -35s; }
.dot:nth-child(9) { left: 90%; animation-delay: -40s; }

.connection-path {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(255,255,255,0.1) 20%, 
        rgba(255,255,255,0.2) 50%, 
        rgba(255,255,255,0.1) 80%, 
        transparent 100%
    );
    transform: translateX(-50%);
}

@keyframes gradientFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: translateY(-50%) scaleX(1); }
    50% { opacity: 1; transform: translateY(-50%) scaleX(1.2); }
}

@keyframes floatDot {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

@media (max-width: 768px) {
    /* .container {
        padding: 40px 20px;
    } */

    .main-title {
        font-size: 2.5rem;
    }

    .value-section {
        padding-left: 0 !important;
        padding-right: 0 !important;
        text-align: left !important;
        margin-bottom: 80px;
    }

    .value-number {
        font-size: 5rem !important;
        left: 0 !important;
        right: auto !important;
    }

    .value-title {
        font-size: 3.1rem;
    }

    .value-description {
        font-size: 1.1rem;
        margin-left: 0 !important;
    }

    .decorative-line {
        display: none;
    }

    .connection-path {
        display: none;
    }
}
/* our value end */
/* Our purpose start */

/* .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
} */

/* Header Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.hero-content {
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    font-weight: 300;
}

/* Floating elements for visual interest */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 { width: 100px; height: 100px; top: 20%; right: 10%; animation-delay: 0s; }
.shape-2 { width: 150px; height: 150px; top: 60%; right: 20%; animation-delay: 2s; }
.shape-3 { width: 80px; height: 80px; top: 40%; right: 30%; animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Main Content Section */
.content-section {
    padding: 1rem 0;
    background-color: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    /* color: #1a202c; */
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.content-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #c56641;
    margin-bottom: 1rem;
}

.card-text {
    color: #4a5568;
    line-height: 1.7;
}

.highlight {
    background: linear-gradient(120deg, #667eea20 0%, #764ba220 100%);
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    font-weight: 600;
    color: #5a67d8;
}

/* Values Section */
.values-section {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 6rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.value-title {
    font-size: 3.why-title.2rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: white;
    color: #5a67d8;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .content-card {
        padding: 2rem;
    }
    
    .floating-shape {
        display: none;
    }
}

/* Why this matters for you Start */
.why-section {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.why-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #c56641, #e07850, #c56641);
}

.header-section {
    padding: 60px 50px 40px;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    text-align: center;
    position: relative;
}

.why-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 18px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 25px;
}

.title-icon {
    background: linear-gradient(135deg, #c56641, #e07850);
    padding: 12px;
    border-radius: 12px;
    color: white;
    box-shadow: 0 8px 25px rgba(197, 102, 65, 0.3);
}

.why-description {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    text-align: justify;
}

.benefits-section {
    padding: 50px;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border-left: 4px solid #c56641;
    margin: 40px 0;
}

.benefit-item {
    padding: 35px 40px;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    transition: all 0.3s ease;
    background: linear-gradient(90deg, transparent 0%, rgba(197, 102, 65, 0.02) 100%);
}

.benefit-item:last-child {
    border-bottom: none;
}

.benefit-item::before {
    content: '';
    position: absolute;
    left: -4px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #c56641;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.benefit-item:hover::before {
    transform: scaleY(1);
}

.benefit-item:hover {
    background: linear-gradient(90deg, rgba(197, 102, 65, 0.05) 0%, rgba(197, 102, 65, 0.02) 100%);
    transform: translateX(10px);
}

.benefit-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.benefit-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c56641, #e07850);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 6px 20px rgba(197, 102, 65, 0.25);
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #c56641;
}

.benefit-text {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-left: 70px;
}

.trust-section {
    padding: 50px;
    background: linear-gradient(135deg, #c56641 0%, #e07850 100%);
    color: white;
    text-align: center;
    position: relative;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.trust-text {
    font-size: 1.3rem;
    font-weight: 500;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    color: #fff;
}

.industries {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.industry-tag {
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    animation: revealAnimation 0.8s ease forwards;
}

@keyframes revealAnimation {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* .header-section, */
    .benefits-section,
    .trust-section {
        padding: 30px 25px;
    }

    .why-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 10px;
    }

    .why-description {
        font-size: 1.1rem;
    }

    .benefit-item {
        padding: 25px 20px;
    }

    .benefit-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .benefit-text {
        margin-left: 0;
    }

    .trust-text {
        font-size: 1.1rem;
    }
}
/* Why this matters for you End */
