/* 
 * Smart Records - Landing Page Styles
 * Created for SRITS Website
 */

/* Base Styles */
:root {
    --primary-color: #2196f3;
    --secondary-color: #536dfe;
    --accent-color: #03dac6;
    --dark-color: #212121;
    --light-color: #fafafa;
    --text-color: #333333;
    --text-light: #757575;
    --success-color: #4caf50;
    --border-radius: 4px;
    --box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    /* Animation variables */
    --animate-duration: 0.5s;
    --animate-delay: 0.3s;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

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

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-color);
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before, .btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: width 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
    z-index: -1;
}

.btn-primary:hover::before, .btn-secondary:hover::before {
    width: 100%;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: scale(1.05);
    box-shadow: var(--box-shadow);
}

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

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

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

.logo img {
    height: 50px;
}

nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

nav ul li a {
    color: var(--dark-color);
    font-weight: 500;
    transition: var(--transition);
}

nav ul li a:hover {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
    z-index: 1001;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    padding: 0;
    margin: 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Hero Carousel/Swiper styles */
.hero-carousel {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
}

.swiper {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide {
    position: relative;
}

.swiper-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.swiper-slide img {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    display: block;
    margin: 0;
    padding: 0;
}

.swiper-slide img:hover {
    transform: scale(1.02);
}

.swiper-pagination-bullet {
    background-color: var(--primary-color);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-color);
    opacity: 1;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    text-align: center;
    width: 90%;
    max-width: 1200px;
    margin-top: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    position: relative;
    text-align: center;
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 4;
}

.wave-divider img {
    width: 100%;
    height: auto;
    display: block;
}

/* Products Section */
.products {
    padding: 100px 0;
}

.product-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    padding: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-card.reversed {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.product-card.reversed .product-info {
    direction: ltr;
}

.product-logo img {
    height: 60px;
    margin-bottom: 20px;
}

.product-info h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.product-info p {
    margin-bottom: 25px;
    color: var(--text-light);
}

.features-list {
    margin-bottom: 30px;
}

.features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-icon {
    width: 30px;
    height: 30px;
    margin-right: 15px;
    object-fit: contain;
}

/* Features Section with Wavy Background */
.features {
    padding: 0;
    position: relative;
    overflow: hidden;
}

.wavy-bg {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(to bottom, #36375a, #2c3154, #212a52);
    overflow: hidden;
    z-index: 1;
}

/* Shapes for the wavy background */
.shape {
    position: absolute;
    z-index: 0;
    border-radius: 50%;
}

.shape-1 {
    top: 20px;
    left: 10%;
    width: 60px;
    height: 60px;
    background-color: rgba(83, 109, 254, 0.3);
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    top: 15%;
    right: 10%;
    width: 40px;
    height: 40px;
    background-color: rgba(3, 218, 198, 0.2);
    animation: float 8s ease-in-out infinite 1s;
}

.shape-3 {
    bottom: 15%;
    left: 5%;
    width: 30px;
    height: 30px;
    background-color: rgba(33, 150, 243, 0.4);
    animation: float 5s ease-in-out infinite 0.5s;
}

.shape-4 {
    top: 45%;
    right: 15%;
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.1);
    animation: float 7s ease-in-out infinite 2s;
}

.shape-5 {
    bottom: 10%;
    right: 20%;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 193, 7, 0.3);
    animation: float 9s ease-in-out infinite 1.5s;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* About Section Styles */
.about-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    color: var(--text-color);
    line-height: 1.8;
}

.values-list {
    text-align: left;
    padding: 0;
    margin: 0;
}

.values-list li {
    margin-bottom: 12px;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
}

.values-list li strong {
    color: var(--primary-color);
    margin-right: 8px;
    min-width: 140px;
}

/* Section title color for dark background */
.section-title.light {
    color: white;
}

.section-title.light:after {
    background: var(--accent-color);
}

/* Stats in wavy background */
.stats-wrapper {
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.stats-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 50px;
    margin-bottom: 50px;
}

.stats-row .stat-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    color: white;
    margin: 0 15px;
    position: relative;
    z-index: 2;
}

.stats-row .stat-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.stats-row .stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    display: block;
    color: white;
    line-height: 1;
}

.stats-row .stat-item p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
    font-weight: 500;
    letter-spacing: 1px;
}

.feature-item {
    background-color: rgba(21, 30, 63, 0.75);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    transition: var(--transition);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
    z-index: -1;
}

.feature-item:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.feature-item .feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.feature-item .feature-icon img {
    width: 100%;
    height: auto;
    filter: brightness(1) contrast(1.2);
}

.feature-item h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: white;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.7);
}

