@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&family=Sora:wght@400;500;600;700;800&family=Poppins:wght@600;700;800;900&family=Lexend:wght@400;500;600;700;800;900&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Quicksand', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #0a1628;
    color: #f0f9ff;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes slideDown {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

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

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

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(59, 130, 246, 0.3); }
    50% { box-shadow: 0 0 40px rgba(59, 130, 246, 0.6); }
}

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

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

.animate-fadeIn { animation: fadeIn 0.3s ease-out; }
.animate-slideUp { animation: slideUp 0.4s ease-out; }
.animate-slideDown { animation: slideDown 0.4s ease-out; }
.animate-bounce { animation: bounce 2s infinite; }
.animate-pulse { animation: pulse 2s ease-in-out infinite; }
.animate-glow { animation: glow 2s ease-in-out infinite; }
.animate-scroll { animation: scroll linear infinite; animation-duration: 60s; }
.animate-float { animation: float 3s ease-in-out infinite; }

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
nav {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    max-width: 1200px;
    z-index: 40;
    backdrop-filter: blur(20px);
    border-radius: 50px;
    background: rgba(10, 22, 40, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(96, 165, 250, 0.1);
    animation: fadeIn 1.5s ease-out;
}

.nav-container {
    max-width: 100%;
    padding: 0.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: auto;
    gap: 2rem;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-link {
    font-size: 0.9rem;
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-weight: 500;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #60a5fa;
    /* background: rgba(59, 130, 246, 0.1); */
}

.nav-link:hover::after {
    width: calc(100% - 2rem);
}

.nav-btn {
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: #ffffff;
    border: none;
    font-weight: 700;
    font-size: 0.9rem;
    font-family: 'Quicksand', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.6);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 900px) {
    nav {
        width: calc(100% - 2rem);
        top: 1rem;
        left: 1rem;
        right: 1rem;
        transform: none;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 22, 40, 0.95);
        border-bottom: 1px solid rgba(59, 130, 246, 0.3);
        border-radius: 0 0 30px 30px;
        flex-direction: column;
        padding: 1rem;
        gap: 0.5rem;
        margin-top: 0.5rem;
        justify-content: flex-start;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
    padding: 8rem 1rem 4rem;
    animation: slideUp 1.4s ease-in;
}

.hero-3d-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-3d-container canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.3) 0%, rgba(15, 31, 56, 0.5) 50%, rgba(10, 22, 40, 1) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-text {
    text-align: center;
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-text h1 {
    font-size: 5.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    font-family: 'Sora', sans-serif;
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 3rem;
    }
}

.hero-text p {
    font-size: 1.2rem;
    color: #94a3b8;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    justify-content: center;
    white-space: nowrap;
    font-size: 1rem;
    font-family: 'Quicksand', sans-serif;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.6);
}

.btn-secondary {
    border: 2px solid rgba(59, 130, 246, 0.5);
    color: #60a5fa;
    background: transparent;
}

.btn-secondary:hover {
    border-color: #60a5fa;
    background: rgba(59, 130, 246, 0.1);
    color: #ffffff;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    color: #94a3b8;
}

/* Sections */
section {
    position: relative;
    overflow: hidden;
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: -0.5rem;
    font-weight: 700;
    font-family: 'Lexend', sans-serif;
    letter-spacing: -0.01em;

}

.section-header p {
    font-size: 1.1rem;
    color: #94a3b8;
    max-width: 42rem;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 8rem 0;
    background: linear-gradient(to bottom, #0a1628, rgba(30, 58, 138, 0.15));
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    padding: 2.5rem;
    border-radius: 1.5rem;
    background: rgba(30, 58, 138, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    border-color: rgba(59, 130, 246, 0.4);
    background: rgba(30, 58, 138, 0.2);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.15);
    transform: translateY(-5px);
}

.feature-card-content {
    position: relative;
    z-index: 1;
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1.5rem;
    color: #3b82f6;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #f0f9ff;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.feature-card p {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.7;
}

/* Gallery Section */
.gallery {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0a1628, rgba(15, 31, 56, 0.6));
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    grid-auto-rows: 280px;
}

@media (min-width: 768px) {
    .gallery-container {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 280px;
    }
}

@media (min-width: 1024px) {
    .gallery-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-item {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    cursor: pointer;
    background: rgba(26, 47, 74, 0.4);
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    height: 100%;
}

.gallery-item.large {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .gallery-item.large {
        grid-column: span 1;
    }
}

.gallery-item:hover {
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.25);
    transform: translateY(-8px);
}

.gallery-image {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    transition: transform 0.4s ease;
}

.gallery-item:hover .placeholder-image {
    transform: scale(1.05);
}

.gallery-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 22, 40, 0.95) 30%, rgba(10, 22, 40, 1) 100%);
    z-index: 2;
    transition: all 0.3s ease;
}

.gallery-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #f0f9ff;
    font-family: 'Poppins', sans-serif;
}

.gallery-item p {
    font-size: 0.85rem;
    color: #94a3b8;
    line-height: 1.5;
}

