:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --text-color: #1f2937;
    --light-bg: #f3f4f6;
}

/* General Styles */
body, html {
    font-family: 'Outfit', sans-serif !important;
    color: var(--text-color);
    line-height: 1.6;
    background: url('../images/hero-bg.png') no-repeat center top fixed;
    background-size: cover;
    background-attachment: fixed;
}

/* Header Styles */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand img {
    transition: all 0.3s ease;
}

.nav-link {
    font-weight: 500;
    color: var(--text-color) !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    padding-top: 120px;
    padding-bottom: 60px;
}

.hero-grid-bg {
    background-color: #fff;
    position: relative;
}
.hero-grid-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: linear-gradient(to right, rgba(0,0,0,0.03) 1px, transparent 1px), linear-gradient(to bottom, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
.hero-section > .container {
    position: relative;
    z-index: 1;
}
.hero-title {
    font-family: 'Outfit', 'Noto Sans', sans-serif;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
}
.hero-section .lead {
    color: #4b5563;
    font-size: 1.25rem;
}

.trusted-msg {
    font-size: 1.15rem;
    margin-top: 2rem;
    color: #6b7280;
    letter-spacing: 0.01em;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Features Section */
.feature-card {
    padding: 2rem;
    border-radius: 1rem;
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
    }
    
    .hero-section .btn-group {
        justify-content: center;
    }
}

/* Animations */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Pricing Cards */
.pricing-container {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px;
}

.pricing-card {
    flex: 1;
    min-width: 300px;
    max-width: 360px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    padding: 32px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.pricing-card.featured {
    border: 2px solid #0d47a1;
    box-shadow: 0 4px 12px rgba(13,71,161,0.1);
}

.pricing-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.pricing-card:nth-child(1) .pricing-title {
    color: #2e7d32;
}

.pricing-card:nth-child(2) .pricing-title {
    color: #0d47a1;
}

.pricing-card:nth-child(3) .pricing-title {
    color: #6a1b9a;
}

.pricing-price {
    font-size: 18px;
    font-weight: 600;
    color: #444;
    margin-bottom: 8px;
}

.pricing-subtitle {
    margin-bottom: 24px;
    color: #666;
}

.pricing-features {
    list-style: none;
    padding: 0;
    text-align: left;
    line-height: 1.8;
    margin-bottom: 24px;
}

.pricing-features li {
    margin-bottom: 8px;
    color: #444;
}

.pricing-button {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.pricing-card:nth-child(1) .pricing-button {
    background: #2e7d32;
}

.pricing-card:nth-child(2) .pricing-button {
    background: #0d47a1;
}

.pricing-card:nth-child(3) .pricing-button {
    background: #6a1b9a;
}

.pricing-button:hover {
    opacity: 0.9;
    color: #fff;
}

@media (max-width: 768px) {
    .pricing-container {
        padding: 10px;
    }
    .pricing-card {
        min-width: 280px;
        padding: 24px;
    }
}

/* Modern FAQ Styles */
.modern-faq .accordion-item {
    border-radius: 1rem;
    margin-bottom: 1.2rem;
    border: none;
    box-shadow: 0 2px 12px 0 rgba(37,99,235,0.04);
    overflow: hidden;
}
.modern-faq .accordion-header {
    background: none;
    border: none;
}
.modern-faq .accordion-button {
    font-size: 1.15rem;
    font-weight: 600;
    background: #f8fafc;
    color: #222;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 1.2rem 1.5rem;
    transition: background 0.2s, color 0.2s;
}
.modern-faq .accordion-button:not(.collapsed) {
    background: #000628;
    color: #fff
}
.modern-faq .accordion-body {
    background: #fff;
    color: #000628;
    font-size: 1.08rem;
    padding: 1.2rem 1.5rem 1.5rem 2.5rem;
    border-top: 1px solid #e5e7eb;
}
.modern-faq .accordion-button:focus {
    box-shadow: none;
}
@media (max-width: 767px) {
    .modern-faq .accordion-button {
        font-size: 1rem;
        padding: 1rem 1rem;
    }
    .modern-faq .accordion-body {
        font-size: 1rem;
        padding: 1rem 1rem 1.2rem 2rem;
    }
}

/* Contact Form */
.form-control {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
}

/* Footer */
.footer {
    background-color: #1f2937;
}

.footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--primary-color) !important;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* Screenshot Section */
.screenshot-item {
    position: relative;
    margin: 1rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.screenshot-item:hover {
    transform: translateY(-5px);
}

.screenshot-item img {
    width: 100%;
    height: auto;
    display: block;
}

.screenshot-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 1rem;
    text-align: center;
    font-weight: 500;
}

.screenshotSwiper {
    padding: 2rem 0;
}

.screenshotSwiper .swiper-slide {
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.screenshotSwiper .swiper-slide-active {
    opacity: 1;
}

.screenshotSwiper .swiper-button-next,
.screenshotSwiper .swiper-button-prev {
    color: var(--primary-color);
}

.screenshotSwiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .screenshot-item {
        padding: 0.5rem;
    }
}

/* Logo Styles */
.logo-img {
    transition: all 0.3s ease;
    filter: brightness(0.95);
}

.logo-img:hover {
    filter: brightness(1);
}

.navbar-brand {
    padding: 0;
    margin-right: 2rem;
}

/* Modern Footer Styles */
.footer-modern {
    background: #fff;
    color: #222;
    font-size: 1rem;
    border-top: 1px solid #e5e7eb;
}
.footer-modern .logo-img {
    height: 40px;
    margin-right: 8px;
}
.footer-modern .fw-bold {
    font-weight: 600 !important;
    letter-spacing: 0.01em;
}
.footer-modern ul {
    margin: 0;
    padding: 0;
}
.footer-modern .footer-link {
    color: #222;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 400;
    transition: color 0.2s;
}
.footer-modern .footer-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}
.footer-modern hr {
    border-top: 1px solid #e5e7eb;
    margin: 2rem 0 1.5rem 0;
}
.footer-modern .fs-3 {
    font-size: 2rem !important;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.footer-modern .d-flex span {
    font-size: 1rem;
    font-weight: 500;
}
@media (max-width: 991px) {
    .footer-modern .row > div {
        margin-bottom: 1.5rem;
    }
}
@media (max-width: 767px) {
    .footer-modern .row {
        text-align: center;
    }
    .footer-modern .d-flex {
        flex-direction: column !important;
        align-items: center !important;
    }
    .footer-modern .d-flex span {
        margin-bottom: 0.5rem;
    }
}

/* Modern Contact Section */
#contact {
    background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
    position: relative;
    overflow: hidden;
}
#contact .contact-bg-wave {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 120px;
    pointer-events: none;
    z-index: 1;
}
#contact .container, #contact .row, #contact .col-lg-10 {
    position: relative;
    z-index: 2;
}
#contact .display-5 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}
.contact-input {
    background: #f5f5f5;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    padding: 1rem 1.25rem;
    margin-bottom: 1.2rem;
    box-shadow: none;
    transition: box-shadow 0.2s;
}
.contact-input:focus {
    background: #f5f5f5;
    box-shadow: 0 0 0 2px var(--primary-color, #2563eb);
    border: none;
}
.btn-contact {
    background: linear-gradient(90deg, #7b2ff2 0%, #2563eb 100%);
    color: #fff;
    font-size: 1.15rem;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px 0 rgba(37,99,235,0.08);
}
.btn-contact:hover {
    background: linear-gradient(90deg, #2563eb 0%, #7b2ff2 100%);
    color: #fff;
    box-shadow: 0 4px 16px 0 rgba(37,99,235,0.12);
}
.contact-info-box {
    border: 2px solid #e0c3fc;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 2px 12px 0 rgba(37,99,235,0.04);

    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: box-shadow 0.2s, border 0.2s;
}
.contact-info-box:hover {
    border: 2px solid #7b2ff2;
    box-shadow: 0 4px 24px 0 rgba(123,47,242,0.10);
}

.contact-info-box .text-muted {
    font-size: 1rem;
}
.contact-info-box a {
    text-decoration: underline;
    color: var(--primary-color, #2563eb);
}
@media (max-width: 991px) {
    #contact .row.g-5 {
        flex-direction: column;
    }
    .contact-info-box {
        margin-top: 2rem;
    }
}
@media (max-width: 767px) {
    #contact .display-5 {
        font-size: 2rem;
    }
    .contact-info-box {
        padding: 1.5rem;
    }
}

h2 {
    font-weight: 700;
    font-size: 2.5rem;
    letter-spacing: -0.01em;
    margin-bottom: 2rem;
}
@media (max-width: 767px) {
    h2 {
        font-size: 2rem;
    }
}

/* Modern Gradient Footer Styles */
.footer-gradient {
    background: linear-gradient(120deg, #f8fafc 0%, #e0c3fc 60%, #8ec5fc 100%);
    color: #222;
    font-size: 1.05rem;
    border-top: 1px solid #e5e7eb;
}
.footer-gradient .logo-img {
    height: 44px;
    margin-right: 10px;
}
.footer-gradient .fs-3 {
    font-size: 2rem !important;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.footer-gradient .footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #222;
}
.footer-gradient .footer-link {
    color: #222;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 400;
    transition: color 0.2s;
}
.footer-gradient .footer-link:hover {
    color: var(--primary-color, #2563eb);
    text-decoration: underline;
}
.footer-gradient .newsletter-form {
    max-width: 420px;
}
.footer-gradient .newsletter-input {
    border: none;
    background: #fff;
    border-radius: 2rem 0 0 2rem;
    font-size: 1rem;
    padding: 0.9rem 1.2rem;
    box-shadow: none;
}
.footer-gradient .newsletter-input:focus {
    outline: none;
    box-shadow: 0 0 0 2px #8ec5fc;
}
.footer-gradient .btn-newsletter {
    background: #7b2ff2;
    color: #fff;
    border-radius: 0 2rem 2rem 0;
    border: none;
    padding: 0 1.3rem;
    font-size: 1.2rem;
    transition: background 0.2s;
}
.footer-gradient .btn-newsletter:hover {
    background: #2563eb;
    color: #fff;
}
.footer-gradient .footer-social {
    margin-top: 0.5rem;
}
.footer-gradient .footer-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    color: #222;
    font-size: 1.25rem;
    box-shadow: 0 2px 8px 0 rgba(37,99,235,0.06);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.footer-gradient .footer-social-icon:hover {
    background: #2563eb;
    color: #fff;
    box-shadow: 0 4px 16px 0 rgba(37,99,235,0.12);
}
.footer-gradient hr {
    border-top: 1px solid #e5e7eb;
    margin: 2rem 0 1.5rem 0;
}
.footer-gradient .text-primary {
    color: #7b2ff2 !important;
}
@media (max-width: 991px) {
    .footer-gradient .row > div {
        margin-bottom: 1.5rem;
    }
}
@media (max-width: 767px) {
    .footer-gradient .row {
        text-align: center;
    }
    .footer-gradient .footer-title {
        margin-top: 2rem;
    }
    .footer-gradient .newsletter-form {
        max-width: 100%;
    }
}

/* Modern Hero/Slider Section */
.hero-newsletter-form {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.hero-newsletter-input {
    border-radius: 2rem;
    border: 1.5px solid #e5e7eb;
    font-size: 1.1rem;
    padding: 0.9rem 1.2rem;
    background: #fff;
    box-shadow: none;
    min-width: 220px;
}
.hero-newsletter-input:focus {
    border-color: #7b2ff2;
    box-shadow: 0 0 0 2px #e0c3fc;
}
.hero-dashboard-wrapper {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: flex;
    justify-content: center;
}
.hero-dashboard-img {
    position: relative;
    transition: all 0.5s ease;
    animation: float 6s ease-in-out infinite;
    transform-style: preserve-3d;
    perspective: 1000px;
    max-width: 100%;
    min-width: 260px;
    border-radius: 2rem;
    box-shadow: 0 8px 32px 0 rgba(37,99,235,0.10);
    background: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
    position: relative;
    z-index: 2;
}
.hero-dashboard-img::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: linear-gradient(45deg, #2563eb, #4f46e5);
    border-radius: 1rem;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.hero-dashboard-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(37,99,235,0.1), rgba(79,70,229,0.1));
    border-radius: 1rem;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.hero-dashboard-img:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 20px 40px rgba(37,99,235,0.2);
}
.hero-dashboard-img:hover::before {
    opacity: 0.1;
}
.hero-dashboard-img:hover::after {
    opacity: 1;
}
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}
.hero-dashboard-fade {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 80px;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, #fff 100%);
    border-radius: 0 0 2rem 2rem;
    z-index: 3;
    pointer-events: none;
}
.btn-primary.btn-lg {
    font-size: 1.15rem;
    font-weight: 600;
    border-radius: 2rem;
    padding: 0.9rem 2.5rem;
    background: linear-gradient(90deg, #2563eb 0%, #7b2ff2 100%);
    border: none;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px 0 rgba(37,99,235,0.08);
}
.btn-primary.btn-lg:hover {
    background: linear-gradient(90deg, #7b2ff2 0%, #2563eb 100%);
    color: #fff;
    box-shadow: 0 4px 16px 0 rgba(37,99,235,0.12);
}
.btn-link.btn-lg {
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
    text-decoration: underline;
    padding-left: 0;
    padding-right: 0;
}
.btn-link.btn-lg:hover {
    color: var(--primary-color, #2563eb);
    text-decoration: underline;
}
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }
    .hero-dashboard-img {
        width: 100%;
    }
}
@media (max-width: 767px) {
    .hero-title {
        font-size: 1.3rem;
    }
    .hero-dashboard-img {
        min-width: 0;
        border-radius: 1rem;
    }
    .hero-dashboard-fade {
        height: 40px;
        border-radius: 0 0 1rem 1rem;
    }
}

/* Modules Section Styles */
.module-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 2px 12px 0 rgba(37,99,235,0.04);
}

.module-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px 0 rgba(37,99,235,0.12);
    border-color: rgba(37,99,235,0.1);
}

.module-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.module-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000628;
}

.module-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 767px) {
    .module-card {
        padding: 1.5rem;
    }
    .module-icon {
        font-size: 2rem;
    }
    .module-card h3 {
        font-size: 1.1rem;
    }
}

