.hero-section {
    background: linear-gradient(135deg, #007bff 0%, #28a745 50%, #17a2b8 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: white;
    padding: 0;
    margin-top: -90px;
    padding-top: 50px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(0, 123, 255, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(40, 167, 69, 0.2) 0%, transparent 50%);
    animation: morphing 8s ease-in-out infinite;
}

@keyframes morphing {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(180deg); }
}



@keyframes floatingHeart1 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

@keyframes floatingHeart2 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(-8deg); }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.hero-content {
    position: relative;
    z-index: 2;
    margin-left: -10%;
}

@media (max-width: 992px) {
    .hero-content {
        margin-left: 0;
        text-align: center;
    }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: white;
}

.hero-line {
    display: block;
    margin-bottom: 0.5rem;
}


.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    position: relative;
}

.handhold-img {
    max-width: 800px;
    margin-left: -60%;
    margin-top: 10%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));
    animation: float 6s ease-in-out infinite;
}

@media (max-width: 1199px) {
    .handhold-img {
        margin-left: 0;
        margin-top: 0;
        max-width: 100%;
    }
}


.accent {
    background: linear-gradient(135deg,  #007bff, #0056b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title .hero-line {
  display: block;
  white-space: nowrap;
  font-size: inherit;
  font-weight: inherit;
  margin-bottom: 6px;
}

@media (max-width: 768px) {
  .hero-title .hero-line {
    white-space: normal;
  }
}

.hero-title .letter {
  opacity: 0;
  transform: translateY(30px);
  display: inline-block;
  transition: opacity 0.4s, transform 0.4s;
  white-space: pre;
}

.hero-title .letter.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-text {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-top: 5%;
    margin-bottom: 2.5rem;
    margin-right: 10%;
    color: rgba(255,255,255,0.9);
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.hero-buttons .btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* New Match Button Styles */
.hero-buttons .btn-match-primary {
    background: linear-gradient(135deg, #007bff 0%, #28a745 50%, #17a2b8 100%);
    color: white;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 1.25rem 2.5rem;
    border-radius: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 280px;
}

.btn-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.btn-text {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 2px;
    display: block;
}

.btn-subtext {
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.9;
    display: block;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    border-radius: 60px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-buttons .btn-match-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.8s ease;
    z-index: 1;
}

.hero-buttons .btn-match-primary:hover::before {
    left: 100%;
}

.hero-buttons .btn-match-primary:hover {
    background: linear-gradient(135deg, #0056b3 0%, #20c997 50%, #138496 100%);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 123, 255, 0.5);
}

.hero-buttons .btn-match-primary:hover .btn-glow {
    opacity: 1;
}

.hero-buttons .btn-match-primary:active {
    transform: translateY(-4px) scale(1.02);
    transition: all 0.1s ease;
}

/* Pulse animation for the match button */
@keyframes match-pulse {
    0% {
        box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
    }
    50% {
        box-shadow: 0 10px 30px rgba(0, 123, 255, 0.5), 0 0 0 10px rgba(0, 123, 255, 0.1);
    }
    100% {
        box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
    }
}

.hero-buttons .btn-match-primary {
    animation: match-pulse 3s ease-in-out infinite;
}

.hero-buttons .btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.hero-buttons .btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.hero-buttons .btn {
    margin-right: 15px;
    margin-bottom: 15px;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: var(--transition-bounce);
}

.hero-buttons .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-buttons .btn:hover::before {
    width: 300px;
    height: 300px;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
}

.hero-buttons .btn-light {
    color: var(--primary-color);
    font-weight: 600;

}

.hero-container {
    display: flex;
    flex-direction: row;
    gap: 100px;
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-mockup {
    position: relative;
    width: 100%;
    max-width: 380px;
    height: 650px;
    margin: 0 auto;
}

.phone-outline {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 40px;
    background: white;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    padding: 15px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    background: var(--light-gray);
    position: relative;
}

.mockup-content {
    padding: 20px;
}

.mockup-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.mockup-logo {
    font-weight: 700;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.mockup-profile {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
}

.mockup-card {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
}

.hero-image {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup-container {
    position: relative;
    width: 300px;
    height: 600px;
}

.mockup-phone {
    width: 100%;
    height: 100%;
    background: #1a1a2e;
    border-radius: 40px;
    padding: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    position: relative;
}

.mockup-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.mockup-logo {
    font-weight: 700;
    color: #073a9b;
    font-size: 18px;
}

.mockup-profile {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #073a9b, #0bf0a3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.mockup-card {
    margin: 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.mockup-card-header {
    height: 120px;
    background: linear-gradient(135deg, #073a9b, #0bf0a3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
}

.mockup-card-content {
    padding: 20px;
}

.mockup-card-content h4 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
}

.mockup-card-content p {
    margin: 0 0 15px 0;
    color: #666;
    font-size: 14px;
}

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

.mockup-tag {
    background: rgba(7,58,155,0.1);
    color: #073a9b;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 500;
}

#card2 .mockup-tag {
    background: rgba(46,213,115,0.2);
    color: #2ed573;
}

.mockup-actions {
    display: flex;
    justify-content: center;
    gap: 25px;
    padding: 15px;
    flex-shrink: 0;
}

.mockup-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.mockup-btn-pass {
    background: #ff4757;
    color: white;
}

.mockup-btn-match {
    background: #2ed573;
    color: white;
}

.floating-badge {
    position: absolute;
    top: 20px;
    right: -20px;
    background: linear-gradient(135deg, #2ed573, #1dd1a1);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(46,213,115,0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float-up 12s infinite linear;
}

@keyframes float-up {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

.mockup-card-header:before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    top: -50px;
    right: -50px;
}

.mockup-card-header:after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    bottom: -30px;
    left: 30px;
}

.mockup-card-content {
    padding: 20px;
}

.mockup-card-title {
    font-weight: 600;
    margin-bottom: 5px;
}

.mockup-card-subtitle {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.mockup-card-tags {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.stats-section {
    padding: 80px 0;
    background: #f8fafc;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.col-md-3:nth-child(1) .stat-card {
    background: linear-gradient(135deg, #007bff, #0056b3);
}

.col-md-3:nth-child(2) .stat-card {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.col-md-3:nth-child(3) .stat-card {
    background: linear-gradient(135deg, #ffc107, #fd7e14);
}

.col-md-3:nth-child(4) .stat-card {
    background: linear-gradient(135deg, #dc3545, #e83e8c);
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: white !important;
    margin-bottom: 0.5rem;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: white !important;
    background-clip: unset !important;
}

.stat-label {
    color: white !important;
    font-weight: 500;
    font-size: 0.9rem;
}

.stat-card .stat-number,
.stat-card .stat-label {
    color: white !important;
}

.col-md-3 .stat-card .stat-number,
.col-md-3 .stat-card .stat-label {
    color: white !important;
}

.mockup-actions {
    display: flex;
    justify-content: space-around;
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
}

.mockup-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.mockup-btn:hover {
    transform: translateY(-3px);
}

.mockup-btn-dislike {
    background: white;
    color: #F44336;
    border: 2px solid #F44336;
}

.mockup-btn-like {
    background: white;
    color: #4CAF50;
    border: 2px solid #4CAF50;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    opacity: 0.1;
    border-radius: 50%;
    background: white;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: -50px;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 10%;
    left: 20%;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--black);
}

.section-title p {
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
}

.feature-card {
    padding: 40px 30px;
    border-radius: 20px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: center;
    align-items: center;
}

.feature-card::before,
.feature-card::after {
    position: absolute;
    content: "";
    width: 22%;
    height: 22%;
    background-color: #ece6fa;
    transition: all 0.5s;
    z-index: 1;
}

.feature-card::before {
    top: 0;
    right: 0;
    border-radius: 0 15px 0 100%;
}

.feature-card::after {
    bottom: 0;
    left: 0;
    border-radius: 0 100% 0 15px;
}

.feature-card:hover {
    box-shadow: 0 8px 32px 0 rgba(127, 0, 255, 0.16);
}

.feature-card:hover::before,
.feature-card:hover::after {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    background-color: #ece6fa;
    /* Or use a theme color like var(--secondary-light) */
    opacity: 1;
    transition: all 0.5s;
}

.feature-card>* {
    position: relative;
    z-index: 2;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-card:before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(59, 13, 139, 0.05);
    z-index: -1;
}

.feature-icon {
    justify-self: center;
    align-self: center;
}

.feature-icon:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    z-index: -1;
}

.feature-icon:hover {
    transform: scale(1.1);
    transition: 0.5s;

}

.feature-title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.feature-text {
    color: #353333;
    margin-bottom: 0;
}


/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.step-card-container {
    display: flex;
    flex-direction: row;
    align-items: center;
   justify-content: space-between;
    /* 300px gap between card and image */
    margin-bottom: 20%;
    height: 300px;
    /* Set container height */
}

.step-card-container-2 {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    /* 300px gap between card and image */
    margin-bottom: 20%;
    height: 300px;
    /* Set container height */
}

.step-card {
    padding: 30px;
    border-radius: 20px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
    width: 40%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.steps {
    margin-top: 100px;
}

.step-card-img {
    height: 140%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-card-img img {
    border-radius: 20px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.step-number {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    padding-left: 30px;
}

.step-text {
    color: #353333;
}

/* Testimonials Section */
.testimonials {
    padding-bottom: 200px;
    background: white;
    position: relative;
    justify-items: center;
}

.testimonial-row {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    gap: 70px;
}

.testimonial-row::-webkit-scrollbar {
    width: 0;
}

.testimonial-card {
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin: 20px;
    background: white;
    position: relative;
}

.testimonial-card:before {
    content: '\201C';
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 60px;
    color: #fff;
    opacity: 0.2;
    font-family: serif;
}

.testimonial-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin-right: 15px;
}

.testimonial-info h5 {
    margin-bottom: 5px;
    font-weight: 600;
}

.testimonial-info p {
    color: var(--gray-600);
    margin-bottom: 0;
}

/* Professional Testimonial Card */
/* --- Testimonial Pro Card Styles for Home Page --- */
.testimonial-pro-card {
    background-color: #fdf6f3;
    border-radius: 16px;
    padding: 20px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
    font-family: 'Segoe UI', sans-serif;
    width: 400px;
}

/* Header with image and info */
.testimonial-pro-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 15px;
    text-align: center;
}

.testimonial-pro-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    border: 4px solid #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.testimonial-pro-avatar.initials {
    background-color: #d3a079;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;

}

.testimonial-pro-header h5 {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.testimonial-pro-header small {
    font-size: 0.875rem;
    color: #888;
}

.testimonial-pro-body {
    font-size: 0.95rem;
    color: #4d4d4d;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid #d3a079;

}

.testimonial-pro-text {
    font-style: italic;
    position: relative;
    background-color: rgb(181, 167, 147);
    border-radius: 15px;
    padding: 15px;
    color: #fff;
}

.testimonial-pro-text::before {
    font-size: 40px;
    position: absolute;
    left: -25px;
    top: -10px;
    color: #d3a079;
}

.badge.bg-primary {
    background-color: #d3a079 !important;
    color: #fff;
}

.badge.bg-success {
    background-color: #8bc49c !important;
    color: #fff;
}

.badge.bg-light.text-dark {
    background-color: #fff3e9;
    color: #555;
    border: 1px solid #ffe5d0;
}

.section-title h2 {
    font-family: 'Georgia', serif;
    font-weight: 600;
    color: #3e3e3e;
}

.section-title p {
    color: #777;
    font-size: 1rem;
}

.nav-pills .nav-link {
    background-color: #fff3e9;
    color: #d3a079;
    border: 1px solid #ffe5d0;
    margin: 0 5px;
    border-radius: 30px;
    padding: 8px 20px;
}

.nav-pills .nav-link.active {
    background-color: #d3a079;
    color: #fff;
}

.nav-pills .nav-link.active {
    color: #fff !important;
}

.nav-pills .nav-link:hover {
    color: #674a34 !important;
}

/* CTA Section */
.features-section {
    padding: 100px 0;
    background: white;
}

.feature-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid #e9ecef;
    height: 100%;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(7,58,155,0.05), transparent);
    transition: left 0.8s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    border-color: rgba(7,58,155,0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007bff, #28a745);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.4s ease;
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #007bff, #28a745);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover .feature-icon::after {
    opacity: 0.3;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.3; }
    100% { transform: scale(1.3); opacity: 0; }
}

.feature-card:hover .feature-icon {
    transform: rotateY(360deg) scale(1.1);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #007bff 0%, #28a745 50%, #17a2b8 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-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"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></svg>') repeat;
    animation: sparkle 4s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

@media (max-width: 991.98px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .mockup-container {
        width: 250px;
        height: 500px;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        min-height: 80vh;
        padding: 60px 0;
    }
    
    .mockup-container {
        width: 200px;
        height: 400px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

.cta-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.cta-shape {
    position: absolute;
    opacity: 0.1;
    background: white;
}

.cta-shape-1 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    top: -150px;
    right: -150px;
}

.cta-shape-2 {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons .btn {
    margin: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
}

.cta-buttons .btn-outline-light {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a1a2e;
    border: 2px solid #ffd700;
    font-weight: 700;
    transition: all 0.4s ease;
}

.cta-buttons .btn-outline-light:hover {
    background: linear-gradient(135deg, #e6c200, #e6d93a);
    color: #1a1a2e;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

/* CTA Match Button */
.btn-cta-primary {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    color: #007bff;
    border: 2px solid #ffffff;
    font-weight: 700;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-cta-primary:hover {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #0056b3;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.5);
}

.btn-cta-primary .btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-cta-primary .btn-text {
    font-weight: 700;
}

/* Mobile Responsive Styles */
@media (max-width: 992px) {
    .hero-section {
        min-height: auto;
        padding: 3rem 0;
    }
    
    .hero-section .container {
        padding: 0;
        margin: 0 auto;
        width: 100%;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0 15px;
        margin: 0;
    }

    .hero-image {
        order: 1;
    }

    .hero-content {
        order: 2;
    }

    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .hero-text {
        font-size: clamp(1rem, 3vw, 1.2rem);
        margin-top: 1rem;
    }

    .handhold-img {
        max-height: 300px;
        max-width: 80%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 0;
    }
    
    .hero-section .container {
        padding: 0;
        width: 100%;
    }

    .hero-container {
        gap: 1.5rem;
        padding: 0 10px;
        overflow-x: hidden;
    }

    .hero-title {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }

    .hero-text {
        font-size: clamp(0.9rem, 4vw, 1.1rem);
        margin-top: 0.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .hero-buttons .btn-match-primary {
        min-width: auto;
        padding: 1rem 2rem;
    }
    
    .btn-text {
        font-size: 1rem;
    }
    
    .btn-subtext {
        font-size: 0.75rem;
    }

    .handhold-img {
        max-height: 220px;
        max-width: 85%;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 1.5rem 0;
    }
    
    .hero-section .container {
        padding: 0;
        width: 100%;
    }

    .hero-container {
        gap: 1rem;
        padding: 0 8px;
    }

    .hero-title {
        font-size: clamp(1.3rem, 8vw, 1.8rem);
    }

    .hero-text {
        font-size: clamp(0.85rem, 4.5vw, 1rem);
    }

    .hero-buttons .btn {
        max-width: 240px;
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .hero-buttons .btn-match-primary {
        min-width: auto;
        padding: 0.875rem 1.5rem;
    }
    
    .btn-text {
        font-size: 0.95rem;
    }
    
    .btn-subtext {
        font-size: 0.7rem;
    }

    .handhold-img {
        max-height: 180px;
        max-width: 90%;
    }
}

    .steps {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        justify-items: center;
    }

    .step-card-container,
    .step-card-container-2 {
        display: flex;
        flex-direction: column;
        row-gap: 20px;
        flex-wrap: wrap;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        max-width: 100%;
        height: 100%;
        max-height: 100%;
        align-content: center;
        justify-content: center;

    }

    .step-card-img {
        width: 70%;
        height: 70%;
        object-fit: cover;
    }

    .step-card {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .step-card-text {
        width: 70%;
    }

    .cta-title {
        font-size: 2rem;
    }
}

@media (min-width: 1200px) {
    .regional-features {
        margin-bottom: 10%;
    }
}

@media (width>=720) and (width<=1024) {
    .hero-section {
        padding: 80px 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .feature-card {
        display: grid;
        gap: 20px;
    }

    .hero-mockup {
        margin-top: 50px;
    }


    .steps {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        justify-items: center;
        width: 90%;
    }

    .step-card-container,
    .step-card-container-2 {
        display: flex;
        flex-direction: row;
        width: 100%;
        max-width: 100%;
        height: 100%;
        max-height: 100%;
        align-content: center;
        justify-content: center;
        gap: 10%;
    }

    .step-card-img {
        width: 70%;
        height: 70%;
        object-fit: cover;
    }

    .step-card {
      
    }

    .step-card-text {
        width: 70%;
    }

    .cta-title {
        font-size: 2rem;
    }
}