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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

/* Navbar Styles (Included from Navbar.css) */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

/* Logo Styles */
.logo-img {
    height: 40px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    letter-spacing: 0.5px;
}

.logo-sub {
    font-size: 0.8rem;
    font-weight: 400;
    color: #000;
    margin-top: -2px;
}

/* Navigation Links */
.navbar-nav .nav-link {
    color: #333 !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: #dc3545 !important;
    background-color: rgba(220, 53, 69, 0.1);
}

.navbar-nav .nav-link.active {
    color: #dc3545 !important;
    background-color: rgba(220, 53, 69, 0.1);
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background-color: #dc3545;
    border-radius: 1px;
}

/* Dropdown Styles */
.dropdown-toggle::after {
    display: none;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    color: #333;
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #dc3545;
}

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border: none;
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.cta-button:hover {
    background: linear-gradient(135deg, #c82333 0%, #bd2130 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

/* Start Free Trial Button - Specific Styling */
.start-trial-btn {
    background: white;
    border: 2px solid #E62A38;
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    color: #E62A38;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(230, 42, 56, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
    white-space: nowrap;
    text-align: center; 
}

.start-trial-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #E62A38;
    transition: left 0.4s ease;
    z-index: -1;
}

.start-trial-btn:hover {
    color: white;
    border-color: #E62A38;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 42, 56, 0.4);
}

.start-trial-btn:hover::before {
    left: 0;
}

/* Chevron Icons */
.fas.fa-chevron-down {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.dropdown-toggle[aria-expanded="true"] .fas.fa-chevron-down {
    transform: rotate(180deg);
}

/* Hero Section */
.hero-section {
    padding-top: 100px;
    background: #fafafa;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Background decorative elements */
.hero-section::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 15%;
    width: 200px;
    height: 200px;
    background: rgba(144, 238, 144, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 10%;
    width: 150px;
    height: 150px;
    background: rgba(211, 211, 211, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.hero-content {
    padding: 2rem 0;
    position: relative;
    z-index: 2;
}

/* Hero Logo */
.hero-logo {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-img {
    max-width: 120px;
    height: auto;
    transition: transform 0.3s ease;
}

.hero-logo-img:hover {
    transform: scale(1.05);
}

/* Hero Title */
.hero-title {
    font-size: 37px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.text-highlight {
    color: #2980B9;
    font-weight: 700;
}

/* Hero Description */
.hero-description {
    margin-bottom: 2.5rem;
}

.hero-description p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Hero CTA Button */
.hero-cta .cta-button {
    background: #2980B9;
    border: none;
    border-radius: 8px;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(41, 128, 185, 0.3);
}

.hero-cta .cta-button:hover {
    background: #1f6aa8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(41, 128, 185, 0.4);
    color: white;
}
.hero-cta{
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hero Tagline */
.hero-tagline {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.tagline-text {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
    margin: 0;
}

.tagline-arrow {
    width: 30px;
    height: 30px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Hero Mobile App */
.hero-mobile-app {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-app-img {
    max-width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.hero-app-img:hover {
    transform: scale(1.02);
}

/* No Effort Required Section */
.no-effort-section {
    background: #fafafa;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

/* Background decorative elements */
.no-effort-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 5%;
    width: 150px;
    height: 150px;
    background: rgba(144, 238, 144, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.no-effort-section::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: 10%;
    width: 120px;
    height: 120px;
    background: rgba(211, 211, 211, 0.1);
    border-radius: 50%;
    z-index: 1;
}

/* Mobile App Mockup */
.mobile-app-mockup {
    text-align: center;
    position: relative;
    z-index: 2;
}

.mockup-img {
    max-width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

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

/* Process Content */
.process-content {
    position: relative;
    z-index: 2;
}

/* Main Heading */
.main-heading {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 45px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.highlight-subtitle {
    font-weight: 700;
    color: #dc3545;
    margin: 0;
    line-height: 1.2;
}

/* Process Steps */
.process-steps {
    margin-top: 2rem;
}

.process-step {
    margin-bottom: 2.5rem;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateX(10px);
}

.step-content {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.step-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.process-step:hover .step-img {
    transform: scale(1.1);
}

.step-text {
    flex: 1;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #dc3545;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

    .step-description {
        font-size: 1rem;
        color: #555;
        line-height: 1.6;
        margin: 0;
    }

    /* Smarter Section */
    .smarter-section {
        background: #fafafa;
        padding: 5rem 0;
        position: relative;
        overflow: hidden;
    }

    /* Background decorative elements */
    .smarter-section::before {
        content: '';
        position: absolute;
        top: 15%;
        right: 8%;
        width: 180px;
        height: 180px;
        background: rgba(255, 182, 193, 0.1);
        border-radius: 50%;
        z-index: 1;
    }

    .smarter-section::after {
        content: '';
        position: absolute;
        bottom: 20%;
        left: 5%;
        width: 140px;
        height: 140px;
        background: rgba(255, 255, 255, 0.8);
        border-radius: 50%;
        z-index: 1;
    }

    /* Smarter Content */
    .smarter-content {
        position: relative;
        z-index: 2;
    }

    /* Smarter Section Title */
    .smarter-section .section-title {
        font-size: 2.8rem;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 2rem;
        line-height: 1.2;
    }

    .smarter-section .text-highlight {
        color: #2980B9;
        font-weight: 700;
    }

    /* Feature List */
    .feature-list {
        margin-bottom: 3rem;
    }

    .feature-item {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1.5rem;
        transition: all 0.3s ease;
    }

    .feature-item:hover {
        transform: translateX(10px);
    }

    .feature-icon {
        flex-shrink: 0;
        width: 50px;
        height: 50px;
        background: #2980B9;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.2rem;
        transition: all 0.3s ease;
    }

    .feature-item:hover .feature-icon {
        transform: scale(1.1);
        background: #1f6aa8;
    }

    .feature-text {
        font-size: 1.1rem;
        color: #555;
        line-height: 1.6;
        margin: 0;
        flex: 1;
    }

    /* Smarter CTA */
    .smarter-cta {
        margin-top: 2rem;
    }

    .smarter-cta .cta-button {
        background: #2980B9;
        border: none;
        border-radius: 8px;
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
        font-weight: 600;
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(41, 128, 185, 0.3);
    }

    .smarter-cta .cta-button:hover {
        background: #1f6aa8;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(41, 128, 185, 0.4);
        color: white;
    }

    /* Smarter Mockup */
    .smarter-mockup {
        text-align: center;
        position: relative;
        z-index: 2;
    }

    .smarter-mockup .mockup-img {
        max-width: 100%;
        height: auto;
        max-height: 70vh;
        object-fit: contain;
        transition: transform 0.3s ease;
        filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    }

    .smarter-mockup .mockup-img:hover {
        transform: scale(1.02);
    }

    /* No Hassle Section */
    .nohassle-section {
        background: #fafafa;
        padding: 5rem 0;
        position: relative;
        overflow: hidden;
    }

    /* Background decorative elements */
    .nohassle-section::before {
        content: '';
        position: absolute;
        top: 10%;
        left: 5%;
        width: 200px;
        height: 200px;
        background: rgba(135, 206, 250, 0.1);
        border-radius: 50%;
        z-index: 1;
    }

    /* No Hassle Content */
    .nohassle-content {
        position: relative;
        z-index: 2;
    }

    /* No Hassle Section Title */
    .nohassle-section .section-title {
        font-size: 2.8rem;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 2rem;
        line-height: 1.2;
    }

    .nohassle-section .text-highlight {
        color: #dc3545;
        font-weight: 700;
    }

    /* Phone Mockups */
    .phone-mockups {
        text-align: center;
        position: relative;
        z-index: 2;
    }

    .mockups-img {
        max-width: 100%;
        height: auto;
        max-height: 70vh;
        object-fit: contain;
        transition: transform 0.3s ease;
        filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    }

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

    /* Viral Sensation Section */
    .viral-sensation-section {
        background: #fafafa;
        padding: 5rem 0;
        position: relative;
        overflow: hidden;
    }

    /* Background decorative elements */
    .viral-sensation-section::before {
        content: '';
        position: absolute;
        top: 20%;
        right: 10%;
        width: 160px;
        height: 160px;
        background: rgba(255, 255, 0, 0.1);
        border-radius: 50%;
        z-index: 1;
    }

    .viral-sensation-section::after {
        content: '';
        position: absolute;
        bottom: 15%;
        left: 8%;
        width: 120px;
        height: 120px;
        background: rgba(0, 255, 255, 0.1);
        border-radius: 50%;
        z-index: 1;
    }



    /* Viral Illustration */
    .viral-illustration {
        text-align: center;
        position: relative;
        z-index: 2;
    }

    .illustration-img {
        max-width: 100%;
        height: auto;
        max-height: 70vh;
        object-fit: contain;
        transition: transform 0.3s ease;
        filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    }

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

    /* Big Tech Section */
    .big-tech-section {
        background: #fafafa;
        position: relative;
        overflow: hidden;
    }

    /* Background decorative elements */
    .big-tech-section::before {
        content: '';
        position: absolute;
        top: 35%;
        right: 8%;
        width: 180px;
        height: 180px;
        background: #F9B199;
        border-radius: 50%;
        z-index: 1;
    }

    .big-tech-section::after {
        content: '';
        position: absolute;
        bottom: 20%;
        right: 15%;
        width: 140px;
        height: 140px;
        background: rgba(255, 182, 193, 0.3);
        border-radius: 50%;
        z-index: 1;
    }

    /* Big Tech Content */
    .big-tech-content {
        position: relative;
        z-index: 2;
        text-align: center;
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Big Tech Section Title */
    .big-tech-section .section-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: #000;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .big-tech-section .text-highlight {
        color: #2980B9;
        font-weight: 700;
    }

    /* Subtitle */
    .subtitle-text {
        font-size: 1.2rem;
        color: #333;
        line-height: 1.6;
        margin: 0;
    }

    /* Big Tech Image */
    .big-tech-image {
        text-align: center;
        position: relative;
        z-index: 2;
        margin-top: 2rem;
    }

    .big-tech-img {
        max-width: 100%;
        height: auto;
        object-fit: contain;
        transition: transform 0.3s ease;
        filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    }

    .big-tech-img:hover {
        transform: scale(1.02);
    }

/* Star Rating Section */
.star-rating-section {
    background: #fafafa;
    position: relative;
    overflow: hidden;
}

.star-rating-content {
    width: 100%;
    position: relative;
    z-index: 2;
}

.star-rating-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.08));
}

.star-rating-img:hover {
    transform: scale(1.02);
}

/* Customers Speak for Us Section */
.customers-section {
    background: #FBF5EB;
    position: relative;
    overflow: hidden;
}

/* Promotional Top Section */
.promotional-section {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 50%, #bd2130 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

/* Background decorative elements for promotional section */
.promotional-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 5%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.promotional-section::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: 8%;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite reverse;
}

/* Mobile Mockup */
.mobile-mockup {
    text-align: center;
    position: relative;
    z-index: 2;
}

.mobile-mockup .mockup-img {
    max-width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

.mobile-mockup .mockup-img:hover {
    transform: scale(1.05) rotateY(5deg);
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.2));
}

/* Promotional Content */
.promotional-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.promotional-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 2.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.8s ease-out;
}

.promotional-cta {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.promotional-cta .cta-button {
    background: white;
    color: #dc3545;
    border: none;
    border-radius: 50px;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.promotional-cta .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 53, 69, 0.1), transparent);
    transition: left 0.6s ease;
}

.promotional-cta .cta-button:hover::before {
    left: 100%;
}

.promotional-cta .cta-button:hover {
    background: #f8f9fa;
    color: #c82333;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    position: relative;
    z-index: 2;
    background-color: #f5f5dc;
}

/* Section Header */
.testimonials-section .section-header {
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out;
}

.testimonials-section .main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.testimonials-section .subtitle {
    font-size: 1.1rem;
    color: #000;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 700px;
    font-weight: 400;
}

/* Testimonial Cards Container */
.testimonial-cards-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

/* Testimonial Cards */
.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    width: 350px;
    max-width: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.8);
    animation: fadeInUp 0.6s ease-out;
}

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

/* Card Header */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.customer-info {
    flex: 1;
}

.customer-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000;
    margin: 0;
    line-height: 1.2;
}

.customer-location {
    display: none;
}

.rating-badge {
    background: #f8f9fa;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.rating-badge i {
    color: #ffc107;
    font-size: 0.8rem;
}

.rating-score {
    font-weight: 700;
    font-size: 0.8rem;
    color: #000;
}

/* Card Body */
.card-body {
    position: relative;
    z-index: 2;
}

.testimonial-text {
    font-size: 0.95rem;
    color: #000;
    line-height: 1.6;
    margin: 0;
}

/* Quote Icon */
.quote-icon {
    position: absolute;
    bottom: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
    color: #dc3545;
    font-family: serif;
}

/* CTA Container and Button */
.cta-container {
    margin-top: 2rem;
}

.cta-button {
    background: #3498db;
    border: none;
    border-radius: 25px;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.cta-button:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
    color: white;
}

/* Staggered Animation for Testimonial Cards */
.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

    /* Global Success Section */
    .global-success-section {
        background: #fafafa;
        padding: 6rem 0;
        position: relative;
        overflow: hidden;
    }

    /* Background decorative elements */
    .global-success-section::before {
        content: '';
        position: absolute;
        top: 15%;
        right: 8%;
        width: 180px;
        height: 180px;
        background: linear-gradient(135deg, rgba(144, 238, 144, 0.08) 0%, rgba(144, 238, 144, 0.12) 100%);
        border-radius: 50%;
        z-index: 1;
        animation: float 8s ease-in-out infinite;
    }

    .global-success-section::after {
        content: '';
        position: absolute;
        bottom: 20%;
        left: 5%;
        width: 150px;
        height: 150px;
        background: linear-gradient(135deg, rgba(255, 182, 193, 0.08) 0%, rgba(255, 182, 193, 0.12) 100%);
        border-radius: 50%;
        z-index: 1;
        animation: float 6s ease-in-out infinite reverse;
    }

    /* Section Header */
    .global-success-section .section-header {
        position: relative;
        z-index: 2;
        margin-bottom: 4rem;
        animation: fadeInUp 0.8s ease-out;
    }

    .global-success-section .main-title {
        font-size: 3.2rem;
        font-weight: 800;
        color: #1a1a1a;
        margin-bottom: 1.5rem;
        line-height: 1.2;
        background: linear-gradient(135deg, #1a1a1a 0%, #2980B9 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .global-success-section .subtitle {
        font-size: 1.3rem;
        color: #666;
        line-height: 1.6;
        margin: 0 auto;
        max-width: 800px;
        font-weight: 400;
    }

    /* World Map Container */
    .world-map-container {
        position: relative;
        z-index: 2;
        animation: fadeInUp 0.8s ease-out 0.2s both;
    }

    .world-map-img {
        max-width: 100%;
        height: auto;
        max-height: 70vh;
        object-fit: contain;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    }

    .world-map-img:hover {
        transform: scale(1.02);
        filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.15));
    }

    /* Country Flags Section */
    .country-flags {
        position: relative;
        z-index: 2;
        animation: fadeInUp 0.8s ease-out 0.4s both;
    }

    .flags-container {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .flag-item {
        transition: all 0.3s ease;
    }

    .flag-item:hover {
        transform: translateY(-5px) scale(1.1);
    }

    .flag-icon {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        border: 3px solid white;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .flag-item:hover .flag-icon {
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
        border-color: #2980B9;
    }

    /* Individual Flag Styles */
    .india-flag {
        background: linear-gradient(to bottom, #ff9933 33%, #ffffff 33% 66%, #138808 66%);
        position: relative;
    }

    .india-flag::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 12px;
        height: 12px;
        background: #000080;
        border-radius: 50%;
        border: 1px solid white;
    }

    .palestine-flag {
        background: linear-gradient(to bottom, #000000 33%, #ffffff 33% 66%, #009736 66%);
        position: relative;
    }

    .palestine-flag::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 0;
        border-left: 20px solid #ce1126;
        border-top: 30px solid transparent;
        border-bottom: 30px solid transparent;
    }

    .brazil-flag {
        background: #009c3b;
        position: relative;
    }

    .brazil-flag::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 25px;
        height: 25px;
        background: #ffdf00;
        clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    }

    .saudi-flag {
        background: #006c35;
        position: relative;
    }

    .saudi-flag::after {
        content: '☪';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        font-size: 1.2rem;
    }

    .laos-flag {
        background: linear-gradient(to bottom, #ce1126 33%, #ffffff 33% 66%, #ce1126 66%);
        position: relative;
    }

    .laos-flag::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 20px;
        height: 20px;
        background: #002868;
        border-radius: 50%;
        border: 2px solid white;
    }

    .lebanon-flag {
        background: linear-gradient(to bottom, #ce1126 33%, #ffffff 33% 66%, #ce1126 66%);
        position: relative;
    }

    .lebanon-flag::after {
        content: '🌲';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 1.5rem;
    }

    .azerbaijan-flag {
        background: linear-gradient(to bottom, #3f9c35 33%, #ed2939 33% 66%, #00b9e4 66%);
        position: relative;
    }

    .azerbaijan-flag::after {
        content: '☪';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        font-size: 1rem;
    }

    .turkey-flag {
        background: #e30a17;
        position: relative;
    }

    .turkey-flag::after {
        content: '☪';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        font-size: 1.5rem;
    }

    .mexico-flag {
        background: linear-gradient(to right, #006847 33%, #ffffff 33% 66%, #ce1126 66%);
        position: relative;
    }

    .mexico-flag::after {
        content: '🦅';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 1.2rem;
    }

    .vietnam-flag {
        background: #da251d;
        position: relative;
    }

    .vietnam-flag::after {
        content: '★';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #ffff00;
        font-size: 1.5rem;
    }

    /* Build to Dominate Section */
.build-dominate-section {
    background: #fafafa;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

/* Background decorative elements */
.build-dominate-section::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(144, 238, 144, 0.08) 0%, rgba(144, 238, 144, 0.12) 100%);
    border-radius: 50%;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.build-dominate-section::after {
    content: '';
    position: absolute;
    bottom: 15%;
    left: 3%;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.08) 0%, rgba(255, 182, 193, 0.12) 100%);
    border-radius: 50%;
    z-index: 1;
    animation: float 8s ease-in-out infinite reverse;
}

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

/* Section Header */
.section-header {
    position: relative;
    z-index: 2;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out;
}

.main-title {
    font-size: 40px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #1a1a1a 0%, #2980B9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.3rem;
    color: #666;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 700px;
    font-weight: 400;
}

/* Feature Blocks */
.feature-block {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.8);
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
}

.feature-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2980B9, #3498db, #5dade2);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.feature-block:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    border-color: rgba(41, 128, 185, 0.2);
}

/* Feature Icons */
.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2980B9 0%, #3498db 50%, #5dade2 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.feature-block:hover .feature-icon::before {
    left: 100%;
}

.feature-block:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
    background: linear-gradient(135deg, #1f6aa8 0%, #2980B9 50%, #3498db 100%);
    box-shadow: 0 8px 25px rgba(41, 128, 185, 0.3);
}

.feature-icon i {
    font-size: 1.8rem;
    color: white;
    transition: all 0.3s ease;
}

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

/* Feature Content */
.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.2rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.feature-block:hover .feature-title {
    color: #2980B9;
}

.feature-description {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 2rem;
    flex-grow: 1;
    transition: color 0.3s ease;
}

.feature-block:hover .feature-description {
    color: #444;
}

/* Learn More Links */
.learn-more-link {
    color: #2980B9;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    padding: 0.5rem 0;
}

.learn-more-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #2980B9, #3498db);
    transition: width 0.3s ease;
}

.learn-more-link:hover::before {
    width: 100%;
}

.learn-more-link:hover {
    color: #1f6aa8;
    transform: translateX(8px);
}

.learn-more-link::after {
    content: '→';
    font-weight: 700;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.learn-more-link:hover::after {
    transform: translateX(5px);
    opacity: 1;
}

/* Staggered Animation for Feature Blocks */
.feature-block:nth-child(1) { animation-delay: 0.1s; }
.feature-block:nth-child(2) { animation-delay: 0.2s; }
.feature-block:nth-child(3) { animation-delay: 0.3s; }
.feature-block:nth-child(4) { animation-delay: 0.4s; }
.feature-block:nth-child(5) { animation-delay: 0.5s; }
.feature-block:nth-child(6) { animation-delay: 0.6s; }

/* Responsive Design */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: white;
        padding: 1rem;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-top: 1rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
        margin: 0.25rem 0;
    }
    
    .navbar-nav .nav-link.active::after {
        display: none;
    }
    
    .cta-button {
        margin-top: 1rem;
        text-align: center;
        display: block;
    }
    
    .logo-main {
        font-size: 1.3rem;
    }
    
    .logo-sub {
        font-size: 0.7rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-logo-img {
        max-width: 100px;
    }

    .hero-description p {
        font-size: 1rem;
    }

    .hero-cta .cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .hero-tagline {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .tagline-arrow {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }

    /* No Effort Section Tablet */
    .no-effort-section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2.4rem;
    }

    .highlight-subtitle {
        font-size: 1.8rem;
    }

    .step-title {
        font-size: 1.2rem;
    }

    .step-description {
        font-size: 0.95rem;
    }

    .mockup-img {
        max-height: 60vh;
    }

    /* Smarter Section Desktop */
    .smarter-section {
        padding: 4rem 0;
    }

    .smarter-section .section-title {
        font-size: 2.6rem;
    }

    .feature-text {
        font-size: 1rem;
    }

    .smarter-cta .cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .smarter-mockup .mockup-img {
        max-height: 65vh;
    }

    /* No Hassle Section Tablet */
    .nohassle-section {
        padding: 4rem 0;
    }

    .nohassle-section .section-title {
        font-size: 2.4rem;
    }

    .mockups-img {
        max-height: 60vh;
    }

    /* Adjust background elements for tablets */
    .nohassle-section::before {
        width: 150px;
        height: 150px;
        top: 15%;
        left: 3%;
    }

    /* Viral Sensation Section Tablet */
    .viral-sensation-section {
        padding: 4rem 0;
    }

    .illustration-img {
        max-height: 60vh;
    }

    /* Adjust background elements for tablets */
    .viral-sensation-section::before {
        width: 140px;
        height: 140px;
        top: 25%;
        right: 5%;
    }

    .viral-sensation-section::after {
        width: 100px;
        height: 100px;
        bottom: 20%;
        left: 5%;
    }

    /* Big Tech Section Tablet */
    .big-tech-section {
        padding: 4rem 0;
    }

    .big-tech-section .section-title {
        font-size: 2.4rem;
    }

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

    .big-tech-content {
        max-width: 700px;
    }

    .big-tech-img {
        max-height: 60vh;
    }

    /* Adjust background elements for tablets */
    .big-tech-section::before {
        width: 150px;
        height: 150px;
        top: 20%;
        left: 5%;
    }

    .big-tech-section::after {
        width: 120px;
        height: 120px;
        bottom: 25%;
        right: 3%;
    }

    /* Build to Dominate Section Tablet */
    .build-dominate-section {
        padding: 5rem 0;
    }

    .main-title {
        font-size: 2.8rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .feature-block {
        padding: 2rem 1.75rem;
    }

    .feature-title {
        font-size: 1.4rem;
    }

    .feature-description {
        font-size: 1rem;
    }

    .feature-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 1.75rem;
    }

    .feature-icon i {
        font-size: 1.6rem;
    }

    /* Adjust background elements for tablets */
    .build-dominate-section::before {
        width: 160px;
        height: 160px;
        top: 15%;
        right: 5%;
    }

    .build-dominate-section::after {
        width: 140px;
        height: 140px;
        bottom: 20%;
        left: 5%;
    }

    /* Global Success Section Tablet */
    .global-success-section {
        padding: 5rem 0;
    }

    .global-success-section .main-title {
        font-size: 2.8rem;
    }

    .global-success-section .subtitle {
        font-size: 1.2rem;
    }

    .world-map-img {
        max-height: 65vh;
    }

    .flag-icon {
        width: 55px;
        height: 55px;
    }

    .flags-container {
        gap: 1.25rem;
    }

    /* Adjust background elements for tablets */
    .global-success-section::before {
        width: 150px;
        height: 150px;
        top: 20%;
        right: 5%;
    }

    .global-success-section::after {
        width: 120px;
        height: 120px;
        bottom: 25%;
        left: 3%;
    }

    /* Fuel Your Mind Section Tablet */
    .fuel-your-mind-section {
        padding: 5rem 0;
    }

    .fuel-your-mind-section .main-title {
        font-size: 2.8rem;
    }

    .blog-card {
        margin-bottom: 1.5rem;
    }

    .card-image-container {
        height: 200px;
    }

    .blog-title {
        font-size: 1.2rem;
    }

    .blog-description {
        font-size: 0.9rem;
    }

    .view-all-posts-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    /* Adjust background elements for tablets */
    .fuel-your-mind-section::before {
        width: 150px;
        height: 150px;
        top: 15%;
        right: 3%;
    }

    .fuel-your-mind-section::after {
        width: 120px;
        height: 120px;
        bottom: 20%;
        left: 5%;
    }
}

@media (max-width: 576px) {
    .navbar {
        padding: 0.75rem 0;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .logo-main {
        font-size: 1.2rem;
    }
    
    .logo-sub {
        font-size: 0.65rem;
    }

    /* Hero Section Mobile */
    .hero-section {
        padding-top: 80px;
        text-align: center;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero-logo-img {
        max-width: 80px;
        margin: 0 auto;
    }

    .hero-description p {
        font-size: 0.95rem;
        text-align: left;
    }

    .hero-cta .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
    }

    .hero-tagline {
        margin-top: 1.5rem;
    }

    .tagline-text {
        font-size: 0.9rem;
    }

    .tagline-arrow {
        width: 22px;
        height: 22px;
        font-size: 0.7rem;
    }

    .hero-mobile-app {
        margin-top: 2rem;
    }

    .hero-app-img {
        max-height: 60vh;
    }

    /* Background elements adjustment for mobile */
    .hero-section::before,
    .hero-section::after {
        display: none;
    }

    /* No Effort Section Mobile */
    .no-effort-section {
        padding: 3rem 0;
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .highlight-subtitle {
        font-size: 1.6rem;
    }

    .process-step {
        margin-bottom: 2rem;
    }

    .step-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .step-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto;
    }

    .step-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .step-description {
        font-size: 0.9rem;
        text-align: left;
    }

    .mockup-img {
        max-height: 50vh;
        margin-bottom: 2rem;
    }

    /* Hide background elements on mobile */
    .no-effort-section::before,
    .no-effort-section::after {
        display: none;
    }

    /* Smarter Section Mobile */
    .smarter-section {
        padding: 3rem 0;
        text-align: center;
    }

    .smarter-section .section-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .feature-item {
        margin-bottom: 1.5rem;
    }

    .feature-content {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        margin: 0 auto;
    }

    .feature-text {
        font-size: 0.9rem;
        text-align: left;
    }

    .smarter-cta .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
    }

    .smarter-mockup .mockup-img {
        max-height: 50vh;
        margin-top: 2rem;
    }

    /* No Hassle Section Mobile */
    .nohassle-section {
        padding: 3rem 0;
        text-align: center;
    }

    .nohassle-section .section-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .mockups-img {
        max-height: 50vh;
        margin-bottom: 2rem;
    }

    /* Hide background elements on mobile */
    .nohassle-section::before {
        display: none;
    }

    /* Viral Sensation Section Mobile */
    .viral-sensation-section {
        padding: 3rem 0;
        text-align: center;
    }

    .illustration-img {
        max-height: 50vh;
        margin-bottom: 2rem;
    }

    /* Hide background elements on mobile */
    .viral-sensation-section::before,
    .viral-sensation-section::after {
        display: none;
    }

    /* Big Tech Section Mobile */
    .big-tech-section {
        padding: 3rem 0;
        text-align: center;
    }

    .big-tech-section .section-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .subtitle-text {
        font-size: 1rem;
    }

    .big-tech-content {
        max-width: 600px;
    }

    .big-tech-img {
        max-height: 50vh;
        margin-bottom: 2rem;
    }

    /* Hide background elements on mobile */
    .big-tech-section::before,
    .big-tech-section::after {
        display: none;
    }

    /* Build to Dominate Section Mobile */
    .build-dominate-section {
        padding: 4rem 0;
        text-align: center;
    }

    .main-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .subtitle {
        font-size: 1.1rem;
        max-width: 100%;
    }

    .feature-block {
        padding: 2rem 1.5rem;
        margin-bottom: 1rem;
    }

    .feature-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .feature-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 1.5rem;
    }

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

    .learn-more-link {
        font-size: 1rem;
    }

    /* Hide background elements on mobile */
    .build-dominate-section::before,
    .build-dominate-section::after {
        display: none;
    }


    .star-rating-img {
        max-height: 60vh;
    }

    /* Customers Section Mobile */
    .promotional-section {
        padding: 3rem 0;
    }

    .promotional-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .promotional-cta .cta-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        width: 100%;
        max-width: 280px;
    }

    .mobile-mockup .mockup-img {
        max-height: 50vh;
        margin-bottom: 2rem;
    }

    .testimonials-section {
        padding: 4rem 0;
    }

    .testimonials-section .main-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .testimonials-section .subtitle {
        font-size: 1.1rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }

    .customer-name {
        font-size: 1.3rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .quote-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        bottom: 1rem;
        right: 1.5rem;
    }

    .reviews-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        width: 100%;
        max-width: 280px;
    }

    /* Hide background elements on mobile */
    .promotional-section::before,
    .promotional-section::after {
        display: none;
    }

    /* Global Success Section Mobile */
    .global-success-section {
        padding: 4rem 0;
        text-align: center;
    }

    .global-success-section .main-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .global-success-section .subtitle {
        font-size: 1.1rem;
        max-width: 100%;
    }

    .world-map-img {
        max-height: 55vh;
        margin-bottom: 2rem;
    }

    .flag-icon {
        width: 50px;
        height: 50px;
    }

    .flags-container {
        gap: 1rem;
        margin-top: 1.5rem;
    }

    /* Hide background elements on mobile */
    .global-success-section::before,
    .global-success-section::after {
        display: none;
    }

    /* Fuel Your Mind Section Mobile */
    .fuel-your-mind-section {
        padding: 4rem 0;
        text-align: center;
    }

    .fuel-your-mind-section .main-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .blog-card {
        margin-bottom: 1.5rem;
        text-align: left;
    }

    .card-image-container {
        height: 180px;
    }

    .card-content {
        padding: 1.25rem;
    }

    .blog-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .blog-description {
        font-size: 0.9rem;
    }

    .view-all-posts-btn {
        padding: 0.75rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }

    /* Hide background elements on mobile */
    .fuel-your-mind-section::before,
    .fuel-your-mind-section::after {
        display: none;
    }
}

/* Tablet Responsive Styles */
@media (min-width: 577px) and (max-width: 768px) {
    .hero-section {
        padding-top: 90px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-logo-img {
        max-width: 100px;
    }

    .hero-description p {
        font-size: 1rem;
    }

    .hero-cta .cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .hero-app-img {
        max-height: 70vh;
    }

    /* Adjust background elements for tablets */
    .hero-section::before {
        width: 150px;
        height: 150px;
        top: 15%;
        right: 10%;
    }

    .hero-section::after {
        width: 100px;
        height: 100px;
        bottom: 25%;
        left: 5%;
    }

    /* No Effort Section Tablet Adjustments */
    .no-effort-section::before {
        width: 120px;
        height: 120px;
        top: 15%;
        left: 3%;
    }

    .no-effort-section::after {
        width: 100px;
        height: 100px;
        bottom: 20%;
        right: 5%;
    }

    .step-content {
        gap: 1.25rem;
    }

    .step-icon {
        width: 55px;
        height: 55px;
    }

    /* Smarter Section Tablet */
    .smarter-section {
        padding: 4rem 0;
    }

    .smarter-section .section-title {
        font-size: 2.4rem;
    }

    .feature-text {
        font-size: 1rem;
    }

    .smarter-cta .cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .smarter-mockup .mockup-img {
        max-height: 60vh;
    }

    /* Adjust background elements for tablets */
    .smarter-section::before {
        width: 150px;
        height: 150px;
        top: 20%;
        right: 5%;
    }

    .smarter-section::after {
        width: 120px;
        height: 120px;
        bottom: 25%;
        left: 3%;
    }

    /* No Hassle Section Tablet Adjustments */
    .nohassle-section::before {
        width: 120px;
        height: 120px;
        top: 20%;
        left: 5%;
    }

    /* Viral Sensation Section Tablet Adjustments */
    .viral-sensation-section::before {
        width: 120px;
        height: 120px;
        top: 25%;
        right: 8%;
    }

    .viral-sensation-section::after {
        width: 80px;
        height: 80px;
        bottom: 20%;
        left: 8%;
    }

    /* Big Tech Section Tablet Adjustments */
    .big-tech-section::before {
        width: 120px;
        height: 120px;
        top: 25%;
        left: 8%;
    }

    .big-tech-section::after {
        width: 100px;
        height: 100px;
        bottom: 25%;
        right: 5%;
    }

    /* Build to Dominate Section Tablet Adjustments */
    .build-dominate-section::before {
        width: 140px;
        height: 140px;
        top: 20%;
        right: 8%;
    }

    .build-dominate-section::after {
        width: 120px;
        height: 120px;
        bottom: 20%;
        left: 5%;
    }

    /* Customers Section Desktop Tablet */
    .promotional-section {
        padding: 4.5rem 0;
    }

    .promotional-title {
        font-size: 3rem;
    }

    .mobile-mockup .mockup-img {
        max-height: 65vh;
    }

    .testimonials-section {
        padding: 5.5rem 0;
    }

    .testimonials-section .main-title {
        font-size: 3rem;
    }

    .testimonial-card {
        padding: 2.5rem 2rem;
    }

    .star-rating-img {
        max-height: 70vh;
    }

    /* Customers Section Tablet */
    .promotional-section {
        padding: 4rem 0;
    }

    .promotional-title {
        font-size: 2.8rem;
    }

    .promotional-cta .cta-button {
        padding: 1.1rem 2.5rem;
        font-size: 1.15rem;
    }

    .mobile-mockup .mockup-img {
        max-height: 60vh;
    }

    .testimonials-section {
        padding: 5rem 0;
    }

    .testimonials-section .main-title {
        font-size: 2.8rem;
    }

    .testimonials-section .subtitle {
        font-size: 1.2rem;
    }

    .testimonial-card {
        padding: 2.25rem 1.75rem;
    }

    .customer-name {
        font-size: 1.35rem;
    }

    .testimonial-text {
        font-size: 1.02rem;
    }

    .reviews-button {
        padding: 1.1rem 2.5rem;
        font-size: 1.15rem;
    }

    /* Adjust background elements for tablets */
    .promotional-section::before {
        width: 160px;
        height: 160px;
        top: 15%;
        left: 3%;
    }

    .promotional-section::after {
        width: 120px;
        height: 120px;
        bottom: 20%;
        right: 5%;
    }
}

/* Smooth animations */
.navbar-nav .nav-item {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.navbar-nav .nav-item:nth-child(1) { animation-delay: 0.1s; }
.navbar-nav .nav-item:nth-child(2) { animation-delay: 0.2s; }
.navbar-nav .nav-item:nth-child(3) { animation-delay: 0.3s; }
.navbar-nav .nav-item:nth-child(4) { animation-delay: 0.4s; }
.navbar-nav .nav-item:nth-child(5) { animation-delay: 0.5s; }

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

/* Hover effects for better UX */
.navbar-brand:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Focus states for accessibility */
.nav-link:focus,
.dropdown-item:focus,
.cta-button:focus {
    outline: 2px solid #dc3545;
    outline-offset: 2px;
}

/* Footer Styles */
.footer {
    background: #2980B9;
    color: white;
    padding: 4rem 0 2rem;

}

/* Footer Brand Section */
.footer-brand {
    display: flex;
    align-items: center;
}

.footer-logo {
    margin-right: 1rem;
}

.footer-logo .logo-img {
    height: 50px;
    width: auto;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    line-height: 1;
    letter-spacing: 1px;
}

.brand-subtitle {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
    font-weight: 400;
}

/* Footer Headings */
.footer-heading {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #60a5fa;
    border-radius: 1px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a,
.footer-links button {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    white-space: nowrap;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.footer-links a:hover,
.footer-links button:hover {
    color: white;
    transform: translateX(5px);
}

/* Removed animated border-bottom effect from footer links */

/* Removed animated border-bottom hover effect from footer links */

/* Footer Divider */
.footer-divider {
    border: none;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0 1.5rem;
}

/* Legal Links */
.legal-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
}

.legal-links a:hover {
    color: white;
}

/* Removed animated border-bottom effect from legal links */

/* Removed animated border-bottom hover effect from legal links */

/* Footer Responsive Design */
@media (max-width: 991.98px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-brand {
        justify-content: center;
        text-align: center;
    }
    
    .footer-logo {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .brand-text {
        align-items: center;
    }
    
    .footer-heading {
        text-align: center;
        margin-top: 1rem;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links a:hover,
    .footer-links button:hover {
        transform: translateY(-2px);
    }
    
    .legal-links {
        gap: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .footer {
        padding: 2.5rem 0 1rem;
    }
    
    .brand-name {
        font-size: 1.5rem;
    }
    
    .brand-subtitle {
        font-size: 0.8rem;
    }
    
    .footer-logo .logo-img {
        height: 40px;
    }
    
    .footer-heading {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-links a,
    .footer-links button {
        font-size: 0.9rem;
    }
    
    .legal-links {
        gap: 1rem;
        justify-content: center;
    }
    
    .legal-links a {
        font-size: 0.8rem;
    }
}

@media (max-width: 575.98px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    
    .brand-name {
        font-size: 1.3rem;
    }
    
    .footer-logo .logo-img {
        height: 35px;
    }
    
    .legal-links {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .legal-links a {
        font-size: 0.85rem;
    }
}

/* Fuel Your Mind Section */
.fuel-your-mind-section {
    background: #fafafa;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

/* Background decorative elements */
.fuel-your-mind-section::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(144, 238, 144, 0.08) 0%, rgba(144, 238, 144, 0.12) 100%);
    border-radius: 50%;
    z-index: 1;
    animation: float 8s ease-in-out infinite;
}

.fuel-your-mind-section::after {
    content: '';
    position: absolute;
    bottom: 15%;
    left: 8%;
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.08) 0%, rgba(255, 182, 193, 0.12) 100%);
    border-radius: 50%;
    z-index: 1;
    animation: float 6s ease-in-out infinite reverse;
}

/* Section Header */
.fuel-your-mind-section .section-header {
    position: relative;
    z-index: 2;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out;
}

.fuel-your-mind-section .main-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-family: 'Georgia', serif;
}

.fuel-your-mind-section .subtitle {
    font-size: 1.3rem;
    color: #666;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 800px;
    font-weight: 400;
}

/* Content Grid */
.content-left,
.content-right {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.content-right {
    animation-delay: 0.4s;
}

/* Feature Cards */
.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: #2980B9;
}

.feature-card:hover::before {
    left: 100%;
}

/* Card Icon */
.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2980B9 0%, #3498db 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 2;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 15px;
}

.feature-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(41, 128, 185, 0.3);
}

.feature-card:hover .card-icon::before {
    animation: shimmer 1.5s ease-in-out;
}

.feature-card:hover .card-image {
    transform: scale(1.2);
}

/* Card Title */
.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.feature-card:hover .card-title {
    color: #2980B9;
    transform: translateX(5px);
}

/* Card Description */
.card-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .card-description {
    color: #555;
}

/* Learn More Button */
.learn-more-btn {
    color: #2980B9;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.learn-more-btn::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #2980B9, #3498db);
    transition: width 0.3s ease;
}

.learn-more-btn::after {
    content: '→';
    margin-left: 5px;
    transition: all 0.3s ease;
}

.feature-card:hover .learn-more-btn {
    color: #3498db;
    transform: translateX(5px);
}

.feature-card:hover .learn-more-btn::before {
    width: 100%;
}

.feature-card:hover .learn-more-btn::after {
    transform: translateX(5px);
}

/* CTA Section */
.cta-section {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out 0.6s both;
    background: linear-gradient(135deg, #2980B9 0%, #3498db 100%);
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(41, 128, 185, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s ease-in-out infinite;
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #2980B9;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    justify-content: center;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(41, 128, 185, 0.1), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button i {
    transition: all 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* Blog Cards */
.blog-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 2rem;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

.blog-card:nth-child(1) { animation-delay: 0.1s; }
.blog-card:nth-child(2) { animation-delay: 0.2s; }
.blog-card:nth-child(3) { animation-delay: 0.3s; }
.blog-card:nth-child(4) { animation-delay: 0.4s; }

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

/* Card Image Container */
.card-image-container {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.blog-card:hover .blog-image {
    transform: scale(1.05);
}

/* Card Content */
.card-content {
    padding: 1.5rem;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.blog-card:hover .blog-title {
    color: #2980B9;
}

.blog-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* View All Posts Button */
.view-all-posts-btn {
    display: inline-block;
    background: #2980B9;
    color: white;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.view-all-posts-btn:hover {
    background: #3498db;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(41, 128, 185, 0.3);
    color: white;
    text-decoration: none;
}

/* Shimmer Animation */
@keyframes shimmer {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

/* Footer Animation for footer links */
.footer-links li {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.footer-links li:nth-child(1) { animation-delay: 0.1s; }
.footer-links li:nth-child(2) { animation-delay: 0.2s; }
.footer-links li:nth-child(3) { animation-delay: 0.3s; }
.footer-links li:nth-child(4) { animation-delay: 0.4s; }
.footer-links li:nth-child(5) { animation-delay: 0.5s; }
.footer-links li:nth-child(6) { animation-delay: 0.6s; }

/* Footer Hover effects for better UX */
.footer-brand:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

/* Footer Focus states for accessibility */
.footer-links a:focus,
.legal-links a:focus {
    outline: 2px solid #60a5fa;
    outline-offset: 2px;
    border-radius: 3px;
}

/* Start Free Trial Modal Styling - Modern Design */
#startTrialModal .modal-content {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transform: scale(0.7);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#startTrialModal.show .modal-content {
    transform: scale(1);
    opacity: 1;
}

#startTrialModal .modal-header {
    background: white;
    border: none;
    border-bottom: 1px solid #e8e8e8;
    border-radius: 12px 12px 0 0;
    padding: 16px;
    position: relative;
    overflow: hidden;
}

#startTrialModal .modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(230, 42, 56, 0.1), transparent);
    transition: left 0.8s ease;
}

#startTrialModal .modal-header:hover::before {
    left: 100%;
}

#startTrialModal .modal-title {
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0;
    position: relative;
    z-index: 2;
}

#startTrialModal .btn-close {
    background: #E62A38;
    opacity: 1;
    border-radius: 50%;
    padding: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    box-shadow: none;
    border: none;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#startTrialModal .btn-close::before,
#startTrialModal .btn-close::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease;
}

#startTrialModal .btn-close::before {
    transform: rotate(45deg);
}

#startTrialModal .btn-close::after {
    transform: rotate(-45deg);
}

#startTrialModal .btn-close:hover {
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(230, 42, 56, 0.5);
    background: #d42432;
}

#startTrialModal .btn-close:hover::before,
#startTrialModal .btn-close:hover::after {
    background-color: white;
}

#startTrialModal .btn-close:active {
    transform: rotate(90deg) scale(0.95);
}

#startTrialModal .modal-body {
    background: white;
    position: relative;
}

