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

body {
    font-family: 'Cairo', 'Tajawal', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #f8f9fa;
}

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

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #2c5aa0;
}

.contact-info {
    display: flex;
    gap: 20px;
    align-items: center;
}

.phone-btn {
    background: linear-gradient(45deg, #25d366, #20b959);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.phone-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 30%, #5e35b1 70%, #7b1fa2 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="g" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><rect width="100%" height="100%" fill="url(%23g)"/></svg>');
    opacity: 0.3;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="70" cy="70" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="10" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s infinite linear;
}

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

.hero-text {
    color: white;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.laptop-container {
    position: relative;
    transform: perspective(1000px) rotateY(-15deg) rotateX(10deg);
    animation: float-laptop 6s ease-in-out infinite;
}

.laptop-screen {
    width: 400px;
    height: 250px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    border-radius: 12px 12px 0 0;
    border: 8px solid #2c3e50;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.laptop-base {
    width: 420px;
    height: 20px;
    background: linear-gradient(135deg, #34495e, #2c3e50);
    border-radius: 0 0 12px 12px;
    position: relative;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.dashboard-mockup {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 15px;
}

.dashboard-header {
    height: 40px;
    background: rgba(255,255,255,0.9);
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    gap: 10px;
}

.dashboard-nav {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff5f57;
}

.dashboard-nav:nth-child(2) { background: #ffbd2e; }
.dashboard-nav:nth-child(3) { background: #28ca42; }

.dashboard-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    flex: 1;
}

.dashboard-card {
    background: rgba(255,255,255,0.9);
    border-radius: 8px;
    padding: 15px;
    animation: pulse-card 3s ease-in-out infinite;
}

.dashboard-card:nth-child(1) { animation-delay: 0s; }
.dashboard-card:nth-child(2) { animation-delay: 0.5s; }
.dashboard-card:nth-child(3) { animation-delay: 1s; }
.dashboard-card:nth-child(4) { animation-delay: 1.5s; }

.code-lines {
    position: absolute;
    top: 60px;
    right: -50px;
    width: 200px;
    height: 150px;
    background: rgba(40, 44, 52, 0.9);
    border-radius: 8px;
    padding: 15px;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: #61dafb;
    animation: float-code 4s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero h1 {
    font-family: 'Cairo', sans-serif;
    font-size: 3.8rem;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

.hero-subtitle {
    font-family: 'Tajawal', sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 35px;
    opacity: 0.95;
    color: #e8eaf6;
    line-height: 1.6;
}

.limited-offer {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 20px 35px;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 40px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    position: relative;
    overflow: hidden;
}

.limited-offer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shine 2s infinite;
}

.countdown-timer {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 10px;
    font-family: 'Cairo', sans-serif;
}

.countdown-item {
    background: rgba(255,255,255,0.2);
    padding: 8px 12px;
    border-radius: 8px;
    text-align: center;
    min-width: 50px;
    backdrop-filter: blur(10px);
}

.countdown-number {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
}

.countdown-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.8);
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    padding: 12px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.proof-icon {
    font-size: 1.5rem;
    color: #ffd700;
}

.proof-text {
    font-size: 0.9rem;
    color: #e8eaf6;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #ffd700, #ffb300);
    color: #1a237e;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-hero-primary::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;
}

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

.btn-hero-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
}

.btn-hero-primary i {
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover i {
    transform: translateX(5px);
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.8);
    padding: 16px 38px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 600;
    font-family: 'Cairo', sans-serif;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.btn-hero-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-hero-secondary:hover::before {
    opacity: 1;
}

.btn-hero-secondary:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: #ffd700;
    color: #ffd700;
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.3);
}

/* Floating Elements */
.floating-element {
    position: absolute;
    opacity: 0.7;
    animation: float-elements 8s ease-in-out infinite;
}

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

.floating-element:nth-child(2) {
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

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

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

@keyframes float-laptop {
    0%, 100% { transform: perspective(1000px) rotateY(-15deg) rotateX(10deg) translateY(0px); }
    50% { transform: perspective(1000px) rotateY(-15deg) rotateX(10deg) translateY(-10px); }
}

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

@keyframes float-elements {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(5deg); }
    66% { transform: translateY(-5px) rotate(-3deg); }
}

@keyframes pulse-card {
    0%, 100% { opacity: 0.9; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.02); }
}

@keyframes glow {
    from { text-shadow: 0 0 20px rgba(255, 215, 0, 0.5); }
    to { text-shadow: 0 0 30px rgba(255, 215, 0, 0.8); }
}

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

.btn-primary {
    background: linear-gradient(45deg, #2ecc71, #27ae60);
    color: white;
    padding: 18px 36px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 16px 34px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary:hover {
    background: white;
    color: #2c5aa0;
    transform: translateY(-3px);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c5aa0;
    font-weight: bold;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 60px;
    color: #7f8c8d;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f8f9fa;
}

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

.feature-icon {
    font-size: 3rem;
    color: #2c5aa0;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: bold;
}

.feature-desc {
    color: #7f8c8d;
    line-height: 1.8;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

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

.pricing-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(44, 90, 160, 0.2);
    border: 3px solid #2c5aa0;
}

.pricing-card.featured::before {
    content: 'الاكثر طلباً';
    position: absolute;
    top: 20px;
    right: -40px;
    background: linear-gradient(50deg, #04964d, #2d9401);
    color: white;
    padding: 8px 40px;
    transform: rotate(50deg);
    font-weight: bold;
    font-size: 0.9rem;
}

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

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-name {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2c5aa0;
    font-weight: bold;
}

.package-price {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: bold;
}

.package-price span {
    font-size: 1.2rem;
    color: #7f8c8d;
}

.package-features {
    list-style: none;
    margin: 30px 0;
    text-align: right;
}

.package-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f8f9fa;
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-features li i {
    color: #27ae60;
    font-size: 1.2rem;
}

/* Why Choose Us */
.why-us {
    padding: 80px 0;
    background: white;
}

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

.reason-item {
    text-align: center;
    padding: 30px;
}

.reason-icon {
    font-size: 3rem;
    color: #2c5aa0;
    margin-bottom: 20px;
}

.reason-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: bold;
}

.reason-desc {
    color: #7f8c8d;
    line-height: 1.8;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    font-weight: bold;
    color: #2c5aa0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #7f8c8d;
    line-height: 1.8;
}

.faq-answer.active {
    padding: 25px;
    max-height: 200px;
}

/* Contact Form */
.contact-form {
    padding: 80px 0;
    background: white;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: bold;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #2c5aa0;
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #3498db;
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.package-price{
    display:flex;
    flex-direction:column;
    align-items:center;
    font-size:1rem;
}

.package-price .old-price{
    font-size:1.2rem;
    text-decoration:line-through;
    color:#dc3545;
    margin-bottom:5px;
}

.package-price .new-price{
    font-size:2.8rem;
    font-weight:bold;
    background:linear-gradient(45deg, #28a745, #1e7e34);
    background-clip:text;
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* Testimonials Section - Modern Carousel Design */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f5 100%);
    position: relative;
    overflow: hidden;
}

.testimonials .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials .section-title {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.testimonials .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    border-radius: 2px;
}

.testimonials .section-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.testimonials-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 50px;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
    overflow: hidden;
    scroll-behavior: smooth;
    padding: 20px 0;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 14px);
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f2f5;
    position: relative;
    min-height: 250px;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.testimonial-card:before {
    content: "\f10d";
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2.5rem;
    color: #f5f7ff;
    z-index: 0;
}

.testimonial-content {
    position: relative;
    z-index: 1;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-text {
    color: #4a5568;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e2e8f0;
    margin-left: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a5568;
    font-weight: bold;
    font-size: 1.2rem;
}

.testimonial-info {
    flex-grow: 1;
}

.testimonial-name {
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 3px;
    font-size: 1rem;
}

.testimonial-role {
    color: #718096;
    font-size: 0.85rem;
    margin: 0;
}

.rating {
    color: #ffc107;
    font-size: 0.9rem;
    margin-top: 5px;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    z-index: 10;
}

.testimonial-nav:hover {
    background: #f8fafc;
    transform: translateY(-50%) scale(1.05);
}

.testimonial-nav.prev {
    right: 0;
}

.testimonial-nav.next {
    left: 0;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 8px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e2e8f0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: #4a5568;
    width: 30px;
    border-radius: 5px;
}

@media (max-width: 992px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 100%;
    }
    
    .testimonials-slider {
        padding: 0 40px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .laptop-screen {
        width: 350px;
        height: 220px;
    }
    
    .laptop-base {
        width: 370px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 90vh;
        padding: 40px 0;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
        max-width: 300px;
    }

    .social-proof {
        justify-content: center;
        gap: 15px;
    }

    .proof-item {
        padding: 10px 15px;
    }

    .laptop-screen {
        width: 280px;
        height: 180px;
    }

    .laptop-base {
        width: 300px;
    }

    .code-lines {
        display: none;
    }

    .floating-element {
        display: none;
    }

    .countdown-timer {
        justify-content: center;
        flex-wrap: wrap;
    }

    .header {
        padding: 10px 0;
    }
    .nav {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .logo {
        font-size: 18px;
        margin-bottom: 10px;
        text-align: center;
    }
    .contact-info {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        align-items: stretch;
    }
    .phone-btn {
        justify-content: center;
        width: 100%;
        font-size: 1rem;
        padding: 10px 0;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .limited-offer {
        padding: 15px 25px;
        font-size: 1rem;
    }

    .laptop-screen {
        width: 240px;
        height: 150px;
        border: 6px solid #2c3e50;
    }

    .laptop-base {
        width: 260px;
        height: 15px;
    }

    .dashboard-mockup {
        padding: 15px;
        gap: 10px;
    }

    .dashboard-header {
        height: 30px;
        padding: 0 10px;
    }

    .dashboard-nav {
        width: 8px;
        height: 8px;
    }

    .dashboard-content {
        gap: 10px;
    }

    .dashboard-card {
        padding: 10px;
        border-radius: 6px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

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

    .features-grid,
    .pricing-grid,
    .reasons-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 10px 0;
    }
    .nav {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0;
        position: relative;
    }
    .logo {
        font-size: 18px;
        margin-bottom: 0;
        text-align: center;
        flex: 1;
    }
    .menu-toggle {
        display: block !important;
        z-index: 1201;
    }
    .contact-info {
        position: fixed;
        top: 0;
        right: 0;
        width: 80vw;
        max-width: 320px;
        height: 100vh;
        background: rgba(255,255,255,0.98);
        box-shadow: -2px 0 20px rgba(44,90,160,0.08);
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
        justify-content: flex-start;
        padding: 80px 20px 20px 20px;
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(.77,0,.18,1);
        z-index: 1200;
        border-radius: 16px 0 0 16px;
        box-sizing: border-box;
        display: flex;
    }
    .contact-info.open {
        transform: translateX(0);
    }
    .contact-info::before {
        content: '';
        position: fixed;
        top: 0; right: 0; bottom: 0; left: 0;
        background: rgba(44,90,160,0.15);
        z-index: -1;
        pointer-events: none;
    }
    .phone-btn {
        justify-content: center;
        width: 100%;
        font-size: 1.1rem;
        padding: 14px 0;
        margin-bottom: 10px;
    }
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 32px 24px;
  align-items: center;
  justify-items: center;
  margin: 0 auto;
  max-width: 1000px;
}
.client-logo {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(44,90,160,0.07);
  padding: 18px 10px 10px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.3s, transform 0.3s;
  min-height: 90px;
  min-width: 120px;
  position: relative;
}
.client-logo img {
  max-width: 80px;
  max-height: 48px;
  margin-bottom: 10px;
  filter: grayscale(0.2) contrast(1.1);
  transition: filter 0.3s, transform 0.3s;
}
.client-logo span {
  font-size: 0.95rem;
  color: #2c5aa0;
  font-weight: 600;
  text-align: center;
  margin-top: 2px;
}
.client-logo:hover {
  box-shadow: 0 8px 32px rgba(44,90,160,0.18);
  transform: translateY(-6px) scale(1.06);
  background: #f7fafc;
}
.client-logo:hover img {
  filter: grayscale(0) contrast(1.2) drop-shadow(0 2px 8px #2c5aa033);
  transform: scale(1.08);
}
@media (max-width: 600px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 10px;
  }
  .client-logo {
    min-width: 90px;
    padding: 10px 4px 6px 4px;
  }
  .client-logo img {
    max-width: 60px;
    max-height: 36px;
  }
}

.clients-marquee-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  margin: 0 auto;
  max-width: 1100px;
}
.clients-marquee {
  display: flex;
  align-items: center;
  gap: 38px;
  animation: marquee-rtl 32s linear infinite;
}
.client-logo {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(44,90,160,0.07);
  padding: 14px 10px 8px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.3s, transform 0.3s;
  min-width: 120px;
  min-height: 80px;
  position: relative;
}
.client-logo img {
  max-width: 70px;
  max-height: 40px;
  margin-bottom: 7px;
  filter: grayscale(0.2) contrast(1.1);
  transition: filter 0.3s, transform 0.3s;
}
.client-logo span {
  font-size: 0.92rem;
  color: #2c5aa0;
  font-weight: 600;
  text-align: center;
  margin-top: 2px;
}
.client-logo:hover {
  box-shadow: 0 8px 32px rgba(44,90,160,0.18);
  transform: translateY(-6px) scale(1.06);
  background: #f7fafc;
}
.client-logo:hover img {
  filter: grayscale(0) contrast(1.2) drop-shadow(0 2px 8px #2c5aa033);
  transform: scale(1.08);
}
@keyframes marquee-rtl {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 600px) {
  .clients-marquee {
    gap: 18px;
  }
  .client-logo {
    min-width: 80px;
    padding: 7px 4px 4px 4px;
  }
  .client-logo img {
    max-width: 44px;
    max-height: 26px;
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.clients-marquee {
  display: flex;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.clients-marquee-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 20px 0;
}

.client-logo {
  transition: all 0.3s ease;
}

.client-logo:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(44,90,160,0.15);
}

.client-logo img {
  transition: all 0.3s ease;
}

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

.clients-marquee-container:hover .clients-marquee {
  animation-play-state: paused;
}

