
:root {
    --primary-blue: #0D6EFD;
    --primary-cyan: #11C5E8;
    --primary-purple: #7B3FE4;
    --dark-navy: #061A40;
    --light-gray: #f8f9fa;
    --gradient-primary: linear-gradient(90deg, #7B3FE4 0%, #0D6EFD 50%, #11C5E8 100%);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-navy);
}

.text-orange {
    color: var(--primary-blue) !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.bg-orange {
    background: var(--gradient-primary) !important;
}

/* Top Bar */
.top-bar {
    background-color: var(--dark-navy);
    color: white;
    font-size: 14px;
}

.top-bar a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.top-bar a:hover {
    color: var(--primary-cyan);
}

.social-icons a {
    margin-left: 15px;
}

/* Navigation */
.nav-link {
    font-weight: 600;
    color: var(--dark-navy) !important;
    text-transform: uppercase;
    font-size: 0.9rem;
    padding: 10px 15px !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-blue) !important;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(90deg, #6A35CC 0%, #0958D9 50%, #0DA9C7 100%);
    border: none;
}

/* Enable Hover for Desktop (above 1200px for your xl navbar) */
@media (min-width: 1200px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        transition: all 0.3s ease;
    }

    .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
    }
}

/* Dropdown Item Styling */
.dropdown-item {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--dark-navy);
    transition: 0.2s;
}

.dropdown-item:hover {
    background-color: rgba(13, 110, 253, 0.08);
    color: var(--primary-blue);
}

/* Remove the arrow icon if you want a cleaner look (optional) */
.dropdown-toggle::after {
    vertical-align: middle;
    margin-left: 5px;
    border-top-color: var(--primary-blue);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 60vh;
    min-height: 315px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

#heroVideo {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Hero Section Dark Shadow Overlay */
.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(6,26,64,0.9) 0%, rgba(6,26,64,0.45) 50%, rgba(6,26,64,0.9) 100%);
    display: flex;
    align-items: center;
    z-index: 1;
}

.hero-section .container {
    z-index: 2;
    position: relative;
}

/* Typing Cursor Animation */
.cursor {
    color: var(--primary-cyan);
    animation: blink 0.7s infinite;
    font-weight: 300;
    margin-left: 5px;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

/* Sections */
.section-title {
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.cts-section {
    background: linear-gradient(rgba(6,26,64,0.88), rgba(13,110,253,0.78)), url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-attachment: fixed;
}

/* Footer */
.footer {
    background-color: var(--dark-navy);
    color: #eee;
}

.footer h5 {
    color: var(--primary-cyan);
    margin-bottom: 20px;
}

.footer a {
    color: #ccc;
    text-decoration: none;
    line-height: 2;
}

.brightness-0 {
    filter: brightness(0) invert(1);
}

/* AI Section Styling */
.ai-capabilities {
    background-color: #ffffff;
}

.ai-block {
    background: #fff;
    border-radius: 15px;
    border: 1px solid #eee;
    transition: all 0.3s ease-in-out;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ai-icon-wrapper {
    font-size: 2.5rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 15px;
}

/* Color Combinations */
.card-ml .ai-icon-wrapper {
    color: #0D6EFD;
    background: rgba(13, 110, 253, 0.1);
}

.card-robotics .ai-icon-wrapper {
    color: #7B3FE4;
    background: rgba(123, 63, 228, 0.1);
}

.card-nlp .ai-icon-wrapper {
    color: #11C5E8;
    background: rgba(17, 197, 232, 0.1);
}

.card-analytics .ai-icon-wrapper {
    color: #061A40;
    background: rgba(6, 26, 64, 0.08);
}

/* Hover Effects */
.ai-block:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.card-ml:hover {
    border-bottom: 4px solid #0D6EFD;
}

.card-robotics:hover {
    border-bottom: 4px solid #7B3FE4;
}

.card-nlp:hover {
    border-bottom: 4px solid #11C5E8;
}

.card-analytics:hover {
    border-bottom: 4px solid #061A40;
}

.ai-block h5 {
    font-size: 1.1rem;
    color: #061A40;
}

.tracking-wider {
    letter-spacing: 2px;
}

/* Breadcrumb Area */
.breadcrumb-area {
    background: linear-gradient(rgba(6,26,64,0.9), rgba(6,26,64,0.9)),
                url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
}

.breadcrumb-item a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--primary-cyan);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #fff;
}

/* About Image Stack */
.about-img-stack {
    position: relative;
    padding: 20px;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: 0;
    padding: 20px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    background: var(--gradient-primary);
    color: white;
}

/* Dark Navy Background */
.bg-dark-charcoal {
    background-color: var(--dark-navy);
}

/* Why Us Cards */
.why-card {
    border-radius: 12px;
    border: none;
}

.why-card:hover {
    transform: translateY(-10px);
    background: var(--gradient-primary) !important;
}

.why-card:hover .why-icon i,
.why-card:hover h5,
.why-card:hover p {
    color: #fff !important;
}

.transition {
    transition: all 0.3s ease;
}

.mission-card {
    transition: transform 0.3s ease;
}

.mission-card:hover {
    transform: scale(1.02);
}

/* Blogs */

/* Home Page Blog Styling */
.blog-home-card {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
}

.blog-home-card .card-img-top {
    transition: transform 0.5s ease;
}

.blog-home-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,0.1) !important;
}

.blog-home-card:hover .card-img-top {
    transform: scale(1.1);
}

.bg-orange {
    background: var(--gradient-primary) !important;
}

.stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: "";
}