/* Root Variables */
:root {
    --primary-color: var(--primary);
    --secondary-color: var(--secondary);
    --dark-color: var(--dark-black-color);
    --light-color: var(--light-white-color);
    --text-color: var(--text-dark-gray-color);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);

    --capsule : var(--capsule);
    --bg-light : var(--sectionBackground)
    
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    transition: var(--transition);
    background-color: rgba(255, 255, 255, 0.95);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    /* background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-subtext {
    font-size: 0.9rem;
    color: var(--text-color);
}

.nav-link {
    color: var(--dark-color) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2.5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

/* Products dropdown */
.custom-dropdown {
    position: relative;
    cursor: pointer;
}

/* Arrow icon */
.arrow-icon {
    display: inline-block;
    margin-left: 6px;
    margin-bottom: 3px;
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

/* Rotate arrow on hover */
.custom-dropdown:hover .arrow-icon {
    transform: rotate(-135deg);
}

/* Dropdown container */
.dropdown-menu-custom {
    position: absolute;
    top: 120%;
    left: 0;
    list-style-type: none;
    min-width: 200px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.35s ease;
    padding: 10px 0;
    z-index: 999;
}

/* Show dropdown on hover */
.custom-dropdown:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown items */
.dropdown-item-custom {
    display: block;
    padding: 10px 20px;
    color: var(--dark-color);
    font-weight: 500;
    text-decoration: none;
    transition: background 0.3s ease, padding-left 0.3s ease;
}

/* Hover effect for dropdown items */
.dropdown-item-custom:hover {
    background: rgba(0, 0, 0, 0.04);
    padding-left: 26px;
    color: var(--primary-color);
}

/* Badge styling */
.badge-link {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.9;
}

.badge-link:hover {
    transform: scale(1.1);
    opacity: 1;
}

/* Hero Section */
/* Carousel Base Styles */
.hero-section .carousel-item {
    min-height: 100vh;
    transition: transform 0.6s ease-in-out;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(37, 99, 235, 0.5);
    border: none;
    margin: 0 6px;
}

.carousel-indicators button.active {
    background-color: #2563eb;
    width: 32px;
    border-radius: 6px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    /* background: rgba(255, 255, 255, 0.9); */
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(0);
}

/* Hero Background Elements - Apply to all carousel items */
.carousel-item {
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

/* Gradient Orbs */
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: floatOrb 20s ease-in-out infinite;
}

/* .orb-1 {
    width: 500px;
    height: 500px;
    background: #2563eb;
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: #7c3aed;
    bottom: -150px;
    right: -150px;
    animation-delay: 2s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: #06b6d4;
    top: 50%;
    right: 10%;
    animation-delay: 4s;
} */

/* Default orbs for Slide 1 - Blue theme */
.orb-1 {
    width: 500px;
    height: 500px;
    background: #2563eb;
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: #7c3aed;
    bottom: -150px;
    right: -150px;
    animation-delay: 2s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: #06b6d4;
    top: 50%;
    right: 10%;
    animation-delay: 4s;
}

/* Slide 2 - Yellow/Amber theme */
.carousel-item:nth-child(2) .orb-1 {
    background: #f59e0b;
}

.carousel-item:nth-child(2) .orb-2 {
    background: #d97706;
}

.carousel-item:nth-child(2) .orb-3 {
    background: #fbbf24;
}

.carousel-item:nth-child(2) .particle {
    background: #f59e0b;
}

.carousel-item:nth-child(2) .geometric-shape {
    border-color: #f59e0b;
}

.carousel-item:nth-child(2) .shape-3 {
    border-bottom-color: #d97706;
}

/* Slide 3 - Purple theme */
.carousel-item:nth-child(3) .orb-1 {
    background: #a78bfa;
}

.carousel-item:nth-child(3) .orb-2 {
    background: #7c3aed;
}

.carousel-item:nth-child(3) .orb-3 {
    background: #c084fc;
}

.carousel-item:nth-child(3) .particle {
    background: #a78bfa;
}

.carousel-item:nth-child(3) .geometric-shape {
    border-color: #a78bfa;
}

.carousel-item:nth-child(3) .shape-3 {
    border-bottom-color: #7c3aed;
}

/* Slide 4 - Green theme */
.carousel-item:nth-child(4) .orb-1 {
    background: #10b981;
}

.carousel-item:nth-child(4) .orb-2 {
    background: #059669;
}

.carousel-item:nth-child(4) .orb-3 {
    background: #34d399;
}

.carousel-item:nth-child(4) .particle {
    background: #10b981;
}

.carousel-item:nth-child(4) .geometric-shape {
    border-color: #10b981;
}

.carousel-item:nth-child(4) .shape-3 {
    border-bottom-color: #059669;
}

@keyframes floatOrb {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Geometric Shapes */
.geometric-shape {
    position: absolute;
    opacity: 0.1;
    border: 2px solid #2563eb;
    pointer-events: none;
}

.shape-1 {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    top: 15%;
    left: 5%;
    animation: rotate 25s linear infinite;
}

.shape-2 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 10%;
    transform: rotate(45deg);
    animation: float 15s ease-in-out infinite;
}

.shape-3 {
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 104px solid #7c3aed;
    top: 40%;
    right: 8%;
    animation: rotate 20s linear infinite reverse;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(45deg);
    }

    50% {
        transform: translateY(-40px) rotate(45deg);
    }
}

