/* Modern Professional Styles for RMX India */

/* CSS Variables */
:root {
    /* Colors */
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary-color: #64748b;
    --accent-color: #f59e0b;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --info-color: #06b6d4;
    
    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #90ee90 0%, #32cd32 100%);
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 5rem 0;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    
    /* Transitions */
    --transition-fast: 0.15s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
}

/* =============================================
   HEADER & NAVIGATION STYLES
   ============================================= */

/* Modern Header */
.modern-header {
    position: relative;
    z-index: 1000;
}

.modern-header .navbar {
    padding: 1rem 0;
    backdrop-filter: blur(15px);
    background: rgba(255, 255, 255, 0.98) !important;
    border-bottom: 1px solid rgba(0, 123, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 123, 255, 0.08);
}

/* Logo */
.logo-img {
    height: 42px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 123, 255, 0.1));
	transition: all 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 123, 255, 0.2));
}

/* Navigation Alignment */
.navbar-collapse.justify-content-end {
    flex-grow: 0;
}

.navbar-nav.align-items-center {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

/* Modern Navigation Links */
.modern-nav-link {
	position: relative;
    padding: 0.75rem 1.25rem !important;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--gray-700) !important;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.modern-nav-link span {
	position: relative;
	z-index: 2;
}

.modern-nav-link::before {
    content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 25px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 1;
}

.modern-nav-link:hover {
    color: white !important;
    transform: translateY(-2px);
}

.modern-nav-link:hover::before {
	opacity: 1;
    transform: scale(1);
}

.modern-nav-link.active {
    color: white !important;
    background: linear-gradient(135deg, #007bff, #0056b3);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.modern-nav-link.active::before {
    display: none;
}

/* Enhanced Navigation Buttons */
.modern-btn {
    font-weight: 600;
    border-radius: 25px;
    padding: 0.6rem 1.5rem;
	font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.modern-btn i,
.modern-btn .material-icons {
    font-size: 0.85rem;
}

/* Material Icons Support */
.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    vertical-align: middle;
}

/* Icon alignment with text */
.material-icons.me-1,
.material-icons.me-2 {
    vertical-align: text-bottom;
}

.material-icons.ms-1,
.material-icons.ms-2 {
    vertical-align: text-bottom;
}

/* Service card icons */
.service-icon .material-icons {
    font-size: 2.5rem;
    vertical-align: middle;
    color: #3b82f6;
}

.service-card {
    text-align: center;
    padding: 2rem;
    border-radius: 1rem;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

/* Feature card icons */
.feature-icon .material-icons {
    font-size: 2rem;
    vertical-align: middle;
    color: #16a34a;
}

.feature-card {
    text-align: center;
    padding: 1.5rem;
    border-radius: 0.75rem;
    background: #f8fafc;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Platform item icons */
.platform-item .material-icons {
    font-size: 1.5rem;
    vertical-align: middle;
    margin-right: 0.5rem;
    color: #3b82f6;
}

.platform-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Benefit item icons */
.benefit-item .material-icons {
    font-size: 1.2rem;
    vertical-align: middle;
    margin-right: 0.5rem;
}

/* Button icons */
.btn .material-icons {
    font-size: 1rem;
    vertical-align: text-bottom;
}

/* Footer icons */
.footer-links .material-icons {
    font-size: 0.85rem;
    vertical-align: middle;
}

/* Statistics icons */
.stat-icon .material-icons {
    font-size: 2rem;
    vertical-align: middle;
}

.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

.modern-btn.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.modern-btn.btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.modern-btn.btn-primary {
    background: linear-gradient(135deg, #16a34a, #15803d);
    border-color: #16a34a;
	color: white;
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.2);
}

.modern-btn.btn-primary:hover {
    background: linear-gradient(135deg, #15803d, #166534);
    border-color: #15803d;
	transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.4);
}

/* Services Dropdown Menu */
.modern-dropdown {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 10px 0;
    margin-top: 10px;
    background: white;
    min-width: 250px;
}

.modern-dropdown .dropdown-item {
    padding: 12px 20px;
    font-weight: 500;
    color: #374151;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
}

.modern-dropdown .dropdown-item:hover {
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    color: #1f2937;
    transform: translateX(5px);
}

.modern-dropdown .dropdown-item i,
.modern-dropdown .dropdown-item .material-icons {
    width: 20px;
    text-align: center;
    color: #6b7280;
    font-size: 18px;
}

.modern-dropdown .dropdown-item:hover i,
.modern-dropdown .dropdown-item:hover .material-icons {
    color: #007bff;
}

.modern-dropdown .dropdown-item.active {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
}

.modern-dropdown .dropdown-item.active i,
.modern-dropdown .dropdown-item.active .material-icons {
    color: white;
}

/* Dropdown Toggle Arrow */
.dropdown-toggle::after {
    margin-left: 8px;
    border-top: 5px solid;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    transition: transform 0.3s ease;
}

.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

/* Custom Mobile Toggler */
.custom-toggler {
    border: none !important;
    padding: 0.5rem;
    border-radius: 8px;
    background: rgba(37, 99, 235, 0.1);
	transition: all 0.3s ease;
}

.custom-toggler:hover {
    background: rgba(37, 99, 235, 0.2);
}

.custom-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
}

/* Mobile Navigation */
@media (max-width: 991.98px) {
    .modern-header .navbar {
        padding: 0.75rem 0;
    }
    
    .navbar-collapse.justify-content-end {
        justify-content: flex-start !important;
        margin-top: 1rem;
    }
    
    .navbar-nav.align-items-center {
        flex-direction: column;
        align-items: stretch !important;
        gap: 0.75rem;
        width: 100%;
    }
    
    .modern-nav-link {
        text-align: center;
        padding: 0.75rem 1rem !important;
        margin: 0;
        border-radius: 15px;
    }
    
    .nav-item-btn {
        margin: 0 !important;
    }
    
    .modern-btn {
	width: 100%;
        text-align: center;
	justify-content: center;
        padding: 0.75rem 1rem;
    }
    
    /* Mobile Button Layout */
    .nav-item-btn:nth-last-child(2),
    .nav-item-btn:nth-last-child(1) {
        display: inline-block;
        width: calc(50% - 0.5rem);
        margin: 0.5rem 0.25rem 0 !important;
    }
    
    .navbar-nav .nav-item-btn:nth-last-child(2) {
        margin-right: 0.5rem !important;
    }
    
    .navbar-nav .nav-item-btn:nth-last-child(1) {
        margin-left: 0.5rem !important;
    }
}

/* Tablet Navigation */
@media (min-width: 768px) and (max-width: 991.98px) {
    .logo-img {
        height: 40px;
    }
    
    .modern-nav-link {
        padding: 0.6rem 1rem !important;
        font-size: 0.9rem;
    }
    
    .modern-btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.85rem;
    }
    
    /* Mobile Dropdown Styles */
    .modern-dropdown {
        min-width: 200px;
        margin-top: 5px;
    }
    
    .modern-dropdown .dropdown-item {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

/* =============================================
   MOBILE NAVIGATION GRID STYLES
   ============================================= */

.mobile-nav {
    padding: 20px 0;
    background: #f8fafc;
    border-radius: 15px;
    margin: 10px 0;
}

.mobile-nav-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 0 15px;
    margin-bottom: 20px;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 10px;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    min-height: 80px;
    justify-content: center;
}

.mobile-nav-item:hover {
    color: #1f2937;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-color: #e5e7eb;
}

.mobile-nav-item.active {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border-color: #1d4ed8;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.mobile-nav-item i,
.mobile-nav-item .material-icons {
    font-size: 1.2rem;
    margin-bottom: 6px;
    color: #6b7280;
}

.mobile-nav-item:hover i,
.mobile-nav-item:hover .material-icons {
    color: #3b82f6;
}

.mobile-nav-item.active i,
.mobile-nav-item.active .material-icons {
    color: white;
}

.mobile-nav-item span {
    text-align: center;
    line-height: 1.2;
    word-break: break-word;
}

.mobile-nav-actions {
    display: flex;
    gap: 10px;
    padding: 0 15px;
    margin-top: 15px;
}

.mobile-btn {
    flex: 1;
    padding: 12px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 25px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-btn.btn-outline-primary {
    border: 2px solid #3b82f6;
    color: #3b82f6;
    background: transparent;
}

.mobile-btn.btn-outline-primary:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-1px);
}

.mobile-btn.btn-primary {
    background: linear-gradient(135deg, #16a34a, #15803d);
    border: 2px solid #16a34a;
    color: white;
}

.mobile-btn.btn-primary:hover {
    background: linear-gradient(135deg, #15803d, #166534);
    border-color: #15803d;
    transform: translateY(-1px);
}

/* Mobile Navigation Responsive Adjustments */
@media (max-width: 480px) {
    .mobile-nav-grid {
        gap: 8px;
        padding: 0 10px;
    }
    
    .mobile-nav-item {
        padding: 12px 8px;
        font-size: 0.8rem;
        min-height: 70px;
    }
    
    .mobile-nav-item i,
    .mobile-nav-item .material-icons {
        font-size: 1.1rem;
        margin-bottom: 4px;
    }
    
    .mobile-nav-actions {
        padding: 0 10px;
        gap: 8px;
    }
    
    .mobile-btn {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
}

/* =============================================
   MODERN FOOTER STYLES  
   ============================================= */

.modern-footer {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: #f8fafc;
    overflow: hidden;
}

.modern-footer::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 20"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.05"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="25" cy="10" r="10" fill="url(%23a)"/><circle cx="75" cy="10" r="10" fill="url(%23a)"/></svg>') repeat;
    opacity: 0.3;
    pointer-events: none;
}

.footer-main-section {
	position: relative;
    z-index: 2;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-section {
	position: relative;
    z-index: 2;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
}

/* Footer Brand */
.footer-brand .footer-logo {
    height: 55px;
    width: auto;
    filter: brightness(1.2) contrast(1.1) drop-shadow(0 2px 8px rgba(255, 255, 255, 0.1));
    transition: all 0.3s ease;
		opacity: 1;
}

.footer-brand .footer-logo:hover {
    transform: scale(1.05);
    filter: brightness(1.3) contrast(1.2) drop-shadow(0 4px 12px rgba(255, 255, 255, 0.2));
}

.footer-description {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 400;
}

/* Enhanced Footer Stats */
.footer-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 20px;
}

.footer-stats .stat-item {
    position: relative;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.footer-stats .stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(22, 163, 74, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.2);
}

.footer-stats .stat-item .stat-icon {
    position: absolute;
    top: -8px;
    right: 10px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #16a34a, #15803d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: white;
    box-shadow: 0 3px 10px rgba(22, 163, 74, 0.3);
}

.footer-stats .stat-item .stat-number {
    font-size: 1.1rem;
    font-weight: 800;
    color: #16a34a;
    margin-bottom: 4px;
    text-shadow: 0 2px 4px rgba(22, 163, 74, 0.3);
}

.footer-stats .stat-item .stat-label {
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Footer Columns */
.footer-column {
    position: relative;
}

.footer-title {
    color: #f8fafc;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
	display: flex;
    align-items: center;
	position: relative;
    padding-bottom: 8px;
}

.footer-title::after {
	content: '';
	position: absolute;
	bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(135deg, #16a34a, #15803d);
	border-radius: 2px;
}

.footer-title .material-icons {
    color: #16a34a;
    font-size: 0.9rem;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

.footer-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.1), rgba(21, 128, 61, 0.1));
    transition: width 0.3s ease;
    z-index: -1;
}

.footer-links a:hover {
    color: #16a34a;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    width: 100%;
}

.footer-links a .material-icons {
    color: #64748b;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.footer-links a:hover .material-icons {
    color: #16a34a;
}

/* Social links now use footer-links styling */

/* Footer CTA Button */
.footer-btn {
    width: 100%;
    padding: 12px 20px;
    font-weight: 600;
	border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

/* Footer Bottom Section */
.footer-copyright {
	display: flex;
	align-items: center;
}

.footer-copyright p {
    color: #cbd5e1;
    font-size: 0.95rem;
    font-weight: 500;
}

.footer-copyright strong {
    color: #f8fafc;
}

.version-badge {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 6px 12px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.footer-legal-link {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 8px;
}

.footer-legal-link:hover {
    color: #16a34a;
    background: rgba(22, 163, 74, 0.1);
}

.footer-badge {
    display: flex;
    align-items: center;
    background: rgba(22, 163, 74, 0.1);
    color: #16a34a;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(22, 163, 74, 0.2);
}

.footer-badge i {
    margin-right: 6px;
}

/* Mobile Footer Layout */
@media (max-width: 991.98px) {
    .footer-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .footer-stats .stat-item {
        padding: 10px;
    }
    
    .footer-stats .stat-item .stat-icon {
        width: 20px;
        height: 20px;
        top: -6px;
        right: 8px;
        font-size: 0.6rem;
    }
    
    
    .footer-legal {
        flex-direction: column !important;
        gap: 8px !important;
        text-align: center;
        margin-top: 20px;
    }
    
    .footer-badge {
        justify-content: center;
        margin-top: 10px;
    }
}

@media (max-width: 767.98px) {
    .footer-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .footer-stats .stat-item {
        padding: 8px 6px;
    }
    
    .footer-stats .stat-item .stat-icon {
        width: 18px;
        height: 18px;
        top: -5px;
        right: 6px;
        font-size: 0.55rem;
    }
    
    .footer-stats .stat-item .stat-number {
        font-size: 1rem;
    }
    
    .footer-stats .stat-item .stat-label {
        font-size: 0.65rem;
    }
    
    .footer-title {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    .footer-title .material-icons {
        font-size: 0.8rem;
    }
    
    .footer-links a {
        padding: 5px 6px;
        font-size: 0.8rem;
    }
    
    .footer-links a .material-icons {
        font-size: 0.75rem;
    }
    
    /* Ensure footer logo is visible on mobile */
    .footer-brand .footer-logo {
        height: 45px;
        filter: brightness(1.3) contrast(1.2) saturate(1.1);
        opacity: 1;
    background: rgba(255, 255, 255, 0.05);
        padding: 8px;
    border-radius: 8px;
    }
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
}

.modern-body {
    font-family: var(--font-primary);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

h1 {
	font-size: 3.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

h3 {
    font-size: 1.875rem;
    font-weight: 600;
}

h4 {
    font-size: 1.5rem;
    font-weight: 600;
}

h5 {
    font-size: 1.25rem;
	font-weight: 600;
}

h6 {
    font-size: 1.125rem;
    font-weight: 600;
}

p {
	margin-bottom: 1rem;
    color: var(--gray-600);
}

.text-gradient {
	background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Header Styles */
.modern-header {
	position: relative;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--gray-900);
    text-decoration: none;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.version-badge {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1f2937;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.7rem;
    border-radius: 14px;
    line-height: 1;
    box-shadow: 0 3px 6px rgba(251, 191, 36, 0.3);
    animation: pulse 2s infinite;
    border: 1px solid rgba(245, 158, 11, 0.2);
    letter-spacing: 0.5px;
}

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

.logo-img {
    height: 45px;
    width: auto;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--gray-700);
    padding: 0.5rem 1rem;
    transition: var(--transition-fast);
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-fast);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

/* Enhanced Hero Section */
.hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background-image: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%),
        url('/rmxindia2/images/herobg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
    padding: 80px 0 60px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    background-size: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    margin-top: 2rem;
}

.hero-badge {
    margin-bottom: 2rem;
}

.hero-badge .badge {
    background: rgba(255, 255, 255, 0.15) !important;
    color: white !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--white);
}

.hero-description-enhanced {
    position: relative;
    z-index: 2;
    margin-bottom: 2.5rem;
}

.hero-lead-text {
    font-size: 1.3rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

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

.hero-feature-item .material-icons {
    font-size: 1.1rem;
}

.hero-languages {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.hero-languages-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.hero-language-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-language-tag:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.hero-language-tag:last-child {
    background: rgba(22, 163, 74, 0.8);
    border-color: rgba(22, 163, 74, 0.9);
    font-weight: 700;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    justify-content: center;
}

.hero-stats .stat-item {
    text-align: center;
    position: relative;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    min-width: 120px;
}

.hero-stats .stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.hero-stats .stat-item .stat-icon {
    position: absolute;
    top: -12px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: rgba(22, 163, 74, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: white;
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3);
}

.hero-stats .stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    display: block;
    margin-bottom: 0.5rem;
}

.hero-stats .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-visual {
        position: relative;
    z-index: 2;
}

.dashboard-preview {
    position: relative;
}

.dashboard-preview img {
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.floating-stats {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-stat {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--gray-700);
    animation: float 3s ease-in-out infinite;
}

.floating-stat.platforms-stat span {
    color: #32cd32; /* Light green for 150+ Platforms */
}

.floating-stat:nth-child(1) {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.floating-stat:nth-child(2) {
    bottom: 30%;
    left: -15%;
    animation-delay: 1s;
}

.floating-stat:nth-child(3) {
    top: 60%;
    right: -5%;
    animation-delay: 2s;
}

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

/* Section Styles */
.services-section,
.features-section,
.platforms-section,
.vevo-section,
.caller-tune-section {
    padding: var(--section-padding);
}

.section-badge {
    display: inline-block;
    background: none;
    color: #6b7280;
    padding: 0.5rem 0;
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    border: none;
}

/* Generic Hero Section for Pages (Non-Index) */
.page-hero-section {
    position: relative;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    overflow: hidden;
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding: 3rem 0;
}

.page-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="page-hero-bg" cx="50%" cy="50%"><stop offset="0%" stop-color="%233b82f6" stop-opacity="0.02"/><stop offset="100%" stop-color="%232563eb" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="150" fill="url(%23page-hero-bg)"/><circle cx="800" cy="400" r="120" fill="url(%23page-hero-bg)"/><circle cx="400" cy="800" r="100" fill="url(%23page-hero-bg)"/></svg>');
    background-size: cover;
    pointer-events: none;
}

.page-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.page-hero-title {
    color: black !important;
}

.page-hero-subtitle {
    color: var(--gray-700) !important;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #dc2626, #fbbf24, #000000, #dc2626, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.125rem;
    text-align: center;
    color: black;
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* Enhanced Services Section */
.services-section {
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="services-bg" cx="50%" cy="50%"><stop offset="0%" stop-color="%233b82f6" stop-opacity="0.02"/><stop offset="100%" stop-color="%232563eb" stop-opacity="0"/></radialGradient></defs><circle cx="150" cy="150" r="100" fill="url(%23services-bg)"/><circle cx="850" cy="300" r="120" fill="url(%23services-bg)"/><circle cx="300" cy="800" r="80" fill="url(%23services-bg)"/></svg>');
    background-size: cover;
    pointer-events: none;
}

.section-description-enhanced {
    position: relative;
    z-index: 2;
    margin-top: 2rem;
}

.lead-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.languages-showcase {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    backdrop-filter: blur(10px);
}

.languages-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
}

.language-tag {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
}

.language-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.language-tag:last-child {
    background: linear-gradient(135deg, #16a34a, #15803d);
    font-weight: 700;
}

.features-highlight {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.feature-highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(22, 163, 74, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(22, 163, 74, 0.2);
    font-weight: 600;
    color: #16a34a;
    transition: all 0.3s ease;
}

.feature-highlight-item:hover {
    background: rgba(22, 163, 74, 0.15);
    transform: translateY(-2px);
}

.feature-highlight-item .material-icons {
    font-size: 1.1rem;
}

/* Enhanced Service Cards */
.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 1px solid rgba(59, 130, 246, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 40px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.2);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2.2rem;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.service-icon .material-icons {
    color: white !important;
}

.service-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--gray-900);
    line-height: 1.3;
}

.service-card p {
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1rem;
}

.service-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.service-link:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

/* Enhanced Features Section */
.features-section {
    position: relative;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="features-bg" cx="50%" cy="50%"><stop offset="0%" stop-color="%2316a34a" stop-opacity="0.02"/><stop offset="100%" stop-color="%2315803d" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="120" fill="url(%23features-bg)"/><circle cx="800" cy="400" r="100" fill="url(%23features-bg)"/><circle cx="400" cy="800" r="80" fill="url(%23features-bg)"/></svg>');
    background-size: cover;
    pointer-events: none;
}

/* Enhanced Feature Cards */
.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 1px solid rgba(22, 163, 74, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #16a34a, #15803d);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 40px rgba(22, 163, 74, 0.15);
    border-color: rgba(22, 163, 74, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #16a34a, #15803d);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(22, 163, 74, 0.4);
}

.feature-icon .material-icons {
    color: white !important;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--gray-900);
    line-height: 1.3;
}

.feature-card p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.feature-link {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(22, 163, 74, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.8);
}

.feature-card:hover .feature-link {
    opacity: 1;
    transform: scale(1);
    background: #16a34a;
}

.feature-link .material-icons {
    font-size: 1.2rem;
    color: #16a34a;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-link .material-icons {
    color: white;
}

/* Enhanced VEVO Section */
.vevo-section {
    position: relative;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    overflow: hidden;
}

.vevo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="vevo-bg" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ef4444" stop-opacity="0.02"/><stop offset="100%" stop-color="%23dc2626" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="150" fill="url(%23vevo-bg)"/><circle cx="800" cy="400" r="120" fill="url(%23vevo-bg)"/><circle cx="400" cy="800" r="100" fill="url(%23vevo-bg)"/></svg>');
    background-size: cover;
    pointer-events: none;
}

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

.vevo-features-highlight {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
    justify-content: center;
}

.vevo-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(239, 68, 68, 0.2);
    font-weight: 600;
    color: #ef4444;
    transition: all 0.3s ease;
}

.vevo-feature-item:hover {
    background: rgba(239, 68, 68, 0.15);
    transform: translateY(-2px);
}

.vevo-feature-item .material-icons {
    font-size: 1.1rem;
}

.vevo-benefits {
    margin: 2rem 0;
}

.vevo-benefit-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(239, 68, 68, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    height: 100%;
}

.vevo-benefit-card:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    border-color: rgba(239, 68, 68, 0.2);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.15);
}

.vevo-benefit-card .benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
    flex-shrink: 0;
}

.vevo-benefit-card .benefit-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.vevo-benefit-card .benefit-content p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0;
    font-weight: 500;
}

.vevo-stats {
    margin: 2rem 0;
}

.vevo-stat-item {
    position: relative;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(239, 68, 68, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    backdrop-filter: blur(10px);
}

.vevo-stat-item:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    border-color: rgba(239, 68, 68, 0.2);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.15);
}

.vevo-stat-item .stat-icon {
    position: absolute;
    top: -12px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: white;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.vevo-stat-item .stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ef4444;
    margin-bottom: 0.5rem;
}

.vevo-stat-item .stat-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vevo-preview-container {
    position: relative;
}

.vevo-visual img {
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(239, 68, 68, 0.15);
    transition: transform 0.3s ease;
    width: 100%;
}

.vevo-visual img:hover {
    transform: scale(1.02);
}

.vevo-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0.75rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.1);
    animation: float 3s ease-in-out infinite;
    font-size: 0.85rem;
}

.floating-element:nth-child(1) {
    top: 15%;
    right: -10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    bottom: 35%;
    left: -15%;
    animation-delay: 1s;
}

.floating-element:nth-child(3) {
    top: 65%;
    right: -5%;
    animation-delay: 2s;
}

.floating-element .material-icons {
    font-size: 1rem;
}

.vevo-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Enhanced Platforms Section */
.platforms-section {
    position: relative;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    overflow: hidden;
}

.platforms-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="platforms-bg" cx="50%" cy="50%"><stop offset="0%" stop-color="%23f59e0b" stop-opacity="0.02"/><stop offset="100%" stop-color="%23d97706" stop-opacity="0"/></radialGradient></defs><circle cx="250" cy="250" r="150" fill="url(%23platforms-bg)"/><circle cx="750" cy="500" r="120" fill="url(%23platforms-bg)"/><circle cx="400" cy="750" r="100" fill="url(%23platforms-bg)"/></svg>');
    background-size: cover;
    pointer-events: none;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.platform-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(245, 158, 11, 0.1);
    position: relative;
    overflow: hidden;
}

