/* ================================== CSS Variables & Root Styles ================================== */

:root { --primary-color:#2d2a8c; --accent-color:#5b7cfa; --dark-color:#0f172a; --light-color:#f8fafc; --highlight-color:#fbbf24; --white-color:#ffffff; --text-dark:#1e293b; --text-light:#64748b; --border-color:#e2e8f0; --success-color:#10b981; --gradient-primary:linear-gradient(135deg,#2d2a8c 0%,#5b7cfa 100%); --gradient-accent:linear-gradient(135deg,#5b7cfa 0%,#7c3aed 100%); --shadow-sm:0 2px 4px rgba(15,23,42,0.05); --shadow-md:0 4px 6px rgba(15,23,42,0.1); --shadow-lg:0 10px 15px rgba(15,23,42,0.1); --shadow-xl:0 20px 25px rgba(15,23,42,0.15); --transition:all 0.3s ease; }

/* ================================== Global Styles ================================== */
* { margin:0; padding:0; box-sizing:border-box; }

body { font-family:"Inter",sans-serif; font-size:16px; line-height:1.6; color:var(--text-dark); background-color:var(--white-color); overflow-x:hidden; }

h1, h2, h3, h4, h5, h6 { font-family:"Poppins",sans-serif; font-weight:600; line-height:1.2; color:var(--dark-color); }

h1 { font-size:3.5rem; }
h2 { font-size:2.5rem; }
h3 { font-size:2rem; }
h4 { font-size:1.5rem; }
h5 { font-size:1.25rem; }
h6 { font-size:1rem; }

p { line-height:1.7; color:var(--text-light); }

a { text-decoration:none; transition:var(--transition); }

img { max-width:100%; height:auto; }

section { position:relative; overflow:hidden; }

.section-padding { padding:100px 0; }

/* ================================== Header & Navigation ================================== */

.navbar { background: rgba(15, 23, 42, 0.95); backdrop-filter: blur(10px); padding: 1rem 0; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); transition: var(--transition); }

.navbar.scrolled { background: var(--dark-color); box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); }

.logo-text { font-family: "Poppins", sans-serif; font-size: 1.8rem; font-weight: 700; color: var(--white-color); }

.logo-text .highlight { color: var(--highlight-color); }

.nav-link { color: rgba(255, 255, 255, 0.9); font-weight: 500; padding: 0.5rem 1.2rem; transition: var(--transition); position: relative; }

.nav-link::after { content: ""; position: absolute; bottom: 0; left: 50%; width: 0; height: 2px; background: var(--accent-color); transition: var(--transition); transform: translateX(-50%); }

.nav-link:hover { color: var(--white-color); }

.nav-link:hover::after { width: 80%; }

.btn-primary-custom { background: var(--gradient-primary); color: var(--white-color); padding: 0.75rem 2rem; border-radius: 50px; font-weight: 600; border: none; transition: var(--transition); box-shadow: 0 4px 15px rgba(91, 124, 250, 0.3); }

.btn-primary-custom:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(91, 124, 250, 0.4); color: var(--white-color); }

.btn-outline-light { border: 2px solid var(--white-color); color: var(--white-color); padding: 0.75rem 2rem; border-radius: 50px; font-weight: 600; transition: var(--transition); }

.btn-outline-light:hover { background: var(--white-color); color: var(--primary-color); transform: translateY(-2px); }

/* ================================== Hero Section ================================== */

.hero-section { background: var(--gradient-primary); padding: 150px 0 100px; position: relative; min-height: 100vh; display: flex; align-items: center; color: var(--white-color); }

.hero-title { font-size: 3.5rem; font-weight: 700; color: var(--white-color); margin-bottom: 1.5rem; line-height: 1.2; }

.hero-subtitle { font-size: 1.25rem; color: rgba(255, 255, 255, 0.9); margin-bottom: 2.5rem; line-height: 1.8; }

.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats { display: flex; gap: 3rem; margin-top: 3rem; }

.stat-item h3 { font-size: 2.5rem; font-weight: 700; color: var(--highlight-color); margin-bottom: 0.5rem; }