/* Floating Particles */
.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #2563eb;
    border-radius: 50%;
    opacity: 0.4;
    animation: particleFloat 15s ease-in-out infinite;
}

.particle:nth-child(1) {
    left: 20%;
    top: 20%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    left: 40%;
    top: 60%;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    left: 60%;
    top: 30%;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    left: 80%;
    top: 70%;
    animation-delay: 6s;
}

.particle:nth-child(5) {
    left: 30%;
    top: 80%;
    animation-delay: 8s;
}

@keyframes particleFloat {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.4;
    }

    50% {
        transform: translateY(-100px);
        opacity: 0.8;
    }
}

/* Slide 1 - Dashboard (Previous styles remain same) */
.dashboard-card {
    position: relative;
    width: 320px;
    height: 380px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.08);
    padding: 30px;
    animation: cardFloat 6s ease-in-out infinite;
    z-index: 10;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.status-dot {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.header-lines {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.header-lines .line {
    height: 8px;
    background: linear-gradient(90deg, #e0e7ff 0%, #f0f9ff 100%);
    border-radius: 4px;
}

.header-lines .line:first-child {
    width: 60%;
}

.header-lines .line:last-child {
    width: 40%;
}

.card-content {
    display: flex;
    align-items: flex-end;
    height: 200px;
    padding: 20px 0;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    gap: 20px;
    width: 100%;
}

.bar {
    width: 50px;
    background: linear-gradient(180deg, #2563eb, #06b6d4);
    border-radius: 8px 8px 0 0;
    animation: barGrow 2s ease-out forwards;
}

.bar-1 {
    animation-delay: 0.2s;
}

.bar-2 {
    animation-delay: 0.4s;
}

.bar-3 {
    animation-delay: 0.6s;
}

.bar-4 {
    animation-delay: 0.8s;
}

@keyframes barGrow1 {
    to {
        height: 100px;
    }
}

@keyframes barGrow2 {
    to {
        height: 140px;
    }
}

@keyframes barGrow3 {
    to {
        height: 90px;
    }
}

@keyframes barGrow4 {
    to {
        height: 130px;
    }
}

.bar-1 {
    animation-name: barGrow1;
}

.bar-2 {
    animation-name: barGrow2;
}

.bar-3 {
    animation-name: barGrow3;
}

.bar-4 {
    animation-name: barGrow4;
}

.card-footer {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.stat-dot {
    width: 50px;
    height: 8px;
    background: linear-gradient(90deg, #e0e7ff, #f0f9ff);
    border-radius: 4px;
}

.float-icon {
    position: absolute;
    width: 70px;
    height: 70px;
    background: #ffffff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.1);
    color: #2563eb;
    animation: iconFloat 5s ease-in-out infinite;
}

.icon-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.icon-2 {
    top: 25%;
    right: 15%;
    animation-delay: 1.5s;
}

.icon-3 {
    bottom: 20%;
    left: 15%;
    animation-delay: 3s;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(37, 99, 235, 0.1);
    animation: circleRotate 15s linear infinite;
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
}

.circle-2 {
    width: 150px;
    height: 150px;
    bottom: 15%;
    right: 20%;
    animation-delay: 5s;
}

.card-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
    margin-left: auto;
}

.bar {
    position: relative;
    display: flex;
    justify-content: center;
}

.bar-value {
    position: absolute;
    top: -28px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #1e293b;
}

.bar-label {
    position: absolute;
    bottom: -22px;
    font-size: 0.7rem;
    color: #64748b;
}

.stat-pill {
    font-size: 0.7rem;
    padding: 4px 10px;
    background: #f1f5f9;
    border-radius: 20px;
    color: #2563eb;
}

/* Slide 2 - Mobile App */
.mobile-frame {
    position: relative;
    width: 280px;
    height: 500px;
    background: #1e293b;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    animation: cardFloat 6s ease-in-out infinite;
    z-index: 10;
}

.mobile-notch {
    width: 120px;
    height: 26px;
    background: #0f172a;
    border-radius: 0 0 20px 20px;
    margin: 0 auto 8px;
}

.mobile-screen {
    width: 100%;
    height: calc(100% - 34px);
    background: linear-gradient(180deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 32px;
    padding: 20px;
}

/* .screen-header {
    width: 100%;
    height: 40px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    margin-bottom: 20px;
} */

.screen-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.content-block {
    height: 100px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    animation: blockFade 2s ease-in-out infinite;
}

.block-1 {
    animation-delay: 0s;
}

.block-2 {
    animation-delay: 0.5s;
}

.block-3 {
    animation-delay: 1s;
}

@keyframes blockFade {

    0%,
    100% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }
}

.app-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    color: #f59e0b;
    animation: iconFloat 5s ease-in-out infinite;
}

.app-1 {
    top: 10%;
    right: 60%;
    animation-delay: 0s;
}

.app-2 {
    top: 30%;
    right: 5%;
    animation-delay: 1.5s;
}

.app-3 {
    bottom: 15%;
    left: 2%;
    animation-delay: 3s;
}

.screen-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
}

.app-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1e293b;
}

.app-time {
    font-size: 0.75rem;
    color: #64748b;
    margin-top: -40px;
}

.content-block {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
}

.block-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 158, 11, 0.2);
    border-radius: 12px;
}