#startTrialModal .form-label {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: none;
    letter-spacing: normal;
    position: relative;
    display: block;
}

#startTrialModal .form-label::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #E62A38, #d42432);
    transition: width 0.3s ease;
}

#startTrialModal .form-control:focus + .form-label::after,
#startTrialModal .form-select:focus + .form-label::after {
    width: 100%;
}

#startTrialModal .form-control,
#startTrialModal .form-select {
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
    box-shadow: none;
    position: relative;
    overflow: hidden;
}

#startTrialModal .form-control::before,
#startTrialModal .form-select::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(230, 42, 56, 0.05), transparent);
    transition: left 0.6s ease;
}

#startTrialModal .form-control:hover::before,
#startTrialModal .form-select:hover::before {
    left: 100%;
}

#startTrialModal .form-control:hover,
#startTrialModal .form-select:hover {
    border-color: #E62A38;
    transform: none;
    box-shadow: 0 2px 8px rgba(230, 42, 56, 0.1);
}

#startTrialModal .form-control:focus,
#startTrialModal .form-select:focus {
    border-color: #E62A38;
    box-shadow: 0 0 0 4px rgba(230, 42, 56, 0.1);
    outline: none;
    transform: translateY(-2px);
}

#startTrialModal .submit-btn {
    background: #E62A38;
    border: none;
    border-radius: 6px;
    padding: 0.875rem 2.5rem;
    font-weight: 600;
    color: white;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: none;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    width: 100%;
}