.stat-item p { color: rgba(255, 255, 255, 0.8); font-size: 0.95rem; }

.hero-image { position: relative; display: flex; justify-content: center; align-items: center; }

.dashboard-preview { background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); padding: 3rem; border-radius: 20px; border: 1px solid rgba(255, 255, 255, 0.2); box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); text-align: center; }

.dashboard-preview i { font-size: 5rem; color: var(--highlight-color); margin-bottom: 1rem; }

.dashboard-preview h4 { color: var(--white-color); margin-bottom: 0.5rem; }

.dashboard-preview p { color: rgba(255, 255, 255, 0.8); }

.floating { animation: floating 3s ease-in-out infinite; }

@keyframes floating { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }

.hero-shapes .shape { position: absolute; border-radius: 50%; opacity: 0.1; }

.shape-1 { width: 400px; height: 400px; background: var(--white-color); top: -200px; left: -200px; }

.shape-2 { width: 300px; height: 300px; background: var(--highlight-color); bottom: -150px; right: -150px; }

.shape-3 { width: 200px; height: 200px; background: var(--white-color); top: 50%; right: 10%; }

/* ================================== Section Headers ================================== */

.section-header { margin-bottom: 3rem; }

.section-badge { display: inline-block; padding: 0.5rem 1.5rem; background: linear-gradient(135deg, rgba(91, 124, 250, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%); color: var(--accent-color); border-radius: 50px; font-weight: 600; font-size: 0.9rem; margin-bottom: 1rem; border: 1px solid rgba(91, 124, 250, 0.2); }

.section-title { font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; color: var(--dark-color); }

.section-description { font-size: 1.1rem; color: var(--text-light); max-width: 700px; margin: 0 auto; }

/* ================================== Feature Cards ================================== */

.feature-card { background: var(--white-color); padding: 2.5rem; border-radius: 15px; box-shadow: var(--shadow-lg); transition: var(--transition); height: 100%; border: 1px solid var(--border-color); }

.feature-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-xl); border-color: var(--accent-color); }

.feature-icon { width: 70px; height: 70px; background: var(--gradient-primary); border-radius: 15px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; box-shadow: 0 10px 25px rgba(91, 124, 250, 0.3); }

.feature-icon i { font-size: 2rem; color: var(--white-color); }

.feature-card h4 { font-size: 1.3rem; margin-bottom: 1rem; color: var(--dark-color); }

.feature-card p { color: var(--text-light); margin-bottom: 1.5rem; }

.feature-list { list-style: none; padding: 0; }

.feature-list li { padding: 0.6rem 0; color: var(--text-dark); display: flex; align-items: flex-start; gap: 0.8rem; font-size: 0.95rem; }

.feature-list li i { color: var(--success-color); font-size: 0.9rem; margin-top: 0.3rem; }

.feature-list li strong { color: var(--primary-color); }

/* ================================== Analytics Box ================================== */

.analytics-box { background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%); padding: 3rem; border-radius: 20px; color: var(--white-color); box-shadow: var(--shadow-xl); }

.analytics-box h3 { font-size: 2rem; color: var(--white-color); margin-bottom: 0.5rem; }

.analytics-box p { color: rgba(255, 255, 255, 0.9); margin-bottom: 2rem; }

.analytics-box h5 { color: var(--white-color); margin-bottom: 1rem; }

.metric-card { background: rgba(255, 255, 255, 0.15); backdrop-filter: blur(10px); padding: 2rem; border-radius: 15px; text-align: center; transition: var(--transition); border: 1px solid rgba(255, 255, 255, 0.2); }

.metric-card:hover { background: rgba(255, 255, 255, 0.2); transform: translateY(-5px); }

.metric-card i { font-size: 2.5rem; color: var(--highlight-color); margin-bottom: 1rem; }

.metric-card h4 { font-size: 1.2rem; color: var(--white-color); margin-bottom: 0.5rem; }

.metric-card p { color: rgba(255, 255, 255, 0.8); font-size: 0.9rem; margin: 0; }

.filter-tags { display: flex; flex-wrap: wrap; gap: 0.8rem; }

