/* Cybersecurity Theme Variables */
:root {
    --cyber-primary: #00D4FF;
    --cyber-secondary: #0099CC;
    --cyber-accent: #33E6FF;
    --cyber-dark: #0A0F1C;
    --cyber-darker: #050914;
    --cyber-light: rgba(0, 212, 255, 0.1);
    --cyber-glow: rgba(0, 212, 255, 0.3);
    --cyber-glow-strong: rgba(0, 212, 255, 0.6);
}

/* Base Styles */
body {
    background-color: var(--cyber-dark);
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Custom Bootstrap Button Styles */
.btn-cyber-primary {
    background: linear-gradient(135deg, var(--cyber-primary), var(--cyber-secondary));
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.btn-cyber-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
    color: white;
}

.btn-cyber-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--cyber-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-cyber-secondary:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: var(--cyber-accent);
    color: white;
    transform: translateY(-2px);
}

/* Navigation Styles */
.cyber-navbar {
    background: rgba(10, 15, 28, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    color: #fff !important;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--cyber-primary) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
  
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--cyber-primary), var(--cyber-accent));
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Custom Dropdown */
.cyber-dropdown {
    background: rgba(10, 15, 28, 0.95) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.2) !important;
    border-radius: 10px !important;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2) !important;
    transform-origin: top center;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Dropdown Hover and Chevron Rotation */
.dropdown:hover .dropdown-menu {
    display: block !important;
}

.dropdown-toggle .fa-chevron-down {
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle .fa-chevron-down,
.dropdown-toggle[aria-expanded="true"] .fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
}

.dropdown:hover .dropdown-menu,
.dropdown-toggle[aria-expanded="true"] + .dropdown-menu {
    display: block !important;
}