/* Animated Hero Title */
.hero-title {
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
}

.animated-text {
    display: inline-block;
    background: linear-gradient(45deg, #2563eb, #4f46e5);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: slideIn 1s ease-out;
    position: relative;
}

.gradient-text {
    display: inline-block;
    background: linear-gradient(45deg, #000628, #2563eb);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: fadeInUp 1s ease-out 0.5s both;
    position: relative;
}

@keyframes slideIn {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes lineGrow {
    0% {
        transform: scaleX(0);
    }
    100% {
        transform: scaleX(1);
    }
}

/* Glow Effect */
.hero-dashboard-img {
    box-shadow: 0 10px 30px rgba(37,99,235,0.15);
}

.hero-dashboard-img:hover {
    box-shadow: 0 20px 40px rgba(37,99,235,0.3),
                0 0 20px rgba(37,99,235,0.2),
                0 0 40px rgba(37,99,235,0.1);
}

/* Image Border Gradient */
.hero-dashboard-img {
  
    background: linear-gradient(white, white) padding-box,
                linear-gradient(45deg, #2563eb, #4f46e5) border-box;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-dashboard-img {
        transform: none !important;
        animation: float 6s ease-in-out infinite;
    }
    
    .hero-dashboard-img:hover {
        transform: translateY(-5px) !important;
    }
}

section {
    padding-top: 7rem !important;
} 