.platform-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.platform-item:hover::before {
    transform: scaleX(1);
}

.platform-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 40px rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.2);
}

.platform-item:hover .platform-logo img {
    transform: scale(1.1);
}

.platform-logo {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    padding: 10px;
    background: rgba(245, 158, 11, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(245, 158, 11, 0.1);
}

.platform-item:hover .platform-logo {
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.2);
}

.platform-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    border-radius: 8px;
}

.platform-item span {
    font-weight: 700;
    color: var(--gray-700);
    text-align: center;
    font-size: 1rem;
}

/* Enhanced Caller Tune Section */
.caller-tune-section {
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    overflow: hidden;
}

.caller-tune-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="caller-bg" cx="50%" cy="50%"><stop offset="0%" stop-color="%23f59e0b" stop-opacity="0.02"/><stop offset="100%" stop-color="%23d97706" stop-opacity="0"/></radialGradient></defs><circle cx="150" cy="300" r="100" fill="url(%23caller-bg)"/><circle cx="850" cy="600" r="120" fill="url(%23caller-bg)"/><circle cx="500" cy="150" r="80" fill="url(%23caller-bg)"/></svg>');
    background-size: cover;
    pointer-events: none;
}

.caller-tune-content {
    position: relative;
    z-index: 2;
}

.caller-tune-benefits {
    margin: 2rem 0;
}

