:root {
    --primary-color: #1a7b88;
    --primary-dark: #146570;
    --primary-light: #e8f4f5;
    --accent-color: #f47c3c;
    --text-color: #2d3748;
    --text-light: #718096;
    --bg-light: #f8fafc;
    --bg-dark: #1a202c;
    --success: #48bb78;
    --warning: #ecc94b;
    --danger: #f56565;
    --white: #ffffff;
    --gray-100: #f7fafc;
    --gray-200: #edf2f7;
    --gray-300: #e2e8f0;
    --gray-400: #cbd5e0;
    --gray-500: #a0aec0;
    --gray-600: #718096;
    --gray-700: #4a5568;
    --gray-800: #2d3748;
    --gray-900: #1a202c;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --box-shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: Poppins, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-light);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Montserrat, sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.4rem;
}

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

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style-type: none;
    padding-left: 0;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-primary-dark {
    background-color: var(--primary-dark) !important;
}

.bg-accent {
    background-color: var(--accent-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-accent {
    color: var(--accent-color) !important;
}

.text-white {
    color: var(--white) !important;
}

section {
    padding: 30px 0;
}

.section-header.text-center h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.btn {
    padding: 10px 20px;
    font-weight: 500;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 5px rgba(0, 0, 0, .05);
    transition: var(--transition);
}

.btn-lg {
    padding: 12px 24px;
    font-size: 1.1rem;
}

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

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
}

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

.btn-accent:hover,
.btn-accent:focus {
    background-color: #e56f30;
    border-color: #e56f30;
    color: var(--white);
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background-color: var(--primary-color);
    color: var(--white);
}

/* navbar */
/* .navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
    padding: 15px 0;
}

.navbar-brand img {
    height: 40px;
} */
 /* Navbar Styles */
 .navbar {
     background-color: var(--white);
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
     padding: 15px 0;
 }

 .navbar-brand img {
     height: 40px;
 }

 .navbar-nav .nav-link {
     font-weight: 500;
     color: var(--text-color) !important;
     padding: 10px 15px;
     transition: var(--transition);
 }

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

 .search-container {
     position: relative;
 }

 .search-input {
     padding-right: 40px;
     border-radius: var(--border-radius);
     border: 1px solid var(--gray-300);
 }

 .search-button {
     position: absolute;
     right: 10px;
     top: 50%;
     transform: translateY(-50%);
     border: none;
     background: transparent;
     color: var(--gray-500);
 }

 /* Mega Menu Styles */
 .mega-menu {
     position: static !important;
 }

 .mega-menu .dropdown-menu {
     width: 100%;
     border: none;
     border-radius: 0 0 var(--border-radius) var(--border-radius);
     margin-top: 0;
     box-shadow: var(--box-shadow-lg);
     padding: 30px;
     border-top: 2px solid var(--primary-color);
 }

 .mega-menu-header {
     font-weight: 600;
     color: var(--primary-color);
     font-size: 1rem;
     margin-bottom: 15px;
     padding-bottom: 5px;
     border-bottom: 2px solid var(--accent-color);
 }

 .mega-menu-item {
     display: flex;
     align-items: flex-start;
     padding: 15px;
     border-radius: var(--border-radius);
     margin-bottom: 10px;
     transition: var(--transition);
 }

 .mega-menu-item:hover {
     background-color: var(--primary-light);
 }

 .mega-menu-icon {
     font-size: 1.5rem;
     color: var(--accent-color);
     margin-right: 15px;
 }

 .mega-menu-content h5 {
     margin: 0;
     font-size: 1rem;
     font-weight: 600;
 }

 .mega-menu-content p {
     margin: 0;
     font-size: 0.85rem;
     color: var(--text-light);
 }

 .mega-menu-right-col {
     border-left: 1px solid var(--gray-200);
     padding-left: 30px;
 }

 .feature-card {
     background: var(--primary-light);
     border-radius: var(--border-radius);
     padding: 20px;
     margin-bottom: 20px;
     transition: var(--transition);
 }

 .feature-card:hover {
     transform: translateY(-5px);
     box-shadow: var(--box-shadow);
 }

 .feature-card-title {
     font-weight: 600;
     margin-bottom: 10px;
     color: var(--primary-color);
 }

 .feature-card-text {
     font-size: 0.9rem;
     margin-bottom: 15px;
     color: var(--text-light);
 }

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.trust-badge {
    display: flex;
    align-items: center;
    background-color: var(--gray-100);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: .85rem;
    color: var(--gray-700);
}

.trust-badge i {
    margin-right: 8px;
    font-size: 1rem;
    color: var(--primary-color);
}

.counter-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

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

.counter-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .7);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
    background-color: rgba(0, 0, 0, .3);
}