#startTrialModal .submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

#startTrialModal .submit-btn:hover {
    background: #d42432;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(230, 42, 56, 0.3);
    color: white;
}

#startTrialModal .submit-btn:hover::before {
    left: 100%;
}

#startTrialModal .submit-btn:active {
    transform: translateY(-2px) scale(0.98);
}

/* Form row animations */
#startTrialModal .row {
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.6s ease forwards;
}

#startTrialModal .row:nth-child(1) { animation-delay: 0.1s; }
#startTrialModal .row:nth-child(2) { animation-delay: 0.2s; }
#startTrialModal .row:nth-child(3) { animation-delay: 0.3s; }

#startTrialModal .text-center {
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.6s ease 0.4s forwards;
}

/* Keyframe animations */
@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Modal backdrop enhancement */
#startTrialModal .modal-backdrop {
    background: linear-gradient(135deg, rgba(230, 42, 56, 0.1) 0%, rgba(44, 62, 80, 0.1) 100%);
    backdrop-filter: blur(10px);
}

/* Input focus animations */
#startTrialModal .form-control:focus,
#startTrialModal .form-select:focus {
    animation: inputPulse 0.6s ease;
}

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

/* Increase modal width */
#startTrialModal .modal-dialog {
    max-width: 700px;
}

/* Responsive enhancements */
@media (max-width: 768px) {
    #startTrialModal .modal-dialog {
        margin: 1rem;
        max-width: 95%;
    }
    
    #startTrialModal .modal-body {
        padding: 2rem 1.5rem;
    }
    
    #startTrialModal .modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    #startTrialModal .modal-title {
        font-size: 1.5rem;
    }
    
    #startTrialModal .submit-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