.caller-tune-benefits .benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-weight: 500;
    color: var(--gray-700);
    padding: 0.75rem 1rem;
    background: rgba(245, 158, 11, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(245, 158, 11, 0.1);
}

.caller-tune-benefits .benefit-item:hover {
    background: rgba(245, 158, 11, 0.1);
    transform: translateX(5px);
    border-color: rgba(245, 158, 11, 0.2);
}

.caller-tune-benefits .benefit-item .material-icons {
    font-size: 1.25rem;
    color: #f59e0b;
}

.caller-tune-stats .stat-item {
    position: relative;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(245, 158, 11, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    backdrop-filter: blur(10px);
}

.caller-tune-stats .stat-item:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    border-color: rgba(245, 158, 11, 0.2);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.15);
}

.caller-tune-stats .stat-item .stat-icon {
    position: absolute;
    top: -12px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: white;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.caller-tune-stats .stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #f59e0b;
    margin-bottom: 0.5rem;
}

.caller-tune-stats .stat-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.network-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.network-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(245, 158, 11, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.network-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.network-item:hover::before {
    transform: scaleX(1);
}

.network-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.2);
}

.network-logo {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(245, 158, 11, 0.05);
    border: 1px solid rgba(245, 158, 11, 0.1);
    transition: all 0.3s ease;
}

