.btn-primary,
.btn-secondary {
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    font-size: 16px;
    line-height: 1;
}

.btn-primary {
    background: var(--gradient-2);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--electric-purple);
}

.btn-secondary:hover {
    background: var(--electric-purple);
}

.btn-large {
    padding: 16px 36px;
    font-size: 18px;
}

.btn-full {
    width: 100%;
    position: relative;
    z-index: 1;
}

/* AI Directory Search Section */
.ai-directory .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.ai-directory .section-tag {
    display: inline-block;
    background: rgba(124, 58, 237, 0.1);
    color: var(--electric-purple);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.ai-directory .section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--white);
}

.ai-directory .section-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Search Wrapper */
.ai-directory .search-wrapper-main {
    max-width: 700px;
    margin: 50px auto;
}

.ai-directory .search-form-main {
    margin-bottom: 20px;
}

.ai-directory .search-input-wrapper {
    display: flex;
    align-items: stretch;
    gap: 12px;
}

.ai-directory .input-icon-wrapper {
    position: relative;
    flex: 1;
    display: block;
}

.ai-directory .search-icon {
    position: absolute;
    left: 18px;
    top: 18px;
    color: var(--text-secondary);
    pointer-events: none;
    z-index: 2;
    width: 20px;
    height: 20px;
}

.ai-directory .search-input-field {
    width: 90%;
    height: 56px;
    padding: 16px 20px 16px 52px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--white);
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    box-sizing: border-box;
    line-height: 1.5;
    display: block;
}

.ai-directory .search-input-field:focus {
    outline: none;
    border-color: #7C3AED;
    background: rgba(255, 255, 255, 0.08);
}

.ai-directory .search-input-field::placeholder {
    color: var(--text-secondary);
    line-height: 1.5;
}

.ai-directory .search-btn {
    white-space: nowrap;
    height: 56px;
    flex-shrink: 0;
    box-sizing: border-box;
    padding: 16px 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ai-directory .search-btn svg {
    flex-shrink: 0;
    margin-left: 6px;
}

/* Search Info */
.ai-directory .search-info-text {
    text-align: center;
}

.ai-directory .search-info-text p {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 12px;
}

.ai-directory .search-info-text a {
    color: var(--electric-purple);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.ai-directory .search-info-text a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .ai-directory .section-header {
        padding: 0 20px;
    }
    
    .ai-directory .section-title {
        font-size: 32px;
    }
    
    .ai-directory .section-description {
        font-size: 16px;
    }
    
    .ai-directory .search-wrapper-main {
        padding: 0 20px;
    }
    
    .ai-directory .search-input-wrapper {
        flex-direction: column;
        gap: 12px;
        height: auto;
    }
    
    .ai-directory .input-icon-wrapper {
        width: 100%;
        height: 52px;
    }
    
    .ai-directory .search-input-field {
        padding: 0 20px 0 15px;
        font-size: 15px;
        margin:0px;
        width: 100%;
        
    }
    
    .ai-directory .search-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 32px;
    }
    
    .ai-directory .search-icon {
        left: 16px;
    }
}

@media (max-width: 640px) {
    .ai-directory .section-title {
        font-size: 28px;
    }
    
    .ai-directory .section-description {
        font-size: 14px;
    }
    
    .ai-directory .input-icon-wrapper {
        height: 50px;
    }
    
    .ai-directory .search-input-field {
        padding: 0 20px 0 15px;
        font-size: 15px;
        margin:0px;
        width: 100%;
        
    }
    
    .ai-directory .search-btn {
        padding: 14px 28px;
        font-size: 16px;
    }
    
    .ai-directory .search-icon {
        left: 14px;
        width: 18px;
        height: 18px;
    }
    
    .ai-directory .search-info-text p {
        font-size: 14px;
    }
}


:root {
    --primary-blue: #1C1F4A;
    --electric-purple: #7C3AED;
    --soft-gray: #E5E7EB;
    --white: #FFFFFF;
    --dark-bg: #14161b;
    --card-bg: rgba(255, 255, 255, 0.05);
    --text-primary: #FFFFFF;
    --text-secondary: #A0AEC0;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #7C3AED 0%, #4F46E5 100%);
}
/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    /* top: 0; */
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: -1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--electric-purple);
    top: -200px;
    right: -100px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: #4F46E5;
    bottom: -100px;
    left: -100px;
    animation-delay: -5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: #667eea;
    top: 50%;
    left: 50%;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
}

.title-line {
    display: block;
}

.gradient-text {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
   
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 8px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--electric-purple);
    border-radius: 12px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background: var(--electric-purple);
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(10px); }
}

@keyframes borderRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transform: translateZ(0);
    
}
.media-quick h5 {
    color: white;
  }

.media-29101 h2,h6{
    color: white;
}

.header {
    color: white !important;
  }
  @media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 300px;
        height: calc(100vh - 80px);
        background: rgba(15, 17, 23, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 40px;
        gap: 30px;
        transition: right 0.3s ease;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }

    .about-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 32px;
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 16px;
    }

    section {
        padding: 60px 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .modal-container {
        max-width: 90%;
        width: 90%;
    }
    
    .modal-content {
        padding: 35px 20px;
    }
    
    .modal-icon {
        font-size: 55px;
    }
    
    .modal-title {
        font-size: 22px;
    }
    
    .modal-message {
        font-size: 15px;
    }
    
    .modal-content .btn-primary {
        padding: 14px 28px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .site-section.bg-left-half.mb-5.no-swipe {
      display: none !important;
    }
    .statistics-section{
        display: none !important;
    }
  }