/* Loading state for submit button */
#startTrialModal .submit-btn.loading {
    pointer-events: none;
    opacity: 0.8;
}

#startTrialModal .submit-btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success Toast Styling */
.success-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
    z-index: 9999;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 350px;
}

.success-toast.show {
    transform: translateX(0);
    opacity: 1;
}

.success-toast .toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.success-toast i {
    font-size: 1.2rem;
    color: white;
}

/* Form validation states */
#startTrialModal .form-control.is-valid,
#startTrialModal .form-select.is-valid {
    border-color: #28a745;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
    padding-right: 3rem;
}

#startTrialModal .form-control.is-invalid,
#startTrialModal .form-select.is-invalid {
    border-color: #dc3545;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath d='m5.8 4.6 2.4 2.4m0-2.4L5.8 9.4'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
    padding-right: 3rem;
}

/* Floating label effect */
#startTrialModal .form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

#startTrialModal .form-group.focused .form-label {
    transform: translateY(-25px) scale(0.85);
    color: #E62A38;
}

#startTrialModal .form-label {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: left top;
}

/* Enhanced input animations */
#startTrialModal .form-control:not(:placeholder-shown) + .form-label,
#startTrialModal .form-select:not([value=""]) + .form-label {
    transform: translateY(-25px) scale(0.85);
    color: #E62A38;
}