/* Tech Rail */
.tech-rail {
    padding: 6rem 1rem;
    background: linear-gradient(to right, rgba(59, 130, 246, 0), rgba(59, 130, 246, 0.08), rgba(59, 130, 246, 0));
    overflow: hidden;
    position: relative;
}

.tech-rail::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100px;
    background: linear-gradient(to right, #0a1628, transparent);
    z-index: 10;
}

.tech-rail::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100px;
    background: linear-gradient(to left, #0a1628, transparent);
    z-index: 10;
}

.tech-rail-content {
    display: flex;
    gap: 1.5rem;
    animation: scroll linear infinite 60s;
    width: fit-content;
    padding: 0 1rem;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 1rem;
    border-radius: 1rem;
    background: transparent;
    border: none;
    white-space: nowrap;
    min-width: 110px;
    flex-shrink: 0;
}

.tech-icon {
    display: none;
}

.tech-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #cbd5e1;
    text-align: center;
}

/* Pricing Section */
.pricing {
    padding: 8rem 1rem;
    background: #0a1628;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    border-radius: 1.5rem;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.5s ease;
    background: rgba(30, 58, 138, 0.1);
    position: relative;
}

.pricing-card.highlighted {
    background: linear-gradient(to bottom right, rgba(59, 130, 246, 0.2), rgba(30, 58, 138, 0.3));
    border: 2px solid rgba(59, 130, 246, 0.6);
    transform: scale(1.05);
    box-shadow: 0 25px 60px rgba(59, 130, 246, 0.25);
}

.pricing-card:hover {
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-5px);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #f0f9ff;
    font-family: 'Poppins', sans-serif;
}

.pricing-badge {
    font-size: 0.875rem;
    color: #94a3b8;
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #cbd5e1;
    margin-bottom: 0.75rem;
}

.pricing-dot {
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
    background: #3b82f6;
    margin-top: 0.375rem;
    flex-shrink: 0;
}

.pricing-btn {
    width: 100%;
    padding: 0.875rem;
    border-radius: 50px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: #ffffff;
    border: none;
    font-weight: 700;
    font-family: 'Quicksand', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    font-size: 1.3rem;
    letter-spacing: 0.5px;
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.5);
}

.pricing-cta {
    text-align: center;
}

.pricing-cta p {
    color: #94a3b8;
    margin-bottom: 1.5rem;
}

/* Footer CTA */
.footer-cta {
    padding: 4rem 1rem;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    background: rgba(30, 58, 138, 0.1);
    backdrop-filter: blur(10px);
}

.footer-cta-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 640px) {
    .footer-cta-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.footer-cta-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-cta-text p {
    color: #94a3b8;
}

.footer-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .footer-cta-buttons {
        flex-direction: row;
    }
}

/* Footer */
footer {
    background: linear-gradient(to bottom, rgba(10, 22, 40, 0.8), rgba(5, 15, 23, 1));
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    padding: 5rem 1rem 2rem;
    position: relative;
    overflow: hidden;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-section h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #f0f9ff;
    font-weight: 700;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.875rem;
}

.footer-section a:hover {
    color: #60a5fa;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.footer-description {
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(59, 130, 246, 0.3);
    border-color: #60a5fa;
    color: #60a5fa;
    transform: translateY(-3px);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(59, 130, 246, 0.3), transparent);
    margin: 3rem 0;
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.footer-copyright {
    color: #94a3b8;
    font-size: 0.875rem;
}

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

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #60a5fa;
}

/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 42rem;
    margin: 1rem;
    background: linear-gradient(to bottom right, #0f1f38, #0a1628);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.4s ease-out;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(59, 130, 246, 0.2);
    color: #f0f9ff;
    border-radius: 0.5rem;
}

.modal-header h2 {
    font-size: 1.875rem;
    margin-bottom: 0.5rem;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-input,
.modal-select,
.modal-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    background: rgba(30, 58, 138, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #f0f9ff;
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.modal-input::placeholder,
.modal-textarea::placeholder {
    color: #94a3b8;
}

.modal-input:focus,
.modal-select:focus,
.modal-textarea:focus {
    outline: none;
    border-color: #60a5fa;
    background: rgba(30, 58, 138, 0.3);
}

.modal-textarea {
    resize: none;
    font-family: 'Quicksand', sans-serif;
}

.modal-submit {
    width: 100%;
    padding: 0.875rem;
    margin-top: 0.5rem;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: #ffffff;
    border: none;
    font-weight: 700;
    font-family: 'Quicksand', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.modal-submit:hover {
    transform: translateY(-2px);
}

.demo-viewer {
    width: 100%;
    height: 24rem;
    border-radius: 1rem;
    background: rgba(30, 58, 138, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.demo-icon {
    width: 4rem;
    height: 4rem;
    color: #3b82f6;
    margin-bottom: 1rem;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(10, 22, 40, 0.5);
}

::-webkit-scrollbar-thumb {
    background: rgba(59, 130, 246, 0.5);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(59, 130, 246, 0.7);
}