.network-item:hover .network-logo {
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.2);
}

.network-logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.network-item:hover .network-logo img {
    transform: scale(1.1);
}

.network-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.network-name {
    font-weight: 700;
    color: var(--gray-900);
    font-size: 1.1rem;
}

.network-users {
    font-weight: 600;
    color: #f59e0b;
    font-size: 0.9rem;
}

/* CTA Section - Redesigned - v2.1 */
.cta-section {
    background: linear-gradient(135deg, #8b0000 0%, #dc143c 30%, #d4af37 60%, #b8860b 100%);
    position: relative;
    overflow: hidden;
    padding: 40px 0 !important;
    margin: 0 !important;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
    background-size: cover;
}

.cta-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* Enhanced CTA Section Styles */
.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.cta-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

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

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.cta-benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 500;
}

.cta-benefit-item .material-icons {
    font-size: 20px;
    color: #ffeb3b;
}

.cta-trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
    color: white;
}

.trust-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffeb3b;
}

.trust-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.lead-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions .btn {
    margin: 0.5rem;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Footer */
.footer-section {
    background: var(--gray-900);
    color: var(--gray-300);
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-logo {
    height: 40px;
    width: auto;
    filter: brightness(1) invert(0);
}

.footer-description {
    color: var(--gray-400);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-stats {
    display: flex;
    gap: 2rem;
}

.footer-title {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: var(--transition-fast);
}

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

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--gray-800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-legal a {
    color: var(--gray-400);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--white);
}

/* Footer copyright and legal text styling */
.footer-section .text-muted {
    color: var(--gray-300) !important;
}

.footer-section .text-muted:hover {
    color: var(--white) !important;
}

/* Buttons */
.btn {
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 48px; /* Standardized minimum height */
    min-width: 120px; /* Standardized minimum width */
    font-size: 1rem;
    line-height: 1.5;
    cursor: pointer;
    pointer-events: auto;
    z-index: 10;
}

.btn-primary {
    background: linear-gradient(135deg, #16a34a, #15803d);
    border-color: #16a34a;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #15803d, #166534);
    border-color: #15803d;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.4);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-light {
    background: var(--white);
    color: var(--gray-900);
}

.btn-light:hover {
    background: var(--gray-100);
    color: var(--gray-900);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--gray-900);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    min-height: 56px; /* Larger minimum height for lg buttons */
    min-width: 140px; /* Larger minimum width for lg buttons */
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    min-height: 40px; /* Smaller minimum height for sm buttons */
    min-width: 100px; /* Smaller minimum width for sm buttons */
}

/* Form Buttons - Standardized sizing */
.form-actions .btn {
    min-height: 48px;
    min-width: 120px;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
}

/* Standardized Hero and CTA Buttons - Match navbar apply button */
.hero-actions .btn,
.cta-actions .btn,
.vevo-actions .btn,
.caller-tune-actions .btn,
.pricing-actions .btn {
    font-weight: 600;
    border-radius: 25px;
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    min-height: 48px;
    min-width: 120px;
    cursor: pointer;
    pointer-events: auto;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.hero-actions .btn i,
.cta-actions .btn i,
.vevo-actions .btn i,
.caller-tune-actions .btn i,
.pricing-actions .btn i {
    font-size: 0.85rem;
}

/* Additional button interactivity */
.hero-actions .btn,
.cta-actions .btn,
.vevo-actions .btn,
.caller-tune-actions .btn,
.pricing-actions .btn {
    z-index: 10;
}

/* CTA Button Standardization */
.cta-section .cta-actions .btn {
    font-size: 0.9rem;
    padding: 0.6rem 1.5rem;
    min-height: 48px;
    min-width: 120px;
    border-radius: 25px;
    margin: 5px 8px;
}

/* Badges */
.badge {
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.badge .material-icons {
    font-size: 1rem !important;
    line-height: 1;
    vertical-align: middle;
}

.bg-primary-subtle {
    background-color: rgba(37, 99, 235, 0.1);
}

.bg-danger-subtle {
    background-color: rgba(239, 68, 68, 0.1);
}

.bg-success-subtle {
    background-color: rgba(16, 185, 129, 0.1);
}

.bg-warning-subtle {
    background-color: rgba(245, 158, 11, 0.1);
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-danger {
    color: var(--danger-color) !important;
}

.text-success {
    color: var(--success-color) !important;
}

.text-warning {
    color: var(--warning-color) !important;
}

/* Responsive Design */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
        margin-top: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .hero-image {
        margin-top: 2rem;
    }
    
    .vevo-content,
    .caller-tune-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .vevo-benefits .col-md-6 {
        margin-bottom: 0.5rem;
    }
    
    .vevo-benefit-card {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .vevo-benefit-card .benefit-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .vevo-benefit-card .benefit-content h4 {
        font-size: 1rem;
    }
    
    .vevo-benefit-card .benefit-content p {
        font-size: 0.85rem;
    }
    
    .vevo-features-highlight {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    .vevo-feature-item {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .vevo-stats .vevo-stat-item {
        padding: 1rem;
    }
    
    .vevo-stats .vevo-stat-item .stat-icon {
        width: 24px;
        height: 24px;
        top: -8px;
        right: 10px;
        font-size: 0.7rem;
    }
    
    .floating-element {
        font-size: 0.75rem;
        padding: 0.4rem 0.6rem;
    }
    
    .network-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Mobile Navigation - 2 columns */
    .navbar-nav {
        background: var(--white);
        border-radius: var(--radius-lg);
        padding: 1rem;
        margin-top: 1rem;
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .navbar-nav .nav-item {
        margin: 0;
    text-align: center;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 0.5rem;
        border-radius: var(--radius-md);
        transition: var(--transition-fast);
    font-size: 0.9rem;
    }
    
    .navbar-nav .nav-link:hover {
        background: var(--gray-50);
    }
    
    /* Full width for button items */
    .navbar-nav .nav-item-btn {
        grid-column: 1 / -1;
        margin-top: 0.5rem;
    }
    
    .navbar-nav .nav-item-btn .btn {
    width: 100%;
        margin: 0.25rem 0;
    }
}

@media (max-width: 767.98px) {
    .navbar-brand {
        gap: 0.6rem;
    }
    
    .version-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
        border-radius: 12px;
        letter-spacing: 0.3px;
    }
    
    .hero-section {
        min-height: 60vh;
        padding: 85px 0 50px; /* Added small spacing to prevent header overlap */
    }
    
    .hero-content {
        margin-top: 1.5rem; /* Reduced spacing on mobile */
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 1rem;
        justify-content: center;
    }
    
    .hero-stats .stat-item {
        padding: 1rem;
        min-width: 100px;
    }
    
    .hero-stats .stat-item .stat-icon {
        width: 24px;
        height: 24px;
        top: -8px;
        right: 10px;
        font-size: 0.7rem;
    }
    
    .hero-features {
        gap: 1rem;
        justify-content: center;
    }
    
    .hero-feature-item {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .hero-languages {
        padding: 1rem;
        margin: 1.5rem 0;
    }
    
    .hero-language-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .hero-lead-text {
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
    
    /* Hide floating stats on mobile */
    .floating-stats {
        display: none;
    }
    
    /* Hide VEVO floating elements on mobile */
    .vevo-floating-elements {
        display: none;
    }
    
    .vevo-benefit-card {
        padding: 0.8rem;
        gap: 0.6rem;
        flex-direction: column;
        text-align: center;
    }
    
    .vevo-benefit-card .benefit-icon {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
    
    .vevo-benefit-card .benefit-content h4 {
        font-size: 0.9rem;
    }
    
    .vevo-benefit-card .benefit-content p {
        font-size: 0.8rem;
    }
    
    .vevo-features-highlight {
        gap: 0.75rem;
    }
    
    .vevo-feature-item {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
        width: fit-content;
    }
    
    .vevo-stats .vevo-stat-item {
        padding: 0.8rem;
    }
    
    .vevo-stats .vevo-stat-item .stat-icon {
        width: 20px;
        height: 20px;
        top: -6px;
        right: 8px;
        font-size: 0.6rem;
    }
    
    .vevo-stats .vevo-stat-item .stat-number {
        font-size: 1.4rem;
    }
    
    .vevo-stats .vevo-stat-item .stat-label {
        font-size: 0.8rem;
    }
    
    .hero-actions {
        flex-direction: row;
        justify-content: center;
        gap: 0.75rem;
    }
    
    .hero-actions .btn {
        width: auto;
        flex: 1;
        max-width: 160px;
        font-size: 0.9rem;
        padding: 0.6rem 1.5rem; /* Match navbar button */
        min-height: 48px;
        min-width: 120px;
        border-radius: 25px; /* Match navbar button */
    }
    
    .vevo-actions,
    .caller-tune-actions {
        flex-direction: row;
        justify-content: center;
        gap: 0.75rem;
    }
    
    .vevo-actions .btn,
    .caller-tune-actions .btn {
        width: auto;
        flex: 1;
        max-width: 140px;
        font-size: 0.9rem;
        padding: 0.6rem 1.5rem; /* Match navbar button */
        min-height: 48px;
        min-width: 120px;
        border-radius: 25px; /* Match navbar button */
    }
    
    .cta-actions {
        flex-direction: row;
        justify-content: center;
        gap: 0.75rem;
    }
    
    .cta-actions .btn {
        flex: 1;
        max-width: 160px;
    }
    
    .platforms-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .platform-item {
        padding: 1.5rem;
    }
    
    .platform-logo {
        width: 50px;
        height: 50px;
    }
    
    .network-showcase {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .network-item {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .network-logo {
        width: 50px;
        height: 50px;
    }
    
    .network-logo img {
        height: 30px;
    }
    
    .caller-tune-benefits .benefit-item {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .caller-tune-stats .stat-item {
        padding: 1rem;
    }
    
    .caller-tune-stats .stat-item .stat-icon {
        width: 24px;
        height: 24px;
        top: -8px;
        right: 10px;
        font-size: 0.7rem;
    }
    
    .network-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .network-item {
    padding: 1rem;
    }
    
    .network-item img {
        height: 40px;
        margin-bottom: 0.5rem;
    }
    
    .network-item span {
        font-size: 0.75rem;
    }
    
    .footer-stats {
        justify-content: center;
        gap: 1rem;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    /* Footer mobile layout - 2x2 grid */
    .footer-section .row.g-4 {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 2rem 1rem;
    }
    
    .footer-section .col-lg-4 {
        grid-column: 1 / -1 !important;
        order: 1 !important;
        margin-bottom: 1rem;
    }
    
    /* Services - Position 1 (top left) */
    .footer-section .col-lg-2:nth-child(2) {
        order: 2 !important;
        grid-column: 1 !important;
        grid-row: 2 !important;
    }
    
    /* Company - Position 2 (top right) */
    .footer-section .col-lg-2:nth-child(3) {
        order: 3 !important;
        grid-column: 2 !important;
        grid-row: 2 !important;
    }
    
    /* Support - Position 3 (bottom left) */
    .footer-section .col-lg-2:nth-child(4) {
        order: 4 !important;
        grid-column: 1 !important;
        grid-row: 3 !important;
    }
    
    /* Follow Us - Position 4 (bottom right) */
    .footer-section .col-lg-2:nth-child(5) {
        order: 5 !important;
        grid-column: 2 !important;
        grid-row: 3 !important;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        min-height: 50vh;
        padding: 75px 0 40px; /* Added small spacing to prevent header overlap on small mobile */
    }
    
    .hero-content {
        margin-top: 1rem; /* Further reduced spacing on small mobile */
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 0.75rem;
        text-align: center;
        justify-content: center;
    }
    
    .hero-stats .stat-item {
        padding: 0.75rem;
        min-width: 80px;
    }
    
    .hero-stats .stat-item .stat-icon {
        width: 20px;
        height: 20px;
        top: -6px;
        right: 8px;
        font-size: 0.6rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
    
    .hero-feature-item {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        width: fit-content;
    }
    
    .hero-languages {
        padding: 0.75rem;
        margin: 1rem 0;
    }
    
    .hero-language-tag {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
    
    .hero-lead-text {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 1.1rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    /* Ensure floating stats are hidden on small mobile */
    .floating-stats {
        display: none !important;
    }
    
    .hero-actions {
        margin-top: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .hero-image {
        margin-top: 2.5rem;
    }
    
    .hero-actions .btn {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem; /* Match navbar mobile style */
        max-width: 140px;
        min-height: 44px;
        min-width: 110px;
        border-radius: 25px; /* Match navbar button */
    }
    
    .vevo-actions .btn,
    .caller-tune-actions .btn {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem; /* Match navbar mobile style */
        max-width: 120px;
        min-height: 44px;
        min-width: 110px;
        border-radius: 25px; /* Match navbar button */
    }
    
    .cta-actions .btn {
        max-width: 140px;
        font-size: 0.85rem;
        padding: 0.5rem 1.2rem;
        min-height: 44px;
        min-width: 110px;
    }
    
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .platform-item {
        padding: 1.2rem;
    }
    
    .platform-logo {
        width: 45px;
        height: 45px;
    }
    
    .network-item {
        padding: 1rem;
        gap: 0.75rem;
        flex-direction: column;
        text-align: center;
    }
    
    .network-logo {
        width: 45px;
        height: 45px;
    }
    
    .network-logo img {
        height: 25px;
    }
    
    .network-name {
        font-size: 1rem;
    }
    
    .network-users {
        font-size: 0.8rem;
    }
    
    .caller-tune-benefits .benefit-item {
        padding: 0.5rem 0.7rem;
        font-size: 0.85rem;
    }
    
    .caller-tune-stats .stat-item {
        padding: 0.8rem;
    }
    
    .caller-tune-stats .stat-item .stat-icon {
        width: 20px;
        height: 20px;
        top: -6px;
        right: 8px;
        font-size: 0.6rem;
    }
    
    .caller-tune-stats .stat-number {
        font-size: 1.4rem;
    }
    
    .caller-tune-stats .stat-label {
        font-size: 0.8rem;
    }
    
    .platform-item {
        padding: 1rem;
    }
    
    .platform-logo {
        width: 40px;
        height: 40px;
    }
    
    .platform-item span {
        font-size: 0.8rem;
    }
    
    .service-card,
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
    }
    
    .feature-link {
        width: 35px;
        height: 35px;
        bottom: 15px;
        right: 15px;
    }
    
    .feature-link .material-icons {
        font-size: 1rem;
    }
    
    /* Services Section Mobile */
    .languages-showcase {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .language-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .features-highlight {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    .feature-highlight-item {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.4rem;
    }
    
    .lead-text {
        font-size: 1.1rem;
    }
    
    /* Footer mobile layout - 2x2 grid for small mobile */
    .footer-section .row.g-4 {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 1.5rem 0.75rem;
    }
    
    .footer-section .col-lg-4 {
        grid-column: 1 / -1 !important;
        order: 1 !important;
        margin-bottom: 1rem;
    }
    
    /* Services - Position 1 (top left) */
    .footer-section .col-lg-2:nth-child(2) {
        order: 2 !important;
        grid-column: 1 !important;
        grid-row: 2 !important;
    }
    
    /* Company - Position 2 (top right) */
    .footer-section .col-lg-2:nth-child(3) {
        order: 3 !important;
        grid-column: 2 !important;
        grid-row: 2 !important;
    }
    
    /* Support - Position 3 (bottom left) */
    .footer-section .col-lg-2:nth-child(4) {
        order: 4 !important;
        grid-column: 1 !important;
        grid-row: 3 !important;
    }
    
    /* Follow Us - Position 4 (bottom right) */
    .footer-section .col-lg-2:nth-child(5) {
        order: 5 !important;
        grid-column: 2 !important;
        grid-row: 3 !important;
    }
}

/* Enhanced CTA Section Responsive Styles */
@media (max-width: 991.98px) {
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-benefits {
        gap: 1rem;
    }
    
    .cta-trust-indicators {
        gap: 1rem;
    }
    
    .trust-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-benefits {
        gap: 1rem;
    }
    
    .cta-trust-indicators {
        gap: 1rem;
    }
    
    .trust-number {
        font-size: 1.5rem;
    }
    
    .cta-actions .btn {
        margin: 0.25rem;
        padding: 0.75rem 1.5rem;
    }
}

/* Animation Classes */
.fade-in {
        opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
    }

.fade-in.visible {
        opacity: 1;
        transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease-out;
}

.slide-in-left.visible {
        opacity: 1;
    transform: translateX(0);
    }

.slide-in-right {
        opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease-out;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Utility Classes */
.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

.bg-white {
    background-color: var(--white) !important;
}

.shadow-sm {
    box-shadow: var(--shadow-sm) !important;
}

.shadow-md {
    box-shadow: var(--shadow-md) !important;
}

.shadow-lg {
    box-shadow: var(--shadow-lg) !important;
}

.shadow-xl {
    box-shadow: var(--shadow-xl) !important;
}

.rounded-4 {
    border-radius: var(--radius-xl) !important;
}

.rounded-pill {
    border-radius: 50rem !important;
}

/* CSS Updated: Mon Sep 22 18:27:57 IST 2025 */
/* Material Icons Alignment Fixed - Tue Sep 23 12:16:07 IST 2025 */
/* Sections & Icons Fixed - Tue Sep 23 12:20:12 IST 2025 */
/* CSS Issues Fixed - Tue Sep 23 12:25:40 IST 2025 */


/* Float animation for VEVO elements */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}
