@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Syne:wght@400..800&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    /* Red radial */
    --red-light: #FF3D3D;
    --red-light-08: #FF3D3D14; /* 8% opacity */
    --red-light-12: #FF3D3D1F; /* 12% opacity */
    --red-light-00: #FF3D3D00; /* 0% opacity */

    /* Primary Colors */
    --aic-primary: #FF3D3D;
    --aic-primary-dark: #3b0000;
    
    /* Background Colors */
    --aic-bg-dark: #0a0a0a;
    --aic-bg-card: #1a1a1a;
    --aic-bg-hover: #FFFFFF14;
    
    /* Text Colors */
    --aic-text-white: #fff;
    --aic-text-light: #ccc;
    --aic-text-secondary: #FFF9;
    
    /* Border Colors */
    --aic-border: #FFFFFF1A;
    
    /* Gradient */
    --aic-gradient: linear-gradient(to bottom, var(--aic-primary), var(--aic-primary-dark));
    --aic-btn-gradient: linear-gradient(to bottom, #FFF, #333);

    /* Radial color */

    --radial-gradient-color-one : #DC35454D;
    --radial-gradient-color-two : #DC35454D;
}

/* Update existing styles to use CSS variables */
body { 
    background-color: var(--aic-bg-dark); 
    color: var(--aic-text-white); 
    font-family: Poppins, sans-serif;
    font-weight: 400;
    font-style: normal;
    overflow-x: hidden !important;
}

.hero-section { 
    min-height: 70vh; 
}

.red-border {
    border-left: 4px solid;
    border-image: var(--aic-gradient) 1;
}

.video-sphere { 
    max-width: 450px; 
    object-fit: cover; 
    aspect-ratio: 1; 
    z-index: 2; 
}

.video-container { 
    display: inline-block; 
}

.video-container::before { 
    content: ''; 
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    width: 150%; 
    height: 120%; 
    background: radial-gradient(circle, var(--radial-gradient-color-one) 0%, var(--radial-gradient-color-two), transparent 100%); 
    border-radius: 50%; filter: blur(60px); 
    z-index: 1; 
    overflow-x: none !important;
}

.card-custom { 
    width: 400px; 
    background: #FFFFFF0D; 
    backdrop-filter: blur(10px);
}

.aic-btn{
    background: var(--aic-gradient);
    font-size: 14px;
    font-weight: 600;
}

.aic-btn-two {
    background: var(--aic-btn-gradient);
    font-size: 14px;
    pointer-events: auto !important;
    cursor: pointer;
}

.icon-circle {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px; 
    background: var(--aic-gradient);
    aspect-ratio: 1/1; 
    flex-shrink: 0; 
}

.icon-circle i {
    font-size: 1.25rem; /* Adjust icon size relative to circle */
    line-height: 1;
}

.card {
    border: 1px solid var(--aic-border);
}

.card:hover {
    background-color: var(--aic-bg-hover);
    transition: all 0.3s ease;
}

.aic-card {
    background-color: var(--aic-bg-card); /* Darker card background */
    padding-left: 3rem !important; /* Increase left padding to make space for the vertical line */
}
    
/* NEW: Red Border on the Start (Left) Side */

.aic-card::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    height: 70%;
    width: 4px; 
    background: var(--aic-gradient); 
    border-radius: 4px;
}

.partner-logo { 
    max-width: 180px; 
}

.accordion-button { 
    color: white; 
    border: none; 
}

.accordion-button:not(.collapsed) { 
    background-color: var(--aic-bg-card); 
    color: var(--aic-text-white); 
}

.accordion-button:focus { 
    box-shadow: none; 
    border: none; 
}

.accordion-item { 
    background-color: var(--aic-bg-dark); 
    margin-bottom: 1rem; 
}
        
.accordion-body { 
    background-color: var(--aic-bg-card); 
    color: var(--aic-text-light); 
}

.faq-tag { 
    font-size: 0.75rem; 
    letter-spacing: 2px; 
}

.feature-card { 
    background: var(--aic-gradient);
    border-radius: 25px; 
    overflow: hidden; 
}

.laptop-image { 
    width: 100%; 
    height: auto; 
}

.partners-container {
    overflow: hidden;
    white-space: nowrap;
    padding: 40px 0;
}
        
.partners-scroll {
    display: inline-flex;
    animation: scroll 20s linear infinite;
    align-items: center;
    gap: 120px;
}

.partners-container:hover .partners-scroll {
    animation-play-state: paused;
}
        