/* Beta Program Section */
.beta-program {
    padding: 100px 0;
    background: linear-gradient(135deg, #4a4af4 0%, #1e88e5 100%);
    color: white;
}

.beta-program .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.beta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.beta-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.beta-form {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.form-group textarea {
    height: 120px;
    resize: none;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: white;
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-item {
    text-align: center;
    display: none;
}

.testimonial-item.active {
    display: block;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid var(--primary-color);
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-color);
}

.testimonial-author {
    font-weight: 600;
    color: var(--dark-color);
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.prev-btn, .next-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
}

.prev-btn:hover, .next-btn:hover {
    color: var(--secondary-color);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
    margin: 0 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    transition: var(--transition);
    cursor: pointer;
}

.dot.active {
    background-color: var(--primary-color);
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background-color: var(--dark-color);
    color: white;
}

.stats .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    display: inline-block;
}

.stat-plus, .stat-percent {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.stat-item p {
    font-size: 1.2rem;
    margin-top: 10px;
}

/* Beta Signup Form */
.beta-signup .form-container iframe {
    height: 500px;
    width: 99%;
    border: none;
}
#form {
    max-width: 600px;
    margin: 80px auto;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

#form h2 {
    color: var(--dark-text);
    font-size: 2rem;
    margin-bottom: 15px;
    text-align: center;
}

#form p {
    color: var(--gray-text);
    text-align: center;
    margin-bottom: 30px;
}

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

#form label {
    display: block;
    color: var(--dark-text);
    margin-bottom: 8px;
    font-weight: 500;
}

#form .name-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

#form .field-group {
    position: relative;
}

#form .sublabel {
    font-size: 0.8rem;
    color: var(--gray-text);
    margin-top: 4px;
    font-weight: normal;
}

#form label em {
    color: var(--primary-color);
    font-style: normal;
}

#form input[type="text"],
#form select {
    width: 100%;
    padding: 12px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

#form input[type="text"]:focus,
#form select:focus {
    border-color: var(--primary-color);
    outline: none;
}

#form select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 1em;
}

#form button[type="submit"] {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#form button[type="submit"]:hover {
    background-color: var(--accent-color);
}

#form button[type="submit"] em {
    font-style: normal;
}

@media (max-width: 768px) {
    #form {
        margin: 40px 20px;
        padding: 30px 20px;
    }
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: var(--light-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 3px solid var(--primary-color);
    padding: 3px;
    background: white;
}

.member-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.member-info .role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.qualifications {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.qualifications li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.4;
}

.qualifications li i {
    color: var(--success-color);
    flex-shrink: 0;
}

@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}

.contact-info {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
}

.contact-form {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 80px 0 20px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo img {
    height: 120px;
    margin-bottom: 20px;
}

.footer-logo p {
    color: #adb5bd;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #adb5bd;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px auto;
    max-width: 1200px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 2.5em;
    color: var(--primary-color);
}

.feature-item h4 {
    color: white;
    margin: 15px 0;
    font-size: 1.2em;
    font-weight: 600;
}

.feature-item p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95em;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 20px;
    }

    .feature-item {
        padding: 25px;
    }
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #adb5bd;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .product-card,
    .product-card.reversed,
    .beta-program .container,
    .contact-wrapper,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .product-card.reversed {
        direction: ltr;
    }
    
    .product-image {
        order: -1;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    nav ul {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    nav ul {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        padding: 20px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        gap: 15px;
        text-align: center;
        transition: all 0.3s ease;
    }

    nav ul.active {
        display: flex;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stats .container {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Custom Animations */
@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

/* Scroll Buttons */
.scroll-buttons {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.scroll-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.scroll-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.scroll-btn.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .scroll-buttons {
        right: 20px;
        bottom: 20px;
    }

    .scroll-btn {
        width: 35px;
        height: 35px;
        font-size: 1em;
    }
}

/* Button animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(33, 150, 243, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(33, 150, 243, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(33, 150, 243, 0);
    }
}

.cta-buttons .btn-primary {
    animation: pulse 2s infinite;
}

/* Animate-on-scroll custom classes */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
}

.fade-in-up {
    transform: translateY(30px);
}

.fade-in-up.animated {
    transform: translateY(0);
}

.fade-in-left {
    transform: translateX(-30px);
}

.fade-in-left.animated {
    transform: translateX(0);
}

.fade-in-right {
    transform: translateX(30px);
}

.fade-in-right.animated {
    transform: translateX(0);
}

/* Make design flatter */
.product-card, .feature-item, .beta-form, .contact-form, .contact-info {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.06);
}

/* Hover effects */
.nav ul li a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.nav ul li a:hover::after {
    width: 100%;
}

/* Input field effects */
.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(33, 150, 243, 0.2);
}