.block-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.block-title {
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 4px;
}

.block-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2px;
}

.app-icon {
    position: relative;
}

.app-label {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.65rem;
    font-weight: 600;
    color: #1e293b;
    white-space: nowrap;
}

/* Slide 1 background image only */
.carousel-item.hero-bg-main {
    /* Maish */
    background: url('../../assets/home/home_cover_1.avif') center center / cover no-repeat;
    min-height: 100vh;
    height: 100vh;
    position: relative;
}

/* Optional overlay for readability */
.carousel-item.hero-bg-main::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

/* Keep content above overlay */
.carousel-item.hero-bg-main .container {
    position: relative;
    z-index: 2;
}

.carousel-indicators {
    z-index: 5;
}

.carousel-indicators button {
    pointer-events: auto;
}

.carousel-item::before {
    pointer-events: none;
}

/* Slide 2 background image only */
.carousel-item.hero-bg-mobile {
    /* Manish */
    background: linear-gradient(to right, rgba(0, 0, 0, 0.616), rgba(0,0,0,0)), url('../../assets/home/home_cover_2.avif') center center / cover no-repeat;
    min-height: 100vh;
    height: 100vh;
    position: relative;
}

/* Optional overlay for readability */
.carousel-item.hero-bg-mobile::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

/* Keep content above overlay */
.carousel-item.hero-bg-mobile .container {
    position: relative;
    z-index: 2;
}


/* Slide 3 - Cloud Solutions */
.cloud-container {
    position: relative;
    width: 100%;
    height: 300px;
}

.cloud {
    position: absolute;
    filter: drop-shadow(0 4px 12px rgba(167, 139, 250, 0.3));
    animation: cloudFloat 8s ease-in-out infinite;
}

.cloud-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.cloud-2 {
    top: 10%;
    right: 15%;
    animation-delay: 2s;
}

.cloud-3 {
    top: 50%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes cloudFloat {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(-20px) translateX(20px);
    }
}

.server-rack {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10;
}

.server-unit {
    width: 300px;
    height: 50px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(167, 139, 250, 0.2);
    position: relative;
}

.server-unit::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.unit-1::before {
    animation-delay: 0s;
}

.unit-2::before {
    animation-delay: 0.5s;
}

.unit-3::before {
    animation-delay: 1s;
}

.data-node {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #a78bfa;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(167, 139, 250, 0.6);
    animation: nodeFloat 4s ease-in-out infinite;
}

.node-1 {
    top: 15%;
    left: 20%;
    animation-delay: 0s;
}

.node-2 {
    top: 25%;
    right: 25%;
    animation-delay: 1s;
}

.node-3 {
    bottom: 30%;
    left: 15%;
    animation-delay: 2s;
}

.node-4 {
    bottom: 25%;
    right: 20%;
    animation-delay: 3s;
}

@keyframes nodeFloat {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-15px);
        opacity: 1;
    }
}

.cloud {
    position: relative;
}

.cloud-data {
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.cloud-label {
    display: block;
    font-size: 0.7rem;
    color: #7c3aed;
    font-weight: 600;
}

.cloud-value {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #5b21b6;
}

.server-unit {
    display: flex;
    align-items: center;
    padding: 0 15px;
    gap: 10px;
}

.server-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #1e293b;
    margin-left: 25px;
}

.server-status {
    font-size: 0.65rem;
    color: #10b981;
    font-weight: 600;
    margin-left: auto;
}

.server-load {
    width: 60px;
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    overflow: hidden;
}

