:root {
    --primary: #f9633d;
    --primary-dark: #f9633d;
    --secondary: #f9633d;
    --accent: #06b6d4;
    --background: #f8fafc;
    --text-dark: #1e293b;
    --text-light: #64748b;
}

.product-card {
    border: none;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    height: 200px;
    object-fit: cover;
}

.price-section {
    font-size: 1.1rem;
}

.price-section small {
    font-size: 0.9rem;
    margin-left: 8px;
}

.rating {
    font-size: 0.9rem;
}

.rating .fa-star {
    font-size: 0.8rem;
}

/* Product Quick View Modal */
.modal-body img {
    max-width: 100%;
    height: auto;
}

.descriptive-images img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.descriptive-images img:hover {
    border-color: #ff6b6b;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1030;
    padding: 1rem 0;
    background: transparent;
    transform: translateY(0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 0.8rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.nav-link {
    color: #1e293b !important;
    font-weight: 600;
    padding: 0.5rem 1.2rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.nav-link:hover:not(.active) {
    color: var(--primary) !important;
}

.brand-text {
    color: #1e293b;
    font-weight: 700;
    font-size: 1.5rem;
}

.brand-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

/* Cart badge */
.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    font-size: 0.7rem;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Button styles */
.nav-buttons .btn {
    padding: 0.6rem 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.nav-buttons .btn:hover {
    transform: translateY(-2px);
}

.btn {
    padding: 0.6rem 1.5rem;
    font-weight: 500;
    border-radius: 8px;
}

.btn-primary {
    background: linear-gradient(45deg, #f9633d, #f08970);
    border: none;
}

.btn-outline-primary {
    border-color: #f9633d;
    color: #f9633d;
}

.btn-outline-primary:hover {
    background: linear-gradient(45deg, #f9633d, #c67865);
    border-color: transparent;
}

/* Feature Alert */
.feature-alert {
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    z-index: 10;
}

.feature-alert .alert {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(37, 99, 235, 0.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    padding: 0.8rem 2rem;
}

/* Modern Hero Styles */
.modern-hero {
    position: relative;
    min-height: 100vh;
    padding-top: calc(76px + 40px); /* Navbar height + social bar height */
    background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.03) 100%);
}

.hero-content {
    position: relative;
    z-index: 5;
    padding: clamp(2rem, 5vh, 4rem) 1rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-badge {
    margin-bottom: clamp(1.5rem, 4vh, 2.5rem);
}

.badge-text {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    font-weight: 500;
}

.title-wrapper {
    margin-bottom: clamp(2rem, 5vh, 3rem);
}

.mega-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.description-wrapper {
    margin-bottom: clamp(2rem, 5vh, 3rem);
}

.hero-description {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    line-height: 1.8;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    letter-spacing: 0.2px;
}

.sub-description {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: var(--text-light);
    opacity: 0.9;
    font-style: italic;
}

.highlight-text {
    position: relative;
    color: var(--primary);
    font-weight: 600;
    padding: 0 4px;
    transition: all 0.3s ease;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(37, 99, 235, 0.1));
    z-index: -1;
    transform: skewX(-12deg);
    transition: all 0.3s ease;
}

.highlight-text:hover {
    color: var(--secondary);
}

.highlight-text:hover::after {
    height: 100%;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.15), rgba(37, 99, 235, 0.15));
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-description {
        padding: 0 1rem;
        font-size: clamp(0.95rem, 1.6vw, 1.1rem);
    }
    
    .sub-description {
        font-size: clamp(0.85rem, 1.3vw, 1rem);
    }
}

.hero-buttons-wrapper {
    margin-bottom: clamp(2.5rem, 6vh, 4rem);
}

.hero-buttons-wrapper .btn {
    padding: clamp(0.8rem, 2vh, 1.2rem) clamp(1.5rem, 3vw, 2.5rem);
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    white-space: nowrap;
    min-width: min(200px, 90%);
}

.stat-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: clamp(1.5rem, 3vh, 2rem);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.stat-icon {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--primary);
    margin-bottom: clamp(0.5rem, 1vh, 1rem);
}

.stat-number {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: clamp(0.3rem, 1vh, 0.5rem);
}

.stat-label {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    color: var(--text-light);
    font-weight: 500;
}

/* Responsive Breakpoints */
@media (max-width: 1400px) {
    .hero-content {
        max-width: 1140px;
    }
}

@media (max-width: 1200px) {
    .hero-content {
        max-width: 90%;
    }
}

@media (max-width: 992px) {
    .hero-content {
        max-width: 720px;
        padding: 2rem 1rem;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 2rem 1rem;
        text-align: center;
    }
    
    .hero-description {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .stat-card {
        padding: 1.2rem;
    }
}

@media (max-width: 576px) {
    .hero-content {
        padding: 1rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
}

/* Landscape Mode */
@media (max-height: 600px) and (orientation: landscape) {
    .hero-content {
        padding: 5rem 1rem 2rem;
    }
    
    .mega-title {
        font-size: clamp(2rem, 4vw, 3rem);
    }
    
    .hero-description {
        font-size: clamp(1rem, 2.5vw, 1.2rem);
        line-height: 1.6;
    }
    
    .stat-card {
        padding: 0.8rem;
    }
}

/* High Resolution Screens */
@media (min-width: 1600px) {
    .hero-content {
        max-width: 1500px;
    }
    
    .mega-title {
        font-size: clamp(3.5rem, 5vw, 5rem);
    }
}

.hero-shape-1,
.hero-shape-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
}

.hero-shape-1 {
    background: var(--primary);
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    opacity: 0.1;
}

.hero-shape-2 {
    background: var(--secondary);
    width: 500px;
    height: 500px;
    bottom: -200px;
    left: -200px;
    opacity: 0.1;
}

/* Features Section */
.features {
    background: white;
    padding: 6rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    text-align: center;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-content {
        text-align: center;
        padding: 3rem 1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .nav-buttons {
        margin-top: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
}

.hero-title h1 {
    font-weight: 800;
    letter-spacing: -1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.text-light-gray {
    color: rgba(255, 255, 255, 0.9);
}

.hero-cta .btn {
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.hero-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.hero-cta .btn-primary {
    background: linear-gradient(45deg, #ff6b6b, #c17676);
    border: none;
}

.hero-cta .btn-outline-light {
    border-width: 2px;
}

.hero-stats {
    margin-top: 4rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: clamp(1rem, 2vw, 1.5rem);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    font-size: 2rem;
    color: #ff6b6b;
    margin-bottom: 1rem;
    background: rgba(13, 110, 253, 0.1);
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    margin: 0 auto 1rem;
}

.stat-number {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    color: var(--text-light);
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-title h1 {
        font-size: 4rem;
    }
}

@media (max-width: 992px) {
    .hero-title h1 {
        font-size: 3.5rem;
    }
    
    .hero-description {
        font-size: 1.15rem;
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .hero-title h1 {
        font-size: 2.8rem;
    }
    
    .hero-buttons .btn {
        padding: 0.8rem 2rem;
        width: auto;
        min-width: 200px;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hero-title h1 {
        font-size: 2.3rem;
    }
    
    .hero-badge .badge {
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem !important;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
}

/* Cart Styles */
.cart-count {
    font-size: 0.75rem;
}

.cart-item {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.cart-item:hover {
    transform: translateY(-2px);
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-controls button {
    width: 30px;
    height: 30px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Cart Icon Styles */
.cart-icon-wrapper {
    position: relative;
    padding: 8px;
    transition: all 0.3s ease;
}

.cart-icon-wrapper:hover {
    transform: translateY(-2px);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    padding: 2px;
    min-width: 18px;
    height: 18px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.btn-dark {
    background: linear-gradient(to right, #1e293b, #334155);
    border: none;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    background: linear-gradient(to right, #334155, #1e293b);
}

.btn-link {
    text-decoration: none;
}

/* Navbar not scrolled state */
.navbar:not(.scrolled) .cart-icon-wrapper {
    color: #1e293b;
}

.navbar:not(.scrolled) .cart-badge {
    border-color: transparent;
}

/* Navbar scrolled state */
.navbar.scrolled .cart-icon-wrapper {
    color: #1e293b;
}

.navbar.scrolled .cart-badge {
    border-color: #fff;
}

/* Update/Add these styles */

/* Cart Icon Styles */
.cart-btn {
    background: transparent;
    border: none;
    position: relative;
    transition: all 0.3s ease;
}

.cart-icon-wrapper {
    font-size: 1.2rem;
    color: #1e293b;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cart-icon-wrapper:hover {
    transform: translateY(-2px);
    color: var(--primary);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 50%;
    padding: 2px;
    min-width: 18px;
    height: 18px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Login Button Styles */
.btn-custom-login {
    background: linear-gradient(135deg, #ff6b6b, #c08080);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(99, 102, 241, 0.2);
}

.btn-custom-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    background: linear-gradient(135deg, #ff6b6b, #c08080);
    color: white;
}

/* Navbar not scrolled state */
.navbar:not(.scrolled) .cart-icon-wrapper {
    color: #1e293b;
}

/* Navbar scrolled state */
.navbar.scrolled .cart-icon-wrapper {
    color: #1e293b;
}

.navbar.scrolled .btn-custom-login {
    background: linear-gradient(135deg, #ff6b6b, #c08080);
}

/* Add/Update these mobile menu styles */
.navbar-toggler {
    color: #1e293b;
    font-size: 1.5rem;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: none;
}

@media (max-width: 991.98px) {
    .mobile-menu {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 1rem;
        border-radius: 0 0 1rem 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .navbar-nav {
        padding: 1rem 0;
    }

    .nav-item {
        margin: 0.5rem 0;
    }

    .nav-link {
        padding: 0.8rem 1.5rem !important;
        border-radius: 0.5rem;
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        background: rgba(99, 102, 241, 0.1);
    }

    .nav-link.active {
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        color: white !important;
        -webkit-text-fill-color: white !important;
    }

    .nav-buttons {
        flex-direction: column;
        width: 100%;
        padding-top: 1rem;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .cart-btn {
        width: auto !important;
    }

    .cart-icon-wrapper {
        background: rgba(99, 102, 241, 0.1);
        padding: 0.8rem;
        border-radius: 0.5rem;
    }
}

/* Navbar not scrolled state mobile adjustments */
.navbar:not(.scrolled) .navbar-toggler {
    color: #1e293b;
}

/* Scrolled state mobile adjustments */
.navbar.scrolled .mobile-menu {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

/* Add/Update these responsive hero styles */
.hero-content {
    padding: clamp(2rem, 5vh, 4rem) clamp(1rem, 3vw, 2rem);
    max-width: min(90%, 1200px);
    margin: 0 auto;
}

.hero-badge {
    margin-bottom: clamp(1.5rem, 4vh, 2.5rem);
}

.badge-text {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    font-weight: 500;
}

.mega-title {
    font-size: clamp(2rem, 5vw, 4.5rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: clamp(1rem, 3vh, 2rem);
}

.dynamic-text-wrapper {
    height: clamp(50px, 10vh, 80px);
    overflow: hidden;
    margin: clamp(1rem, 3vh, 2rem) 0;
}

.dynamic-text {
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    font-weight: 700;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.hero-description {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    line-height: 1.8;
    max-width: min(90%, 700px);
    margin: 0 auto clamp(2rem, 4vh, 3rem);
    opacity: 0.9;
}

.hero-buttons-wrapper .btn {
    padding: clamp(0.8rem, 2vh, 1.2rem) clamp(1.5rem, 3vw, 2.5rem);
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    min-width: clamp(140px, 20vw, 200px);
    transition: all 0.3s ease;
}

.stat-card {
    padding: clamp(1rem, 2.5vh, 2rem);
    border-radius: clamp(0.8rem, 1.5vw, 1.2rem);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-icon-wrapper {
    width: clamp(40px, 8vw, 60px);
    height: clamp(40px, 8vw, 60px);
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
}

.stat-number {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    margin-bottom: clamp(0.3rem, 1vh, 0.5rem);
}

.stat-label {
    font-size: clamp(0.8rem, 1.2vw, 1rem);
}

/* Extra Small Devices */
@media (max-width: 575.98px) {
    .hero-content {
        padding: 1.5rem 1rem;
    }
    
    .mega-title {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
    }
    
    .dynamic-text-wrapper {
        height: clamp(40px, 8vh, 50px);
    }
    
    .hero-buttons-wrapper .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .stat-card {
        padding: 1rem;
    }
}

/* Small Devices */
@media (min-width: 576px) and (max-width: 767.98px) {
    .hero-content {
        padding: 2rem 1rem;
    }
}

/* Medium Devices */
@media (min-width: 768px) and (max-width: 991.98px) {
    .hero-content {
        padding: 2.5rem 1rem;
    }
}

/* Large Devices */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .hero-content {
        padding: 3rem 1rem;
    }
}

/* Extra Large Devices */
@media (min-width: 1200px) {
    .hero-content {
        padding: 4rem 1rem;
    }
}

/* Landscape Mode */
@media (max-height: 600px) and (orientation: landscape) {
    .hero-content {
        padding: 1rem;
    }
    
    .dynamic-text-wrapper {
        height: clamp(35px, 15vh, 45px);
    }
    
    .stat-card {
        padding: 0.8rem;
    }
}

/* Enhanced Text Styles */
.highlight-text {
    color: var(--primary);
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
}

.dynamic-text-wrapper {
    height: 80px;
    overflow: hidden;
    position: relative;
}

.dynamic-text-container {
    position: relative;
}

.dynamic-text {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    font-size: clamp(2rem, 4vw, 3.5rem);
}

.dynamic-text.active {
    opacity: 1;
    transform: translateY(0);
}

.dynamic-text i {
    transform: scale(0);
    transition: transform 0.3s ease;
}

.dynamic-text.active i {
    transform: scale(1);
}

/* Enhanced Button Styles */
.btn-glow {
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border: none;
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: rotate(45deg);
    animation: glow 2s linear infinite;
}

@keyframes glow {
    0% { transform: translate(-50%, -50%) rotate(45deg); }
    100% { transform: translate(50%, 50%) rotate(45deg); }
}

/* Enhanced Stats Styles */
.stat-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(99, 102, 241, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon-wrapper {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Enhanced Text Gradients */
.text-gradient-primary {
    background: linear-gradient(135deg, #ff6b6b, #c08080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-secondary {
    background: linear-gradient(135deg, #ff6b6b, #60A5FA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced Highlight Text */
.highlight-text {
    position: relative;
    color: var(--primary);
    font-weight: 600;
    padding: 0 4px;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(37, 99, 235, 0.1));
    z-index: -1;
    transform: skewX(-12deg);
}

/* Enhanced Dynamic Text Animation */
.dynamic-text {
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    font-weight: 700;
    opacity: 0;
    transform: translateY(20px) rotateX(45deg);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dynamic-text.active {
    opacity: 1;
    transform: translateY(0) rotateX(0);
}

/* Enhanced Stats Cards */
.stat-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: clamp(1rem, 2.5vh, 2rem);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Enhanced Responsive Styles */
@media (max-width: 768px) {
    .mega-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    
    .dynamic-text {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }
    
    .hero-description {
        font-size: clamp(1rem, 2.5vw, 1.2rem);
        padding: 0 1rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-badge .badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .highlight-text::after {
        height: 20%;
    }
    
    .hero-buttons-wrapper .btn {
        width: 100%;
        max-width: 250px;
    }
}

/* Enhanced Animation Keyframes */
@keyframes floatAnimation {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.stat-icon-wrapper {
    animation: floatAnimation 3s ease-in-out infinite;
}

/* Add these new animation styles */
@keyframes slideInFromBottom {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes textGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Enhanced Text Animations */
.dynamic-text {
    opacity: 0;
    transform: translateY(20px) rotateX(45deg);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    background-size: 200% auto;
    animation: textGradient 5s ease infinite;
}

.dynamic-text.active {
    opacity: 1;
    transform: translateY(0) rotateX(0);
}

.word {
    display: inline-block;
    opacity: 0;
    animation: slideInFromBottom 0.5s forwards;
}

.stat-number {
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stat-number.animate-stat {
    opacity: 1;
    transform: scale(1);
}

.stat-card {
    animation: floatUpDown 3s ease-in-out infinite;
    animation-delay: calc(var(--animation-order) * 0.2s);
}

/* Enhanced Responsive Styles */
@media (max-width: 1200px) {
    .mega-title {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
    }
    
    .dynamic-text {
        font-size: clamp(2rem, 4vw, 3rem);
    }
}

@media (max-width: 992px) {
    .hero-content {
        padding: clamp(2rem, 5vh, 3rem) 1rem;
    }
    
    .stat-card {
        transform: scale(0.95);
    }
}

@media (max-width: 768px) {
    .mega-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }
    
    .dynamic-text {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }
    
    .hero-description {
        font-size: clamp(1rem, 2.5vw, 1.2rem);
        line-height: 1.6;
    }
}

@media (max-width: 576px) {
    .hero-content {
        padding: 1.5rem 1rem;
    }
    
    .stat-card {
        margin-bottom: 1rem;
    }
    
    .hero-buttons-wrapper .btn {
        width: 100%;
        max-width: 250px;
        margin: 0.5rem auto;
    }
}

/* Add smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Optimize animations for reduced motion */
@media (prefers-reduced-motion: reduce) {
    .animate__animated {
        animation: none !important;
        transition: none !important;
    }
    
    .stat-card {
        animation: none !important;
    }
}

/* Enhanced loading performance */
.hero-section {
    content-visibility: auto;
    contain-intrinsic-size: 700px;
}

/* Add these mobile-specific styles */
@media (max-width: 768px) {
    .hero-content {
        padding: 1rem;
        margin-top: 4rem;
    }

    .mobile-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem !important;
    }

    .mobile-title {
        font-size: clamp(1.8rem, 5vw, 2.2rem);
        line-height: 1.3;
        display: block;
        margin-bottom: 0.5rem;
    }

    .dynamic-text {
        font-size: clamp(1.5rem, 4vw, 1.8rem);
    }

    .dynamic-text-wrapper {
        height: clamp(35px, 8vh, 45px);
        margin: 0.8rem 0;
    }

    .mobile-stat-card {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(5px);
        padding: 0.8rem;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

    .mobile-stat-card:active {
        transform: scale(0.95);
    }

    .stat-number-mobile {
        font-size: clamp(1.2rem, 4vw, 1.5rem);
        font-weight: 700;
        line-height: 1;
        margin-bottom: 0.3rem;
    }

    .stat-label-mobile {
        font-size: clamp(0.7rem, 2vw, 0.8rem);
        color: var(--text-light);
    }

    .mobile-btn {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: none;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0.5rem 0;
        border-radius: 10px;
    }

    .btn-primary.mobile-btn {
        background: linear-gradient(45deg, var(--primary), var(--secondary));
        border: none;
        box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
    }

    .btn-outline-dark.mobile-btn {
        border: 2px solid var(--text-dark);
        background: transparent;
    }

    .hero-buttons-wrapper {
        padding: 0 1rem;
    }
}

/* Extra Small Devices */
@media (max-width: 375px) {
    .mobile-title {
        font-size: 1.6rem;
    }

    .dynamic-text {
        font-size: 1.3rem;
    }

    .stat-number-mobile {
        font-size: 1.1rem;
    }

    .stat-label-mobile {
        font-size: 0.65rem;
    }

    .mobile-btn {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }
}

/* Landscape Mode */
@media (max-height: 600px) and (orientation: landscape) {
    .hero-content {
        padding: 4rem 1rem 1rem;
    }

    .mobile-title {
        font-size: 1.6rem;
        margin-bottom: 0.3rem;
    }

    .dynamic-text-wrapper {
        height: 35px;
        margin: 0.5rem 0;
    }

    .mobile-stat-card {
        padding: 0.5rem;
    }

    .mobile-btn {
        padding: 0.6rem 1rem;
    }
}

/* Better Touch Targets for Mobile */
.btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Improved Loading Performance */
.hero-section {
    content-visibility: auto;
    contain-intrinsic-size: 500px;
}

/* Add these simple description animation styles */
.simple-fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
}

.hero-description {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    line-height: 1.8;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto;
}

.highlight {
    color: var(--primary);
    font-weight: 600;
    position: relative;
    display: inline-block;
    opacity: 0;
    animation: fadeInWord 0.5s ease forwards;
}

.highlight:nth-child(1) { animation-delay: 1.2s; }
.highlight:nth-child(2) { animation-delay: 1.4s; }
.highlight:nth-child(3) { animation-delay: 1.6s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInWord {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-description {
        font-size: clamp(0.95rem, 1.6vw, 1.1rem);
        padding: 0 1rem;
    }
    
    .highlight {
        display: inline;
    }
}

/* Dynamic Text Styles */
.dynamic-text-wrapper {
    height: 60px;
    position: relative;
    overflow: hidden;
    margin: 1rem 0;
}

.dynamic-text {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    visibility: hidden;
    left: 0;
    right: 0;
}

.dynamic-text.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.dynamic-text i {
    display: inline-block;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.dynamic-text.active i {
    transform: scale(1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .dynamic-text-wrapper {
        height: 50px;
    }
    
    .dynamic-text {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }
}

@media (max-width: 576px) {
    .dynamic-text-wrapper {
        height: 40px;
    }
    
    .dynamic-text {
        font-size: clamp(1.2rem, 3.5vw, 1.8rem);
    }
}

/* Update/Add these styles */
.mobile-cta {
    padding: 1rem 2rem;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 600;
    width: 100%;
    max-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-outline-dark {
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
    background: transparent;
}

.btn-outline-dark:hover {
    background: var(--text-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Update responsive font sizes */
@media (max-width: 768px) {
    .mega-title {
        font-size: clamp(2.2rem, 7vw, 3rem);
        line-height: 1.2;
    }
    
    .dynamic-text {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    
    .badge-text {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    }
    
    .mobile-cta {
        font-size: clamp(1.1rem, 3vw, 1.3rem);
        padding: 1.2rem 2rem;
    }
    
    .stat-number {
        font-size: clamp(2rem, 5vw, 2.5rem);
    }
    
    .stat-label {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    }
}

@media (max-width: 576px) {
    .mega-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }
    
    .dynamic-text {
        font-size: clamp(1.6rem, 5vw, 2rem);
    }
    
    .mobile-cta {
        font-size: 1.1rem;
        padding: 1rem 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-buttons-wrapper {
        padding: 0 1rem;
    }
}

/* Landscape mode adjustments */
@media (max-height: 600px) and (orientation: landscape) {
    .mega-title {
        font-size: clamp(1.8rem, 5vw, 2.2rem);
    }
    
    .mobile-cta {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
} 

/* Add these new button styles */
.neon-button {
    position: relative;
    min-width: 200px;
    padding: 0;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.neon-button-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    z-index: 1;
    transition: all 0.3s ease;
}

/* Primary Button */
.neon-button.primary .neon-button-inner {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.3);
}

/* Secondary Button */
.neon-button.secondary .neon-button-inner {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--primary);
}

/* Neon Border Animation */
.neon-borders {
    position: absolute;
    inset: 0;
}

.neon-borders span {
    position: absolute;
    display: block;
}

.neon-borders span:nth-child(1) {
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary));
    animation: neonBorder1 2s linear infinite;
}

.neon-borders span:nth-child(2) {
    top: -100%;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--primary));
    animation: neonBorder2 2s linear infinite;
    animation-delay: 0.5s;
}

.neon-borders span:nth-child(3) {
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(270deg, transparent, var(--primary));
    animation: neonBorder3 2s linear infinite;
    animation-delay: 1s;
}

.neon-borders span:nth-child(4) {
    bottom: -100%;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(360deg, transparent, var(--primary));
    animation: neonBorder4 2s linear infinite;
    animation-delay: 1.5s;
}

/* Hover Effects */
.neon-button:hover .neon-button-inner {
    transform: translateY(-3px);
}

.neon-button.primary:hover .neon-button-inner {
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.5);
}

.neon-button.secondary:hover .neon-button-inner {
    background: rgba(99, 102, 241, 0.1);
}

/* Neon Border Animations */
@keyframes neonBorder1 {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

@keyframes neonBorder2 {
    0% { top: -100%; }
    50%, 100% { top: 100%; }
}

@keyframes neonBorder3 {
    0% { right: -100%; }
    50%, 100% { right: 100%; }
}

@keyframes neonBorder4 {
    0% { bottom: -100%; }
    50%, 100% { bottom: 100%; }
}

/* Responsive Styles */
@media (max-width: 576px) {
    .neon-button {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .neon-button-inner {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
} 

/* Add these new button styles */
.glow-button {
    position: relative;
    min-width: 200px;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.button-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 2;
}

/* Primary Button */
.glow-button.primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
}

.button-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.8) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.button-hover-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s ease;
}

/* Secondary Button */
.glow-button.secondary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid transparent;
    position: relative;
}

.button-border {
    position: absolute;
    inset: 0;
    border: 2px solid var(--primary);
    border-radius: 12px;
    transition: all 0.3s ease;
}

/* Hover Effects */
.glow-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(var(--primary), 0.3);
}

.glow-button.primary:hover .button-glow {
    opacity: 0.8;
}

.glow-button.primary:hover .button-hover-effect {
    left: 100%;
}

.glow-button.secondary:hover {
    transform: translateY(-2px);
}

.glow-button.secondary:hover .button-border {
    inset: -3px;
    border-color: var(--secondary);
    box-shadow: 0 5px 15px rgba(var(--primary), 0.2);
}

/* Icon Animation */
.button-content i {
    transition: transform 0.3s ease;
}

.glow-button:hover .button-content i {
    transform: translateX(3px);
}

/* Active State */
.glow-button:active {
    transform: scale(0.98);
}

/* Mobile Styles */
@media (max-width: 576px) {
    .glow-button {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        padding: 10px 20px;
        font-size: 1rem;
    }
}

/* Add smooth transition for all interactions */
.glow-button * {
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
} 

/* Add these new button styles */
.modern-btn {
    position: relative;
    min-width: 220px;
    padding: 16px 28px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 3;
    color: white;
}

/* Primary Button */
.modern-btn.primary {
    background: transparent;
}

.btn-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #ff6b6b, #c08080);
    z-index: 1;
    transition: all 0.4s ease;
}

.btn-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    transform: rotate(45deg);
    z-index: 2;
    transition: all 0.6s ease;
    opacity: 0;
}

.btn-particles span {
    position: absolute;
    pointer-events: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: white;
    opacity: 0;
    z-index: 2;
}

.particle-1 { top: 20%; left: 20%; }
.particle-2 { top: 50%; right: 20%; }
.particle-3 { bottom: 20%; left: 50%; }

/* Secondary Button */
.modern-btn.secondary {
    background: transparent;
}

.modern-btn.secondary .btn-content {
    color: var(--text-dark);
}

.btn-border {
    position: absolute;
    inset: 0;
    border: 2px solid #ff6b6b;
    border-radius: 12px;
    z-index: 1;
    transition: all 0.4s ease;
}

/* Hover Effects */
.modern-btn.primary:hover {
    transform: translateY(-3px);
}

.modern-btn.primary:hover .btn-background {
    filter: brightness(1.1);
}

.modern-btn.primary:hover .btn-shine {
    opacity: 1;
    transform: rotate(45deg) scale(1.5);
}

.modern-btn.primary:hover .particle-1 {
    animation: particleAnimation 0.8s ease forwards;
}

.modern-btn.primary:hover .particle-2 {
    animation: particleAnimation 0.8s ease forwards 0.1s;
}

.modern-btn.primary:hover .particle-3 {
    animation: particleAnimation 0.8s ease forwards 0.2s;
}

.modern-btn.secondary:hover {
    transform: translateY(-3px);
}

.modern-btn.secondary:hover .btn-border {
    border-color: #4338CA;
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.2);
}

.modern-btn.secondary:hover .btn-content {
    color: #ff6b6b;
}

/* Animations */
@keyframes particleAnimation {
    0% {
        opacity: 1;
        transform: translate(0, 0);
    }
    100% {
        opacity: 0;
        transform: translate(var(--x, 50px), var(--y, -50px));
    }
}

/* Active State */
.modern-btn:active {
    transform: scale(0.98);
}

/* Mobile Styles */
@media (max-width: 576px) {
    .modern-btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 24px;
        font-size: 1rem;
    }
}

/* Add smooth transition for all interactions */
.modern-btn * {
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
} 

/* Add these professional button styles */
.business-btn {
    position: relative;
    min-width: 220px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 8px;
    overflow: hidden;
    z-index: 1;
}

/* Primary Button */
.business-btn.primary .btn-inner {
    background: linear-gradient(135deg, #ff6b6b, #c08080);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

.btn-label {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 3;
}

.hover-effect {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #ff6b6b, #c08080);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.corner-effect {
    position: absolute;
    width: 10px;
    height: 10px;
    border: 2px solid white;
    opacity: 0;
    transition: all 0.4s ease;
}

.top-left {
    top: 8px;
    left: 8px;
    border-right: 0;
    border-bottom: 0;
}

.top-right {
    top: 8px;
    right: 8px;
    border-left: 0;
    border-bottom: 0;
}

.bottom-left {
    bottom: 8px;
    left: 8px;
    border-right: 0;
    border-top: 0;
}

.bottom-right {
    bottom: 8px;
    right: 8px;
    border-left: 0;
    border-top: 0;
}

/* Secondary Button */
.business-btn.secondary .btn-inner {
    background: transparent;
    color: var(--text-dark);
}

.border-effect {
    position: absolute;
    inset: 0;
    border: 2px solid #ff6b6b;
    border-radius: 8px;
    transition: all 0.4s ease;
}

/* Hover Effects */
.business-btn.primary:hover {
    transform: translateY(-2px);
}

.business-btn.primary:hover .hover-effect {
    opacity: 1;
}

.business-btn.primary:hover .corner-effect {
    opacity: 1;
}

.business-btn.primary:hover .top-left {
    transform: translate(-3px, -3px);
}

.business-btn.primary:hover .top-right {
    transform: translate(3px, -3px);
}

.business-btn.primary:hover .bottom-left {
    transform: translate(-3px, 3px);
}

.business-btn.primary:hover .bottom-right {
    transform: translate(3px, 3px);
}

.business-btn.secondary:hover {
    transform: translateY(-2px);
}

.business-btn.secondary:hover .border-effect {
    inset: -1px;
    border-color: #4f46e5;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.1);
}

.business-btn.secondary:hover .btn-label {
    color: #2563eb;
}

/* Active State */
.business-btn:active {
    transform: translateY(1px);
}

/* Mobile Styles */
@media (max-width: 576px) {
    .business-btn {
        width: 100%;
        max-width: 280px;
        font-size: 1rem;
    }
    
    .btn-inner {
        padding: 14px 24px;
    }
}

/* Add smooth transition for all interactions */
.business-btn * {
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
} 

/* Social Bar Styles */
.social-top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1031;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    height: 40px;
    transform: translateY(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Contact Info Styles */
.contact-info a {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.contact-info i.fa-google {
    color: #EA4335;  /* Gmail red color */
    margin-right: 6px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.contact-info i.fa-phone-volume {
    color: #4CAF50;  /* Professional green color */
    margin-right: 6px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

.contact-info a:hover i.fa-google {
    color: #DB4437;  /* Darker Gmail red on hover */
    transform: scale(1.1);
}

.contact-info a:hover i.fa-phone-volume {
    color: #43A047;  /* Darker green on hover */
    transform: scale(1.1);
}

/* Social Links Styles */
.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    text-decoration: none !important;
    outline: none !important;
}

/* Social Link Base Styles */
.social-link {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff !important;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    text-decoration: none !important;
    border: none !important;
}

/* Individual Social Links */
.social-link.facebook {
    background: #1877f2;
    box-shadow: 0 2px 8px rgba(24, 119, 242, 0.2);
}

.social-link.twitter {
    background: #1da1f2;
    box-shadow: 0 2px 8px rgba(29, 161, 242, 0.2);
}

.social-link.youtube {
    background: #ff0000;
    box-shadow: 0 2px 8px rgba(255, 0, 0, 0.2);
}

.social-link.linkedin {
    background: #0a66c2;
    box-shadow: 0 2px 8px rgba(10, 102, 194, 0.2);
}

/* Hover Effects */
.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-link.facebook:hover {
    background: #0d6efd;
}

.social-link.twitter:hover {
    background: #0c85d0;
}

.social-link.youtube:hover {
    background: #cc0000;
}

.social-link.linkedin:hover {
    background: #0958a6;
}

/* Contact Info Links */
.contact-info a {
    text-decoration: none !important;
    border-bottom: none !important;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .social-top-bar {
        height: 35px;
    }

    .contact-info a {
        font-size: 0.8rem;
    }

    .social-link {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
    }

    .social-links {
        gap: 10px;
    }
}

/* Hide social bar class */
.hide-social {
    transform: translateY(-100%);
} 