/* Input group enhancements */
#startTrialModal .input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}

#startTrialModal .input-group-text {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #e8e8e8;
    border-right: none;
    border-radius: 12px 0 0 12px;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    color: #6c757d;
    transition: all 0.3s ease;
}

#startTrialModal .input-group .form-control {
    border-left: none;
    border-radius: 0 12px 12px 0;
}

#startTrialModal .input-group:focus-within .input-group-text {
    border-color: #E62A38;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe6e6 100%);
    color: #E62A38;
}

/* Enhanced select dropdown */
#startTrialModal .form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 6 7 7 7-7'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px 12px;
    padding-right: 3rem;
}

#startTrialModal .form-select:focus {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23E62A38' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 6 7 7 7-7'/%3e%3c/svg%3e");
}

/* Hover effects for form elements */
#startTrialModal .form-control:hover,
#startTrialModal .form-select:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 42, 56, 0.15);
}

/* Focus ring animation */
#startTrialModal .form-control:focus,
#startTrialModal .form-select:focus {
    animation: focusRing 0.6s ease;
}

@keyframes focusRing {
    0% {
        box-shadow: 0 0 0 0 rgba(230, 42, 56, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(230, 42, 56, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(230, 42, 56, 0);
    }
}

/* Enhanced mobile responsiveness */
@media (max-width: 576px) {
    #startTrialModal .modal-dialog {
        margin: 0.5rem;
        max-width: 98%;
    }
    
    #startTrialModal .modal-body {
        padding: 1.5rem 1rem;
    }
    
    #startTrialModal .modal-header {
        padding: 1.25rem 1rem 1rem;
    }
    
    #startTrialModal .modal-title {
        font-size: 1.3rem;
    }
    
    #startTrialModal .submit-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
    }
    
    #startTrialModal .form-control,
    #startTrialModal .form-select {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }
    
    .success-toast {
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100px);
    }
    
    .success-toast.show {
        transform: translateY(0);
    }
}

