/* Modern Vedic Echoes Website Styles */

:root {
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --accent-color: #f59e0b;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f8fafc;
    --bg-dark: #0f172a;
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    /* --gradient-primary-2: linear-gradient(135deg, #e2e2e2 0%, #d1d1d1 0%, #9f9f9f 0%); */
    --gradient-secondary: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

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

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.025em;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.1);
    /* backdrop-filter: blur(20px); */
    transition: all 0.3s ease;
    /* padding: 1rem 0; */
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.95);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 0;
}

.navbar-brand img {
    height: 100px;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    transition: color 0.3s ease;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background-image: url('assets/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-bottom: 100px;
}

/* .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0.8;
    z-index: 1;
} */

/* .hero-section::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 100px;
    background: white;
    clip-path: polygon(0 100%, 0 50%, 25% 60%, 50% 40%, 75% 60%, 100% 50%, 100% 100%);
    z-index: 3;
} */

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 2rem 0;
    min-height: calc(100vh - 100px);
}

.hero-text {
    max-width: 500px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-title-highlight {
    color: #fbbf24;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.app-store-btn, .play-store-btn {
    display: inline-block;
    transition: all 0.3s ease;
    text-decoration: none;
}

.store-badge {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.app-store-btn:hover, .play-store-btn:hover {
    transform: translateY(-2px);
}

.app-store-btn:hover .store-badge, .play-store-btn:hover .store-badge {
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
    transform: scale(1.05);
}

.btn-watch {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-watch i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-watch:hover {
    color: #fbbf24;
    transform: translateX(5px);
}

.btn-watch:hover i {
    background: rgba(251, 191, 36, 0.2);
    border-color: rgba(251, 191, 36, 0.5);
}

/* Hero Phone */
.hero-phone {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.phone-mockup {
    position: relative;
    /* width: 300px; */
    /* height: 600px; */
    /* transform: rotate(5deg); */
    /* transition: all 0.6s ease; */
}


.phone-screenshot {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    /* border-radius: 30px; */
    /* box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4); */
    /* border: 8px solid #1f2937; */
}


/* Features Section */
.features-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Carousel */
.features-carousel-container {
    position: relative;
    padding: 2rem 0;
}

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

.features-grid-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card-single {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
    border: 1px solid rgba(99, 102, 241, 0.1);
    position: relative;
    overflow: hidden;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.feature-card-single::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card-single:hover::before {
    transform: scaleX(1);
}

.feature-card-single:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(99, 102, 241, 0.2);
}

.feature-card-single .feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.feature-card-single .feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card-single h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.feature-card-single p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Carousel Customization */
#featuresCarousel {
    position: relative;
}

#featuresCarousel .carousel-inner {
    border-radius: 20px;
    overflow: hidden;
}

#featuresCarousel .carousel-item {
    transition: transform 0.6s ease-in-out;
}

/* Carousel Indicators */
#featuresCarousel .carousel-indicators {
    bottom: -50px;
    margin-bottom: 0;
}

#featuresCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(99, 102, 241, 0.3);
    border: none;
    margin: 0 6px;
    transition: all 0.3s ease;
}

#featuresCarousel .carousel-indicators button.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

#featuresCarousel .carousel-indicators button:hover {
    background-color: var(--primary-color);
    transform: scale(1.1);
}

/* Carousel Controls */
#featuresCarousel .carousel-control-prev,
#featuresCarousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

#featuresCarousel .carousel-control-prev {
    left: -25px;
}

#featuresCarousel .carousel-control-next {
    right: -25px;
}

#featuresCarousel .carousel-control-prev:hover,
#featuresCarousel .carousel-control-next:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

