@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    margin: 0;
    font-family: 'inter', sans-serif !important;
    background-color: #0D0D0D !important;
}
html, body {
    overflow-x: hidden;
  } 
  

.container {
    width: 85% !important;
    margin: 0 auto;
    max-width: 1700px !important;
}
@media (max-width: 768px) {
    .container {
        width: 95%; /* Make the container wider on small screens */
    }
}
.aim-header {
    background-color: #111;
    padding: 20px 30px;
  }
  
  .aim-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .aim-left-group {
    display: flex;
    align-items: center;
    gap: 80px;
  }
  
  .aim-logo {
    color: #00FCDB;
    font-size: 24px;
    font-weight: bold;
  }
  
  .aim-logo span {
    color: #fff;
    font-weight: 400;
  }
  
  .aim-nav-links {
    display: flex;
    gap: 20px;
  }
  
  .aim-nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
  }
  
  .aim-nav-links a:first-child {
    color: #00FCDB;
  }
  
  .aim-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .aim-login-btn {
    background: transparent;
    border: 1px solid #fff;
    border-radius: 5px;
    padding: 5px 10px;
    color: #fff;
    font-size: 13px;
    cursor: pointer;
  }
  
  .aim-mobile-menu {
    display: none;
    flex-direction: column;
    background-color: #111;
    padding: 10px 20px;
  }
  
  .aim-mobile-menu a {
    color: #fff;
    padding: 10px 0;
    border-bottom: 1px solid #333;
    text-decoration: none;
  }
  /* Show when active class is toggled */
.aim-mobile-menu.active {
    display: flex;
  }
  /* Hide hamburger on desktop */
.aim-hamburger {
    display: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
  }
  /* Responsive */
  @media (max-width: 768px) {
    .aim-nav-links {
      display: none;
    }
  
    .aim-hamburger {
      display: block;
    }
  }
  .aihero-section {
    display: flex;
    height: 500px;
    overflow: hidden;
    position: relative;
    background-color: #0D0D0D;
  }
  
  .aihero-sidebar-icons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    padding: 20px;
  }
  
  .aihero-sidebar-icons a {
    background-color: #3500FC;
    padding: 12px;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
  }
  
  .aihero-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  
  .aihero-text {
    max-width: 50%;
    margin: auto 100px;
  }
  
  .aihero-text h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px 0;
    color: white;
  }
  
  .aihero-highlight {
    color: #3500FC;
  }
  
  .aihero-text p {
    color: #ccc;
    font-size: 16px;
    margin-bottom: 25px;
  }
  
  .aihero-button {
    display: inline-block;
    background-color: #3500FC;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
  }
  
  .aihero-image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .ai-power-section {
    text-align: center;
    padding: 40px 20px;
  }

  .ai-power-subtitle {
    color: #00FCDB;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }

  .ai-power-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 40px;
    color: white;
  }

  .ai-power-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .ai-power-box {
    background-color: #121212;
    padding: 30px 20px;
    border-radius: 12px;
    width: 200px;
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
  }

  .ai-power-box:hover {
    background-color: #1f1f1f;
    transform: translateY(-5px);
  }

  .ai-power-icon {
    font-size: 36px;
    color: #00FCDB;
    margin-bottom: 15px;
  }

  .ai-power-heading {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: white;
  }

  .ai-power-text {
    font-size: 14px;
    color: white;
    margin-bottom: 20px;
  }

  .ai-power-arrow {
    font-size: 18px;
    color: white;
    text-decoration: none;
  }

  @media (max-width: 768px) {
    .ai-power-box {
      width: 100%;
    }
  }
  .digital-future-section {
    background-color: #0d0d0d;
    color: white;
    padding: 60px 20px;
  }
  
  .digital-future-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: auto;
    gap: 40px;
  }
  
  .digital-future-image img {
    width: 400px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
  }
  
  .digital-future-content {
    max-width: 500px;
  }
  
  .digital-future-subtitle {
    color: #00FCDB;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  .digital-future-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 15px;
  }
  
  .digital-future-description {
    font-size: 15px;
    color: #cfcfcf;
    margin-bottom: 20px;
  }
  
  .digital-future-button {
    display: inline-block;
    background-color: #3500FC;
    color: #fff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    transition: background 0.3s;
  }
  
  .digital-future-button:hover {
    background-color: #3500FC;
  }
  
  .ai-gallery-section-2025 {
    text-align: center;
    padding: 40px 20px 20px;
  }

  .ai-gallery-heading-text-2025 {
    color: #00FCDB;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .ai-gallery-main-title-2025 {
    font-size: 36px;
    font-weight: bold;
    margin: 10px 0 20px;
    color: white;
  }

  .ai-gallery-category-tabs-2025 {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
  }

  .ai-gallery-category-tabs-2025 a {
    text-decoration: none;
    color: #999;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    padding-bottom: 5px;
  }

  .ai-gallery-category-tabs-2025 a.active-tab-link-2025 {
    color: #00FCDB;
    border-color: #00FCDB;
  }

  .ai-gallery-layout-container-2025 {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    padding-bottom: 60px;
  }

  .ai-gallery-side-grid-2025 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .ai-gallery-grid-img-2025 {
    width: 180px;
    height: 180px;
    object-fit: cover;
  }

  .ai-gallery-center-img-2025 {
    width: 300px;
    height: auto;
    max-width: 100%;
  }

  /* Mobile version adjustments */
