  :root {
            --primary-color: #0094FF;
            --secondary-color: #F7931E;
            --accent-color: #28a745;
            --text-dark: #2c3e50;
            --text-light: #5a6c7d;
            --bg-gradient: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            --shadow-light: 0 10px 40px rgba(0,0,0,0.1);
            --shadow-medium: 0 20px 60px rgba(0,0,0,0.15);
            --shadow-heavy: 0 30px 80px rgba(0,0,0,0.2);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background: var(--bg-gradient);
            min-height: 100vh;
            overflow-x: hidden;
        }
        
        /* Smooth Scrolling */
        html {
            scroll-behavior: smooth;
        }
        
        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--primary-color);
            border-radius: 4px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: var(--secondary-color);
        }
        
        /* Navbar Styles */
        .navbar-custom {
            background: var(--primary-color);
            padding: 15px 0;
            box-shadow: var(--shadow-light);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        .navbar-custom.scrolled {
            background: var(--secondary-color);
            padding: 10px 0;
            box-shadow: var(--shadow-medium);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: 700;
            font-size: 18px;
            color: white !important;
            text-decoration: none;
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover {
            transform: scale(1.05);
        }
        
        .brand-icon {
            width: 32px;
            height: 32px;
            background: white;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            position: relative;
            animation: pulse 2s ease-in-out infinite;
        }
        
        .brand-icon::before {
            content: '';
            width: 16px;
            height: 16px;
            background: var(--primary-color);
            border-radius: 3px;
            transform: rotate(45deg);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .brand-icon::before {
            transform: rotate(225deg);
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            font-size: 14px;
            margin: 0 15px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 2px;
            background: white;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            transform: translateY(-2px);
        }
        
        .btn-sign-in {
            color: rgba(255,255,255,0.9) !important;
            border: 1px solid rgba(255,255,255,0.3);
            padding: 8px 20px;
            border-radius: 25px;
            font-weight: 500;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-right: 15px;
            transition: all 0.3s ease;
        }
        
        .btn-sign-in:hover {
            background: rgba(255,255,255,0.1);
            border-color: rgba(255,255,255,0.5);
            color: white !important;
            transform: translateY(-2px);
        }
        
        .btn-start-free {
            background: var(--secondary-color);
            color: white !important;
            border: none;
            padding: 10px 25px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .btn-start-free::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }
        
        .btn-start-free:hover::before {
            left: 100%;
        }
        
        .btn-start-free:hover {
            background: #0f3d2a;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(26, 95, 63, 0.4);
        }
        
        /* Hero Section */
        .hero-section {
    padding: 70px 0 100px;
    /* background: var(--bg-gradient); */
    position: relative;
    overflow: hidden;
    background: #fff;
}
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<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="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.3;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero-content h1 {
            font-size:55px;
            font-weight: 800;
            color:var(--text-dark);
            line-height: 1.1;
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .hero-content p {
        font-size: 18px;
        color: var(--text-light);
        line-height: 30px;
        margin-bottom: 40px;
        max-width: 550px;
    }
        
        .btn-get-started {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 18px 40px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            position: relative;
            overflow: hidden;
        }
        
        .btn-get-started::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: left 0.6s;
        }
        
        .btn-get-started:hover::before {
            left: 100%;
        }
        
        .btn-get-started:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(45, 138, 91, 0.4);
            color: white;
        }
        
        /* Floating Animations */
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes zoomIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }
        
        @keyframes rotateIn {
            from {
                opacity: 0;
                transform: rotate(-45deg) scale(0.8);
            }
            to {
                opacity: 1;
                transform: rotate(0deg) scale(1);
            }
        }
        
        /* Hero Illustration */
        .hero-image {
            position: relative;
            padding: 20px;
        }
        
        .salon-illustration {
            background: rgba(255,255,255,0.9);
            border-radius: 25px;
            padding: 50px;
            position: relative;
            box-shadow: var(--shadow-heavy);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
        }
        
        .salon-chair {
            width: 100%;
            max-width: 450px;
            height: 320px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 25px;
            position: relative;
            margin: 0 auto;
            overflow: hidden;
            animation: float 4s ease-in-out infinite;
            box-shadow: var(--shadow-medium);
        }
        
        .salon-person-1, .salon-person-2 {
            position: absolute;
            border-radius: 50px 50px 20px 20px;
            animation: float 3s ease-in-out infinite;
        }
        
        .salon-person-1 {
            bottom: 60px;
            left: 40px;
            width: 90px;
            height: 130px;
            background: linear-gradient(135deg, #fd79a8 0%, #e84393 100%);
            animation-delay: 0.5s;
        }
        
        .salon-person-2 {
            bottom: 30px;
            right: 60px;
            width: 70px;
            height: 110px;
            background: linear-gradient(135deg, #a29bfe 0%, #6c5ce7 100%);
            animation-delay: 1s;
        }
        
        .salon-person-1::before, .salon-person-2::before {
            content: '';
            position: absolute;
            top: -30px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 40px;
            background: #fdcb6e;
            border-radius: 50%;
        }
        
        .salon-person-1::after, .salon-person-2::after {
            content: '';
            position: absolute;
            top: -45px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 30px;
            background: #2d3436;
            border-radius: 30px 30px 0 0;
        }
        
        .salon-shelves {
            position: absolute;
            top: 30px;
            right: 30px;
            width: 130px;
            height: 160px;
        }
        
        .shelf {
            width: 100%;
            height: 35px;
            background: linear-gradient(135deg, #81ecec 0%, #00cec9 100%);
            border-radius: 18px;
            margin-bottom: 20px;
            position: relative;
            animation: slideInRight 0.8s ease-out;
        }
        
        .shelf:nth-child(2) { animation-delay: 0.2s; }
        .shelf:nth-child(3) { animation-delay: 0.4s; }
        
        .shelf::before {
            content: '';
            position: absolute;
            top: -10px;
            left: 15px;
            width: 18px;
            height: 18px;
            background: #00b894;
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }
        
        /* Cloud Section */
        .cloud-section {
            padding: 10px 0;
            background: rgba(255,255,255,0.95);
            background: rgba(255,255,255,1);
/*            backdrop-filter: blur(10px);*/
        }
        
   .cloud-content h2 {
    /* font-size: 3.8rem; */
    /* font-weight: 700; */
    /* color: var(--text-dark); */
    margin-bottom: 20px;
    /* text-transform: uppercase; */
    letter-spacing: -1px;
    font-size: 55px;
    font-weight: 800;
    color: var(--text-dark);
}
        
        .cloud-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 18px;
    color: var(--text-light);
    line-height: 30px;
}
        
        .cloud-illustration {
            position: relative;
            padding: 40px;
        }
        
        .cloud-container {
            background: linear-gradient(135deg, #a8e6cf 0%, #7fcdcd 100%);
            border-radius: 25px;
            padding: 50px;
            position: relative;
            height: 350px;
            box-shadow: var(--shadow-heavy);
            overflow: hidden;
        }
        
        .cloud-container::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.1) 50%, transparent 60%);
            animation: shimmer 3s ease-in-out infinite;
        }
        
        @keyframes shimmer {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }
        
        .laptop {
            position: absolute;
            bottom: 60px;
            left: 60px;
            width: 140px;
            height: 90px;
            background: #2d3436;
            border-radius: 8px;
            transform: perspective(300px) rotateX(20deg) rotateY(-10deg);
            box-shadow: var(--shadow-medium);
            animation: float 4s ease-in-out infinite;
        }
        
        .laptop-screen {
            width: 100%;
            height: 70%;
            background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
            border-radius: 5px 5px 0 0;
            position: relative;
            overflow: hidden;
        }
        
        .laptop-screen::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 70%;
            height: 70%;
            background: rgba(255,255,255,0.95);
            border-radius: 5px;
            animation: pulse 2s ease-in-out infinite;
        }
        
        .cloud-shape {
            position: absolute;
            top: 40px;
            right: 70px;
            width: 120px;
            height: 70px;
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
            border-radius: 50px;
            transform: rotate(-5deg);
            animation: float 3s ease-in-out infinite;
            animation-delay: 1s;
        }
        
        .cloud-shape::before {
            content: '';
            position: absolute;
            top: -25px;
            left: 25px;
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
            border-radius: 50%;
        }
        
        .cloud-shape::after {
            content: '';
            position: absolute;
            top: -20px;
            right: 20px;
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
            border-radius: 50%;
        }
        
        .upload-arrow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 28px;
            animation: bounce 2s ease-in-out infinite;
        }
        
        @keyframes bounce {
            0%, 100% { transform: translate(-50%, -50%) translateY(0); }
            50% { transform: translate(-50%, -50%) translateY(-10px); }
        }
        
        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
        }
        
        .float-element {
            position: absolute;
            width: 25px;
            height: 25px;
            border-radius: 50%;
            animation: float 4s ease-in-out infinite;
        }
        
        .float-element:nth-child(1) {
            background: linear-gradient(135deg, #fdcb6e 0%, #e17055 100%);
            top: 25%;
            left: 25%;
            animation-delay: 0s;
        }
        
        .float-element:nth-child(2) {
            background: linear-gradient(135deg, #fd79a8 0%, #e84393 100%);
            top: 65%;
            right: 25%;
            animation-delay: 1.5s;
        }
        
        .float-element:nth-child(3) {
            background: linear-gradient(135deg, #a29bfe 0%, #6c5ce7 100%);
            bottom: 25%;
            left: 35%;
            animation-delay: 3s;
        }
        
        /* Features Section */
       .features-section {
    /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
    padding: 70px 0;
    position: relative;
    background: #fff;
}
        
        .section-title {
            text-align: center;
            margin-bottom: 80px;
        }
        
      .section-title h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
    /* letter-spacing: 2px; */
}
        
        .section-description {
    font-size: 18px;
    color: var(--text-light);
    line-height: 30px;
    max-width: 900px;
    margin: 0 auto;
}
        
   .feature-card {
    background: rgba(255, 255, 255,1);
    border-radius: 15px;
    padding: 20px;
    /* margin-bottom: 30px; */
    box-shadow: var(--shadow-light);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    height: 100%;
    position: relative;
    overflow: hidden;
}
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: left 0.6s;
        }
        
        .feature-card:hover::before {
            left: 100%;
        }
        
        .feature-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: var(--shadow-heavy);
        }
        
        .feature-icon {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            position: relative;
            overflow: hidden;
            animation: rotateIn 0.8s ease-out;
        }
        
        .feature-icon i {
            font-size: 36px;
            color: white;
            z-index: 2;
            transition: transform 0.3s ease;
        }
        
        .feature-card:hover .feature-icon i {
            transform: scale(1.2) rotate(10deg);
        }
        
        .appointments-icon {
            background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
            box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
        }
        
        .invoice-icon {
            background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
            box-shadow: 0 10px 30px rgba(236, 72, 153, 0.3);
        }
        
        .mail-icon {
            background: linear-gradient(135deg, #10b981 0%, #047857 100%);
            box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
        }
        
      .feature-title {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}
        
        .feature-list {
            list-style: none;
            padding: 0;
        }
        
        .feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    font-size: 15px;
    /* line-height: 1.7; */
    color: #4a5568;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}
        
        .feature-list li:nth-child(1) { animation-delay: 0.1s; }
        .feature-list li:nth-child(2) { animation-delay: 0.2s; }
        .feature-list li:nth-child(3) { animation-delay: 0.3s; }
        .feature-list li:nth-child(4) { animation-delay: 0.4s; }
        
        .check-icon {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
        
        .feature-list li:hover .check-icon {
            transform: scale(1.2);
        }
        
        .appointments-check { background: #3b82f6; }
        .invoice-check { background: #ec4899; }
        .mail-check { background: #10b981; }
        
        .check-icon i {
            font-size: 12px;
            color: white;
        }
        
        .feature-text {
            flex: 1;
            font-weight: 500;
        }
        
        /* Services Section */
        .services-section {
            background: var(--bg-gradient);
            padding: 120px 0;
        }
        
      .hero-title {
    color: var(--text-dark);
    font-size: 35px;
    font-weight: 600;
    /* margin-bottom: 15px; */
}
        
        .hero-subtitle {
    color: var(--secondary-color);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 70px;
}
        
    /*   .service-card {
    background: rgba(255, 255, 255, 0.95);
     border-radius: 20px; 
    padding: 10px;
    text-align: center;
    box-shadow: var(--shadow-light);
    height: 100%;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}*/

.service-card {
    /* background: rgba(255, 255, 255, 0.95); */
    border-radius: 20px;
    padding: 10px;
    text-align: center;
    /* box-shadow: var(--shadow-light); */
    height: 100%;
    transition: all 0.4s ease;
    /* backdrop-filter: blur(10px); */
    /* border: 1px solid rgba(255, 255, 255, 0.3); */
    position: relative;
    overflow: hidden;
}
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        .service-card:hover::before {
            opacity: 0.05;
        }
        
        .service-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: var(--shadow-heavy);
        }
        
       .service-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    /* border-radius: 15px; */
    margin-bottom: 25px;
    transition: transform 0.4s ease;
}
        
        .service-card:hover .service-image {
            transform: scale(1.05);
        }
        
        .service-title {
            color: #495057;
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 18px;
        }
        
        .service-description {
            color: #6c757d;
            font-size: 1rem;
            line-height: 1.7;
        }
        
       .cta-button {
    /* background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%); */
    border: none;
    color: white;
    padding: 15px 45px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 50px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    background: var(--primary-color);
    text-transform: capitalize;
}
        
        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: left 0.6s;
        }
        
        .cta-button:hover::before {
            left: 100%;
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(40, 167, 69, 0.4);
            color: white;
            text-decoration: none;
        }
        
        /* Why Choose Section */
        .why-choose-section {
            background: rgba(248, 249, 250, 0.95);
            padding: 120px 0;
            backdrop-filter: blur(10px);
        }
        
        .section-subtitle {
            color: var(--text-light);
            font-size: 0.95rem;
            font-weight: 600;
            letter-spacing: 3px;
            margin-bottom: 25px;
            text-transform: uppercase;
            position: relative;
        }
        
        .section-subtitle::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 2px;
            background: var(--primary-color);
        }
        
        .why-choose-section .section-title {
    color: #495057;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
}
        
        .why-choose-section .feature-card {
            text-align: center;
/*            padding: 40px 25px;*/
            height: 100%;
            transition: all 0.4s ease;
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(15px);
        }
        
        .why-choose-section .feature-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: var(--shadow-heavy);
        }
        
        .why-choose-section .feature-icon {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .why-choose-section .feature-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(255,255,255,0.3), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .why-choose-section .feature-card:hover .feature-icon::before {
            opacity: 1;
        }
        
        .why-choose-section .feature-card:hover .feature-icon {
            transform: scale(1.15) rotate(10deg);
        }
        
        .bg-primary { background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); }
        .bg-secondary { background: linear-gradient(135deg, #6c757d 0%, #495057 100%); }
        .bg-info { background: linear-gradient(135deg, #17a2b8 0%, #117a8b 100%); }
        .bg-success { background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%); }
        .bg-dark { background: linear-gradient(135deg, #343a40 0%, #212529 100%); }
        .bg-warning { background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%); }
        .bg-danger { background: linear-gradient(135deg, #dc3545 0%, #bd2130 100%); }
        
        .why-choose-section .feature-title {
            color: #495057;
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 18px;
        }
        
        .why-choose-section .feature-description {
            color: #6c757d;
            font-size: 1rem;
            line-height: 1.7;
        }
        
        /* Clients Section */
        .clients-section {
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    padding: 70px 0;
    color: white;
    position: relative;
    overflow: hidden;
    background: rgba(255,255,255,0.1);
}
        
        .clients-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23ffffff" opacity="0.1"/></svg>');
            animation: float 20s linear infinite;
        }
        
        .clients-title {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
    color: var(--text-dark);
}
        
        .client-logo {
    background: rgba(255, 255, 255, 0.95);
     border-radius: 20px;
    /* padding: 25px; */
    /* margin: 15px; */
    height: 140px;
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: center; */
    /* box-shadow: var(--shadow-light); */
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}
        
        .client-logo:hover {
            transform: translateY(-8px) scale(1.05);
            box-shadow: var(--shadow-heavy);
        }
        
        .logo-placeholder {
            font-size: 1rem;
            font-weight: bold;
            color: white;
            background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }
        
        .client-logo:hover .logo-placeholder {
            transform: rotate(5deg);
        }
        
        /* Stats Section */
        .stats-section {
    /* background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%); */
    padding: 70px 0;
    background: #fff;
}
        
        .stats-content {
    padding: 50px;
    /* background: rgba(255, 255, 255, 0.95); */
    /* border-radius: 25px; */
    box-shadow: var(--shadow-medium);
    /* backdrop-filter: blur(15px); */
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}
        
        .stats-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: left 0.6s;
        }
        
        .stats-content:hover::before {
            left: 100%;
        }
        
        .stats-title {
            color: #495057;
            font-size: 1.8rem;
            font-weight: 600;
            line-height: 1.6;
            margin-bottom: 35px;
        }
        
        .discover-btn {
    /* background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%); */
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    background: var(--primary-color);
}
        
        .discover-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s;
        }
        
        .discover-btn:hover::before {
            left: 100%;
        }
        
        .discover-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(40, 167, 69, 0.4);
        }
        
        .stats-images {
            padding-left: 40px;
        }
        
        .stats-img {
            width: 100%;
            height: 140px;
            object-fit: cover;
            border-radius: 5px;
            transition: all 0.4s ease;
            box-shadow: var(--shadow-light);
        }
        
        .stats-img:hover {
            transform: scale(1.08) rotate(2deg);
            box-shadow: var(--shadow-medium);
        }
        
        /* Mobile App Section */
        .mobile-app-section {
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    padding: 70px 0;
    position: relative;
    overflow: hidden;
    background: rgba(255,255,255,0.1);
}
        
        .mobile-app-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 70%, rgba(255,255,255,0.1) 0%, transparent 50%);
        }
        
        .mobile-mockup {
    position: relative;
    height: 300px;
}
        
        .phone-container {
            position: relative;
            width: 100%;
            height: 100%;
        }
        
        .phone {
            position: absolute;
            width: 130px;
            height: 260px;
            background: #2c3e50;
            border-radius: 30px;
            padding: 25px 18px;
            box-shadow: var(--shadow-heavy);
            transition: all 0.4s ease;
            animation: float 4s ease-in-out infinite;
        }
        
        .phone-1 {
            top: 30px;
            left: 0;
            z-index: 3;
            transform: rotate(-8deg);
            animation-delay: 0s;
        }
        
        .phone-2 {
            top: 0;
            left: 90px;
            z-index: 2;
            background: var(--accent-color);
            animation-delay: 1s;
        }
        
        .phone-3 {
            top: 40px;
            left: 180px;
            z-index: 1;
            transform: rotate(8deg);
            background: #3498db;
            animation-delay: 2s;
        }
        
        .phone-screen {
            background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
            height: 100%;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        
        .phone-screen::before {
            content: '';
            position: absolute;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            width: 30px;
            height: 4px;
            background: #95a5a6;
            border-radius: 2px;
        }
        
        .app-logo {
            color: var(--text-dark);
            font-weight: bold;
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .phone:hover {
            transform: translateY(-15px) rotate(0deg) scale(1.05);
            box-shadow: 0 25px 50px rgba(0,0,0,0.3);
        }
        
        .app-content {
            color: white;
            padding-left: 50px;
            position: relative;
            z-index: 2;
        }
        
        .app-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    color: var(--text-dark);
}
        
       .app-description {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 35px;
    /* opacity: 0.95; */
    color: var(--text-dark);
}
        
        .app-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .store-badge {
            height: 55px;
            transition: all 0.3s ease;
            filter: brightness(1.1);
        }
        
        .store-badge:hover {
            transform: translateY(-3px) scale(1.05);
            filter: brightness(1.2);
        }
        
        .floating-circle {
            position: absolute;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            animation: float 8s ease-in-out infinite;
        }
        
        .circle-1 { width: 100px; height: 100px; top: 15%; right: 15%; animation-delay: 0s; }
        .circle-2 { width: 50px; height: 50px; top: 65%; right: 25%; animation-delay: 2s; }
        .circle-3 { width: 75px; height: 75px; bottom: 25%; left: 15%; animation-delay: 4s; }
        .circle-4 { width: 120px; height: 120px; top: 35%; left: 8%; animation-delay: 1s; }
        .circle-5 { width: 40px; height: 40px; bottom: 15%; right: 20%; animation-delay: 3s; }
        
        /* Footer Section */
        .footer-section {
    /* background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%); */
    color: var(--text-dark);
    padding: 80px 0 40px;
    position: relative;
    background: #fff;
}
        
       /* .footer-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="0,0 100,0 80,100 0,100" fill="%23ffffff" opacity="0.02"/></svg>');
        }*/
        
        .footer-title {
            color: #000;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 25px;
            position: relative;
        }
        
        .footer-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 30px;
            height: 2px;
            background: var(--primary-color);
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 12px;
            transition: transform 0.3s ease;
        }
        
        .footer-links li:hover {
            transform: translateX(5px);
        }
        
        .footer-links a {
            color: var(--text-dark);
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .footer-links a::before {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--accent-color);
            transition: width 0.3s ease;
        }
        
        .footer-links a:hover::before {
            width: 100%;
        }
        
        .footer-links a:hover {
            color: var(--accent-color);
        }
        
        .contact-info {
            color: #bdc3c7;
        }
        
        .contact-item {
            margin-bottom: 25px;
            font-size: 0.95rem;
            color:var(--text-dark);
        }
        
        .contact-form input {
    /* background: rgba(52, 73, 94, 0.8); */
    /* border: 1px solid rgba(255,255,255,0.2); */
    color: white;
    border-radius: 8px;
    transition: all 0.3s ease;
}
        
        .contact-form input:focus {
/*            background: rgba(52, 73, 94, 1);*/
            border-color: var(--accent-color);
            box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
        }
        
        .contact-form input::placeholder {
            color: #95a5a6;
        }
        
        .contact-form .btn-primary {
    /* background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%); */
    border: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: var(--primary-color);
}
        
        .contact-form .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
        }
        
        /* Copyright Section */
        .copyright-section {
            background: var(--primary-color);
            padding: 5px 0;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        
        .copyright-text p {
            color: #fff;
            margin: 0;
            font-size: 0.95rem;
        }
        
        .social-contact {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 15px;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
        }
        
        .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    /* background: rgba(52, 73, 94, 0.8); */
    color: #000;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    background: #fff;
}
        
       /* .social-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
            transform: scale(0);
            transition: transform 0.3s ease;
            border-radius: 50%;
        }
        
        .social-link:hover::before {
            transform: scale(1);
        }
        
        .social-link:hover {
            color: white;
            transform: translateY(-3px);
        }*/
        
        .social-link svg {
            position: relative;
            z-index: 2;
        }
        
        .contact-phone {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #fff;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }
        
        .contact-phone:hover {
            color: #fff;
        }
        
        .phone-icon {
            color: #fff;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-content h1 { font-size: 3rem; }
            .cloud-content h2 { font-size: 2.5rem; }
            .section-title h2 { font-size: 2.8rem; }
            .why-choose-section .section-title { font-size: 2.2rem; }
            .hero-title { font-size: 2.4rem; }
            .hero-subtitle { font-size: 1.9rem; }
        }
        
        @media (max-width: 768px) {
            .hero-content h1 { font-size: 2.5rem; }
            .cloud-content h2 { font-size: 2rem; }
            .section-title h2 { font-size: 2.2rem; }
            .why-choose-section .section-title { font-size: 1.8rem; }
            .hero-title { font-size: 2rem; }
            .hero-subtitle { font-size: 1.6rem; }
            
            .hero-section { padding: 80px 0 60px; }
            .cloud-section { padding: 80px 0; }
            .features-section { padding: 80px 0; }
            .services-section { padding: 80px 0; }
            .why-choose-section { padding: 80px 0; }
            .clients-section { padding: 80px 0; }
            .stats-section { padding: 80px 0; }
            .mobile-app-section { padding: 80px 0; }
            
            .navbar-nav { text-align: center; margin-top: 20px; }
            .navbar-nav .nav-link { margin: 8px 0; }
            
            .salon-chair { height: 280px; }
            .cloud-container { height: 300px; }
            .mobile-mockup { height: 350px; }
            
            .phone { width: 100px; height: 200px; padding: 20px 15px; }
            .phone-2 { left: 70px; }
            .phone-3 { left: 140px; }
            
            .stats-images { padding-left: 0; margin-top: 40px; }
            .app-content { padding-left: 0; margin-top: 40px; text-align: center; }
            
            .copyright-text { text-align: center; margin-bottom: 20px; }
            .social-contact { align-items: center; }
        }
        
        @media (max-width: 576px) {
            .hero-content h1 { font-size: 2rem; }
            .section-title h2 { font-size: 1.8rem; }
            .feature-icon { width: 75px; height: 75px; }
            .feature-icon i { font-size: 30px; }
            .feature-title { font-size: 1.3rem; }
            .feature-list li { font-size: 14px; }
            
            .phone { width: 80px; height: 160px; padding: 15px 12px; }
            .phone-2 { left: 60px; }
            .phone-3 { left: 120px; }
            
            .app-title { font-size: 2rem; }
            .stats-title { font-size: 1.5rem; }
        }
        
        /* Loading Animation */
        .loading-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.5s ease;
        }
        
        .loading-spinner {
            width: 50px;
            height: 50px;
            border: 3px solid rgba(255,255,255,0.3);
            border-top: 3px solid white;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .loading-overlay.hidden {
            opacity: 0;
            pointer-events: none;
        }
        
        /* Scroll Progress Bar */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
            z-index: 1001;
            transition: width 0.1s ease;
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
            z-index: 1000;
            box-shadow: var(--shadow-medium);
        }
        
        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: var(--shadow-heavy);
        }
        
        /* Particle Background */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }
        
        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            animation: particleFloat 6s ease-in-out infinite;
        }
        
        @keyframes particleFloat {
            0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0; }
            50% { transform: translateY(-100px) rotate(180deg); opacity: 1; }
        }