/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background-color: #f9f9f9;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #8A2BE2, #9370DB);
    color: white;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(138, 43, 226, 0.4);
}

.btn-secondary {
    background: white;
    color: #8A2BE2;
    border: 2px solid #8A2BE2;
}

.btn-secondary:hover {
    background: #8A2BE2;
    color: white;
}

.btn-outline {
    background: transparent;
    color: #8A2BE2;
    border: 2px solid #8A2BE2;
}

.btn-outline:hover {
    background: #8A2BE2;
    color: white;
}

/* Section Titles */
.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 15px;
    color: #2a2a2a;
    position: relative;
}

.section-title span {
    color: #8A2BE2;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #8A2BE2, #9370DB);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 5px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    width: 100px;
    height: 50px;
    margin-right: 15px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #8A2BE2;
    line-height: 1;
}

.logo-tagline {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-link {
    margin-left: 30px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: #8A2BE2;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #8A2BE2;
}

.nav-btn {
    margin-left: 30px;
    background: #8A2BE2;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: #9370DB;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease;
    background-color: #333;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    position: relative;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
}

.hero-slider {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 1s ease;
    padding: 0 20px;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    width: 50%;
    padding-right: 50px;
    animation: fadeInLeft 1s ease;
}

.slide-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #2a2a2a;
    line-height: 1.2;
}

.slide-title span {
    color: #8A2BE2;
    display: block;
}