@media (max-width: 768px) {
  .ai-gallery-heading-text-2025 {
    font-size: 12px; /* Slightly smaller heading on tablets */
  }

  .ai-gallery-main-title-2025 {
    font-size: 28px; /* Smaller main title */
  }

  .ai-gallery-category-tabs-2025 {
    gap: 15px; /* Reduce gap between tabs */
    font-size: 12px;
  }

  .ai-gallery-layout-container-2025 {
    gap: 10px; /* Smaller gap between grid items */
  }

  .ai-gallery-side-grid-2025 {
    grid-template-columns: repeat(2, 1fr); /* Keep two columns for tablets */
  }

  .ai-gallery-grid-img-2025 {
    width: 150px;
    height: 150px; /* Smaller image size on tablets */
  }

  .ai-gallery-center-img-2025 {
    width: 250px; /* Adjust center image size */
    margin: 15px auto;
  }
}

@media (max-width: 480px) {
  .ai-gallery-heading-text-2025 {
    font-size: 10px; /* Further reduced heading size on small screens */
  }

  .ai-gallery-main-title-2025 {
    font-size: 22px; /* Smaller main title for mobile */
  }

  .ai-gallery-category-tabs-2025 {
    gap: 10px; /* Even smaller gap between tabs */
    font-size: 12px;
  }

  .ai-gallery-layout-container-2025 {
    gap: 5px; /* Very small gap between grid items */
  }

  .ai-gallery-side-grid-2025 {
    grid-template-columns: repeat(2, 1fr); /* Switch to single column layout on small screens */
  }

  .ai-gallery-grid-img-2025 {
    width: 120px; /* Smaller image size on mobile */
    height: 120px;
  }

  .ai-gallery-center-img-2025 {
    width: 200px; /* Smaller center image on mobile */
    margin: 15px auto;
  }
}
  .video-thumbnail-container {
    position: relative;
    width: 100%;
    margin: 30px auto;
    cursor: pointer;
  }

  .video-thumbnail, .video-element {
    width: 100%;
    display: block;
    object-fit: cover;
    height: 600px;
  }

  .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.4);
    transition: 0.3s ease;
  }

  .play-button::before {
    content: '';
    display: block;
    margin-left: 5px;
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent white;
  }

  .video-element {
    display: none;
  }
  
  .tcarousel-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 100px auto 0px;
    overflow: hidden;
  }
  
  .tcarousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
  }
  
  .tcarousel-slide {
    background-color: #000;
    border-radius: 10px;
    padding: 30px 20px;
    margin: 0 10px;
    width: 50%; /* ✅ Now shows 2 slides in full width */
    box-sizing: border-box;
    text-align: center;
    color: #fff;
    flex-shrink: 0;
  }
  
  
  .tcarousel-quote {
    color: #5a00ff;
    font-size: 100px;
    margin-bottom: 10px;
  }
  
  .tcarousel-slide p {
    font-size: 14px;
    line-height: 1.5;
    color: #ccc;
  }
  
  .tcarousel-profile {
    margin-top: 20px;
  }
  
  .tcarousel-profile img {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    object-fit: cover;
    border: 2px solid #444;
  }
  
  .tcarousel-name {
    margin-top: 10px;
    font-weight: bold;
  }
  
  .tcarousel-title {
    font-size: 12px;
    color: #aaa;
  }
    
  .tcarousel-dots {
    text-align: center;
    margin-top: 20px;
  }
  
  .tcarousel-dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #ccc;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
  }
  
  .tcarousel-dot.active {
    background-color: #00ffaa;
  }

  /* Mobile version adjustments */