.partner-logo {
    width: 320px;
    height: 180px;
    object-fit: contain;
    transition: all 0.3s ease;
    border-radius: 8px;
}
        
.partner-logo:hover {
    transform: scale(1.1);
}
        
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    
    100% {
        transform: translateX(-50%);
    }
}

.cards-container {
    overflow: hidden;
    white-space: nowrap;
    padding: 20px 0;
}

.cards-scroll {
    display: inline-flex;
    animation: scroll 20s linear infinite;
    gap: 20px;
}

.cards-container:hover .cards-scroll {
    animation-play-state: paused;
}

.card-wrapper {
    min-width: 300px;
    white-space: normal;
    transition: transform 0.3s ease;
}

.card-wrapper:hover {
    transform: scale(1.05);
}

@keyframes scroll {
    0% {
        transform: translateX(5%);
    }
    
    100% {
        transform: translateX(calc(-40%));
    }
}

.glow {
    position: fixed;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle,var(--red-light-08) 0%,var(--red-light-12) 60%,var(--red-light-00) 100%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 999;
    mix-blend-mode: screen; /* Makes it blend softly with content */
  }

  .hero-section {
  position: relative !important;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in-left {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scale-in {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fade-in-down {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation classes */
.navbar {
    opacity: 0;
    animation: fade-in-down 0.8s ease-out forwards;
    animation-delay: 0.2s;
}

.hero-section h1, 
.hero-section p {
    animation: fade-in-left 3s ease-out;
}

.hero-section .btn {
    animation: fade-in-up 3s ease-out 0.5s backwards;
}

.video-container {
    animation: scale-in 1.2s ease-out 0.3s backwards;
}

.card-custom {
    animation: fade-in-up 3s ease-out backwards;
}

.aic-card {
    animation: fade-in-up 0.8s ease-out backwards;
}


@media (width < 768px) {
    .video-container::before { 
        width: 400px !important;
    }
}

@media (width > 768px) and (width < 1200px) {
  .aic-btn{
    font-size: 9px;
  }
}

input::placeholder {
  color: white !important;
  font-size: 14px;
}

textarea::placeholder {
  color: white !important;
  font-size: 14px;
}

input{
    color: white !important;
    font-size: 14px !important;
}

textarea{
    color: white !important;
}

/* Mobile Navbar Styles */
.mobile-navbar {
    background-color: var(--aic-bg-dark);
    border-bottom: 1px solid var(--aic-border);
    z-index: 1000;
}

.mobile-navbar-header {
    background-color: var(--aic-bg-dark);
}

.mobile-toggle {
    border-radius: 8px;
    padding: 0.5rem;
}

/* 👇 Changed this part */
.mobile-menu {
    top: 0;
    right: -100%; /* Hide it off-screen on the right */
    width: 80%;
    height: 110vh;
    background-color: black;
    transition: right 0.3s ease; /* Animate using 'right' instead of 'left' */
    z-index: 9999 !important;
    padding-top: 1rem;
}

/* 👇 When active, slide it in */
.mobile-menu.active {
    right: 0;
}

/* Keep the rest the same */
.mobile-menu-close {
    padding: 1rem;
}

.close-btn {
    cursor: pointer;
}

.mobile-menu-list {
    padding: 2rem 1rem;
    margin: 0;
}

.mobile-menu-list li {
    margin-bottom: 1.5rem;
}

.mobile-menu-link {
    color: var(--aic-text-white);
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.mobile-menu-link:hover {
    color: var(--aic-primary);
}

.mobile-menu-footer {
    border-top: 1px solid var(--aic-border);
    margin-top: 2rem;
}

/* Mobile Menu slides in from the right */

.mobile-menu.active {
  right: 0;
}

/* Dark overlay background */
.mobile-overlay {
  top: 0;
  left: 0;
  width: 100%;
  height: 110vh;
  background: #000000CB;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

/* Show overlay */
.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-footer {
  border-top: 1px solid var(--aic-border);
  margin-top: 2rem;
}

.mobile-menu-footer .btn {
  font-size: 0.9rem;
  white-space: nowrap;
}

.mobile-menu-footer i {
  font-size: 0.7rem;
  transition: color 0.3s ease;
}

.mobile-menu-footer i:hover {
  color: var(--aic-primary);
}

.social-icon {
  width: 30px;
  height: 30px;
  background: var(--aic-gradient);
  border-radius: 50%;
  color: #fff;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}