/* Zoho CRM Form Styling - Custom Design */
#crmWebToEntityForm {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin: 2rem auto;
    max-width: 700px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#crmWebToEntityForm .zcwf_title {
    color: #E62A38;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

#crmWebToEntityForm .zcwf_row {
    margin: 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

#crmWebToEntityForm .zcwf_col_lab {
    width: 30%;
    min-width: 120px;
    margin-bottom: 0.5rem;
}

#crmWebToEntityForm .zcwf_col_lab label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    display: block;
}

#crmWebToEntityForm .zcwf_col_lab span[style*="color:red"] {
    color: #E62A38 !important;
    font-weight: 700;
}

#crmWebToEntityForm .zcwf_col_fld {
    width: 68%;
    flex: 1;
    min-width: 200px;
}

#crmWebToEntityForm .zcwf_col_fld input[type="text"],
#crmWebToEntityForm .zcwf_col_fld input[type="email"],
#crmWebToEntityForm .zcwf_col_fld input[type="tel"] {
    width: 100%;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
    box-sizing: border-box;
}

#crmWebToEntityForm .zcwf_col_fld input[type="text"]:focus,
#crmWebToEntityForm .zcwf_col_fld input[type="email"]:focus,
#crmWebToEntityForm .zcwf_col_fld input[type="tel"]:focus {
    border-color: #E62A38;
    box-shadow: 0 0 0 3px rgba(230, 42, 56, 0.1);
    outline: none;
}