@media (max-width: 768px) {
  .tcarousel-slide {
    width: 80%; /* Make each slide take up more space for mobile */
    margin: 0 5px; /* Smaller margin between slides */
  }

  .tcarousel-arrow {
    font-size: 18px; /* Smaller arrow size */
  }

  .tcarousel-arrow-left, .tcarousel-arrow-right {
    left: -20px;
    right: -20px;
  }

  .tcarousel-quote {
    font-size: 50px; /* Adjust quote font size for mobile */
  }

  .tcarousel-slide p {
    font-size: 12px; /* Smaller font for paragraph text */
  }

  .tcarousel-profile img {
    width: 40px;
    height: 40px; /* Smaller profile picture for mobile */
  }

  .tcarousel-name {
    font-size: 14px; /* Adjust name font size */
  }

  .tcarousel-title {
    font-size: 10px; /* Adjust title font size */
  }
}

/* Very small screen (phones in portrait mode) */
@media (max-width: 480px) {
  .tcarousel-slide {
    width: 90%; /* Slides take almost full width */
  }

  .tcarousel-arrow {
    font-size: 16px; /* Even smaller arrows for tiny screens */
  }

  .tcarousel-quote {
    font-size: 40px; /* Smaller quote font */
  }

  .tcarousel-slide p {
    font-size: 10px; /* Even smaller text on very small screens */
  }

  .tcarousel-profile img {
    width: 35px;
    height: 35px; /* Adjust profile picture size */
  }

  .tcarousel-name {
    font-size: 12px; /* Smaller font for name */
  }

  .tcarousel-title {
    font-size: 9px; /* Adjust title font for small screens */
  }
}
  .logostrip-section {
    background-color: #0e0e0e;
    padding: 40px 0;
  }
  
  .logostrip-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .logostrip-container img {
    filter: brightness(2);
    max-height: 40px;
    transition: filter 0.3s ease;
  }
  
  .logostrip-container img:hover {
    filter: brightness(1);
  }
  .blog-section {
    background-color: #0e0e0e;
    padding: 80px 20px;
    text-align: center;
    color: #fff;
    font-family: sans-serif;
  }
  
  .latest-posts {
    color: #00ffbf;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
  }
  
  .blog-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
  }
  
  .blog-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  
  .blog-card {
    background-color: #121212;
    border-radius: 12px;
    overflow: hidden;
    width: 320px;
    text-align: left;
    transition: transform 0.3s;
  }
  
  .blog-card:hover {
    transform: translateY(-10px);
  }
  
  .blog-card img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .blog-content {
    padding: 20px;
  }
  
  .author {
    color: #00ffbf;
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  .blog-headline {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 15px;
    color: #fff;
  }
  
  .meta {
    font-size: 12px;
    color: #aaa;
    display: flex;
    justify-content: space-between;
  }
  .footer {
    background-color: #0e0e0e;
    color: #fff;
    padding: 60px 20px;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
  }
  
  .footer-col {
    flex: 1 1 220px;
  }
  
  .footer-logo {
    font-size: 24px;
    margin-bottom: 15px;
  }
  
  .logo-highlight {
    color: #00fff2;
  }
  
  .social-icons a {
    color: #fff;
    margin-right: 15px;
    font-size: 16px;
    transition: color 0.3s;
  }
  
  .social-icons a:hover {
    color: #00fff2;
  }
  
  .footer-col h4 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
  }
  
  .footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-col ul li {
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  .footer-col ul li i {
    margin-right: 10px;
    color: #00fff2;
  }
  
  .footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-col ul li a:hover {
    color: #00fff2;
  }
  
  .newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .newsletter-form input[type="email"] {
    padding: 10px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 5px;
    color: #fff;
  }
  
  .newsletter-form button {
    background: #5d2dfd;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .newsletter-form button:hover {
    background: #4a1de0;
  }
  
  .privacy-check {
    font-size: 12px;
    color: #aaa;
  }
  
  .privacy-check a {
    color: #00fff2;
    text-decoration: underline;
  }

  
  @keyframes slideInFromRightAiMentor {
    from {
      opacity: 0;
      transform: translateX(100px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  .slide-right-anim {
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.6s ease-out;
  }
  
  .slide-right-anim.visible {
    animation: slideInFromRightAiMentor 0.8s ease forwards;
  }

  @keyframes slideInFromLeftAiMentor {
    from {
      opacity: 0;
      transform: translateX(-100px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  .slide-left-anim {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.6s ease-out;
  }
  
  .slide-left-anim.visible {
    animation: slideInFromLeftAiMentor 0.8s ease forwards;
  }

  @keyframes fadeInUpAiMentor {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .fade-up-anim {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease-out;
  }
  
  .fade-up-anim.visible {
    animation: fadeInUpAiMentor 0.8s ease forwards;
  }
  .ai-carousel-section {
    background: #0e0e0e;
    color: #fff;
    padding: 4rem 1rem;
    text-align: center;
  }
  
  .carousel-heading .section-subtitle {
    color: #00e6b7;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }
  
  .carousel-heading .section-title {
    font-size: 2rem;
    font-weight: 700;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.4;
  }
  
  .swiper.ai-carousel {
    padding: 1rem 0;
  }
  
  .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .swiper-slide img {
    border-radius: 12px;
    max-width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  .swiper-pagination {
    margin-top: 1rem;
  }
  .swiper-pagination-bullet-active {
    background: #00FCDB !important;
}   
.swiper-pagination-bullet {
  background: #00FCDB !important;
} 
@media (max-width: 640px) {
  .carousel-heading .section-title {
    font-size: 1.25rem;
    line-height: 1.6;
    padding: 0 1rem;
  }
  .ai-carousel-section {
    padding: 1rem;
}
.ai-power-title {
  font-size: 1.25rem;
}
.ai-power-heading {
  font-size: 16px;
}
.digital-future-section {
  padding: 20px;
}
.digital-future-title {
  font-size: 1.25rem;
}
.digital-future-description {
  font-size: 14px;
}
.ai-gallery-main-title-2025 {
  font-size: 1.25rem;
}
.ai-gallery-category-tabs-2025 {
  gap: 10px;
  font-size: 12px;
}
}
@media (max-width: 640px) {
  .logostrip-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 logos per row */
    gap: 20px;
    justify-items: center;
  }
  .logostrip-container img {
    width: auto;
    height: 30px;
}
.blog-title {
  font-size: 1.25rem;
}
.tcarousel-container {
  margin: auto;
}
.blog-section {
  padding: 20px;
}
.video-thumbnail, .video-element {
  height: auto;
}
}
@media (max-width: 768px) {
  .play-button {
      width: 60px; /* Slightly smaller button on tablets and mobile */
      height: 60px; 
      left: 45%;
  }
  .aihero-text {
    max-width: fit-content;
    margin: auto;
}
.aihero-text h1 {
  font-size: 1.25rem;
}
.aihero-image img {
  display: none;
}
.aihero-section {
  height: 300px;
}
.aihero-text p {
  font-size: 14px;
  width: 200px;
}
.aihero-sidebar-icons a {
  background-color: #3500FC;
  padding: 10px;
  border-radius: 8px;
  color: white;
  font-size: 10px;
  text-align: center;
  text-decoration: none;
}
.aihero-button {
  display: inline-block;
  background-color: #3500FC;
  color: white;
  padding: 3px 12px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
}
}

@media (max-width: 480px) {
  .play-button {
      width: 50px; /* Even smaller button on very small screens */
      height: 50px;
      left: 45%;
  }
}
@media (max-width: 768px) {
  .digital-future-image img {
    width: 300px; /* Reduce width for tablets and smaller screens */
  }
}