.load-bar {
    height: 100%;
    background: linear-gradient(90deg, #a78bfa, #7c3aed);
    border-radius: 2px;
    animation: loadPulse 2s ease-in-out infinite;
}

@keyframes loadPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.data-node {
    position: relative;
}

.node-label {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.65rem;
    font-weight: 600;
    color: #7c3aed;
    white-space: nowrap;
}

/* Slide 3 background image only */
.carousel-item.hero-bg-cloud {
    /* Manish */
    background:linear-gradient(to right, rgba(0, 0, 0, 0.324), rgba(0,0,0,0)),  url('../../assets/home/home_cover_3.avif') center center / cover no-repeat;
    min-height: 100vh;
    height: 100vh;
    position: relative;
}

/* Optional overlay for readability */
.carousel-item.hero-bg-cloud::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

/* Keep content above overlay */
.carousel-item.hero-bg-cloud .container {
    position: relative;
    z-index: 2;
}


/* Slide 4 - AI & Analytics */
.brain-container {
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: cardFloat 6s ease-in-out infinite;
    z-index: 10;
}

.brain-icon circle {
    animation: brainPulse 3s ease-in-out infinite;
}

.brain-icon circle:nth-child(1) {
    animation-delay: 0s;
}

.brain-icon circle:nth-child(2) {
    animation-delay: 0.5s;
}

.brain-icon circle:nth-child(3) {
    animation-delay: 1s;
}

@keyframes brainPulse {

    0%,
    100% {
        stroke-opacity: 0.4;
    }

    50% {
        stroke-opacity: 1;
    }
}

.ai-node {
    position: absolute;
    width: 16px;
    height: 16px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.6);
    z-index: 1;
}

.ai-1 {
    padding: 30px;
    top: 10%;
    left: 50%;
    animation: iconFloat 6s linear infinite;
}

.ai-2 {
    padding: 30px;
    top: 20%;
    left: 10%;
    animation: iconFloat 7s linear infinite;
}

.ai-3 {
    padding: 30px;
    top: 40%;
    right: 10%;
    animation: iconFloat 8s linear infinite;
}

.ai-4 {
    padding: 30px;
    bottom: 25%;
    left: 5%;
    animation: iconFloat 9s linear infinite;
}

.ai-5 {
    padding: 30px;
    bottom: 15%;
    right: 10%;
    animation: iconFloat 10s linear infinite;
}

.ai-6 {
    padding: 30px;
    bottom: 1%;
    left: 50%;
    animation: iconFloat 11s linear infinite;
}

@keyframes aiOrbit1 {
    0% {
        transform: rotate(0deg) translateX(80px) rotate(0deg);
    }

    100% {
        transform: rotate(360deg) translateX(80px) rotate(-360deg);
    }
}

@keyframes aiOrbit2 {
    0% {
        transform: rotate(0deg) translateX(100px) rotate(0deg);
    }

    100% {
        transform: rotate(360deg) translateX(100px) rotate(-360deg);
    }
}

@keyframes aiOrbit3 {
    0% {
        transform: rotate(0deg) translateX(120px) rotate(0deg);
    }

    100% {
        transform: rotate(360deg) translateX(120px) rotate(-360deg);
    }
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 50%;
    animation: ringPulse 3s ease-out infinite;
}

.ring-1 {
    width: 220px;
    height: 220px;
    animation-delay: 0s;
}

.ring-2 {
    width: 260px;
    height: 260px;
    animation-delay: 1s;
}

.ring-3 {
    width: 300px;
    height: 300px;
    animation-delay: 2s;
}

@keyframes ringPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

.brain-container {
    position: relative;
}

.ai-stats {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.ai-stat-item {
    display: flex;
    flex-direction: column;
}

.ai-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.ai-stat-label {
    font-size: 0.75rem;
    color: #fff;
    font-weight: 600;
}

.ai-node {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-node-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: white;
}

.ai-metrics {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
}

.metric-box {
    background: white;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.metric-icon {
    font-size: 1.5rem;
}

.metric-value {
    font-size: 1rem;
    font-weight: 700;
    color: #10b981;
}

.metric-label {
    font-size: 0.7rem;
    color: #64748b;
    text-align: center;
}

.brain-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
    /* filter: drop-shadow(0 0 25px rgba(16, 185, 129, 0.45)); */
    /* animation: brainFloat 6s ease-in-out infinite; */
}

@keyframes brainFloat {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Background image only for 4th slide */
/* Ensure 4th slide keeps same height as others */
.carousel-item.hero-bg-image {
    /* Manish */
    background: url('../../assets/home/ai.avif') center center / cover no-repeat;
    min-height: 100vh;
    height: 100vh;
    position: relative;
}

.carousel-item.hero-bg-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.carousel-item.hero-bg-image .container {
    position: relative;
    z-index: 2;
}

/* Gradient Variations */
.title-gradient-2 {
    display: block;
    background: #0095ff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease backwards 0.8s;
}

.title-gradient-3 {
    display: block;
    /* background: linear-gradient(135deg, #a78bfa, #7c3aed); */
    background: #0095ff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease backwards 0.8s;
}

.title-gradient-4 {
    display: block;
    background: #0095ff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease backwards 0.8s;
}

/* Shared Animations */
@keyframes cardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20);
    }
}