#crmWebToEntityForm .zcwf_col_fld input[type="text"]:hover,
#crmWebToEntityForm .zcwf_col_fld input[type="email"]:hover,
#crmWebToEntityForm .zcwf_col_fld input[type="tel"]:hover {
    border-color: #E62A38;
    box-shadow: 0 2px 8px rgba(230, 42, 56, 0.1);
}

/* Submit and Reset Buttons */
#crmWebToEntityForm .zcwf_row:last-child {
    margin-top: 2rem;
    text-align: center;
}

#crmWebToEntityForm .formsubmit.zcwf_button {
    background: #E62A38;
    color: white !important;
    border: none;
    border-radius: 6px;
    padding: 0.875rem 2.5rem;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-right: 1rem;
    min-width: 120px;
}

#crmWebToEntityForm .formsubmit.zcwf_button:hover {
    background: #d42432;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(230, 42, 56, 0.3);
}

#crmWebToEntityForm .zcwf_button[type="reset"] {
    background: #6c757d;
    color: white !important;
    border: none;
    border-radius: 6px;
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 100px;
}

#crmWebToEntityForm .zcwf_button[type="reset"]:hover {
    background: #5a6268;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

/* Success Message Styling */
#crmWebToEntityForm .wf_customMessageBox {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: none;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
    padding: 1rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
}

