* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1a237e;
    --dark-blue: #0d47a1;
    --accent-red: #d32f2f;
    --light-red: #f44336;
    --yellow: #ffc107;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --text-dark: #333333;
    --text-light: #666666;
    --gradient-red: linear-gradient(135deg, #d32f2f 0%, #9c27b0 100%);
    --gradient-blue: linear-gradient(135deg, #1a237e 0%, #283593 50%, #3949ab 100%);
    --gradient-gold: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
}

body {
    font-family: 'Poppins', 'Noto Sans Gujarati', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: #fafafa;
}

/* Global Gujarati Text Rendering Fix */
[class*="gujarati"],
[class*="Gujarati"],
[class*="rotating-word"],
[class*="rotating-text"] {
    font-family: 'Noto Sans Gujarati', sans-serif !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: "kern" 1;
}

/* Ensure Gujarati text containers can expand properly */
[class*="gujarati-rotating-text"],
[class*="gujarati-rotating-text"] {
    overflow: hidden;
    word-wrap: break-word;
    hyphens: auto;
}

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

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

/* Header Styles - Now using Bootstrap Navbar */
.logo-image {
    height: 60px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
}

.navbar-brand:hover .logo-image {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Responsive logo sizing */
@media (max-width: 768px) {
    .logo-image {
        height: 45px;
        max-width: 200px;
    }
}

@media (max-width: 576px) {
    .logo-image {
        height: 40px;
        max-width: 180px;
    }
}


/* Welcome Section */
.welcome-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.welcome-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(211, 47, 47, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(26, 35, 126, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.welcome-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    background: var(--gradient-red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    line-height: 1.3;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-red);
    border-radius: 2px;
}

.welcome-gujarati-text {
    margin: 15px 0 25px;
    text-align: left;
}

.welcome-gujarati-rotating-text {
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-blue);
    padding: 10px 20px;
    background: rgba(26, 35, 126, 0.08);
    border-radius: 25px;
    border: 1px solid rgba(26, 35, 126, 0.15);
    position: relative;
    overflow: hidden;
    min-height: 45px;
    min-width: 250px;
    max-width: 100%;
    text-align: center;
    font-family: 'Noto Sans Gujarati', sans-serif;
    line-height: 1.4;
    word-wrap: break-word;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.welcome-rotating-word {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    white-space: normal;
    font-family: 'Noto Sans Gujarati', sans-serif;
    transition: opacity 0.5s ease, transform 0.5s ease;
    text-align: center;
    line-height: 1.4;
    max-width: 100%;
    padding: 0 10px;
    word-wrap: break-word;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.welcome-rotating-word.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.welcome-rotating-word:not(.active) {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8) rotateY(90deg);
}

.welcome-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.heart-icon-large {
    text-align: center;
    margin-top: 30px;
}

.heart-icon-large {
    position: relative;
}

.heart-icon-large i {
    font-size: 80px;
    background: var(--gradient-red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: heartbeat 2s ease-in-out infinite;
    display: inline-block;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.1); }
    50% { transform: scale(1); }
    75% { transform: scale(1.05); }
}

/* Registration Form */
.trust-security-line {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.trust-security-text {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8;
    margin: 0;
}

.trust-security-gujarati {
    display: inline-block;
    margin-left: 8px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    min-width: 120px;
    min-height: 20px;
    font-family: 'Noto Sans Gujarati', sans-serif;
}

.trust-rotating-word {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    white-space: nowrap;
    font-family: 'Noto Sans Gujarati', sans-serif;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.trust-rotating-word.active {
    opacity: 1;
    transform: scale(1);
}

.trust-rotating-word:not(.active) {
    opacity: 0;
    transform: scale(0.8) rotateY(90deg);
}

.registration-form {
    background: var(--gradient-blue);
    padding: 45px;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.registration-form::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.registration-form > * {
    position: relative;
    z-index: 1;
}

.form-title {
    color: var(--white);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    padding: 14px 18px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-red);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 4px rgba(211, 47, 47, 0.2);
    transform: translateY(-2px);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group select option {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-submit {
    background: var(--gradient-red);
    border: none;
    color: var(--white);
    padding: 16px 40px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-top: 15px;
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
    position: relative;
    overflow: hidden;
    width: 100%;
}

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

.btn-submit:hover::before {
    width: 400px;
    height: 400px;
}

.btn-submit:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 30px rgba(211, 47, 47, 0.6);
}

.btn-submit:active {
    transform: translateY(-1px) scale(1);
}

/* Statistics Section */
.stats-section {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}

.stats-heading {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-card {
    background: var(--white);
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    font-size: 48px;
    color: var(--accent-red);
    margin-bottom: 20px;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 500;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: var(--gradient-red);
    color: var(--white);
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.benefits-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--white);
}

.benefit-item {
    margin-bottom: 30px;
}

.benefit-title {
    font-size: 24px;
    font-weight: 600;
    color: #ffc107;
    margin-bottom: 10px;
}

.benefit-description {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.benefits-image {
    position: relative;
    text-align: center;
}

.image-placeholder {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 100px 50px;
    margin-bottom: 30px;
}

.image-placeholder i {
    font-size: 100px;
    color: rgba(255, 255, 255, 0.3);
}

.btn-membership {
    background: var(--accent-red);
    border: none;
    color: var(--white);
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-membership:hover {
    background: var(--light-red);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-red);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Side Elements */
.side-elements {
    position: fixed;
    right: 20px;
    bottom: 100px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.download-app-btn {
    background: var(--yellow);
    color: var(--text-dark);
    padding: 15px 10px;
    border-radius: 5px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.download-app-btn:hover {
    transform: translateX(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.whatsapp-btn {
    width: 50px;
    height: 50px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.scroll-top-btn {
    width: 50px;
    height: 50px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Privacy Terms */
.privacy-terms {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 998;
}

.privacy-terms a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 12px;
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 3px;
}

/* Navbar Styles */
.navbar {
    background: #05175a;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 0;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-lg);
}

.navbar-brand {
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0;
}


.navbar-nav .nav-link {
    color: var(--white);
    font-weight: 500;
    padding: 8px 20px;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 0;
    margin: 0 2px;
    text-decoration: none;
}

.navbar-nav .nav-link:hover {
    color: var(--white);
    background: transparent;
}

.navbar-nav .nav-link.active {
    color: #d32f2f !important;
    background: transparent;
}

.btn_login, .btn_reg {
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    font-size: 15px;
}

.btn_login {
    background: transparent;
    border: none;
    color: var(--white);
    padding: 8px 15px;
}

.btn_login:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.btn_login i {
    font-size: 16px;
}

.btn_login::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--white);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn_login:hover::before {
    width: 300px;
    height: 300px;
}

.btn_login:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.btn_reg {
    background: var(--accent-red);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4);
    padding: 10px 25px;
}

.btn_reg::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: 0;
}

.btn_reg:hover::before {
    width: 300px;
    height: 300px;
}

.btn_reg:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(211, 47, 47, 0.6);
    color: var(--white);
}

.btn_reg > * {
    position: relative;
    z-index: 1;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    min-height: 90vh;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.92) 0%, rgba(211, 47, 47, 0.88) 100%),
                url('background.jpeg') center/cover;
    display: flex;
    align-items: center;
    overflow: visible;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(211, 47, 47, 0.2) 0%, transparent 50%);
    animation: pulse 6s ease-in-out infinite;
    pointer-events: none;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 193, 7, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(211, 47, 47, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: patternMove 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes patternMove {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, -20px) scale(1.1); }
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 193, 7, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(211, 47, 47, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: patternMove 20s ease-in-out infinite;
    pointer-events: none;
}

.hero-banner .container {
    overflow: visible;
}

@keyframes pulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
}

/* Hero Content Left */
.hero-content-left {
    position: relative;
    z-index: 2;
    color: var(--white);
    animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-badge i {
    color: #4caf50;
    font-size: 16px;
}

.hero-main-title {
    margin-bottom: 25px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-title-line1 {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.hero-title-line2 {
    display: block;
    font-size: 64px;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    line-height: 1.1;
}

.hero-title-accent {
    display: block;
    font-size: 28px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-top: 10px;
}

.hero-gujarati-text {
    margin: 20px 0 25px;
    animation: fadeInUp 0.8s ease-out 0.8s both;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.gujarati-rotating-text {
    display: inline-block;
    font-size: 22px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 0, 0, 0.3);
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    min-height: 50px;
    min-width: 250px;
    max-width: 100%;
    text-align: center;
    font-family: 'Noto Sans Gujarati', sans-serif;
    animation: glowPulse 3s ease-in-out infinite;
    line-height: 1.4;
    word-wrap: break-word;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.gujarati-static-text {
    display: inline-block;
    font-size: 22px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 0, 0, 0.3);
    font-family: 'Noto Sans Gujarati', sans-serif;
}

.rotating-word {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    white-space: normal;
    font-family: 'Noto Sans Gujarati', sans-serif;
    transition: opacity 0.5s ease, transform 0.5s ease;
    text-align: center;
    line-height: 1.4;
    max-width: 100%;
    padding: 0 10px;
    word-wrap: break-word;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.rotating-word.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.rotating-word:not(.active) {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8) rotateY(90deg);
}

.gujarati-rotating-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes slideInRotate {
    0% {
        opacity: 0;
        transform: translateY(20px) rotateX(90deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(255, 193, 7, 0.3), 0 0 20px rgba(255, 193, 7, 0.1);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 193, 7, 0.5), 0 0 30px rgba(255, 193, 7, 0.2);
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.6s both;
    max-width: 550px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.hero-feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hero-feature-item i {
    color: #4caf50;
    font-size: 18px;
}

.hero-cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.hb-btn-reg-primary {
    background: var(--gradient-red);
    color: var(--white);
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(211, 47, 47, 0.5);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-main-text {
    display: block;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.cta-gujarati-text-hover {
    display: block;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: translateY(-10px) rotateX(90deg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-family: 'Noto Sans Gujarati', sans-serif;
}

.hb-btn-reg-primary:hover .cta-gujarati-text-hover {
    opacity: 1;
    max-height: 50px;
    transform: translateY(0) rotateX(0deg);
    margin-top: 8px;
}

.hb-btn-reg-primary:hover .cta-main-text {
    transform: translateY(-5px);
}

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

.hb-btn-reg-primary:hover::before {
    width: 400px;
    height: 400px;
}

.hb-btn-reg-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(211, 47, 47, 0.7);
    color: var(--white);
}

.hb-btn-reg-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 18px 35px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hb-btn-reg-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-stats-mini {
    display: flex;
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.8s ease-out 1.2s both;
}

.hero-stat-item {
    text-align: center;
}

.stat-number-mini {
    font-size: 32px;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label-mini {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-stats-gujarati {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    animation: fadeInUp 0.8s ease-out 1.4s both;
}

.stats-gujarati-text {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 0, 0, 0.3);
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Hero Content Right */
.hero-content-right {
    position: relative;
    z-index: 2;
    animation: fadeInRight 1s ease-out;
    overflow: visible;
}

.hero-banner .container {
    overflow: visible;
}

.hero-banner .row {
    overflow: visible;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image-wrapper {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 80px;
    overflow: visible;
}

.hero-image-main {
    width: 100%;
    height: 100%;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
}

.hero-image-main::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.2) 0%, transparent 70%);
    animation: rotate 15s linear infinite;
}

.hero-image-main::after {
    content: '💑';
    font-size: 120px;
    position: relative;
    z-index: 1;
    animation: floatIcon 3s ease-in-out infinite;
}

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

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--primary-blue);
    z-index: 10;
    animation: floatCard 4s ease-in-out infinite;
    white-space: nowrap;
    font-size: 14px;
    min-width: fit-content;
}

.floating-card i {
    color: var(--accent-red);
    font-size: 18px;
    flex-shrink: 0;
}

.floating-card span {
    white-space: nowrap;
}

.floating-card.card-1 {
    top: 10%;
    right: -30px;
    animation: floatCard1 4s ease-in-out infinite;
}

.floating-card.card-2 {
    bottom: 25%;
    left: -30px;
    animation: floatCard2 4s ease-in-out infinite 1s;
}

.floating-card.card-3 {
    top: 60%;
    right: -30px;
    animation: floatCard3 4s ease-in-out infinite 2s;
}

@keyframes floatCard1 {
    0%, 100% { 
        transform: translateY(0) scale(1);
    }
    50% { 
        transform: translateY(-15px) scale(1.05);
    }
}

@keyframes floatCard2 {
    0%, 100% { 
        transform: translateY(0) scale(1);
    }
    50% { 
        transform: translateY(-15px) scale(1.05);
    }
}

@keyframes floatCard3 {
    0%, 100% { 
        transform: translateY(0) scale(1);
    }
    50% { 
        transform: translateY(-15px) scale(1.05);
    }
}

.floating-card:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
    z-index: 2;
    animation: bounce 2s ease-in-out infinite;
}

.hero-scroll-indicator i {
    font-size: 20px;
    animation: bounceArrow 2s ease-in-out infinite;
}

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

@keyframes bounceArrow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}


/* Download App & WhatsApp Buttons */
.download-app-btn {
    position: fixed;
    right: 20px;
    top: 200px;
    background: var(--gradient-gold);
    color: var(--text-dark);
    padding: 18px 12px;
    border-radius: 15px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 999;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.download-app-btn:hover {
    transform: translateX(-8px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 193, 7, 0.6);
    color: var(--text-dark);
    background: var(--gradient-gold);
}

.whats-app-chat-btn {
    position: fixed;
    right: 20px;
    top: 300px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 999;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.whats-app-chat-btn:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.7);
    color: var(--white);
}

.whats-app-chat-btn:active {
    transform: scale(1.1) rotate(0deg);
}

/* Matchmaking Section */
.matchmaking-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.matchmaking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-red), transparent);
}

.matchmaking-section .card {
    border: none;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 30px;
    border-radius: 20px;
    overflow: hidden;
    background: var(--white);
    position: relative;
}

.matchmaking-section .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-red);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.matchmaking-section .card:hover::before {
    transform: scaleX(1);
}

.matchmaking-section .card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.matchmaking-section .stat-icon {
    font-size: 56px;
    background: var(--gradient-red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.matchmaking-section .card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
}

.matchmaking-section .counter {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    line-height: 1.2;
}

.matchmaking-section .title {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 500;
}

/* Find Your Partner Section */
.find-your-partner {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.steps-gujarati-text {
    margin: 20px 0 30px;
}

.steps-gujarati-rotating-text {
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-blue);
    padding: 10px 20px;
    background: rgba(26, 35, 126, 0.08);
    border-radius: 25px;
    border: 1px solid rgba(26, 35, 126, 0.15);
    position: relative;
    overflow: hidden;
    min-height: 45px;
    min-width: 250px;
    max-width: 100%;
    text-align: center;
    font-family: 'Noto Sans Gujarati', sans-serif;
    line-height: 1.4;
    word-wrap: break-word;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.steps-rotating-word {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    white-space: normal;
    font-family: 'Noto Sans Gujarati', sans-serif;
    transition: opacity 0.5s ease, transform 0.5s ease;
    text-align: center;
    line-height: 1.4;
    max-width: 100%;
    padding: 0 10px;
    word-wrap: break-word;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.steps-rotating-word.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.steps-rotating-word:not(.active) {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8) rotateY(90deg);
}

.simple-steps {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    grid-auto-rows: auto;
    list-style: none;
    padding: 0;
    margin-left: 0;
    margin-right: 0;
}

.step-gujarati-line {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 12px;
    font-family: 'Noto Sans Gujarati', sans-serif;
    font-weight: 500;
    opacity: 0.8;
}

.simple-steps li {
    flex: none;
    min-width: auto;
    width: 100%;
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.simple-steps li::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-red);
    opacity: 0.05;
    transition: left 0.5s ease;
}

.simple-steps li:hover::before {
    left: 0;
}

.simple-steps li:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

.simple-steps .number {
    width: 70px;
    height: 70px;
    background: var(--gradient-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    margin: 0 auto 25px;
    box-shadow: 0 8px 20px rgba(211, 47, 47, 0.4);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.simple-steps li:hover .number {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 12px 30px rgba(211, 47, 47, 0.6);
}

.simple-steps h5 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.simple-steps p {
    color: var(--text-light);
    line-height: 1.8;
}

/* CTA Sections */
.cta-1, .cta-2 {
    padding: 120px 0;
    background: url('https://royalindianvivah.com/wp-content/themes/royal-indian-vivah/assets/images/riv-img-1.jpg') center/cover no-repeat;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.75) 0%, rgba(26, 35, 126, 0.80) 100%);
    z-index: 1;
}

.cta-2::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

.cta-1::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    z-index: 2;
}

.cta-2::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
    z-index: 1;
}

.cta-1 .content-wrapper {
    max-width: 600px;
    padding-right: 30px;
    position: relative;
    z-index: 3;
}

.cta-1 .container {
    position: relative;
    z-index: 3;
}


@media (max-width: 768px) {
    .cta-1 .section-title,
    .cta-2 .section-title {
        font-size: 32px;
    }
    
    .cta-1 .text-white,
    .cta-2 .text-white {
        font-size: 18px;
    }
    
    .btn_reg_free {
        padding: 24px 35px;
        font-size: 18px;
        min-width: 100%;
        width: 100%;
        text-align: left;
        align-items: flex-start;
    }
    
    .cta2-btn-main {
        font-size: 18px;
    }

    .cta2-btn-gujarati-hover {
        font-size: 14px;
    }
    
    .cta-1 .content-wrapper {
        padding-right: 0;
        max-width: 100%;
    }

    .cta-2 .content-wrapper {
        padding-right: 0;
        text-align: center;
    }

    .cta-2 .section-title {
        text-align: center;
    }

    .cta-2-description {
        text-align: center;
    }

    .cta-2-gujarati-rotated-line {
        text-align: center;
    }
}

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

.cta-1 .section-title,
.cta-2 .section-title {
    color: #ffffff !important;
    font-size: 50px;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.3;
    text-shadow: 3px 3px 18px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 0, 0, 0.4), 1px 1px 4px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 3;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #ffffff !important;
    background-clip: unset !important;
    letter-spacing: 0.5px;
}

.cta-2 .section-title {
    text-align: left;
}

.cta-1 .content-wrapper,
.cta-2 .content-wrapper {
    position: relative;
    z-index: 3;
    max-width: 100%;
}

.cta-2 .content-wrapper {
    padding-right: 30px;
}

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

.cta-2-description {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    max-width: 100%;
    text-align: left;
    margin-bottom: 25px;
}

.cta-2-gujarati-rotated-line {
    margin: 25px 0;
    text-align: left;
}

.cta-1 .text-white,
.cta-2 .text-white {
    font-size: 21px;
    line-height: 1.9;
    color: #ffffff !important;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6), 0 0 15px rgba(0, 0, 0, 0.3);
    margin-bottom: 35px;
    position: relative;
    z-index: 3;
    font-weight: 500;
}

.btn_reg_free {
    background: #ffffff;
    color: var(--accent-red);
    padding: 28px 45px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 18px;
    text-decoration: none;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 45px rgba(255, 255, 255, 0.35), 0 5px 20px rgba(0, 0, 0, 0.25), 0 0 40px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: visible;
    z-index: 2;
    border: 2px solid rgba(255, 255, 255, 0.6);
    min-width: 380px;
    text-align: left;
}

.btn_reg_free::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.2));
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    filter: blur(8px);
}