.slide-text {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.stat h3 {
    font-size: 2.5rem;
    color: #8A2BE2;
    margin-bottom: 5px;
}

.stat p {
    color: #666;
    font-size: 0.9rem;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature i {
    color: #4CAF50;
    font-size: 1.2rem;
}

.slide-image {
    width: 50%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: fadeInRight 1s ease;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}

.slide.active .hero-img {
    transform: scale(1.1);
}

.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
}

.prev-btn, .next-btn {
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #8A2BE2;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.prev-btn:hover, .next-btn:hover {
    background-color: #8A2BE2;
    color: white;
    transform: scale(1.1);
}

.dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(138, 43, 226, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #8A2BE2;
    transform: scale(1.2);
}

/* About Section */
.about-section {
    background-color: #c8b2ef;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.8;
}

.about-description strong {
    color: #8A2BE2;
    font-weight: 600;
}

.about-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.detail {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.detail:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.detail i {
    font-size: 2rem;
    color: #8A2BE2;
}

.detail h4 {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 5px;
}

.detail p {
    font-weight: 600;
    color: #333;
}

.about-image {
    flex: 1;
}

.about-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Subscription Section */
.subscription-section {
    background: linear-gradient(135deg, white);
}

.subscription-container {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.subscription-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.subscription-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.subscription-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #8A2BE2, #9370DB);
    color: white;
    padding: 8px 25px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.subscription-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.subscription-name {
    font-size: 2rem;
    color: #2a2a2a;
    margin-bottom: 10px;
}

.subscription-price {
    font-size: 3rem;
    font-weight: 700;
    color: #8A2BE2;
}

.subscription-price span {
    font-size: 1.2rem;
    color: #666;
    font-weight: 400;
}

.subscription-features {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-item i {
    font-size: 1.5rem;
    color: #8A2BE2;
}

.feature-item h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 5px;
}

.feature-item p {
    color: #666;
    font-size: 0.9rem;
}

.subscription-cta {
    text-align: center;
}

.trial-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid #8A2BE2;
    transition: all 0.3s ease;
}

.trial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.trial-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.trial-title {
    font-size: 1.8rem;
    color: #2a2a2a;
    margin-bottom: 10px;
}

.trial-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8A2BE2;
}

.trial-price span {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
}

.trial-content p {
    text-align: center;
    color: #666;
    margin-bottom: 20px;
}

.trial-features {
    list-style: none;
    margin-bottom: 25px;
}

.trial-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.trial-features i {
    color: #4CAF50;
}

.trial-cta {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.call-support {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 10px;
}

.call-support i {
    font-size: 1.5rem;
    color: #8A2BE2;
}

.call-support p {
    font-size: 0.9rem;
    color: #777;
    margin: 0;
}

.call-support h4 {
    font-size: 1.2rem;
    color: #333;
    margin: 5px 0;
}

.call-support small {
    font-size: 0.8rem;
    color: #999;
}

/* Why Choose Us Section */
.why-choose-section {
    background-color: #c8b2ef;
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: #f9f9f9;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #8A2BE2, #9370DB);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(147, 112, 219, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #8A2BE2;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, #8A2BE2, #9370DB);
    color: white;
    transform: scale(1.1);
}

.benefit-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2a2a2a;
}

.benefit-text {
    color: #666;
    font-size: 0.95rem;
}

/* Features Section */
.features-section {
    background: linear-gradient(135deg,#c8b2ef);
}

.features-highlight {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.highlight-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(147, 112, 219, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #8A2BE2;
    font-size: 2rem;
}

.highlight-number {
    font-size: 3rem;
    font-weight: 700;
    color: #8A2BE2;
    margin-bottom: 10px;
}

.highlight-text {
    color: #666;
    font-size: 1.rem;
    font-weight: 500;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-item-main {
    background: white;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-item-main:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-item-main i {
    font-size: 3rem;
    color: #8A2BE2;
    margin-bottom: 20px;
}

.feature-item-main h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2a2a2a;
}

.feature-item-main p {
    color: #666;
}

/* Testimonials Section */
.testimonials-section {
    background-color: white;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-card {
    background: #f9f9f9;
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: rgba(138, 43, 226, 0.1);
    font-family: Georgia, serif;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.testimonial-content p {
    font-style: italic;
    color: #555;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 5px;
}

.author-info p {
    color: #666;
    font-size: 0.9rem;
}

.author-rating {
    color: #FFD700;
    font-size: 1.2rem;
}

.google-reviews {
    background: linear-gradient(135deg, #8A2BE2, #9370DB);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    color: white;
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-header i {
    font-size: 2.5rem;
}

.review-header h3 {
    font-size: 2rem;
}

.google-reviews p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Contact Section */
.contact-section {
    background-color: #c8b2ef;
}

.contact-container {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(147, 112, 219, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8A2BE2;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 5px;
}

.contact-details a, .contact-details p {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #8A2BE2;
}

.social-links {
    margin-top: 30px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.social-links h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #333;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: #8A2BE2;
    color: white;
    transform: translateY(-5px);
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #2a2a2a;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #8A2BE2;
    outline: none;
    box-shadow: 0 0 0 3px rgba(138, 43, 226, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: #2a2a2a;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 2;
    min-width: 300px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.footer-logo-text h3 {
    font-size: 2rem;
    color: #8A2BE2;
    margin-bottom: 5px;
}

.footer-logo-text p {
    color: #aaa;
}

.footer-links {
    flex: 2;
    min-width: 300px;
    display: flex;
    gap: 50px;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: white;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #8A2BE2;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #8A2BE2;
    padding-left: 5px;
}

.footer-contact {
    flex: 1;
    min-width: 250px;
}

.footer-contact h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: white;
    position: relative;
    padding-bottom: 10px;
}

.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #8A2BE2;
}

.footer-contact p {
    color: #aaa;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: #8A2BE2;
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #aaa;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 10px;
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes countUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .benefits-container,
    .features-highlight {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .slide-content, .slide-image {
        width: 100%;
    }
    
    .slide {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 50px;
    }
    
    .slide-content {
        padding-top: 160px;
        padding-right: 0;
        margin-bottom: 40px;
        animation: fadeInUp 1s ease;
    }
    
    .slide-image {
        height: 300px;
        animation: fadeInUp 1s ease 0.3s both;
    }
    
    .hero {
        height: auto;
        min-height: auto;
        padding: 100px 0 50px;
    }
    
    .slider-controls {
        position: relative;
        bottom: auto;
        padding: 30px 20px 0;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-text, .about-image {
        width: 100%;
    }
    
    .testimonials-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        margin: 15px 0;
        font-size: 1.2rem;
    }
    
    .nav-btn {
        margin: 15px 0 0;
        display: inline-block;
    }
    
    .section-title {
        font-size: 2.3rem;
    }
    
    .slide-title {
        font-size: 2.8rem;
    }
    
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .benefits-container,
    .features-highlight,
    .testimonials-container,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-details {
        grid-template-columns: 1fr;
    }
    
    .subscription-container {
        flex-direction: column;
    }
    
    .subscription-card,
    .trial-card {
        max-width: 100%;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
}

@media screen and (max-width: 576px) {
    .section-title {
        font-size: 2rem;
    }
    
    .slide-title {
        font-size: 2.2rem;
    }
    
    .slide-text {
        font-size: 1rem;
    }
    
    .subscription-card,
    .trial-card,
    .contact-form {
        padding: 25px;
    }
    
    .highlight-number {
        font-size: 2.5rem;
    }
}

/* Products Section */
.products-section {
    background: white;
    padding: 80px 0;
}

.products-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 25px;
    background: #f0f0f0;
    border: none;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: linear-gradient(135deg, #8A2BE2, #9370DB);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.3);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.6s ease forwards;
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-info {
    color: white;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.product-card:hover .product-info {
    transform: translateY(0);
}

.product-info h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.product-info p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.product-content {
    padding: 20px;
}

.product-title {
    font-size: 1.3rem;
    color: #2a2a2a;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.product-card:hover .product-title {
    color: #8A2BE2;
}

.product-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.products-cta {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.05), rgba(147, 112, 219, 0.05));
    border-radius: 15px;
    margin-top: 30px;
}

.products-cta p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 20px;
}

/* Back to Top Button */
#backToTop {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: #8A2BE2;
    color: #fff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 9999;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hover effect (desktop) */
#backToTop:hover {
    transform: translateY(-4px);
}

/* Show animation */
#backToTop.show {
    display: flex;
    opacity: 1;
}

/* Mobile adjustments */
@media (max-width: 576px) {
    #backToTop {
        width: 42px;
        height: 42px;
        bottom: 16px;
        right: 16px;
        font-size: 16px;
    }
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .product-image {
        height: 200px;
    }
    
    .products-filter {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .products-cta {
        padding: 30px 20px;
    }
    
    .products-cta p {
        font-size: 1rem;
    }
}






.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    gap: 30px;
    align-items: stretch;
}

.testimonial-slide.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    animation: slideFade 0.6s ease;
}

@keyframes slideFade {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

.video-card video {
    width: 100%;
    border-radius: 12px;
}

.video-name {
    margin-top: 10px;
    font-weight: 600;
    text-align: center;
}

/* Navigation buttons */
.testimonial-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 15px;
}

.testimonial-nav button {
    background: #b425ec;
    border: none;
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-slide.active {
        grid-template-columns: 1fr;
    }
}
.map-section {
    padding: 40px 0;
}

.map-section iframe {
    width: 100%;
    height: 380px;
}











 /* Smaller mobile screens */
    @media (max-width: 576px) {
        .hero {
            min-height: 75vh;
            padding: 15px 10px;
        }
        
        .hero-slider {
            min-height: 480px;
            border-radius: 18px;
        }
        
        .slide {
            padding: 25px 15px;
        }
        
        .slide-title {
            font-size: 1.9rem;
        }
        
        .slide-title span {
            font-size: 1.6rem;
        }
        
        .slide-text {
            font-size: 1rem;
            padding: 0 5px;
        }
        
        .slide-image {
            height: 220px;
        }
        
        .hero-img {
            max-width: 280px;
        }
        
        .hero-stats {
            gap: 10px;
            max-width: 350px;
        }
        
        .stat h3 {
            font-size: 1.8rem;
        }
        
        .stat p {
            font-size: 0.85rem;
        }
        
        .btn {
            padding: 15px 25px;
            font-size: 0.95rem;
        }
        
        .slider-controls {
            gap: 15px;
            padding: 8px 15px;
            bottom: 15px;
        }
        
        .feature {
            padding: 10px 12px;
            font-size: 1rem;
        }
    }

    /* Extra small devices */
    @media (max-width: 375px) {
        .slide-title {
            font-size: 1.7rem;
        }
        
        .slide-title span {
            font-size: 1.4rem;
        }
        
        .hero-stats {
            flex-direction: column;
            gap: 20px;
            align-items: center;
        }
        
        .stat {
            width: 150px;
        }
        
        .slide-image {
            height: 200px;
        }
        
        .hero-img {
            max-width: 250px;
        }
    }


/* RESET FOR DESKTOP - Desktop devices will use default styles or other CSS */
@media (min-width: 769px) {
    
}
/* PERFECT IMAGE FIT – MOBILE ONLY */
@media (max-width: 576px) {
    .slide-image {
        height: auto;              /* let image decide height */
        min-height: 220px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .slide-image img,
    .hero-img {
        width: 100%;
        max-width: 280px;
        height: auto;              /* prevents crop */
        object-fit: contain;       /* FULL image visible */
        display: block;
        margin: 0 auto;
    }
}

/* EXTRA SMALL DEVICES */
@media (max-width: 375px) {
    .slide-image img,
    .hero-img {
        max-width: 250px;
    }
}
/* Floating Action Buttons */
.floating-actions {
    position: fixed;
    bottom: 85px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.fab {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    text-decoration: none;
    border: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fab:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.35);
}

/* Individual colors */
.fab.call {
    background: #0a7cff;
}

.fab.whatsapp {
    background: #25D366;
}

.fab.instagram {
    background: radial-gradient(circle at 30% 30%, 
        #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
}

.fab.top {
    background: #111;
    display: none;
}

/* Show back-to-top on scroll */
.fab.top.show {
    display: flex;
}

/* Mobile spacing */
@media (max-width: 768px) {
    .fab {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
}


/* FSSAI Section */
.fssai-section {
    padding: 40px 0;
    background: #f9f9f9;
}

.fssai-box {
    max-width: 360px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.fssai-logo {
    width: 58px;
    height: auto;
}

.fssai-text span {
    font-size: 13px;
    color: #666;
    display: block;
}

.fssai-text strong {
    font-size: 15px;
    color: #222;
    letter-spacing: 0.5px;
}

/* Mobile */
@media (max-width: 576px) {
    .fssai-box {
        max-width: 90%;
    }
}
/* FSSAI Title */
.fssai-title {
    text-align: center;
    margin-bottom: 14px;
}

.fssai-title h3 {
    font-size: 50px;
    font-weight: 700;
    color: #750bbb;
    margin-bottom: 4px;
}

.fssai-title p {
    font-size: 24px;
    color: #6e6c6c;
}
