/* ==========================================================================
   Base Styles & Variables
   ========================================================================== */

:root {
    --primary-color: #8982EE;
    /* Indigo */
    --primary-light: #818cf8;
    --primary-dark: #3730a3;
    --secondary-color: #0f172a;
    /* Slate 900 */
    --accent-color: #06b6d4;
    /* Cyan */

    --bg-light: #f8fafc;
    --text-main: #334155;
    --text-muted: #64748b;

    --font-primary: 'Space Grotesk', sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-glow: 0 0 20px rgba(79, 70, 229, 0.4);
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

html {
    scroll-behavior: auto;
    /* Handled by jQuery for smoothness */
}

body {
    font-family: var(--font-primary);
    color: var(--text-main);
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
    font-family: var(--font-heading);
    color: var(--secondary-color);
}

::selection {
    background-color: var(--primary-color);
    color: white;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* ==========================================================================
   Utilities & Common Classes
   ========================================================================== */

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

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

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

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

.bg-primary-subtle {
    background-color: rgba(79, 70, 229, 0.1) !important;
}

.bg-success-subtle {
    background-color: rgba(16, 185, 129, 0.1) !important;
    text-color: #10b981;
}

.bg-danger-subtle {
    background-color: rgba(239, 68, 68, 0.1) !important;
    color: #ef4444;
}

.bg-warning-subtle {
    background-color: rgba(245, 158, 11, 0.1) !important;
    color: #f59e0b;
}

.bg-info-subtle {
    background-color: rgba(6, 182, 212, 0.1) !important;
    color: #06b6d4;
}

.text-success {
    color: #10b981 !important;
}

.text-warning {
    color: #f59e0b !important;
}

.text-danger {
    color: #ef4444 !important;
}

.text-info {
    color: #06b6d4 !important;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.tracking-wider {
    letter-spacing: 0.05em;
}

.space-y-2>*+* {
    margin-top: 0.5rem;
}

.space-y-3>*+* {
    margin-top: 1rem;
}

.max-w-700 {
    max-width: 700px;
}

.transition {
    transition: all var(--transition-normal);
}

.text-gradient {
    background: linear-gradient(135deg, #AC98F4, #7C60C7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-custom {
    background: linear-gradient(135deg, #0ea5e9, #8982EE);
}

.btn-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    color: white;
    transition: all var(--transition-normal);
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    color: white;
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.navbar {
    background-color: transparent;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

.nav-active-indicator {
    position: absolute;
    top: 0;
    left: 0;
    background-color: white;
    border-radius: 50rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid #dee2e6;
    z-index: 0;
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), width 0.35s cubic-bezier(0.25, 1, 0.5, 1), height 0.35s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.35s ease;
    opacity: 0;
    pointer-events: none;
    will-change: transform, width, height, opacity;
}

.nav-link {
    color: var(--secondary-color) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    position: relative;
    transition: all var(--transition-normal);
    border: 1px solid transparent;
}

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

/* Nav Link Underline Effect */
.nav-link::after {
    display: none;
}



.navbar-brand-logo {
    display: inline-flex;
    position: relative;
    width: 32px;
    height: 32px;
    margin-right: 10px;
}

.logo-part-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 32px;
    background: linear-gradient(135deg, #a78bfa, #818cf8);
    clip-path: polygon(0 20%, 100% 0, 100% 80%, 0 100%);
}

.logo-part-2 {
    position: absolute;
    top: 8px;
    left: 12px;
    width: 20px;
    height: 24px;
    background: linear-gradient(135deg, #4f46e5, #3730a3);
    clip-path: polygon(0 0, 100% 20%, 100% 100%, 0 80%);
}

/* Dropdown styling */
.dropdown-menu {
    border-radius: 12px;
    padding: 0.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background-color: #ffffff;
    box-shadow: var(--shadow-md) !important;
}

.dropdown-item {
    border-radius: 8px;
    padding: 0.75rem 1.25rem;
    font-weight: 500;
    color: #1e293b;
    /* darker clean color */
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: transparent;
    color: var(--primary-color);
}

@media (min-width: 992px) {
    .navbar .dropdown-menu {
        display: block;
        visibility: hidden;
        opacity: 0;
        transform: translateY(15px);
        transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        pointer-events: none;
        margin-top: 15px !important;
        top: 100%;
    }

    .navbar .dropdown:hover .dropdown-menu {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    /* Invisible bridge to prevent hover loss over gap */
    .navbar .dropdown-menu::before {
        content: '';
        position: absolute;
        top: -15px;
        left: 0;
        right: 0;
        height: 15px;
        background: transparent;
    }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
    min-height: 100vh;
    padding-top: 100px;
    background: linear-gradient(135deg, #f4f0ff 0%, #ffffff 50%, #fbe7f5 100%);
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.text-blue {
    color: #8982EE;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.6;
    animation: moveBlob 20s infinite alternate;
}

.shape-1 {
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: rgba(167, 139, 250, 0.4);
}

.btn-demo {
    background-color: #8982EE !important;
    border: 1px solid #8982EE !important;
    color: #ffffff !important;
    padding: 12px 29px !important;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-demo:hover {
    background-color: transparent !important;
    color: #0f172a !important;
    border-color: #8982EE !important;
}

.hero-btn {
    background: linear-gradient(90deg, #0ea5e9, #8982EE) !important;
    border: none !important;
    color: #ffffff !important;
    padding: 13px 29px !important;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.4) !important;
}

.hero-btn:hover {
    background: linear-gradient(90deg, #0284c7, #7c3aed) !important;
    color: #ffffff !important;
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.6) !important;
    transform: translateY(-2px);
}

.shape-2 {
    bottom: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(192, 132, 252, 0.3);
    animation-delay: -5s;
}

.shape-3 {
    top: 20%;
    right: 20%;
    width: 400px;
    height: 400px;
    background: rgba(232, 121, 249, 0.2);
    animation-delay: -10s;
}

.glass-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.custom-link-hover {
    transition: all 0.3s ease;
}

.custom-link-hover:hover {
    color: var(--primary-color) !important;
    transform: translateX(5px);
}

@keyframes moveBlob {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(100px, 50px) scale(1.2);
    }
}

.hero-image-wrapper {
    z-index: 2;
}

.hero-banner-img {
    opacity: 0.95;
    z-index: 1;
    object-fit: contain;
    transform: scale(1.3) translateX(-2%);
    transition: transform 0.3s ease;
    width: 100%;
    height: auto;
}

/* Tablet and Mobile Hero adjustments */
@media (max-width: 991.98px) {
    .hero-banner-img {
        transform: scale(1.15) translateX(0);
        margin-top: 1.5rem;
    }

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

    .hero-subtitle {
        max-width: 100% !important;
    }
}



/* Tablet */
@media (max-width: 680px) {
    .margin-align {
        margin-top: 0px !important;
    }

    .margin-align-bottom {
        margin-bottom: 0px !important;
    }
}



.floating-card {
    position: absolute;
    bottom: 30px;
    left: -40px;
    z-index: 3;
    animation: float 5s ease-in-out infinite reverse;
}

@media (max-width: 768px) {
    .floating-card {
        left: 20px;
        bottom: -20px;
    }
}

.image-blob-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background-color: var(--primary-color);
    opacity: 0.1;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    z-index: -1;
    animation: morph 8s ease-in-out infinite alternate;
}

@keyframes morph {
    0% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }

    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}


/* ==========================================================================
   About Section
   ========================================================================== */

.about-img-wrapper {
    height: 500px;
}

.hover-zoom {
    transition: transform var(--transition-slow);
}

.group:hover .hover-zoom {
    transform: scale(1.05);
}

.overlay-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    z-index: 0;
}

/* ==========================================================================
   Brands Section
   ========================================================================== */

.hover-opacity {
    transition: opacity var(--transition-fast);
    cursor: pointer;
}

.hover-opacity:hover {
    opacity: 1 !important;
    color: var(--primary-color);
}

/* Marquee Animation for Brands Section */

.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    padding: 1rem 0;
}

.marquee-content {
    display: flex;
    width: fit-content;
    animation: scroll-marquee 40s linear infinite;
}

.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

.marquee-img {
    height: 75px;
    max-width: 180px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.marquee-img:hover {
    filter: grayscale(0%);
    opacity: 1 !important;
    transform: scale(1.05);
}

.bg-gradient-fade-left {
    background: linear-gradient(to right, #ffffff 0%, transparent 100%);
    width: 100px;
    pointer-events: none;
}

.bg-gradient-fade-right {
    background: linear-gradient(to left, #ffffff 0%, transparent 100%);
    width: 100px;
    pointer-events: none;
}

@keyframes scroll-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ==========================================================================
   Features Section
   ========================================================================== */

.feature-card {
    transition: all var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg) !important;
}

.icon-wrapper {
    transition: all var(--transition-normal);
}

.feature-card:hover .icon-wrapper {
    transform: scale(1.1);
}


.hover-arrow i {
    transition: transform var(--transition-fast);
    display: inline-block;
}

.feature-card:hover .hover-arrow i {
    transform: translateX(5px);
}

/* ==========================================================================
   Pricing Section
   ========================================================================== */

.pricing-card {
    transition: all var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl) !important;
}

.transform-scale {
    transform: scale(1.05);
    z-index: 2;
}

@media (max-width: 992px) {
    .transform-scale {
        transform: scale(1);
    }
}

.popular-card {
    border: none !important;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}


/* ==========================================================================
   FAQ Section
   ========================================================================== */

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

.custom-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.125);
}

.custom-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23334155'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234f46e5'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* ==========================================================================
   Contact Section
   ========================================================================== */

.form-control {
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
}

.form-control:focus {
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
    background-color: #fff !important;
    border: 1px solid var(--primary-light) !important;
}




/* ==========================================================================
   WhatsApp Floating Button
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-color) !important;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    z-index: 99;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(137, 130, 238, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.whatsapp-float:hover {
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(137, 130, 238, 0.6);
}

/* ==========================================================================
   Animations
   ========================================================================== */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-reveal {
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.scroll-reveal[data-reveal="bottom"] {
    transform: translateY(50px);
}

.scroll-reveal[data-reveal="left"] {
    transform: translateX(-50px);
}

.scroll-reveal[data-reveal="right"] {
    transform: translateX(50px);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translate(0, 0);
}

/* ==========================================================================
   Custom Buttons
   ========================================================================== */

.btn-contact {
    background-color: white;
    color: #1e293b;
    border: 1px solid var(--primary-color);
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background-color: var(--primary-color);
    color: white !important;
    border-color: var(--primary-color);
}

/* ==========================================================================
   Navbar Toggler Icons
   ========================================================================== */

.navbar-toggler:focus {
    box-shadow: none !important;
}

.navbar-toggler[aria-expanded="true"] .menu-icon {
    display: none !important;
}

.navbar-toggler[aria-expanded="true"] .close-icon {
    display: inline-block !important;
}

.navbar-toggler[aria-expanded="false"] .menu-icon {
    display: inline-block !important;
}

.navbar-toggler[aria-expanded="false"] .close-icon {
    display: none !important;
}



/* ==========================================================================
   Footer Styles
   ========================================================================== */
.footer-social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    text-decoration: none !important;
}

.footer-social-icon:hover {
    background: linear-gradient(135deg, #0ea5e9, #8982EE);
    border-color: transparent;
    transform: translateY(-3px);
    color: white;
}

.footer-link {
    color: #ffffff;
}

.footer-link:hover {
    color: #0ea5e9;
    transform: translateX(5px);
}

.footer-newsletter-form input::placeholder {
    color: #64748b;
}

.footer-newsletter-form input:focus {
    background: rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 0 0 0.25rem rgba(14, 165, 233, 0.25);
    color: white;
}

.footer-bottom-link {
    color: #64748b;
}

.footer-bottom-link:hover {
    color: #94a3b8;
}

/* Light Footer Styles */
.footer-social-icon-light {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white !important;
    text-decoration: none !important;
}

.footer-social-icon-light:hover {
    background: #8982EE;
    border-color: #8982EE;
    transform: translateY(-3px);
    color: white !important;
    text-decoration: none !important;
}

.footer-link-light {
    color: #475569 !important;
}

.footer-link-light:hover {
    color: #818cf8 !important;
    text-decoration: none !important;
}

.footer-newsletter-form-light input::placeholder {
    color: #94a3b8;
}

.footer-newsletter-form-light input:focus {
    background: #ffffff !important;
    border-color: #0ea5e9 !important;
    box-shadow: 0 0 0 0.25rem rgba(14, 165, 233, 0.15);
    outline: none;
}

.footer-bottom-link-light {
    color: #64748b;
}

.footer-bottom-link-light:hover {
    color: #0ea5e9;
}

/* Text Gradient utility */
.text-gradient {
    background: linear-gradient(35deg, #8982EE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

/* Learn More (Hero) Button Styles */
/* .hero-btn {
    background: linear-gradient(135deg, #0ea5e9, #8982EE) !important;
    border: none !important;
    color: white !important;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.4) !important;
} */

/* Custom Feature Icon Box */
.feature-item-hover {
    cursor: pointer;
    border-radius: 12px;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

/* .feature-item-hover:hover {
    background-color: rgba(0, 0, 0, 0.02);
} */

.feature-icon-box {
    width: 59px;
    height: 59px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(white, white) padding-box,
        linear-gradient(135deg, #a78bfa, #818cf8) border-box;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.feature-icon-box i {
    font-size: 1.75rem;
    background: linear-gradient(135deg, #a78bfa, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.feature-item-hover:hover .feature-icon-box {
    background: linear-gradient(135deg, #a78bfa, #818cf8) padding-box,
        linear-gradient(135deg, #a78bfa, #818cf8) border-box;
}

.feature-item-hover:hover .feature-icon-box i {
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    color: white;
}

.feature-item-hover h4 {
    transition: all 0.3s ease;
}

.feature-item-hover:hover h4 {
    color: #818cf8 !important;
    background: linear-gradient(135deg, #a78bfa, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent !important;
}

/* ==========================================================================
   User Feedback Carousel
   ========================================================================== */
.feedback-carousel {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 1.5rem;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.feedback-carousel::-webkit-scrollbar {
    display: none;
}

.feedback-card {
    flex: 0 0 auto;
    width: 400px;
    scroll-snap-align: center;
}

/* ==========================================================================
   Productivity Section Carousel Indicators
   ========================================================================== */
.custom-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #cbd5e1;
    border: none;
    opacity: 1;
    margin: 0 5px;
    transition: background-color 0.3s ease;
}

.custom-indicators .active {
    background-color: #64748b;
}

#productivityCarousel .productivity-slider {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    scroll-behavior: smooth;
    cursor: grab;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#productivityCarousel .productivity-slider::-webkit-scrollbar {
    display: none;
}

#productivityCarousel .productivity-slide,
#productivityCarousel .productivity-slide * {
    scroll-snap-align: start;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#productivityCarousel .productivity-slider.grabbing {
    cursor: grabbing !important;
    scroll-snap-type: none;
    scroll-behavior: auto;
}

.productivity-indicators {
    position: static;
    margin: 0 15px;
}

.productivity-indicators button {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50%;
    background-color: #e2e8f0 !important;
    border: none !important;
    transition: all 0.3s ease !important;
    opacity: 1 !important;
    padding: 0 !important;
    margin: 0 4px !important;
    text-indent: -999px;
}

.productivity-indicators button.active {
    width: 30px !important;
    border-radius: 10px !important;
    background-color: #8982EE !important;
}

.carousel-control-custom {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background-color: white;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-control-custom:hover {
    background-color: #8982EE;
    color: white;
    border-color: #8982EE;
}

/* ==========================================================================
   Mobile & Tablet Responsiveness
   ========================================================================== */

@media (max-width: 991.98px) {
    .navbar-collapse {
        padding-top: 1.5rem;
        padding-bottom: 1rem;
    }

    .navbar-collapse>.d-flex {
        flex-direction: column;
        width: 100%;
        gap: 1rem !important;
        align-items: stretch !important;
    }

    .navbar-collapse .btn-demo {
        margin-left: 0 !important;
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .navbar-nav {
        gap: 0.5rem !important;
        align-items: stretch !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100%;
    }

    .nav-item {
        width: 100%;
        text-align: left !important;
    }

    .nav-link {
        justify-content: flex-start !important;
        width: 100%;
        padding-left: 0.5rem !important;
        text-align: left !important;
    }

    #main-navbar {
        padding: 12px 12px !important;
    }

    .navbar-brand img {
        height: 35px !important;
        width: auto;
    }
}

/* ==========================================================================
   Tablet Specific Adjustments
   ========================================================================== */
@media (min-width: 768px) and (max-width: 991.98px) {
    .navbar-collapse .btn-demo {
        width: max-content !important;
        margin-left: 0.5rem !important;
    }
}

/* Contact Page Specific Styles */

.contact-info-section {
    background-color: #ffffff;
}

.contact-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08) !important;
    border-color: #8982EE !important;
}

.contact-icon-box {
    transition: all 0.3s ease;
    border: 1.5px solid var(--primary-color);
    background-color: transparent;
}

.contact-icon-box i {
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon-box {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.contact-card:hover .contact-icon-box i {
    color: #ffffff !important;
}

.map-container {
    transition: all 0.3s ease;
}

.map-container:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08) !important;
}

/* Underlined Form Controls */
.form-control-underlined {
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0;
    background-color: transparent !important;
    padding-left: 0;
    padding-right: 0;
    color: var(--text-main);
    box-shadow: none !important;
    transition: border-color 0.3s ease;
}

.form-control-underlined:focus {
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    border-bottom: 1px solid #000000 !important;
    box-shadow: none !important;
    background-color: transparent !important;
    outline: none !important;
}

.form-control-underlined::placeholder {
    color: #94a3b8;
}

.custom-radio:checked {
    background-color: #8982EE;
    border-color: #8982EE;
}

.custom-radio:focus {
    border-color: #8982EE;
    box-shadow: 0 0 0 0.25rem rgba(137, 130, 238, 0.25);
}

/* ==========================================================================
   Page Transition Animations
   ========================================================================== */
.page-transition-enter {
    opacity: 0;
    transform: translateY(20px);
}

.page-transition-enter-active {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.page-transition-exit {
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.4s ease-in, transform 0.4s ease-in;
}