.counter-number {
    color: #fff;
}

.counter-label {
    font-size: .8rem;
    color: rgba(255, 255, 255, .8);
    text-transform: uppercase;
    letter-spacing: .5px;
}

.feature-list {
    margin-top: 20px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 1rem;
}

.feature-list li i {
    color: var(--success);
    margin-right: 10px;
    font-size: 1.2rem;
    margin-top: 2px;
}

.trial-form-card {
    background-color: var(--white);
    color: var(--primary-dark);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-lg);
    padding: 30px;
    position: relative;
    z-index: 2;
}

#togglePassword {
    cursor: pointer;
    border-color: var(--gray-300);
}

#togglePassword:hover {
    background-color: var(--gray-100);
}

#togglePassword:focus {
    box-shadow: none;
    outline: none; 
}

.pulse-badge {
    display: inline-block;
    background-color: var(--accent-color);
    color: #fff;
    font-size: .85rem;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 20px;
    animation: 2s infinite pulse;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(244, 124, 60, .5);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(244, 124, 60, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(244, 124, 60, 0);
    }
}

.hero-pattern {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-light) 0, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 25px;
    transition: var(--transition);
    position: relative;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--gray-200);
    font-size: 2rem;
    opacity: .5;
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-color);
}

.testimonial-rating {
    color: gold;
    margin-bottom: 20px;
}

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

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    margin-right: 15px;
}

.testimonial-info h4 {
    margin-bottom: 0;
    font-size: 1rem;
}

.testimonial-info p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: .85rem;
}

.logos-container {
    margin-top: 40px;
}

.logo-carousel {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.logo-carousel img {
    height: 50px;
    opacity: .7;
    filter: grayscale(100%);
    transition: opacity .3s;
}

.logo-carousel img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.faq-section {
    background-color: var(--white);
}

.accordion-item {
    margin-bottom: 15px;
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius) !important;
    overflow: hidden;
}

.accordion-button {
    padding: 20px;
    background-color: var(--white);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-color);
}

.accordion-button:not(.collapsed) {
    background-color: var(--white);
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--gray-200);
}

.accordion-body {
    padding: 20px;
    background-color: var(--white);
    border-top: 1px solid var(--gray-200);
}

.accordion-body p {
    color: var(--text-light);
    margin-bottom: 0;
}

footer {
    background-color: var(--bg-dark);
    padding: 70px 0 20px;
    color: var(--white);
}

footer h6 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.footer-logo {
    margin-bottom: 20px;
    filter: brightness(1.2);
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, .7);
    font-size: .95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    text-decoration: none;
}

.social-icons {
    display: flex;
}

.social-icons a {
    color: rgba(255, 255, 255, .7);
    font-size: 1.3rem;
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--white);
}

footer .input-group {
    margin-bottom: 20px;
}

footer .form-control {
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    border: none;
    padding: 10px 15px;
}

footer .btn {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    padding: 10px 15px;
}

footer hr {
    border-color: rgba(255, 255, 255, .1);
    margin: 30px 0;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 1.5rem;
    opacity: 0;
    visibility: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
    color: var(--white);
}

.free-trial-hero {
    background: linear-gradient(135deg, var(--primary-color) 0, var(--primary-dark) 100%);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.free-trial-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background-color: rgba(255, 255, 255, .05);
    border-radius: 50%;
    z-index: 0;
}

.free-trial-hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background-color: rgba(255, 255, 255, .05);
    border-radius: 50%;
    z-index: 0;
}

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

.included-section {
    padding: 60px 0;
    background-color: var(--primary-light);
}

.included-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 25px;
    height: 100%;
    transition: var(--transition);
    text-align: center;
}

.included-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
}

.included-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.included-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.included-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.included-card p {
    color: var(--text-light);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .free-trial-hero {
        padding: 50px 0;
        text-align: center;
    }

    h1 {
        font-size: 2.2rem;
    }

    section {
        padding: 60px 0;
    }

    .counter-circle {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
}

@media (max-width: 767.98px) {
    .free-trial-hero {
        padding: 40px 0;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .trial-form-card {
        margin-top: 40px;
    }

    .included-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 575.98px) {
    h1 {
        font-size: 1.8rem;
    }

    .counter-wrapper {
        gap: 10px;
    }

    .counter-circle {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .counter-label {
        font-size: .7rem;
    }
}