#crmWebToEntityForm .wf_customCircle {
    background-color: white;
}

#crmWebToEntityForm .wf_customCheckMark {
    border-bottom: 2px solid #28a745;
    border-right: 2px solid #28a745;
}

/* Responsive Design */
@media (max-width: 768px) {
    #crmWebToEntityForm {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    #crmWebToEntityForm .zcwf_row {
        flex-direction: column;
        align-items: stretch;
    }
    
    #crmWebToEntityForm .zcwf_col_lab,
    #crmWebToEntityForm .zcwf_col_fld {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    #crmWebToEntityForm .zcwf_title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    #crmWebToEntityForm .formsubmit.zcwf_button,
    #crmWebToEntityForm .zcwf_button[type="reset"] {
        width: 100%;
        margin: 0.5rem 0;
        padding: 1rem 2rem;
    }
}

@media (max-width: 480px) {
    #crmWebToEntityForm {
        padding: 1rem;
        margin: 0.5rem;
    }
    
    #crmWebToEntityForm .zcwf_title {
        font-size: 1.3rem;
    }
    
    #crmWebToEntityForm .zcwf_col_fld input[type="text"],
    #crmWebToEntityForm .zcwf_col_fld input[type="email"],
    #crmWebToEntityForm .zcwf_col_fld input[type="tel"] {
        padding: 0.875rem 0.75rem;
        font-size: 0.9rem;
    }
}

/* Form Loading State */
#crmWebToEntityForm .formsubmit.zcwf_button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Input Placeholder Styling */
#crmWebToEntityForm .zcwf_col_fld input::placeholder {
    color: #adb5bd;
    font-style: italic;
}

/* Required Field Indicator */
#crmWebToEntityForm .zcwf_col_lab label[for*="required"]::after {
    content: " *";
    color: #E62A38;
    font-weight: 700;
}

/* Form Section Spacing */
#crmWebToEntityForm .zcwf_row:not(:last-child) {
    border-bottom: 1px solid #f8f9fa;
    padding-bottom: 1.5rem;
}

/* Enhanced Focus States */
#crmWebToEntityForm .zcwf_col_fld input:focus {
    transform: translateY(-1px);
}

/* Button Group Styling */
#crmWebToEntityForm .zcwf_row:last-child .zcwf_col_fld {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Success Animation */
@keyframes formSuccess {
    0% { transform: scale(0.95); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

#crmWebToEntityForm .wf_customMessageBox {
    animation: formSuccess 0.3s ease-out;
}

/* Responsive Design for Testimonials Section */
@media (max-width: 1200px) {
    .testimonial-cards-container {
        gap: 1.5rem;
    }
    
    .testimonial-card {
        width: 320px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 4rem 0;
    }
    
    .testimonials-section .main-title {
        font-size: 2rem;
    }
    
    .testimonials-section .subtitle {
        font-size: 1rem;
    }
    
    .testimonial-cards-container {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        width: 100%;
        max-width: 400px;
    }
    
    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .testimonials-section {
        padding: 3rem 0;
    }
    
    .testimonials-section .main-title {
        font-size: 1.75rem;
    }
    
    .testimonials-section .subtitle {
        font-size: 0.95rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
        max-width: 100%;
    }
    
    .customer-name {
        font-size: 1.1rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 0.75rem 1.75rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .testimonials-section .main-title {
        font-size: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.25rem;
    }
    
    .quote-icon {
        font-size: 1.5rem;
        bottom: 0.75rem;
        right: 1.25rem;
    }
}

/* Responsive Design for Big Tech Section */
@media (max-width: 768px) {
    .big-tech-section {
        padding: 3rem 0;
    }
    
    .big-tech-section .section-title {
        font-size: 2rem;
    }
    
    .big-tech-section .subtitle-text {
        font-size: 1rem;
    }
    
    .big-tech-img {
        max-width: 90%;
    }
}

@media (max-width: 576px) {
    .big-tech-section .section-title {
        font-size: 1.75rem;
    }
    
    .big-tech-section .subtitle-text {
        font-size: 0.95rem;
    }
    
    .big-tech-img {
        max-width: 95%;
    }
}

@media (max-width: 480px) {
    .big-tech-section .section-title {
        font-size: 1.5rem;
    }
    
    .big-tech-section .subtitle-text {
        font-size: 0.9rem;
    }
    
    .big-tech-img {
        max-width: 100%;
    }
}