.btn_reg_free:hover::before {
    opacity: 1;
}

.btn_reg_free:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 55px rgba(255, 255, 255, 0.45), 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 50px rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.9);
}

.cta2-btn-main {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #1a237e;
    line-height: 1.4;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.cta2-btn-gujarati-hover {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #424242;
    opacity: 1;
    max-height: none;
    overflow: visible;
    transform: translateY(0);
    transition: all 0.3s ease;
    font-family: 'Noto Sans Gujarati', sans-serif;
    line-height: 1.5;
    margin-top: 2px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.btn_reg_free:hover .cta2-btn-main {
    color: #0d47a1;
}

.btn_reg_free:hover .cta2-btn-gujarati-hover {
    color: #212121;
}

/* Why RIV Section */
.why-riv {
    padding: 100px 0;
    background: var(--gradient-blue);
    position: relative;
    overflow: hidden;
}

.why-riv-gujarati-line {
    margin: 20px 0 30px;
}

.why-riv-trust-text {
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-family: 'Noto Sans Gujarati', sans-serif;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.why-card-description {
    font-size: 15px;
    line-height: 1.7;
    margin-top: 15px;
    margin-bottom: 12px;
    opacity: 0.9;
}

.why-card-gujarati {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    margin-top: 10px;
    font-family: 'Noto Sans Gujarati', sans-serif;
    font-weight: 500;
    line-height: 1.6;
}

.why-riv-trust-strip {
    margin-top: 50px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.trust-strip-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.trust-strip-english {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.trust-strip-gujarati {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    min-width: 200px;
    min-height: 25px;
    font-family: 'Noto Sans Gujarati', sans-serif;
}

.trust-strip-rotating-word {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    white-space: normal;
    font-family: 'Noto Sans Gujarati', sans-serif;
    transition: opacity 0.5s ease, transform 0.5s ease;
    text-align: center;
    line-height: 1.4;
    max-width: 100%;
    padding: 0 10px;
    word-wrap: break-word;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.trust-strip-rotating-word.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.trust-strip-rotating-word:not(.active) {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8) rotateY(90deg);
}

.why-riv::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 193, 7, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(211, 47, 47, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.why-riv .card {
    border: none;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    margin-bottom: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.why-riv .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.5s ease;
}

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

.why-riv .card:hover {
    transform: translateY(-10px) scale(1.03);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.why-riv .stat-icon {
    font-size: 48px;
    color: var(--accent-red);
    margin-bottom: 20px;
}

.why-riv h5 {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 15px;
}

.why-riv .card {
    padding: 35px 25px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Membership Plans Section */
.membership-plans {
    padding: 0;
    display: none; /* Hidden as per user request */
}

.content-bg {
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.95) 0%, rgba(26, 35, 126, 0.95) 100%);
    padding: 100px 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.content-bg .container {
    padding-left: 80px;
    padding-right: 80px;
    max-width: 100%;
}

.content-bg .content-wrapper {
    max-width: 100%;
}

@media (max-width: 1200px) {
    .content-bg .container {
        padding-left: 50px;
        padding-right: 50px;
    }
}

@media (max-width: 992px) {
    .content-bg .container {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (max-width: 768px) {
    .content-bg {
        padding: 60px 0;
    }
    
    .content-bg .container {
        padding-left: 30px;
        padding-right: 30px;
    }
}

.content-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    z-index: 1;
}

.content-bg .content-wrapper {
    position: relative;
    z-index: 2;
}

.content-bg h2,
.content-bg .section-title,
.content-bg h2.section-title {
    color: #ffffff !important;
    font-size: 44px;
    font-weight: 900;
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.7), 0 0 25px rgba(0, 0, 0, 0.4), 1px 1px 3px rgba(0, 0, 0, 0.8);
    margin-bottom: 40px;
    letter-spacing: 0.5px;
    line-height: 1.3;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #ffffff !important;
    background-clip: unset !important;
}

.content-bg .section-title::after {
    background: rgba(255, 255, 255, 0.8);
    height: 5px;
    width: 80px;
}

.content-bg h5 {
    color: #ffd700;
    font-size: 26px;
    font-weight: 700;
    margin-top: 35px;
    margin-bottom: 15px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.content-bg p {
    color: #ffffff;
    line-height: 1.9;
    font-size: 16px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    opacity: 0.95;
}

.bg-2 {
    background: linear-gradient(135deg, rgba(240, 240, 240, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    box-shadow: inset -5px 0 20px rgba(0, 0, 0, 0.1);
}

.love-symbol-wrapper {
    text-align: center;
}

.love-symbol {
    font-size: 200px;
    color: rgba(211, 47, 47, 0.15);
    text-shadow: 0 0 20px rgba(211, 47, 47, 0.1);
}

.view-membership-plans-btn {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: var(--gradient-red);
    color: var(--white);
    padding: 18px 50px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(211, 47, 47, 0.5);
    position: relative;
    overflow: hidden;
    z-index: 10;
}

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

.view-membership-plans-btn:hover::before {
    width: 400px;
    height: 400px;
}

.view-membership-plans-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(211, 47, 47, 0.7);
    color: var(--white);
}

/* Success Stories Section */
.success-stories {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    display: none; /* Hidden as per user request */
}

.success-stories .card {
    border: none;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 20px;
    background: var(--white);
}

.success-stories .card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: var(--shadow-xl);
}

.success-image-placeholder {
    width: 100%;
    height: 250px;
    background: var(--gradient-red);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 64px;
    position: relative;
    overflow: hidden;
}

.success-image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    animation: rotate 15s linear infinite;
}

.success-stories .card:hover .success-image-placeholder {
    transform: scale(1.1);
    transition: transform 0.4s ease;
}

.success-stories h5 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    padding: 20px;
}

/* Blog Section */
.blog-section {
    padding: 100px 0;
    background: var(--gradient-blue);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.blog-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite;
}

.blog-section .sub-head {
    font-size: 14px;
    letter-spacing: 3px;
    color: var(--accent-red);
    margin-bottom: 10px;
}

.blog-section .section-title {
    color: var(--white);
    font-size: 36px;
    font-weight: 700;
}

.blog-section .para {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 30px;
}

.btn_view_all_blogs {
    background: var(--gradient-red);
    color: var(--white);
    padding: 18px 45px;
    font-size: 17px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(211, 47, 47, 0.5);
    position: relative;
    overflow: hidden;
    min-height: 55px;
}

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

.btn_view_all_blogs:hover::before {
    width: 400px;
    height: 400px;
}

.btn_view_all_blogs:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(211, 47, 47, 0.7);
    color: var(--white);
}

/* Blog Gujarati Rotated Line */
.blog-gujarati-rotated-line {
    margin: 25px 0;
    text-align: left;
}

.blog-gujarati-rotating-text {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    min-height: 45px;
    min-width: 250px;
    max-width: 100%;
    text-align: center;
    font-family: 'Noto Sans Gujarati', sans-serif;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.4;
    word-wrap: break-word;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.blog-rotating-word {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    white-space: normal;
    font-family: 'Noto Sans Gujarati', sans-serif;
    transition: opacity 0.5s ease, transform 0.5s ease;
    text-align: center;
    line-height: 1.4;
    max-width: 100%;
    padding: 0 10px;
    word-wrap: break-word;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.blog-rotating-word.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.blog-rotating-word:not(.active) {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8) rotateY(90deg);
}

/* Blog Button Text Hover Effect */
.blog-btn-main,
.blog-btn-gujarati-hover {
    position: relative;
    z-index: 1;
    transition: opacity 0.35s ease, transform 0.35s ease;
    display: inline-block;
}

.blog-btn-main {
    opacity: 1;
    transform: translateY(0);
}

.blog-btn-gujarati-hover {
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(12px);
    font-family: 'Noto Sans Gujarati', sans-serif;
    font-size: 16px;
    white-space: nowrap;
    width: 100%;
    text-align: center;
}

.btn_view_all_blogs:hover .blog-btn-main {
    opacity: 0;
    transform: translateY(-12px);
}

.btn_view_all_blogs:hover .blog-btn-gujarati-hover {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(0);
}

/* Browse Profile Section */
.browse-profile {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.browse-profile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-red), transparent);
}

/* Browse Profile Intro */
.browse-profile-intro {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Browse Profile Gujarati Rotated Line */
.browse-profile-gujarati-rotated-line {
    margin: 25px 0;
}

.browse-profile-gujarati-rotating-text {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-blue);
    padding: 12px 30px;
    background: rgba(26, 35, 126, 0.08);
    border-radius: 25px;
    border: 1px solid rgba(26, 35, 126, 0.15);
    position: relative;
    overflow: hidden;
    min-height: 50px;
    min-width: 450px;
    max-width: 90%;
    width: auto;
    text-align: center;
    font-family: 'Noto Sans Gujarati', sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.browse-profile-rotating-word {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    white-space: nowrap;
    font-family: 'Noto Sans Gujarati', sans-serif;
    transition: opacity 0.5s ease, transform 0.5s ease;
    text-align: center;
    line-height: 1.5;
    width: calc(100% - 30px);
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.browse-profile-rotating-word.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.browse-profile-rotating-word:not(.active) {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8) rotateY(90deg);
}

/* Profile List Grid Layout */
.profile_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.profile_list li {
    margin-bottom: 0;
    padding: 30px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    border-left: 4px solid var(--accent-red);
}

.profile_list li:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-left-width: 6px;
}

.profile_list label {
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 18px;
    display: block;
    margin-bottom: 15px;
}

.profile-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 12px;
    font-size: 15px;
}

.profile-gujarati-line {
    color: var(--text-light);
    font-size: 14px;
    font-style: italic;
    margin-bottom: 15px;
    font-family: 'Noto Sans Gujarati', sans-serif;
    font-weight: 500;
    opacity: 0.8;
    line-height: 1.6;
}

.profile-tags {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
    font-size: 14px;
}

/* Browse Profile Trust Statement */
.browse-profile-trust-statement {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.browse-profile-trust-english {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
}

.browse-profile-trust-gujarati-rotated-line {
    margin: 15px 0;
}

.browse-profile-trust-gujarati-rotating-text {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-blue);
    padding: 8px 18px;
    background: rgba(26, 35, 126, 0.08);
    border-radius: 20px;
    border: 1px solid rgba(26, 35, 126, 0.15);
    position: relative;
    overflow: hidden;
    min-height: 40px;
    min-width: 250px;
    max-width: 100%;
    text-align: center;
    font-family: 'Noto Sans Gujarati', sans-serif;
    line-height: 1.4;
    word-wrap: break-word;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.browse-profile-trust-rotating-word {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    white-space: normal;
    font-family: 'Noto Sans Gujarati', sans-serif;
    transition: opacity 0.5s ease, transform 0.5s ease;
    text-align: center;
    line-height: 1.4;
    max-width: 100%;
    padding: 0 10px;
    word-wrap: break-word;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.browse-profile-trust-rotating-word.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.browse-profile-trust-rotating-word:not(.active) {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8) rotateY(90deg);
}

/* Responsive Grid Layout */
@media (max-width: 992px) {
    .profile_list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .profile_list {
        grid-template-columns: 1fr;
    }
    
    .browse-profile-intro {
        font-size: 16px;
        padding: 0 15px;
    }
    
    .browse-profile-gujarati-rotating-text {
        font-size: 16px;
        padding: 10px 20px;
        min-width: 280px;
        max-width: 95%;
    }
    
    .browse-profile-rotating-word {
        white-space: normal;
        padding: 0 10px;
    }
    
    .browse-profile-trust-gujarati-rotating-text {
        font-size: 14px;
        padding: 18px 15px;
        min-width: 180px;
    }
}

/* Download App CTA Section */
.download-app-cta {
    padding: 100px 0;
    background: var(--gradient-blue);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.download-app-cta::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 12s ease-in-out infinite;
}

.download-app-cta .section-title {
    color: var(--white);
    font-size: 36px;
    font-weight: 700;
}

.download-text-para {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 17px;
}

/* Download App Gujarati Rotated Line */
.download-app-gujarati-rotated-line {
    margin: 20px 0 25px;
}

.download-app-gujarati-rotating-text {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    min-height: 45px;
    min-width: 250px;
    max-width: 100%;
    text-align: center;
    font-family: 'Noto Sans Gujarati', sans-serif;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.4;
    word-wrap: break-word;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.download-app-rotating-word {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    white-space: normal;
    font-family: 'Noto Sans Gujarati', sans-serif;
    transition: opacity 0.5s ease, transform 0.5s ease;
    text-align: center;
    line-height: 1.4;
    max-width: 100%;
    padding: 0 10px;
    word-wrap: break-word;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.download-app-rotating-word.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.download-app-rotating-word:not(.active) {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8) rotateY(90deg);
}

/* Download App Description */
.download-app-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 30px;
}

/* Download App Features */
.download-app-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 25px;
}

.download-app-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
}

.download-app-feature-item i {
    color: #4caf50;
    font-size: 18px;
    flex-shrink: 0;
}

.download-app-feature-item span {
    line-height: 1.5;
}

/* Download App Trust Statement */
.download-app-trust-statement {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.download-app-trust-english {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 15px;
}

.download-app-trust-gujarati-rotated-line {
    margin: 15px 0;
}

.download-app-trust-gujarati-rotating-text {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    min-height: 40px;
    min-width: 250px;
    max-width: 100%;
    text-align: center;
    font-family: 'Noto Sans Gujarati', sans-serif;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.4;
    word-wrap: break-word;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.download-app-trust-rotating-word {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    white-space: normal;
    font-family: 'Noto Sans Gujarati', sans-serif;
    transition: opacity 0.5s ease, transform 0.5s ease;
    text-align: center;
    line-height: 1.4;
    max-width: 100%;
    padding: 0 10px;
    word-wrap: break-word;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.download-app-trust-rotating-word.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.download-app-trust-rotating-word:not(.active) {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8) rotateY(90deg);
}

/* Download App Responsive Styles */
@media (max-width: 768px) {
    .download-app-cta .section-title {
        font-size: 28px;
    }
    
    .download-text-para {
        font-size: 16px;
    }
    
    .download-app-gujarati-rotating-text {
        font-size: 16px;
        padding: 8px 15px;
        min-width: 150px;
    }
    
    .download-app-description {
        font-size: 15px;
    }
    
    .download-app-feature-item {
        font-size: 15px;
    }
    
    .download-app-trust-gujarati-rotating-text {
        font-size: 14px;
        padding: 6px 15px;
        min-width: 150px;
    }
}

.download-googleplay-btn {
    background: var(--white);
    color: var(--primary-blue);
    padding: 18px 35px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.download-googleplay-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--gradient-gold);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: 0;
}

.download-googleplay-btn:hover::before {
    width: 400px;
    height: 400px;
}

.download-googleplay-btn:hover {
    color: var(--text-dark);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.download-googleplay-btn > * {
    position: relative;
    z-index: 1;
}

.features {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.app-download-wrapper {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.app-download-image {
    width: 100%;
    height: auto;
    max-width: 500px;
    object-fit: contain;
    border-radius: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.app-download-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.gototop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--gradient-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(211, 47, 47, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
}

.gototop.fixed {
    opacity: 1;
    visibility: visible;
}

.gototop:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 12px 35px rgba(211, 47, 47, 0.7);
    color: var(--white);
}

.gototop:active {
    transform: translateY(-4px) scale(1.05);
}

/* Footer Styles */
footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 50px 0 20px;
}

footer h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

footer h6 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--white);
}

footer .para {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

/* Footer Gujarati Support Line */
.footer-gujarati-support-line {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-style: italic;
    margin-top: 15px;
    font-family: 'Noto Sans Gujarati', sans-serif;
    font-weight: 500;
    line-height: 1.6;
}

/* Footer Disclaimer Gujarati Line */
.footer-disclaimer-gujarati {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-style: italic;
    font-family: 'Noto Sans Gujarati', sans-serif;
    font-weight: 500;
    line-height: 1.6;
}

/* Footer Explore Section */
.footer-explore-section {
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.footer-explore-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-explore-subtitle {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
}

.footer-explore-links {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

.footer-explore-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-explore-links a:hover {
    color: var(--accent-red);
}

.footer-link {
    list-style: none;
    padding: 0;
}

.footer-link li {
    margin-bottom: 10px;
}

.footer-link a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link a:hover {
    color: var(--accent-red);
}

.whats-app-link,
.email-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s;
}

.whats-app-link:hover,
.email-link:hover {
    color: var(--accent-red);
}

.sub-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.sub-footer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.social-media-list {
    list-style: none;
    gap: 15px;
}

.social-media-list li a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.social-media-list li a:hover {
    background: var(--gradient-red);
    transform: translateY(-5px) scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(211, 47, 47, 0.4);
    border-color: var(--accent-red);
}

.copyright-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.copyright-text .divider {
    margin: 0 10px;
}

.db-link {
    color: var(--accent-red);
    text-decoration: none;
}

.db-link:hover {
    text-decoration: underline;
}

/* Section Padding */
.section-padding {
    padding: 100px 0;
}

/* Additional Beautiful Effects */
.content-wrapper {
    position: relative;
    z-index: 1;
}

/* Enhanced Card Hover Effects */
.card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Loading Animation for Images */
img {
    transition: opacity 0.3s ease;
}

/* Enhanced Focus States */
*:focus {
    outline: none;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: 2px solid var(--accent-red);
    outline-offset: 2px;
}

/* Smooth Transitions for All Interactive Elements */
a, button, input, select {
    transition: all 0.3s ease;
}

/* Beautiful Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--gradient-red);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-red);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .welcome-content,
    .benefits-content {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding-right: 20px;
    }

    .hero-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        padding: 80px 0 60px;
        min-height: auto;
    }

    .hero-title-line1 {
        font-size: 32px;
    }

    .hero-title-line2 {
        font-size: 42px;
    }

    .hero-title-accent {
        font-size: 20px;
    }

    .hero-gujarati-text {
        margin: 15px 0 20px;
    }

    .gujarati-rotating-text {
        font-size: 16px;
        padding: 10px 20px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-cta-buttons {
        flex-direction: column;
    }

    .hb-btn-reg-primary,
    .hb-btn-reg-secondary {
        width: 100%;
        justify-content: center;
    }

    .cta-main-text {
        font-size: 16px;
    }

    .cta-gujarati-text {
        font-size: 14px;
    }

    .hero-stats-mini {
        gap: 20px;
        justify-content: space-around;
    }

    .stats-gujarati-text {
        font-size: 16px;
        padding: 8px 15px;
    }

    .hero-image-wrapper {
        height: 300px;
        margin-top: 40px;
        padding: 20px;
    }

    .floating-card {
        display: none;
    }

    .hero-image-main::after {
        font-size: 80px;
    }

    .hero-content-right {
        overflow: visible;
    }

    .simple-steps {
        grid-template-columns: 1fr;
    }

    .steps-gujarati-rotating-text {
        font-size: 16px;
        padding: 8px 15px;
        min-width: 150px;
    }

    .step-gujarati-line {
        font-size: 13px;
    }

    .download-app-btn {
        right: 10px;
        top: 150px;
        padding: 12px 8px;
        font-size: 12px;
    }

    .whats-app-chat-btn {
        right: 10px;
        top: 250px;
    }

    .section-title {
        font-size: 28px;
    }

    .stats-heading {
        font-size: 32px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .registration-form {
        padding: 30px 20px;
    }

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

    .side-elements {
        right: 10px;
        bottom: 80px;
    }

    .download-app-btn {
        padding: 12px 8px;
        font-size: 12px;
    }

    .why-riv-gujarati-line {
        margin: 15px 0 20px;
    }

    .why-riv-trust-text {
        font-size: 16px;
        padding: 10px 20px;
    }

    .why-card-description {
        font-size: 14px;
    }

    .why-card-gujarati {
        font-size: 13px;
    }

    .trust-strip-english {
        font-size: 14px;
    }

    .trust-strip-gujarati {
        font-size: 14px;
        min-width: 150px;
    }

    .cta-2-description {
        font-size: 16px;
    }

    .cta-2-gujarati-rotating-text {
        font-size: 16px;
        padding: 8px 15px;
        min-width: 150px;
    }

    .cta2-btn-main {
        font-size: 18px;
    }

    .cta2-btn-gujarati-hover {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .banner-content h1 {
        font-size: 24px;
    }

    .section-title {
        font-size: 24px;
    }
    
    .btn_reg_free {
        padding: 20px 25px;
        min-width: 100%;
    }
    
    .cta2-btn-main {
        font-size: 16px;
    }

    .cta2-btn-gujarati-hover {
        font-size: 13px;
    }

    .content-bg {
        padding: 50px 20px;
    }

    .content-bg h2 {
        font-size: 28px;
    }

    .sub-footer {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-explore-section {
        text-align: center;
    }
    
    .footer-explore-subtitle {
        margin-top: 20px;
    }
    
    .footer-explore-subtitle:first-child {
        margin-top: 0;
    }
}