.filter-tag { background: rgba(255, 255, 255, 0.15); backdrop-filter: blur(10px); padding: 0.6rem 1.2rem; border-radius: 50px; color: var(--white-color); font-size: 0.9rem; border: 1px solid rgba(255, 255, 255, 0.2); transition: var(--transition); }

.filter-tag:hover { background: rgba(255, 255, 255, 0.25); }

.filter-tag i { margin-right: 0.5rem; color: var(--highlight-color); }

/* ================================== Benefit Cards ================================== */

.benefit-card { background: var(--white-color); padding: 2.5rem; border-radius: 15px; box-shadow: var(--shadow-md); transition: var(--transition); height: 100%; border: 1px solid var(--border-color); }

.benefit-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-xl); border-color: var(--accent-color); }

.benefit-icon { width: 80px; height: 80px; background: linear-gradient(135deg, rgba(91, 124, 250, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%); border-radius: 20px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }

.benefit-icon i { font-size: 2.5rem; color: var(--accent-color); }

.benefit-card h4 { font-size: 1.4rem; margin-bottom: 1rem; color: var(--dark-color); }

.benefit-card p { color: var(--text-light); line-height: 1.8; }



/* ================================== Dashboard Preview Widgets ================================== */

.dashboard-widget { background: var(--white-color); padding: 2rem; border-radius: 15px; box-shadow: var(--shadow-md); transition: var(--transition); border: 1px solid var(--border-color); display: flex; flex-direction: column; gap: 1rem; }

.dashboard-widget:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.widget-icon { width: 60px; height: 60px; border-radius: 12px; display: flex; align-items: center; justify-content: center; }

.widget-icon i { font-size: 1.8rem; color: var(--white-color); }

.widget-icon.leads { background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%); }
.widget-icon.customers { background: linear-gradient(135deg, #10b981 0%, #059669 100%); }
.widget-icon.deals { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); }
.widget-icon.boards { background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%); }
.widget-icon.tasks { background: linear-gradient(135deg, #ec4899 0%, #db2777 100%); }
.widget-icon.completed { background: linear-gradient(135deg, #10b981 0%, #059669 100%); }
.widget-icon.followups { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); }
.widget-icon.reports { background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%); }

.widget-content h3 { font-size: 2rem; font-weight: 700; color: var(--dark-color); margin: 0; }

.widget-content p { color: var(--text-light); margin: 0; font-size: 0.95rem; }

.widget-trend { display: inline-block; padding: 0.3rem 0.8rem; border-radius: 50px; font-size: 0.85rem; font-weight: 600; }

.widget-trend.up { background: rgba(16, 185, 129, 0.1); color: #059669; }

.widget-trend.neutral { background: rgba(100, 116, 139, 0.1); color: #64748b; }

.widget-trend i { margin-right: 0.3rem; }

/* ================================== Pricing Cards ================================== */

.pricing-card { background: var(--white-color); padding: 3rem; border-radius: 20px; box-shadow: var(--shadow-lg); transition: var(--transition); border: 2px solid var(--border-color); position: relative; height: 100%; }

.pricing-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-xl); border-color: var(--accent-color); }

.pricing-card.featured { border-color: var(--accent-color); box-shadow: 0 20px 40px rgba(91, 124, 250, 0.2); }

.pricing-badge { position: absolute; top: -15px; right: 30px; background: var(--gradient-primary); color: var(--white-color); padding: 0.5rem 1.5rem; border-radius: 50px; font-weight: 600; font-size: 0.85rem; box-shadow: 0 4px 15px rgba(91, 124, 250, 0.3); }

.pricing-icon { width: 90px; height: 90px; background: linear-gradient(135deg, rgba(91, 124, 250, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%); border-radius: 20px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }

.pricing-icon i { font-size: 3rem; color: var(--accent-color); }

.pricing-card h3 { font-size: 1.8rem; margin-bottom: 1rem; color: var(--dark-color); }

.pricing-description { color: var(--text-light); margin-bottom: 2rem; }

.pricing-price { display: flex; align-items: flex-start; margin-bottom: 2rem; }

.pricing-price .currency { font-size: 1.5rem; color: var(--text-dark); font-weight: 600; margin-top: 0.5rem; }

.pricing-price .amount { font-size: 3.5rem; font-weight: 700; color: var(--primary-color); margin-left: 0.3rem; }

.pricing-features { list-style: none; padding: 0; margin-bottom: 2rem; }

.pricing-features li { padding: 0.8rem 0; color: var(--text-dark); display: flex; align-items: flex-start; gap: 1rem; border-bottom: 1px solid var(--border-color); }

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li i { color: var(--success-color); font-size: 1.1rem; margin-top: 0.2rem; }

.pricing-note { color: var(--text-light); font-size: 0.95rem; }

.pricing-note i { color: var(--accent-color); }

/* ================================== CTA Section ================================== */

.cta-section { background: var(--gradient-primary); padding: 100px 0; position: relative; color: var(--white-color); }

.cta-content h2 { font-size: 2.8rem; color: var(--white-color); margin-bottom: 1.5rem; font-weight: 700; }

.cta-content p { font-size: 1.2rem; color: rgba(255, 255, 255, 0.9); margin-bottom: 2.5rem; }

.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.cta-shapes .cta-shape { position: absolute; border-radius: 50%; opacity: 0.1; }

.cta-shape-1 { width: 500px; height: 500px; background: var(--white-color); top: -250px; left: -250px; }

.cta-shape-2 { width: 400px; height: 400px; background: var(--highlight-color); bottom: -200px; right: -200px; }

/* ================================== Contact Section ================================== */

.contact-info { background: var(--white-color); padding: 2.5rem; border-radius: 20px; box-shadow: var(--shadow-lg); height: 100%; }

.contact-info h3 { color: var(--dark-color); margin-bottom: 2rem; }

.contact-item { display: flex; gap: 1.5rem; margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border-color); }

.contact-item:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }

.contact-item-icon { width: 60px; height: 60px; background: var(--gradient-primary); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

.contact-item-icon i { font-size: 1.5rem; color: var(--white-color); }

.contact-item-content h5 { color: var(--dark-color); margin-bottom: 0.5rem; }

.contact-item-content p { color: var(--text-light); margin: 0.3rem 0; }

.contact-form-wrapper { background: var(--white-color); padding: 2.5rem; border-radius: 20px; box-shadow: var(--shadow-lg); }

.form-label { font-weight: 600; color: var(--dark-color); margin-bottom: 0.5rem; }

.form-control { padding: 0.9rem 1.2rem; border: 2px solid var(--border-color); border-radius: 10px; transition: var(--transition); font-size: 1rem; }

.form-control:focus { border-color: var(--accent-color); box-shadow: 0 0 0 0.2rem rgba(91, 124, 250, 0.1); outline: none; }

textarea.form-control { resize: vertical; }

/* ================================== Footer ================================== */

.footer { background: var(--dark-color); color: rgba(255, 255, 255, 0.8); padding: 80px 0 0; }

.footer-brand .logo-text { font-size: 2rem; }

.footer-description { color: rgba(255, 255, 255, 0.7); line-height: 1.8; }

.social-links { display: flex; gap: 1rem; }

.social-link { width: 45px; height: 45px; background: rgba(255, 255, 255, 0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--white-color); transition: var(--transition); }

.social-link:hover { background: var(--accent-color); transform: translateY(-3px); }

.footer-title { color: var(--white-color); font-size: 1.2rem; font-weight: 600; margin-bottom: 1.5rem; }

.footer-links { list-style: none; padding: 0; }

.footer-links li { margin-bottom: 0.8rem; }

.footer-links a { color: rgba(255, 255, 255, 0.7); transition: var(--transition); }

.footer-links a:hover { color: var(--accent-color); padding-left: 5px; }

.footer-contact { list-style: none; padding: 0; }

.footer-contact li { display: flex; gap: 1rem; margin-bottom: 1rem; color: rgba(255, 255, 255, 0.7); }

.footer-contact i { color: var(--accent-color); font-size: 1.1rem; margin-top: 0.2rem; }

.footer-bottom { margin-top: 4rem; padding: 2rem 0; border-top: 1px solid rgba(255, 255, 255, 0.1); }

.copyright-text { color: rgba(255, 255, 255, 0.6); font-size: 0.95rem; }

/* ================================== Background Variations ================================== */

.bg-light { background-color: var(--light-color); }

/* ================================== Animations ================================== */

.fade-in { opacity: 0; transition: opacity 0.8s ease-in-out; }

.fade-in.visible { opacity: 1; }

.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }

.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }

.fade-left.visible { opacity: 1; transform: translateX(0); }

.fade-right { opacity: 0; transform: translateX(30px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }

.fade-right.visible { opacity: 1; transform: translateX(0); }

/* ================================== Responsive Design ================================== */

@media (max-width:1200px){ h1{font-size:3rem;} h2{font-size:2.2rem;} .hero-title{font-size:3rem;} .section-title{font-size:2.2rem;} }

@media (max-width:992px){ h1{font-size:2.5rem;} h2{font-size:2rem;} .hero-title{font-size:2.5rem;} .hero-subtitle{font-size:1.1rem;} .section-title{font-size:2rem;} .section-padding{padding:80px 0;} .hero-stats{gap:2rem;} .stat-item h3{font-size:2rem;} }

@media (max-width:768px){ h1{font-size:2rem;} h2{font-size:1.8rem;} .hero-title{font-size:2rem;} .hero-subtitle{font-size:1rem;} .section-title{font-size:1.8rem;} .section-padding{padding:60px 0;} .navbar-collapse{background:var(--dark-color); padding:1rem; border-radius:10px; margin-top:1rem;} .nav-link{padding:0.8rem 1rem;} .hero-section{padding:120px 0 60px; min-height:auto;} .hero-buttons{flex-direction:column;} .hero-buttons .btn{width:100%;} .hero-stats{flex-direction:column; gap:1.5rem;} .cta-content h2{font-size:2rem;} .cta-content p{font-size:1rem;} .cta-buttons{flex-direction:column;} .cta-buttons .btn{width:100%;} .pricing-price .amount{font-size:2.5rem;} }

@media (max-width:576px){ .section-padding{padding:50px 0;} .feature-card,.benefit-card,.pricing-card{padding:2rem;} .analytics-box{padding:2rem;} .filter-tags{gap:0.5rem;} .filter-tag{padding:0.5rem 1rem; font-size:0.85rem;} .contact-form-wrapper,.contact-info{padding:2rem;} }


/* ================================== Utility Classes ================================== */

.text-gradient { background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.shadow-custom { box-shadow: var(--shadow-xl); }

/* ================================== Smooth Scrolling ================================== */

html { scroll-behavior: smooth; }

/* ================================== Focus Styles ================================== */

*:focus { outline: 2px solid var(--accent-color); outline-offset: 2px; }

/* ================================== Selection Styles ================================== */

::selection { background: var(--accent-color); color: var(--white-color); }

::-moz-selection { background: var(--accent-color); color: var(--white-color); }

/* video new added */

/* ================================== Contact Video ================================== */

.contact-video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: var(--dark-color);
    box-shadow: var(--shadow-xl);
    border: 2px solid rgba(91, 124, 250, 0.25);
}

/* Padding-top trick locks the 9:16 ratio perfectly on every browser */
.contact-video-wrapper::before {
    content: "";
    display: block;
    padding-top: 177.78%;
}

.contact-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-controls {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 14px;
    z-index: 10;
}

.video-ctrl-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.video-ctrl-btn:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: scale(1.12);
}

.video-ctrl-btn:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 3px;
}

/* ---- Responsive breakpoints ---- */

/* Large desktop: col-lg-4 already constrains width, no extra needed */

/* Tablet — video col is col-md-5, still looks good */
@media (max-width: 991px) {
    /* stacked: center the video wrapper */
    .contact-video-wrapper {
        max-width: 320px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .contact-video-wrapper {
        max-width: 280px;
        margin: 0 auto 1.5rem auto;
    }
}

@media (max-width: 480px) {
    .contact-video-wrapper {
        max-width: 240px;
    }
    .video-ctrl-btn {
        width: 42px;
        height: 42px;
        font-size: 0.9rem;
    }
}