.cyber-dropdown .dropdown-item {
    color: rgba(255, 255, 255, 0.8) !important;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cyber-dropdown .dropdown-item:hover {
    background: rgba(0, 212, 255, 0.1) !important;
    color: var(--cyber-primary) !important;
    transform: translateX(5px);
}

.cyber-dropdown .dropdown-item::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cyber-dropdown .dropdown-item:hover::before {
    left: 100%;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#vanta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeInUp 1.5s ease-out;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
color:#fff;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

/* Security Features */
.security-features {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.feature-item {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 1rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--cyber-primary), var(--cyber-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 0.5rem;
    animation: pulse 2s infinite;
}

/* Section Styles */
.section-bg-dark {
    background: var(--cyber-dark);
}

.section-bg-gradient {
    background: linear-gradient(135deg, var(--cyber-dark), rgba(0, 212, 255, 0.05));
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--cyber-primary), var(--cyber-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

/* Cards */
.cyber-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    height: 100%;
}

.cyber-card:hover {
    transform: translateY(-10px);
    border-color: var(--cyber-primary);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.cyber-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--cyber-primary), var(--cyber-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.cyber-card h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cyber-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Expertise Items */
.expertise-item {
    margin-bottom: 5rem;
}

.expertise-image img {
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
}

.expertise-image img:hover {
    transform: scale(1.02);
    border-color: var(--cyber-primary);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.3);
}

.expertise-content h3 {
    color: white;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.expertise-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Feature Items */
.feature-item-large {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.feature-item-large:hover {
    border-color: var(--cyber-primary);
    background: rgba(255, 255, 255, 0.08);
}

.feature-icon-large {
    width: 60px;
    height: 60px;
    min-width:60px;
    background: linear-gradient(135deg, var(--cyber-primary), var(--cyber-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
}
.feature-icon-large i{
    font-size:15px;
}

.feature-item-large h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-item-large p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

/* Solutions */
.solution-category {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
}

.solution-category:hover {
    border-color: var(--cyber-primary);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.15);
}

.category-title {
    color: var(--cyber-primary);
    font-weight: 600;
    text-align: center;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid rgba(0, 212, 255, 0.3);
}

.solution-item {
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--cyber-primary);
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    border-radius: 5px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.solution-item:hover {
    background: rgba(0, 212, 255, 0.1);
    color: white;
    cursor: pointer;
}

/* Partners */
.partner-logo {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
}

.partner-logo:hover {
    transform: translateY(-5px);
    border-color: var(--cyber-primary);
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.2);
}

.partner-logo img {
    max-width: 100%;
    max-height: 80px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.partner-logo:hover img {
    opacity: 1;
}

/* Reviews */
.review-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--cyber-primary);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.review-stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.review-text {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.author-info h6 {
    color: white;
    margin-bottom: 0.25rem;
}

.author-info small {
    color: var(--cyber-primary);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--cyber-darker), rgba(0, 212, 255, 0.05));
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.footer h5 {
    color: var(--cyber-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.footer .footer-brand img {
    height: 40px;
    margin-bottom: 1rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: var(--cyber-primary);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 50%;
    color: var(--cyber-primary);
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--cyber-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 212, 255, 0.3);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-item i {
    color: var(--cyber-primary);
    width: 20px;
    margin-right: 1rem;
}
.footer p{
    color:#fff !important;
}
/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(0, 212, 255, 0.8);
    }
}

/* Mobile Dropdown Animations */
@keyframes slideDownFade {
    0% {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
        visibility: hidden;
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        visibility: visible;
    }
}

@keyframes slideUpFade {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
        visibility: visible;
    }
    100% {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
        visibility: hidden;
    }
}

@keyframes dropdownItemSlide {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Enhanced Mobile Navigation */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(10, 15, 28, 0.98);
        backdrop-filter: blur(20px);
        border-radius: 15px;
        margin-top: 1rem;
        padding: 1rem;
        border: 1px solid rgba(0, 212, 255, 0.2);
        box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
    }

    .navbar-nav {
        gap: 0.5rem;
    }

    .nav-link {
        border-radius: 10px;
        padding: 1rem 1.5rem !important;
        margin: 0.2rem 0;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(0, 212, 255, 0.1);
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        position: relative;
        overflow: hidden;
    }

    .nav-link:hover {
        background: rgba(0, 212, 255, 0.15) !important;
        border-color: var(--cyber-primary);
        transform: translateX(5px);
    }

    .nav-link::after {
        display: none;
    }

    .nav-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 0;
        height: 100%;
        background: linear-gradient(90deg, var(--cyber-primary), var(--cyber-accent));
        transition: width 0.3s ease;
        border-radius: 10px 0 0 10px;
    }

    .nav-link:hover::before {
        width: 4px;
    }

    /* Mobile Dropdown Specific */
    .dropdown-menu {
        position: static !important;
        transform: none !important;
        border: none !important;
        background: rgba(0, 212, 255, 0.08) !important;
        border-radius: 10px !important;
        margin: 0.5rem 0 1rem 1rem !important;
        padding: 0.5rem 0 !important;
        box-shadow: inset 0 0 20px rgba(0, 212, 255, 0.1) !important;
        backdrop-filter: none !important;
        
        /* Smooth CSS transitions */
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
    }

    .dropdown-menu.show {
        opacity: 1;
        transform: translateY(0) scale(1);
        visibility: visible;
        max-height: 500px;
    }

    .dropdown-item {
        padding: 0.8rem 1.5rem !important;
        border-radius: 8px !important;
        margin: 0.2rem 0.5rem !important;
        background: rgba(255, 255, 255, 0.02) !important;
        border: 1px solid rgba(0, 212, 255, 0.1) !important;
        position: relative;
        overflow: hidden;
        transform: translateX(-10px);
        opacity: 0;
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .dropdown-menu.show .dropdown-item {
        transform: translateX(0);
        opacity: 1;
    }

    .dropdown-menu.show .dropdown-item:nth-child(1) { transition-delay: 0.1s; }
    .dropdown-menu.show .dropdown-item:nth-child(2) { transition-delay: 0.15s; }
    .dropdown-menu.show .dropdown-item:nth-child(3) { transition-delay: 0.2s; }
    .dropdown-menu.show .dropdown-item:nth-child(4) { transition-delay: 0.25s; }
    .dropdown-menu.show .dropdown-item:nth-child(5) { transition-delay: 0.3s; }
    .dropdown-menu.show .dropdown-item:nth-child(6) { transition-delay: 0.35s; }

    .dropdown-item:hover {
        background: rgba(0, 212, 255, 0.2) !important;
        border-color: var(--cyber-primary) !important;
        transform: translateX(10px) !important;
        box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
    }

    .btn-cyber-primary {
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s;
    }

    .navbar-collapse.show .btn-cyber-primary {
        opacity: 1;
        transform: translateY(0);
    }

    /* Navbar Toggle Animation */
    .navbar-toggler {
        border: 1px solid rgba(0, 212, 255, 0.3) !important;
        border-radius: 10px;
        padding: 0.5rem;
        transition: all 0.3s ease;
    }

    .navbar-toggler:hover {
        border-color: var(--cyber-primary) !important;
        box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2300D4FF' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    .cyber-card-icon{
        margin-top:20px;
    }
    .reverse-column{
        flex-direction: column-reverse;
    }
    .security-features {
        gap:0 !important;
    }
    
    .expertise-item {
        margin-bottom: 3rem;
    }
    
    .cyber-navbar {
        padding: 0.5rem 0;
    }
    .nav-item{
        width:100%;
    }
}