/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

form {display: none;}

body {
    font-family: 'Inter', sans-serif;
    background-color: #07080E;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(24, 24, 30, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand svg {
    height: 32px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #050e8a;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-primary, .btn-secondary {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #2196F3, #42A5F5);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(53, 77, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: #3575ff;
    color: #3575ff;
}

.btn-primary.large, .btn-secondary.large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(79, 195, 247, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(60, 53, 255, 0.1) 0%, transparent 50%);
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 1;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 2;
}

.floating-element {
    position: absolute;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(53, 87, 255, 0.2), rgba(79, 124, 247, 0.2));
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    z-index: 3;
}

.floating-element:nth-child(2) {
    animation-delay: -2s;
    width: 150px;
    height: 150px;
}

.floating-element:nth-child(3) {
    animation-delay: -4s;
    width: 80px;
    height: 80px;
}

.floating-element:nth-child(4) {
    animation-delay: -1s;
    width: 120px;
    height: 120px;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    position: relative;
    z-index: 4;
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem;
}

@media (max-width: 768px) {

    .hero-content {
        padding: unset !important;
    }
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff, #4fc3f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.883);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

form {
    margin-top: 4rem !important;
}

#input-container {
    display: flex;
    gap: 1rem;
    align-items: center;
    background: rgb(34, 34, 40) !important;
    border: 1px solid rgba(135, 206, 250, 0.8) !important;
    border-radius: 16px !important;
    padding: 0.5rem;
    backdrop-filter: blur(10px) !important;
    transition: all 0.3s ease;
}

#input-container:focus-within {
    border-color: #87CEEB;
    box-shadow: 0 0 30px rgba(135, 206, 235, 0.4);
    transform: translateY(-2px);
}

.prompt-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
    font-family: inherit;
}

.prompt-input::placeholder {
    color: rgba(255, 255, 255, 0.736);
}

.submit-btn {
    background: linear-gradient(135deg, #3568ff 0%, #1e42f7 100%);
    border: none;
    border-radius: 12px;
    color: white;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(53, 110, 255, 0.4);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(53, 117, 255, 0.6);
    background: linear-gradient(135deg, #3568ff 0%, #1e42f7 100%);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn svg {
    transition: transform 0.3s ease;
}

.submit-btn:hover svg {
    transform: translateX(3px);
}

/* Answer Container */
.answer-container {
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(53, 77, 255, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    animation: slideInUp 0.5s ease-out;
    box-shadow: 0 8px 32px rgba(53, 110, 255, 0.1);
}

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

.answer-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.answer-icon {
    font-size: 2rem;
    background: linear-gradient(135deg, #3568ff, #1e42f7);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(53, 110, 255, 0.3);
}

.answer-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    background: linear-gradient(135deg, #ffffff, #4fc3f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.answer-content {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    /* border-left: 4px solid #ff6b35; */
    position: relative;
}

.answer-content::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(0, 0, 0, 0.2);
}

/* Typing Indicator */
.typing-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.typing-indicator::after {
    content: '';
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, #3535ff, #4fc3f7, #3593ff);
    background-size: 200% 100%;
    animation: typing 1.5s infinite;
}

@keyframes typing {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Question Cards */
.question-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.question-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(53, 67, 255, 0.2);
    border-radius: 16px;
    font-size: 0.6rem;
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.question-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.1), rgba(79, 195, 247, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.question-card:hover::before {
    opacity: 1;
}

.question-card:hover {
    transform: translateY(-5px);
    border-color: #3561ff;
    box-shadow: 0 20px 40px rgba(53, 83, 255, 0.2);
}

.question-card > * {
    position: relative;
    z-index: 2;
}

.question-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.question-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.question-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    #input-container {
        flex-direction: column;
        gap: 0.5rem;
    }

    .prompt-input {
        width: 100%;
        text-align: center;
    }

    .submit-btn {
        width: 100%;
        justify-content: center;
    }

    .answer-container {
        margin-top: 1.5rem;
        padding: 1rem;
    }

    .answer-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .answer-icon {
        align-self: center;
    }

    .answer-content {
        font-size: 0.9rem;
        padding: 0.75rem;
    }

     .main-content {
         padding: 1rem;
     }

     .question-cards {
         grid-template-columns: 1fr;
         gap: 1rem;
         margin-top: 2rem;
     }

     /* .question-card {
         padding: 1.25rem;
     } */

     .question-card h3 {
         font-size: 1rem;
     }
 }
/* Solutions Section */
.solutions {
    padding: 6rem 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
}

.solutions-header {
    text-align: center;
    margin-bottom: 4rem;
}

.solutions-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.solutions-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.solutions-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.solutions-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.solution-tab {
    padding: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
}

.solution-tab:hover,
.solution-tab.active {
    border-color: #3550ff;
    background: rgba(53, 80, 255, 0.1);
}

.solution-tab h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.solution-tab p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.solutions-display {
    position: relative;
    min-height: 500px;
}

.solution-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.solution-content.active {
    opacity: 1;
    transform: translateY(0);
}

.solution-content img,
.solution-video {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.solution-video {
    background: #000;
    min-height: 300px;
    object-fit: cover;
}

.solution-video::-webkit-media-controls-panel {
    background: rgba(0, 0, 0, 0.8);
}

.solution-video::-webkit-media-controls-play-button,
.solution-video::-webkit-media-controls-pause-button {
    background: #356bff;
    border-radius: 50%;
}

.solution-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.solution-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* ROI Section */
.roi-section {
    padding: 6rem 0;
    background: #0a0a0a;
}

.roi-header {
    text-align: center;
    margin-bottom: 4rem;
}

.roi-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.roi-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
}

.roi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.roi-card {
    text-align: center;
    padding: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
}

.roi-card:hover {
    border-color: #4fc3f7;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(79, 195, 247, 0.1);
}

.roi-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.roi-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color:linear-gradient(135deg, #FFE072, #FFEAAB,#AF8B07) !important;
    margin-bottom: 0.5rem;
}

.roi-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

/* News Section */
.news-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #111111 0%, #0a0a0a 100%);
}

.news-header {
    text-align: center;
    margin-bottom: 4rem;
}

.news-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.news-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.news-card {
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    border-color: #2196F3;
    box-shadow: 0 20px 40px rgba(33, 150, 243, 0.1);
}

.news-card img,
.news-card video {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.news-card video {
    display: block;
}

.news-content {
    padding: 1.5rem;
}

.news-category {
    display: inline-block;
    background: linear-gradient(135deg, #2196F3, #42A5F5);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.news-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.news-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.news-link {
    color: #4fc3f7;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.news-link:hover {
    color: #2196F3;
}

/* Footer */
.footer {
    background: #000000;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr 2fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
    max-width: 300px;
}

.footer-section h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #2196F3;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #2196F3;
}

/* Video Enhancements */
.solution-video {
    transition: transform 0.3s ease;
}

.solution-video:hover {
    transform: scale(1.02);
}

/* Video loading state */
.solution-video:not([poster]) {
    background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-actions {
        display: none;
    }

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

    .hero-title {
        font-size: 2.5rem;
        margin-top: 5.5rem;
    }

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

    .solutions-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .solution-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .solution-video {
        min-height: 250px;
    }

    .roi-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .solutions-header h2,
    .roi-header h2,
    .news-header h2 {
        font-size: 2rem;
    }
}