#featuresCarousel .carousel-control-prev-icon,
#featuresCarousel .carousel-control-next-icon {
    width: 20px;
    height: 20px;
    background-size: 20px 20px;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
    border: 1px solid rgba(99, 102, 241, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(99, 102, 241, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.about-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-screenshots {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.about-phone {
    position: relative;
    width: 200px;
    height: 400px;
    transition: all 0.6s ease;
    margin: 0 auto;
}

.about-phone-3 {
    z-index: 2;
    transform: translateX(0px);
}

.about-phone-3 {
    z-index: 2;
    transform: translateX(-14px);
}

.about-phone-2 {
    z-index: 1;
    transform: translateX(-9px) translateY(0) rotateY(-36deg) rotateZ(0deg);
}

.about-phone-1 {
    z-index: 1;
    transform: translateX(-20px) translateY(0) rotateY(36deg) rotateZ(0deg);
}

.about-phone:hover {
    transform: translateY(-10px) scale(1.05);
}

.about-phone-1:hover, .about-phone-3:hover, .about-phone-2:hover {
    transform: translateX(-20px) translateY(-10px) scale(1.05);
}

.about-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

/* Mission Section */
.mission-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.mission-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.mission-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.mission-description {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: white;
}

.rating-summary {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.rating-badge {
    background: var(--gradient-secondary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
    border: 1px solid rgba(99, 102, 241, 0.1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(99, 102, 241, 0.2);
}

.testimonial-stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1rem;
}

.testimonial-stars i {
    color: #fbbf24;
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-color);
}

.author-info span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Testimonials Carousel Section */
.testimonials-carousel-section {
    padding: 6rem 0 4rem;
    background: var(--bg-light);
    overflow: hidden;
}

.testimonials-scroll-wrapper {
    margin-top: 3rem;
    width: 100%;
    overflow: hidden;
    position: relative;
    min-height: 300px;
    background: transparent;
}

.testimonials-scroll-container {
    display: flex;
    gap: 2rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    animation: scrollTestimonials 60s linear infinite;
    width: max-content;
    position: relative;
    z-index: 1;
}

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

.testimonials-scroll-container:hover {
    animation-play-state: paused;
}

.testimonial-scroll-item {
    flex-shrink: 0;
    width: 400px;
}

.testimonial-scroll-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    border: 1px solid rgba(99, 102, 241, 0.1);
    height: 100%;
    position: relative;
}

.testimonial-scroll-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(99, 102, 241, 0.2);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.testimonial-rating {
    display: flex;
    gap: 0.2rem;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 0.9rem;
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.3);
}

.verified-badge i {
    font-size: 0.8rem;
    color: white;
}

.testimonial-scroll-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-style: italic;
    quotes: """ """ "'" "'";
}

.testimonial-scroll-card p:before {
    content: open-quote;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
}

.testimonial-scroll-card p:after {
    content: close-quote;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
}

.testimonial-author-info {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    flex-shrink: 0;
}

.author-details {
    flex: 1;
}

.author-details strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.location {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.user-info {
    /* display: inline-block; */
    display: none;
    font-size: 0.75rem;
    color: var(--primary-color);
    background: rgba(99, 102, 241, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-weight: 600;
}

.rating-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    display: inline-block;
    margin-top: 1rem;
}

/* Responsive Testimonials */
@media (max-width: 768px) {
    .testimonials-carousel-section {
        padding: 4rem 0 3rem;
    }
    
    .testimonial-scroll-item {
        width: 300px;
    }
    
    .testimonial-scroll-card {
        padding: 1.5rem;
    }
    
    .testimonial-scroll-container {
        gap: 1.5rem;
        animation: scrollTestimonials 10s linear infinite;
    }
    
    .testimonial-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .verified-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
    
    .testimonial-scroll-card p {
        font-size: 0.9rem;
    }
    
    .author-image {
        width: 40px;
        height: 40px;
    }
    
    .author-details strong {
        font-size: 0.9rem;
    }
    
    .location {
        font-size: 0.8rem;
    }
    
    .user-info {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .testimonial-scroll-item {
        width: 280px;
    }
    
    .testimonial-scroll-card {
        padding: 1.25rem;
    }
    
    .testimonial-scroll-container {
        gap: 1rem;
        animation: scrollTestimonials 90s linear infinite;
    }
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: url('assets/cta-bg.jpg') center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.cta-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* .cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary-2);
    opacity: 0.7;
    z-index: 1;
} */

.cta-section::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"><defs><pattern id="stars" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.3;
    z-index: 2;
}

.cta-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    background-color: rgba(0, 0, 0, 0.3)    ;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-logo {
    height: 80px;
    margin-bottom: 1rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.newsletter {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-direction: column;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
    width: 100%;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-btn {
    padding: 0.75rem 1.5rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.footer-column h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

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


.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    color: white;
}

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

/* Animations */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content {
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .features-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    #featuresCarousel .carousel-control-prev {
        left: -15px;
    }
    
    #featuresCarousel .carousel-control-next {
        right: -15px;
    }
}

@media (max-width: 1024px) {
    .navbar-brand img {
        height: 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding: 1rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .phone-mockup {
        width: auto;
        height: auto;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .about-phone {
        width: 150px;
        height: 300px;
    }
    
    /* .about-phone-1 {
        transform: translateX(-15px);
    }
     */
    /* .about-phone-2 {
        transform: translateX(15px) translateY(10px) rotateY(-6deg) rotateZ(1deg);
    } */
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .newsletter {
        flex-direction: row;
    }
}

@media (max-width: 900px) {
    .features-grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .navbar-brand img {
        height: 50px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .store-badge {
        height: 50px;
    }
    
    .phone-mockup {
        width: 220px;
        height: 440px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .features-grid-3 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    #featuresCarousel .carousel-control-prev,
    #featuresCarousel .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    #featuresCarousel .carousel-control-prev {
        left: -10px;
    }
    
    #featuresCarousel .carousel-control-next {
        right: -10px;
    }
    
    #featuresCarousel .carousel-control-prev-icon,
    #featuresCarousel .carousel-control-next-icon {
        width: 16px;
        height: 16px;
        background-size: 16px 16px;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-card-single {
        padding: 2rem;
        max-width: 400px;
    }
    
    .feature-card-single .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }
    
    .feature-card-single .feature-icon i {
        font-size: 1.8rem;
    }
    
    .feature-card-single h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .feature-card-single p {
        font-size: 1rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .about-phone {
        width: 120px;
        height: 240px;
    }
    
    /* .about-phone-1 {
        transform: translateX(-10px);
    }
     */
    /* .about-phone-2 {
        transform: translateX(10px) translateY(10px) rotateY(-4deg) rotateZ(1deg);
    } */
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .newsletter {
        flex-direction: column;
    }
    
    .cta-title {
        font-size: 2rem;
        padding: 0.75rem;
    }
    
    /* Hide video on mobile for better performance, show fallback image */
    .cta-video-bg {
        display: none;
    }
}

@media (max-width: 576px) {
    .navbar-brand img {
        height: 45px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .hero-badge {
        margin-top: 40px;
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .store-badge {
        height: 45px;
    }

    /* .hero-phone{
        display: none;
    } */
    
    .phone-mockup {
        width: auto;
        height: auto;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 1.25rem;
    }
    
    .feature-card-single {
        padding: 1.5rem;
        max-width: 350px;
    }
    
    .feature-card-single .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .feature-card-single .feature-icon i {
        font-size: 1.5rem;
    }
    
    .feature-card-single h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .feature-card-single p {
        font-size: 0.95rem;
    }
    
    #featuresCarousel .carousel-control-prev,
    #featuresCarousel .carousel-control-next {
        width: 35px;
        height: 35px;
    }
    
    #featuresCarousel .carousel-control-prev {
        left: -5px;
    }
    
    #featuresCarousel .carousel-control-next {
        right: -5px;
    }
    
    #featuresCarousel .carousel-control-prev-icon,
    #featuresCarousel .carousel-control-next-icon {
        width: 14px;
        height: 14px;
        background-size: 14px 14px;
    }
    
    #featuresCarousel .carousel-indicators {
        bottom: -40px;
    }
    
    #featuresCarousel .carousel-indicators button {
        width: 10px;
        height: 10px;
        margin: 0 4px;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
    }
    
    .about-phone {
        width: 100px;
        height: 200px;
    }
    
    /* .about-phone-1 {
        transform: translateX(-8px);
    }
    
    .about-phone-2 {
        transform: translateX(8px) translateY(8px) rotateY(-3deg) rotateZ(1deg);
    } */
    
    .cta-title {
        font-size: 1.8rem;
        padding: 0.5rem;
    }
    
    .footer-logo {
        height: 60px;
    }
    
    .footer-description {
        font-size: 0.9rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .mission-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-description {
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .feature-card {
        padding: 1rem;
    }
    
    .about-phone {
        width: 80px;
        height: 160px;
    }
    
    /* .about-phone-1 {
        transform: translateX(-5px);
    }
    
    .about-phone-2 {
        transform: translateX(5px) translateY(5px) rotateY(-2deg) rotateZ(0.5deg);
    } */
    
    .cta-title {
        font-size: 1.6rem;
    }
    
    .store-badge {
        height: 40px;
    }
    
    .phone-mockup {
        width: auto;
        height: auto;
    }
    
    .feature-card-single {
        padding: 1.25rem;
        max-width: 300px;
    }
    
    .feature-card-single .feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.8rem;
    }
    
    .feature-card-single .feature-icon i {
        font-size: 1.3rem;
    }
    
    .feature-card-single h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .feature-card-single p {
        font-size: 0.9rem;
    }
    
    #featuresCarousel .carousel-control-prev,
    #featuresCarousel .carousel-control-next {
        width: 30px;
        height: 30px;
    }
    
    #featuresCarousel .carousel-control-prev {
        left: 0;
    }
    
    #featuresCarousel .carousel-control-next {
        right: 0;
    }
    
    #featuresCarousel .carousel-control-prev-icon,
    #featuresCarousel .carousel-control-next-icon {
        width: 12px;
        height: 12px;
        background-size: 12px 12px;
    }
    
    #featuresCarousel .carousel-indicators {
        bottom: -35px;
    }
    
    #featuresCarousel .carousel-indicators button {
        width: 8px;
        height: 8px;
        margin: 0 3px;
    }
}

/* 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: #4f46e5;
}