@keyframes circleRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.hero-content {
    animation: fadeInUp 1s ease-out;
    margin-left: 3rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    /* font-size: 3.5rem; */
    /* font-weight: 800; */
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--light-color);
}

.title-gradient {
    display: block;
    background: #0095ff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease backwards 0.8s;
}

.hero-subtitle{
    color: var(--light-color);
}


/* Hero Illustration - Light Mode Design */
.hero-illustration {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dashboard Card */
.dashboard-card {
    position: relative;
    width: 320px;
    height: 380px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow:
        0 10px 40px rgba(37, 99, 235, 0.08),
        0 0 0 1px rgba(37, 99, 235, 0.05);
    padding: 30px;
    animation: cardFloat 6s ease-in-out infinite;
    z-index: 10;
}

@keyframes cardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Card Header */
.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.status-dot {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.header-lines {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.header-lines .line {
    height: 8px;
    background: linear-gradient(90deg, #e0e7ff 0%, #f0f9ff 100%);
    border-radius: 4px;
}

.header-lines .line:first-child {
    width: 60%;
}

.header-lines .line:last-child {
    width: 40%;
}

/* Card Content - Chart Bars */
.card-content {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 200px;
    padding: 20px 0;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    gap: 20px;
    width: 100%;
}

.bar {
    width: 50px;
    background: linear-gradient(180deg, #739cf6, #06b6d4);
    border-radius: 8px 8px 0 0;
    animation: barGrow 2s ease-out forwards;
    position: relative;
}

.bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px 8px 0 0;
}

.bar-1 {
    height: 0;
    animation-delay: 0.2s;
}

.bar-2 {
    height: 0;
    animation-delay: 0.4s;
}

.bar-3 {
    height: 0;
    animation-delay: 0.6s;
}

.bar-4 {
    height: 0;
    animation-delay: 0.8s;
}

@keyframes barGrow {
    to {
        height: 120px;
    }
}

.bar-1 {
    animation-name: barGrow1;
}

.bar-2 {
    animation-name: barGrow2;
}

.bar-3 {
    animation-name: barGrow3;
}

.bar-4 {
    animation-name: barGrow4;
}

@keyframes barGrow1 {
    to {
        height: 100px;
    }
}

@keyframes barGrow2 {
    to {
        height: 140px;
    }
}

@keyframes barGrow3 {
    to {
        height: 90px;
    }
}

@keyframes barGrow4 {
    to {
        height: 130px;
    }
}

/* Card Footer */
.card-footer {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.stat-dot {
    width: 50px;
    height: 8px;
    background: linear-gradient(90deg, #e0e7ff, #f0f9ff);
    border-radius: 4px;
}

/* Floating Icons */
.float-icon {
    position: absolute;
    width: 70px;
    height: 70px;
    background: #ffffff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 8px 24px rgba(37, 99, 235, 0.1),
        0 0 0 1px rgba(37, 99, 235, 0.05);
    color: #2563eb;
    animation: iconFloat 5s ease-in-out infinite;
}

.icon-1 {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.icon-2 {
    top: 25%;
    right: 13%;
    animation-delay: 1.5s;
}

.icon-3 {
    bottom: 20%;
    left: 12%;
    animation-delay: 3s;
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Decorative Circles */
.deco-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(37, 99, 235, 0.1);
    animation: circleRotate 15s linear infinite;
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 150px;
    height: 150px;
    bottom: 15%;
    right: 20%;
    animation-delay: 5s;
}

@keyframes circleRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--primary-color);
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* Section Styles */
.section-padding {
    padding: 50px 0;
}

/* .section-header {
    margin-bottom: 3rem;
} */

/* .section-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(6, 182, 212, 0.1));
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
} */

.section-tag-light {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.section-tag {
    /* font-size: 1rem; */
    display: inline-block;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(124, 58, 237, 0.1));
    color: var(--capsule);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    /* font-weight: 600; */
    margin-bottom: 1rem;
    /* border: 1px solid rgba(37, 99, 235, 0.2); */
}

.section-tag i {
    margin-right: 0.5rem;
}

.section-title {
    /* font-size: 2rem; */
    /* font-weight: 700; */
    color: var(--dark-color);
    line-height: 1.3;
    margin-bottom: 1rem;
}

.explore-btn{
    background: var(--primary-color);
    color: var(--light-color);
    border: none;
}

.section-description {
    /* font-size: 1rem; */
    color: var(--text-color);
    max-width: 600px;
}

/* About Section */
.about-image {
    position: relative;
    height: 500px;
}

.about-card {
    position: absolute;
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    animation: fadeInUp 1s ease-out backwards;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.about-card i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.about-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-color);
}

.card-1 {
    top: 10%;
    left: 0;
    animation-delay: 0.2s;
}

.card-2 {
    top: 40%;
    right: 10%;
    animation-delay: 0.4s;
}

.card-3 {
    bottom: 10%;
    left: 15%;
    animation-delay: 0.6s;
}


.feature-list {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    flex-direction: row;   /* ← side by side */
    align-items: center;   /* ← vertically centered */
    gap: 0.5rem;           /* ← space between icon and text */
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;        /* ← icon never shrinks */
}

.blt-points {
    /* font-size: 1rem; */
    margin: 0;             /* ← removes default p margin */
    line-height: 1.4;
}

/* Team Section */
.team-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border: 2px solid transparent;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.team-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.team-card:hover .team-icon {
    transform: rotateY(360deg);
}

.team-icon i {
    font-size: 2rem;
    color: white;
}

.team-card h4 {
    /* font-size: 1.5rem; */
    /* font-weight: 700; */
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.team-card p {
    color: var(--text-color);
    margin: 0;
}

/* Service Section */
.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    height: 100%;
    border: 2px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(6, 182, 212, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.service-icon i {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: var(--transition);
}

.service-card:hover .service-icon i {
    -webkit-text-fill-color: white;
}

.service-card h4 {
    /* font-size: 1.5rem; */
    /* font-weight: 700; */
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.service-link {
    color: #fff;
    /* font-weight: 600; */
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    float: right;
}

/* .service-link:hover {
    gap: 1rem;
} */

/* Products Section */
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.product-card {
    /* background: rgba(255, 255, 255, 0.1); */
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));;
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    /* border: 2px solid rgba(255, 255, 255, 0.2); */
    transition: var(--transition);
    /* height: 100%; */
}

.product-card:hover {
    /* background: rgba(255, 255, 255, 0.15); */
    /* transform: translateY(-10px); */
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.product-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.product-header i {
    font-size: 2.5rem;
    color: white;
}

.product-header h3 {
    /* font-size: 1.75rem; */
    font-weight: 700;
    color: white;
    margin: 0;
}

.product-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.product-features span {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: white;
    /* font-size: 0.8rem; */
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Career Section */
.career-illustration {
    position: relative;
    height: 400px;
}

.career-graphic {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(6, 182, 212, 0.1));
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
}

.career-graphic::before,
.career-graphic::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0.2;
}

.career-graphic::before {
    top: -50px;
    right: -50px;
    animation: pulse 4s ease-in-out infinite;
}

.career-graphic::after {
    bottom: -50px;
    left: -50px;
    animation: pulse 4s ease-in-out infinite 2s;
}

.career-benefits {
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.benefit-item:hover {
    box-shadow: var(--shadow);
    transform: translateX(10px);
}

.benefit-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.benefit-item h5 {
    /* font-size: 1.25rem; */
    /* font-weight: 700; */
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.benefit-item p {
    color: var(--text-color);
    margin: 0;
}

/* News Section */
.news-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    border: 2px solid #e2e8f0;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.news-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: relative;
}

.news-date {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
}

.news-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.news-date .month {
    display: block;
    font-size: 0.9rem;
    color: var(--text-color);
    text-transform: uppercase;
}

.news-content {
    padding: 2rem;
}

.news-category {
    display: inline-block;
    padding: 0.50rem 1rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(6, 182, 212, 0.1));
    color: var(--capsule);
    border-radius: 50px;
    /* font-size: 0.85rem; */
    /* font-weight: 600; */
    margin-bottom: 1rem;
}

.news-content h4 {
    /* font-size: 1.25rem; */
    /* font-weight: 700; */
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.news-content p {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.news-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.news-div{
    display: flex;
    justify-content: center;

}

.news-link:hover {
    gap: 1rem;
}

/* Contact Section */
/* .contact-info {
    margin-top: 2rem;
} */

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-item h5 {
    /* font-size: 1.1rem; */
    /* font-weight: 700; */
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--text-color);
    margin: 0;
}

.contact-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.form-control {
    padding: 0.875rem 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}


.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    /* font-weight: 600; */
    /* font-size: 0.9rem; */
}

.form-control {
    width: 100%;
    padding: 0.9rem 1rem 0.9rem 3rem;
    border: 2px solid rgba(79, 70, 229, 0.15);
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.form-icon {
    position: absolute;
    left: 1rem;
    bottom: 1.2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

/* textarea.form-control {
    resize: none;
} */

.form-group:has(textarea) .form-icon {
    bottom: auto;
    top: 3rem;
}

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-submit:hover::before {
    width: 300px;
    height: 300px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(79, 70, 229, 0.3);
}

.btn-submit i {
    transition: all 0.3s ease;
}

.btn-submit:hover i {
    transform: translateX(5px);
}

/* Success Modal */
.success-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: white;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-content {
    border: none;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(79, 70, 229, 0.1);
}

.modal-content h3 {
    color: #1F2937;
    /* font-weight: 700; */
    margin-bottom: 1rem;
}

.modal-content p {
    color: #6B7280;
    margin-bottom: 1.5rem;
}


/* Responsive Design */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .about-image,
    .hero-illustration,
    .career-illustration {
        height: 300px;
        margin-bottom: 2rem;
    }

    .about-image {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-title {
        margin-top: 4rem;
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .dashboard-card {
        width: 220px;
        height: 280px;
        padding: 18px;
    }

    .mobile-frame {
        width: 200px;
        height: 360px;
    }

    .block-3 {
        display: none;
    }

    .icon-2,
    .app-2,
    .circle-2 {
        display: none;
    }

    .app-icon {
        display: none;
    }
}

@media (max-width: 767px) {

    /* Slide 2 - Mobile App */
    .carousel-item.hero-bg-mobile {
        background: url('../../assets/home/home_cover_2.avif') center center / cover no-repeat;
    }

    /* Slide 3 - Cloud */
    .carousel-item.hero-bg-cloud {
        background: url('../../assets/home/home_cover_3.avif') center center / cover no-repeat;
    }

    /* Slide 4 - AI */
    .carousel-item.hero-bg-image {
        background: url('../../assets/home/ai-portrait.avif') center center / cover no-repeat;
    }

    .hero-title {
        margin-top: 100px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-outline-primary {
        width: 100%;
    }

    .section-padding {
        padding: 60px 0;
    }

    .about-image {
        display: none;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    .carousel-indicators {
        bottom: 20px;
    }

    .dashboard-card {
        width: 240px;
        height: 300px;
        padding: 20px;
    }

    .mobile-frame {
        width: 220px;
        height: 400px;
    }

    .server-rack {
        transform: translateX(-50%) scale(0.8);
    }

    .brain-container svg {
        width: 140px;
        height: 140px;
    }

    .float-icon,
    .app-icon {
        width: 50px;
        height: 50px;
    }

    .float-icon svg,
    .app-icon svg {
        width: 28px;
        height: 28px;
    }

    .hero-content {
        margin-bottom: 30rem;
        
    }

    .logo-container {
        margin-left: -100px;
    }
}

/* Mobile dropdown behavior */
@media (max-width: 991px) {
    .dropdown-menu-custom {
        position: static;
        box-shadow: none;
        background: transparent;
        padding: 0 0 0 15px;
        margin-left: 16px;
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        transform: none;
        visibility: hidden;
        transition: max-height 0.35s ease, opacity 0.3s ease;
    }

    .dropdown-menu-custom.show {
        opacity: 1;
        max-height: 200px;
        visibility: visible;
    }

    .dropdown-item-custom {
        padding: 8px 0;
    }

    .arrow-icon {
        float: right;
        margin-top: 8px;
        transform: rotate(45deg);
    }

    .custom-dropdown:hover .arrow-icon {
        transform: rotate(45deg);
    }

    .custom-dropdown.open .arrow-icon {
        transform: rotate(-135deg);
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
    }

    .carousel-control-prev {
        left: 15px;
    }

    .carousel-control-next {
        right: 15px;
    }

    .dashboard-card,
    .mobile-frame {
        width: 260px;
        height: 340px;
    }

    .brain-container svg {
        width: 160px;
        height: 160px;
    }
}




/* ============================================
   SECTION NAVIGATOR STYLES
   ============================================ */

/* Desktop Section Navigator */
.section-navigator {
    position: fixed;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 1px 4px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 0, 0, 0.05);
    overflow: visible !important;
}

.section-navigator:hover {
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 1);
}

.navigator-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.navigator-header i {
    font-size: 16px;
    color: #007bff;
}

.navigator-list {
    list-style: none;
    padding: 0;
    margin: 0;
    overflow: visible !important;
}

.navigator-list li {
    margin: 8px 0;
    overflow: visible !important;
}

.nav-dot {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 5px 7px;
    text-decoration: none;
    color: #666;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-dot::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    /* background: linear-gradient(90deg, #007bff, #0056b3); */
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.3s ease;
    border-radius: 20px;
    z-index: -1;
}

.nav-dot:hover::before,
.nav-dot.active::before {
    width: 100%;
}

.nav-dot:hover,
.nav-dot.active {
    color: white;
}

.nav-dot .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.nav-dot.active .dot {
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.nav-dot:hover .dot {
    background: white;
    transform: scale(1.2);
}

.nav-dot .label {
    font-size: 16px;
}

.nav-dot::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 100%;
    margin-left: 15px;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.nav-dot:hover::after {
    opacity: 1;
}

.tooltip-text {
    position: absolute;
    left: 100%;
    margin-left: 15px;
    top: 50%;
    transform: translateY(-50%);
    padding: 8px 14px;
    background: #2c3e50;
    color: white;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.tooltip-text::before {
    content: '';
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right-color: #2c3e50;
}

.nav-dot:hover .tooltip-text,
.nav-dot.active .tooltip-text {
    opacity: 1;
    visibility: visible;
}

/* Ensure nav-dot allows absolute positioning */
.nav-dot {
    position: relative;
    overflow: visible !important;
}

/* Mobile Section Navigator Toggle Button */
.mobile-nav-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1001;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border: none;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 20px rgba(0, 123, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    display: none;
}

.mobile-nav-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(0, 123, 255, 0.5);
}

.mobile-nav-toggle:active {
    transform: scale(0.95);
}

/* Mobile Section Navigator */
.mobile-section-navigator {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    z-index: 1002;
    background: white;
    border-radius: 30px 30px 0 0;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.2);
    transition: bottom 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    max-height: 70vh;
    overflow-y: auto;
}

.mobile-section-navigator.active {
    bottom: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    background: white;
    z-index: 1;
}

.mobile-nav-header h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-nav-header h5 i {
    color: #007bff;
}

.close-mobile-nav {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-mobile-nav:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #007bff;
}

.mobile-navigator-list {
    list-style: none;
    padding: 16px;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 16px;
    text-decoration: none;
    color: #666;
    background: rgba(0, 123, 255, 0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 123, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.mobile-nav-item i {
    font-size: 28px;
    transition: all 0.3s ease;
}

.mobile-nav-item:hover i,
.mobile-nav-item.active i {
    transform: scale(1.1);
}

.mobile-nav-item span {
    font-size: 13px;
    font-weight: 500;
    text-align: center;
}

/* Overlay for mobile navigator */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Hide desktop navigator on tablets and mobile */
@media (max-width: 991px) {
    .section-navigator {
        display: none;
    }

    .mobile-nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Tablet adjustments */
@media (max-width: 768px) {
    .mobile-navigator-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .mobile-nav-toggle {
        width: 50px;
        height: 50px;
        font-size: 22px;
        bottom: 16px;
        right: 16px;
    }
}

/* Small mobile adjustments */
@media (max-width: 480px) {
    .mobile-section-navigator {
        max-height: 75vh;
    }

    .mobile-navigator-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 12px;
    }

    .mobile-nav-item {
        padding: 16px 12px;
    }

    .mobile-nav-item i {
        font-size: 24px;
    }

    .mobile-nav-item span {
        font-size: 12px;
    }

    .mobile-nav-header {
        padding: 16px 20px;
    }

    .mobile-nav-header h5 {
        font-size: 16px;
    }
}

/* Ensure sections have min-height for proper scrolling */
/* section {
    min-height: 100vh;
    scroll-margin-top: 70px;
} */

section {
    min-height: unset;
    scroll-margin-top: 70px;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* ============================================
   UTILITY STYLES
   ============================================ */

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background: var(--bg-light);
}

/* .bg-gradient-primary {
    background: linear-gradient(135deg, #007bff, #0056b3);
} */

/* Prevent body scroll when mobile nav is open */
body.mobile-nav-open {
    overflow: hidden;
}

/* Animation for navigator appearance */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px) translateY(-50%);
    }

    to {
        opacity: 1;
        transform: translateX(0) translateY(-50%);
    }
}

.section-navigator {
    animation: fadeInLeft 0.5s ease-out;
}

/* Progress indicator on nav dot */
.nav-dot::after {
    content: '';
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: white;
    border-radius: 2px;
    transition: height 0.3s ease;
}

.nav-dot.active::after {
    height: 60%;
}

/* Pulsing animation for active mobile toggle */
@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(0, 123, 255, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(0, 123, 255, 0.6);
    }
}

.mobile-nav-toggle {
    animation: pulse 2s infinite;
}

/* Accessibility: Focus styles */
.nav-dot:focus,
.mobile-nav-item:focus,
.mobile-nav-toggle:focus,
.close-mobile-nav:focus {
    /* outline: 2px solid #007bff; */
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .section-navigator {
        border: 2px solid #000;
    }

    .nav-dot {
        border: 1px solid #000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {

    .section-navigator,
    .nav-dot,
    .mobile-section-navigator,
    .mobile-nav-item,
    html {
        animation: none;
        transition: none;
    }

    html {
        scroll-behavior: auto;
    }
}

/* Print styles - hide navigation */
@media print {

    .section-navigator,
    .mobile-nav-toggle,
    .mobile-section-navigator {
        display: none !important;
    }
}

.location {
    display: flex;
    gap: 19rem;
}