    
        /* Base Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', sans-serif;
        }

        body {
            background-color: #0a0e27;
            color: #ffffff;
            overflow-x: hidden;
        }

        /* Main Banner Container */
        .hero-banner {
            position: relative;
            width: 100%;
            height: 100vh;
            min-height: 600px;
            overflow: visible;
            display: flex;
            flex-direction: column;
            background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1419 100%);
        }

        /* 3D Canvas Styling */
        #hero-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            pointer-events: none;
        }
        .pro-title{
               font-size: 48px;
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 0px;
    text-align: center;
    color: #ffffff;
    text-transform: uppercase;
        }

        /* --- Navigation Bar --- */
        .nav-bar {
            width: 100%;
            padding: 30px 50px;
            z-index: 10;
            position: fixed;
            top: 0;
            background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1419 100%);
            backdrop-filter: blur(10px);
        }

        .nav-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        .img-logo img {
            height: 40px;
            width: auto;
        }
    
        .nav-links {
            display: flex;
            gap: 40px;
        }

        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
        }

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

        .nav-links a {
            color: #b0c4de;
            text-decoration: none;
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 0.5px;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a:hover, .nav-links a.active { color: #ffffff; }

        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 1px;
            background-color: #ffffff;
        }

        .nav-actions { display: flex; gap: 15px; }

        .nav-btn {
            background: transparent;
            border: 1px solid #7be5f5;
            color: #ffffff;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .nav-btn.solid {
            background: #ffffff;
            color: #11181e;
            border-color: #ffffff;
            font-weight: 600;
        }

        .nav-btn:hover { background: rgba(123, 229, 245, 0.1); }
        .nav-btn.solid:hover { background: #e0e0e0; }

        /* --- Main Content --- */
        .content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            z-index: 9;
            position: relative;
            /* Pushes content slightly higher to sit nicely in the light */
            
        }

        .eyebrow {
            font-size: 12px;
            letter-spacing: 2px;
            color: #7be5f5;
            margin-bottom: 20px;
            text-transform: uppercase;
            text-shadow: 0 0 20px rgba(123, 229, 245, 0.5);
        }

        h1 {
            font-size: 64px;
            font-weight: 700;
            letter-spacing: 2px;
            line-height: 1.1;
            margin-bottom: 25px;
            color: #ffffff;
            text-shadow: 0 0 30px rgba(71, 178, 255, 0.6), 0 0 60px rgba(123, 229, 245, 0.4);
        }

        .description {
            max-width: 600px;
            font-size: 14px;
            line-height: 1.6;
            color: #b0c4de;
            margin-bottom: 40px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        /* Hero Buttons */
        .cta-group { display: flex; gap: 20px; }

        .cta-btn {
            padding: 12px 35px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            border: none;
            transition: all 0.3s ease;
        }
        .cta-group a{
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

        .cta-btn.primary {
            background-color: #47b2ff;
            color: white;
            box-shadow: 0 4px 15px rgba(0,0,0,0.4);
            border: 1px solid rgba(255,255,255,0.1);
        }

        .cta-btn.primary:hover { background-color: #385163; }

        .cta-btn.secondary {
            background-color: transparent;
            color: #ffffff;
            border: 1px solid #7be5f5;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .cta-btn.secondary:hover { background-color: rgba(123, 229, 245, 0.15); }

        /* --- THE INTENSE FLASH LINE --- */
        /*  */

        @keyframes pulse-flash {
            0% { opacity: 0.9; transform: scaleX(0.99); }
            100% { opacity: 1; transform: scaleX(1.01); }
        }

        /* Responsive */
        @media (max-width: 768px) {
            h1 { 
                font-size: 40px; 
                margin-bottom: 20px;
            }
            
            .nav-bar {
                padding: 15px 20px;
            }
            
            .nav-links { 
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1419 100%);
                flex-direction: column;
                padding: 20px;
                gap: 20px;
                box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .mobile-menu-toggle {
                display: flex;
            }
            
            .flash-line { 
                left: 5%; 
                right: 5%; 
            }
            
            .content { 
                padding: 0 20px;
                margin-top: 80px;
            }
            
            .nav-bar {
                padding: 20px !important;
            }
            
            .description {
                font-size: 16px;
                margin-bottom: 30px;
            }
            
            .cta-group {
                flex-direction: column;
                gap: 15px;
                align-items: center;
            }
            
            .cta-btn {
                width: 200px;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            h1 {
                font-size: 32px;
            }
            
            .hero-banner {
                min-height: 500px;
            }
            
            .content {
                padding: 0 15px;
            }
            
            .description {
                font-size: 14px;
            }
            
            .cta-btn {
                width: 180px;
                padding: 10px 25px;
                font-size: 13px;
            }
        }
        .swiper-pagination-bullet{
            background-color: #ffffff !important;
        }

        /* --- CHARACTER SELECTION SECTION --- */
        .character-section {
            position: relative;
            width: 100%;
            /* min-height: 100vh; */
            padding: 80px 50px;
                background: linear-gradient(180deg, var(--bs-primary-border-subtle) 0%, var(--bs-primary-bg-subtle) 50%, var(--bs-primary-bg-subtle) 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .character-section h2 {
            font-size: 48px;
            font-weight: 400;
            letter-spacing: 3px;
            margin-bottom: 0px;
            text-align: center;
            color: #000000;
            text-transform: uppercase;
        }

        /* Swiper Container */
        .character-swiper {
            width: 100%;
            max-width: 1400px;
            padding: 40px 0;
            height: 450px;
        }

        .swiper-slide {
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.3s ease;
        }

        /* Character Card */
        .character-card {
            position: relative;
            width: 500px;
            height: 280px;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            background: linear-gradient(135deg, rgba(60, 180, 205, 0.1) 0%, rgba(30, 80, 100, 0.2) 100%);
            border: 2px solid rgba(123, 229, 245, 0.3);
            /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5); */
        }

        /* .character-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
            z-index: 1;
        } */

        .character-card img {
            width:100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .character-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 25px;
            z-index: 2;
            text-align: center;
        }

        .character-name {
            font-size: 20px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 5px;
            letter-spacing: 1px;
        }

        .character-role {
            font-size: 12px;
            color: #7be5f5;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        /* Hover Effects */
        .character-card:hover {
            transform: translateY(-15px) scale(1.05);
            border-color: rgba(123, 229, 245, 0.8);
            box-shadow: 
                0 20px 60px rgba(0, 0, 0, 0.7),
                0 0 40px rgba(123, 229, 245, 0.4);
        }

        .character-card:hover img {
            transform: scale(1.1);
        }

        /* Active/Center Slide Enhancement */
        .swiper-slide-active .character-card {
              transform: scale(1.15);
              border-color: rgb(112 224 241 / 90%);
              /* box-shadow: 0 25px 80px rgba(0, 0, 0, 0.8), 0 0 60px rgba(123, 229, 245, 0.6); */
        }
     
        /* Swiper Navigation Buttons */
        .swiper-button-next,
        .swiper-button-prev {
            color: #000000;
            width: 50px;
            height: 50px;
            background: #fff;
            border-radius: 50%;
            border: 1px solid rgba(123, 229, 245, 0.3);
            transition: all 0.3s ease;
        }

        .swiper-button-next:hover,
        .swiper-button-prev:hover {
            background: rgba(123, 229, 245, 0.2);
            border-color: rgba(123, 229, 245, 0.8);
        }

        .swiper-button-next::after,
        .swiper-button-prev::after {
            font-size: 20px;
        }

        /* Swiper Pagination */
        .swiper-pagination-bullet {
            background: #4fd6eb !important;
            opacity: 1;
            width: 10px;
            height: 10px;
        }

        .swiper-pagination-bullet-active {
            background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1419 100%) !important;
            opacity: 1;
            width: 30px;
            border-radius: 5px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .character-section {
                padding: 60px 20px;
            }

            .character-section h2 {
                font-size: 32px;
                margin-bottom: 40px;
            }

            .character-card {
                width: 280px;
                height: 200px;
            }

            .character-swiper {
                height: 300px;
            }

            .swiper-slide-active .character-card {
                transform: scale(1.05);
            }
            
            .character-name {
                font-size: 16px;
            }
            
            .character-role {
                font-size: 10px;
            }
        }

        @media (max-width: 480px) {
            .character-section {
                padding: 40px 15px;
            }

            .character-section h2 {
                font-size: 28px;
                margin-bottom: 30px;
            }

            .character-card {
                width: 250px;
                height: 180px;
            }

            .character-swiper {
                height: 280px;
            }
        }
    
     
    /* Social Alert Section Styling */
    .social-alert-section {
      padding: 80px 0;
      /* min-height: 100vh; */
      display: flex;
      align-items: center;
          background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1419 100%);
    }

    .social-alert-content {
      padding: 0px 60px 40px 90px;
      text-align: start;
    }

    .alert-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 20px;
    align-items: flex-start;
    }

    .badge-icon {
      width: 50px;
      height: 50px;
      background-color: #f39c12;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .alert-badge span {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 1.5px;
      color: #f39c12;
      text-transform: uppercase;
    }

    .alert-title {
      font-size: 52px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 25px;
      line-height: 1.1;
      font-family: 'Montserrat', sans-serif;
    }

    .alert-description {
      font-size: 16px;
      line-height: 1.9;
      color: #cedeee;
      margin-bottom: 35px;
      font-weight: 400;
    }

    .alert-features {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .alert-features li {
      display: flex;
      align-items: flex-start;
      gap: 15px;
      font-size: 16px;
      line-height: 1.8;
      color: #cedeee;
    }

    .feature-icon {
      width: 22px;
      height: 22px;
      background-color: #ffffff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 3px;
    }

    .feature-text {
      flex: 1;
      font-weight: 400;
    }

    .feature-text strong {
      font-weight: 600;
      color: #ffffff;
    }

    .phone-mockups {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 25px;
      padding: 40px;
    }

    .phone-device {
      position: relative;
      width: 280px;
      height: 570px;
      background: #000000;
      border-radius: 40px;
      padding: 12px;
      box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
      overflow: hidden;
    }

    .phone-device::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 150px;
      height: 30px;
      background: #000000;
      border-radius: 0 0 20px 20px;
      z-index: 2;
    }

    .phone-screen {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 32px;
      background: #ffffff;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .social-alert-content {
        padding: 20px;
        margin-bottom: 40px;
      }

      .alert-title {
        font-size: 38px;
      }

      .alert-features {
        grid-template-columns: 1fr;
      }

      .phone-mockups {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
      }

      .phone-device {
        width: 240px;
        height: 490px;
      }
    }

    @media (max-width: 768px) {
      .social-alert-section {
        padding: 60px 0;
      }

      .alert-title {
        font-size: 25px;
      }
      
      .badge-icon{
        width: 25px;
        height: 25px;
      }

      .alert-description {
        font-size: 13px;
      }

      .alert-features li {
        font-size: 13px;
      }

      .phone-device {
        width: 220px;
        height: 450px;
      }
      
      .phone-mockups{
        display: none;
      }
      
      .alert-badge{
        margin-bottom: 10px;
      }
      
      .swiper-wrapper-container {
        padding: 0 !important;
      }
      
      .vertical-nav{
        display: none !important;
      }
      
      .social-alert-content {
        padding: 20px;
      }
    }

    @media (max-width: 480px) {
      .social-alert-section {
        padding: 40px 0;
      }

      .alert-title {
        font-size: 22px;
        margin-bottom: 15px;
      }

      .alert-description {
        font-size: 12px;
        margin-bottom: 25px;
      }

      .alert-features li {
        font-size: 12px;
        margin-bottom: 15px;
      }

      .social-alert-content {
        padding: 15px;
      }

      .badge-icon {
        width: 20px;
        height: 20px;
      }
    }
  
     
    html,
    body {
      position: relative;
      height: 100%;
    }

    /* body {
      background: #000;
      font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
      font-size: 14px;
      color: #fff;
      margin: 0;
      padding: 0;
    } */

    /* Swiper Container Wrapper */
    .swiper-wrapper-container {
      position: relative;
      width: 100%;
      height: 100%;
      padding: 60px 0;
          background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1419 100%);
    }

    swiper-container {
      width: 100%;
      height: 100%;
    }

    swiper-slide {
      text-align: center;
      font-size: 18px;
      /* background: linear-gradient(180deg, #080d12 0%, #0f1a24 50%, #1a2a38 100%); */
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 60px 0;
    }

    swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    /* Custom Navigation Arrows for Vertical Swiper */
    .vertical-nav {
      position: absolute;
    right: 30px;
    bottom: 315px;
    transform: translateY(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    }

    .vertical-nav-btn {
      width: 50px;
      height: 50px;
      background: rgba(255, 255, 255, 0.9);
      border: 2px solid #47b2ff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .vertical-nav-btn:hover {
      background: rgba(18, 161, 243, 0.1);
      border-color:#47b2ff  ;
      transform: scale(1.1);
      box-shadow: 0 6px 20px #293be4;
    }

    .vertical-nav-btn:active {
      transform: scale(0.95);
    }

    .vertical-nav-btn svg {
      width: 24px;
      height: 24px;
      fill: #47b2ff;
      transition: fill 0.3s ease;
    }

    .vertical-nav-btn:hover svg {
      fill: #47b2ff;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .vertical-nav {
        right: 15px;
      }

      .vertical-nav-btn {
        width: 40px;
        height: 40px;
      }

      .vertical-nav-btn svg {
        width: 20px;
        height: 20px;
      }
    }

   

    .badge-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 1.5px;
      color: #f39c12;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .badge-label::before {
      content: '';
      width: 24px;
      height: 24px;
      background-color: #f39c12;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .slide-title {
      font-size: 48px;
      font-weight: 700;
      color: #2c3e50;
      margin-bottom: 25px;
      line-height: 1.2;
      font-family: 'Montserrat', sans-serif;
    }

    .slide-description {
      font-size: 13px;
      line-height: 1.9;
      color: #5a6c7d;
      margin-bottom: 30px;
      font-weight: 400;
    }

    .feature-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .feature-list li {
      font-size: 13px;
      line-height: 1.8;
      color: #2c3e50;
      margin-bottom: 18px;
      padding-left: 35px;
      position: relative;
      font-weight: 400;
    }

    .feature-list li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 6px;
      width: 20px;
      height: 20px;
      background-color: #2c3e50;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .feature-list li::after {
      content: '✓';
      position: absolute;
      left: 6px;
      top: 4px;
      color: #ffffff;
      font-weight: bold;
      font-size: 12px;
    }

    .feature-list li strong {
      color: #2c3e50;
      font-weight: 600;
    }

    .img-wrapper {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 40px;
      gap: 20px;
    }

    .slide-image {
      max-width: 280px;
      height: auto;
      border-radius: 25px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    }

    /* Responsive for slides */
    @media (max-width: 768px) {
      .slide-title {
        font-size: 32px;
      }

      .slide-description {
        font-size: 12px;
      }

      .feature-list li {
        font-size: 12px;
        padding-left: 30px;
      }

      .content {
        padding: 20px;
      }

      .img-wrapper {
        padding: 20px;
        flex-direction: column;
      }

      .slide-image {
        max-width: 200px;
      }
      
      .pro-title {
        font-size: 32px;
        margin-bottom: 20px;
      }
    }

    @media (max-width: 480px) {
      .slide-title {
        font-size: 28px;
      }

      .slide-description {
        font-size: 11px;
      }

      .feature-list li {
        font-size: 11px;
        padding-left: 25px;
      }

      .content {
        padding: 15px;
      }

      .slide-image {
        max-width: 180px;
      }
      
      .pro-title {
        font-size: 28px;
        letter-spacing: 1px;
      }
    }
  
  
  
  
    /* Products Section Styling */
    .products-section {
         background: linear-gradient(180deg, var(--bs-primary-border-subtle) 0%, var(--bs-primary-bg-subtle) 50%, var(--bs-primary-bg-subtle) 100%);
      padding: 100px 0;
      position: relative;
    }

    .products-title {
      font-size: 48px;
      font-weight: 700;
      letter-spacing: 2px;
      margin-bottom: 20px;
      text-align: center;
      color: #2c3e50;
      text-transform: uppercase;
      font-family: 'Montserrat', sans-serif;
    }

    .products-subtitle {
      font-size: 18px;
      color: #6c757d;
      text-align: center;
      margin-bottom: 60px;
      font-weight: 400;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .products-grid {
      margin-top: 60px;
    }

    .product-card {
      background: #ffffff;
      border-radius: 20px;
      padding: 40px 30px;
      text-align: start;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      height: 100%;
      border: 1px solid rgba(71, 178, 255, 0.1);
      position: relative;
      overflow: hidden;
    }

    .product-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #47b2ff 0%, #7be5f5 100%);
      transform: scaleX(0);
      transition: transform 0.3s ease;
    }

    .product-card:hover::before {
      transform: scaleX(1);
    }

    .product-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
      border-color: rgba(71, 178, 255, 0.3);
    }

    .product-icon {
      width: 80px;
      height: 80px;
      margin: 0 0 25px;
      border-radius: 50%;
      overflow: hidden;
      border: 3px solid #f8f9fa;
      transition: all 0.3s ease;
    }

    .product-icon img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .product-card:hover .product-icon {
      border-color: #47b2ff;
      transform: scale(1.1);
    }

    .product-card:hover .product-icon img {
      transform: scale(1.1);
    }

    .product-name {
      font-size: 24px;
      font-weight: 600;
      color: #2c3e50;
      margin-bottom: 15px;
      font-family: 'Montserrat', sans-serif;
    }

    .product-description {
      font-size: 14px;
      color: #6c757d;
      line-height: 1.6;
      margin-bottom: 25px;
      font-weight: 400;
    }

    .product-features {
      list-style: none;
      padding: 0;
      margin: 0 0 30px 0;
      text-align: left;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .product-features li {
      font-size: 13px;
      color: #495057;
      margin-bottom: 8px;
      padding: 0;
      position: relative;
      font-weight: 400;
      display: flex;
      align-items: flex-start;
      gap: 8px;
      width: 100%;
    }

    .feature-tick {
      color: #47b2ff;
      font-weight: bold;
      font-size: 14px;
      flex-shrink: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 16px;
      height: 16px;
      margin-top: 2px;
    }

   

    .product-action {
      margin-top: auto;
    }

    .product-btn {
      background: linear-gradient(135deg, #47b2ff 0%, #7be5f5 100%);
      color: #ffffff;
      border: none;
      padding: 12px 30px;
      border-radius: 25px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      font-family: 'Montserrat', sans-serif;
      box-shadow: 0 4px 15px rgba(71, 178, 255, 0.3);
    }

    .product-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(71, 178, 255, 0.4);
      background: linear-gradient(135deg, #3a9de8 0%, #6dd4e8 100%);
    }

    /* Responsive */
    @media (max-width: 992px) {
      .products-section {
        padding: 80px 0;
      }

      .products-title {
        font-size: 36px;
      }

      .products-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
      }

      .product-card {
        padding: 30px 25px;
        margin-bottom: 30px;
      }
    }

    @media (max-width: 768px) {
      .products-section {
        padding: 60px 0;
      }

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

      .products-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
      }

      .product-card {
        padding: 25px 20px;
      }

      .product-name {
        font-size: 20px;
      }

      .product-description {
        font-size: 13px;
      }

      .product-features li {
        font-size: 12px;
      }

      .product-btn {
        padding: 10px 25px;
        font-size: 13px;
      }
    }

    @media (max-width: 480px) {
      .products-section {
        padding: 50px 0;
      }

      .products-title {
        font-size: 28px;
        margin-bottom: 15px;
      }

      .products-subtitle {
        font-size: 13px;
        margin-bottom: 25px;
        padding: 0 15px;
      }

      .product-card {
        padding: 20px 15px;
        margin-bottom: 20px;
      }

      .product-name {
        font-size: 18px;
        margin-bottom: 12px;
      }

      .product-description {
        font-size: 12px;
        margin-bottom: 20px;
      }

      .product-features li {
        font-size: 11px;
        margin-bottom: 6px;
      }

      .product-btn {
        padding: 8px 20px;
        font-size: 12px;
        width: 100%;
      }

      .product-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
      }
    }

    /* Footer Section Styling */
    .footer-section {
      background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1419 100%);
      padding: 80px 0 0 0;
      color: #ffffff;
      position: relative;
    }

    .footer-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent 0%, #47b2ff 50%, transparent 100%);
    }

    .footer-brand {
      margin-bottom: 30px;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 20px;
    }

    .footer-logo h3 {
      font-size: 32px;
      font-weight: 700;
      color: #ffffff;
      margin: 0;
      font-family: 'Montserrat', sans-serif;
    }

    .footer-logo span {
      font-size: 12px;
      font-weight: 600;
      color: #47b2ff;
      letter-spacing: 2px;
      text-transform: uppercase;
    }

    .footer-description {
      font-size: 14px;
      line-height: 1.6;
      color: #bdc3c7;
      margin-bottom: 25px;
      font-weight: 400;
    }

    .footer-social {
      display: flex;
      gap: 15px;
    }

    .social-link {
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #bdc3c7;
      text-decoration: none;
      transition: all 0.3s ease;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .social-link:hover {
      background: #47b2ff;
      color: #ffffff;
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(71, 178, 255, 0.4);
    }

    .footer-title {
      font-size: 18px;
      font-weight: 600;
      color: #47b2ff ;
      margin-bottom: 25px;
      font-family: 'Montserrat', sans-serif;
      position: relative;
    }

    .footer-title::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 30px;
      height: 2px;
      background: #47b2ff;
    }

    .footer-menu {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-menu li {
      margin-bottom: 12px;
    }

    .footer-menu a {
      color: #bdc3c7;
      text-decoration: none;
      font-size: 14px;
      font-weight: 400;
      transition: all 0.3s ease;
      position: relative;
    }

    .footer-menu a:hover {
      color: #ffffff;
      padding-left: 10px;
    }

    .footer-menu a::before {
      content: '';
      position: absolute;
      left: -15px;
      top: 50%;
      transform: translateY(-50%);
      width: 0;
      height: 1px;
      background: #47b2ff;
      transition: width 0.3s ease;
    }

    .footer-menu a:hover::before {
      width: 8px;
    }

    .contact-info {
      margin-top: 20px;
    }

    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 15px;
      font-size: 14px;
      color: #bdc3c7;
    }

    .contact-item svg {
      color: #47b2ff;
      margin-top: 2px;
      flex-shrink: 0;
    }

    .contact-item span {
      line-height: 1.5;
    }

    .footer-bottom {
      margin-top: 60px;
      padding: 25px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      
    }

    .copyright {
      font-size: 13px;
      color: #95a5a6;
      margin: 0;
      font-weight: 400;
    }

    .footer-bottom-links {
      display: flex;
      gap: 25px;
      justify-content: flex-end;
    }

    .footer-bottom-links a {
      color: #95a5a6;
      text-decoration: none;
      font-size: 13px;
      font-weight: 400;
      transition: color 0.3s ease;
    }

    .footer-bottom-links a:hover {
      color: #47b2ff;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .footer-section {
        padding: 60px 0 0 0;
      }

      .footer-brand {
        text-align: center;
        margin-bottom: 40px;
      }

      .footer-social {
        justify-content: center;
      }

      .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
      }
    }

    @media (max-width: 768px) {
      .footer-section {
        padding: 50px 0 0 0;
      }

      .footer-logo h3 {
        font-size: 28px;
      }

      .footer-title {
        font-size: 16px;
        text-align: center;
      }

      .footer-menu {
        text-align: center;
      }

      .contact-info {
        text-align: center;
      }

      .contact-item {
        justify-content: center;
        text-align: left;
      }

      .footer-bottom {
        text-align: center;
      }

      .footer-bottom-links {
        flex-direction: column;
        gap: 15px;
      }
    }

    @media (max-width: 480px) {
      .footer-section {
        padding: 40px 0 0 0;
      }

      .footer-logo h3 {
        font-size: 24px;
      }

      .footer-description {
        font-size: 13px;
        padding: 0 15px;
      }

      .footer-title {
        font-size: 14px;
        margin-bottom: 20px;
      }

      .footer-menu a {
        font-size: 13px;
      }

      .contact-item {
        font-size: 13px;
        margin-bottom: 12px;
      }

      .footer-bottom {
        padding: 20px 0;
      }

      .copyright {
        font-size: 12px;
      }

      .footer-bottom-links a {
        font-size: 12px;
      }

      .social-link {
        width: 35px;
        height: 35px;
      }
    }
        flex-direction: column;
        gap: 10px;
        align-items: center;
      }

      .copyright {
        text-align: center;
        margin-bottom: 15px;
      }
    }
  
  
    .img-ana{
    display: block;
    padding: 0 20px 0 0;
}

/* Bootstrap Carousel Styling for img-ana with 2 images per slide */
.img-ana .carousel {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.img-ana .carousel-inner {
    border-radius: 12px;
    padding: 10px;
}

.img-ana .carousel-item {
    padding: 5px;
}

.img-ana .carousel-item .row {
    margin: 0;
}

.img-ana .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.img-ana .carousel-item img:hover {
    transform: scale(1.02);
}

.img-ana .carousel-control-prev,
.img-ana .carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(71, 178, 255, 0.8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.img-ana .carousel-control-prev {
    left: 20px;
}

.img-ana .carousel-control-next {
    right: 20px;
}

.img-ana .carousel-control-prev:hover,
.img-ana .carousel-control-next:hover {
    opacity: 1;
    background: rgba(71, 178, 255, 1);
    transform: translateY(-50%) scale(1.1);
}

.img-ana .carousel-control-prev-icon,
.img-ana .carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

.img-ana .carousel-indicators {
    margin-bottom: 15px;
}

.img-ana .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.img-ana .carousel-indicators button.active {
    width: 30px;
    border-radius: 6px;
    background-color: #47b2ff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .img-ana .carousel-control-prev,
    .img-ana .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .img-ana .carousel-control-prev {
        left: 10px;
    }
    
    .img-ana .carousel-control-next {
        right: 10px;
    }
    
    /* Stack images vertically on mobile */
    .img-ana .carousel-item .col-6 {
        width: 100%;
        margin-bottom: 10px;
    }
}

  


/* AI Calling Phone Interface Styles */


.call-screen {
  background: linear-gradient(180deg, #1e3a5f 0%, #0f1f3a 100%);
}

.call-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  z-index: 5;
  box-shadow: 0 8px 24px rgba(243, 156, 18, 0.4);
}

.call-ring-anim {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 2px solid rgba(243, 156, 18, 0.4);
  border-radius: 50%;
  animation: pulse-ring 2s ease-out infinite;
}

.call-ring-anim:nth-child(2) {
  animation-delay: 0.5s;
}

.call-ring-anim:nth-child(3) {
  animation-delay: 1s;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.call-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-top: 20px;
  margin-bottom: 8px;
}

.call-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
}

.call-status {
  font-size: 0.9rem;
  color: #f39c12;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.call-actions {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.call-action-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.call-action-decline {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.call-action-decline:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 28px rgba(231, 76, 60, 0.5);
}

.call-action-accept {
  background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
}

.call-action-accept:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 28px rgba(39, 174, 96, 0.5);
}

.call-avatar-large {
  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(243, 156, 18, 0.4);
}

.pulse-dot {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

/* Responsive for AI Calling */
@media (max-width: 768px) {
  .call-name {
    font-size: 1.2rem;
  }
  
  .call-subtitle {
    font-size: 0.9rem;
  }
  
  .call-action-btn {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .call-actions {
    gap: 30px;
  }
}


/* ========================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   ======================================== */

/* Tablets and Small Laptops (992px and below) */
@media (max-width: 992px) {
    .hero-banner {
        min-height: 500px;
    }

    h1 {
        font-size: 48px;
    }

    .pro-title {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .social-alert-content {
        padding: 20px;
        margin-bottom: 30px;
    }

    .alert-title {
        font-size: 38px;
    }

    .phone-wrap {
        flex-direction: column;
        align-items: center;
    }

    .phone {
        max-width: 300px !important;
    }
}

/* Mobile Devices (768px and below) */
@media (max-width: 768px) {
    /* Hero Section */
    .hero-banner {
        min-height: 100vh;
        padding: 20px;
    }

    h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .description {
        font-size: 13px;
        max-width: 100%;
        margin-bottom: 25px;
    }

    .cta-group {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .cta-btn {
        width: 100%;
        padding: 12px 25px;
        font-size: 13px;
    }

    /* Navigation */
    .nav-bar {
        padding: 15px 20px !important;
    }

    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links a {
        font-size: 12px;
    }

    /* Products Title */
    .pro-title {
        font-size: 28px !important;
        letter-spacing: 1px;
        padding: 0 15px;
        display: block !important;
    }

    /* Social Alert Section */
    .social-alert-section {
        padding: 40px 0;
    }

    .social-alert-content {
        padding: 20px 15px;
        text-align: center;
    }

    .alert-badge {
        margin-bottom: 15px;
        justify-content: center;
    }

    .badge-icon {
        width: 35px;
        height: 35px;
    }

    .badge-icon svg {
        width: 18px;
        height: 18px;
    }

    .alert-title {
        font-size: 28px !important;
        margin-bottom: 15px;
    }

    .alert-description {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .alert-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .alert-features li {
        font-size: 13px;
    }

    .feature-icon {
        width: 18px;
        height: 18px;
    }

    /* Phone Mockups */
    .phone-mockups {
        display: none !important;
    }

    .phone-wrap {
        display: none !important;
    }

    /* Image Analysis Carousel */
    .img-ana {
        display: block !important;
        padding: 0 15px;
    }

    .img-ana .carousel-item .col-6 {
        width: 100%;
        margin-bottom: 10px;
    }

    .img-ana .carousel-control-prev,
    .img-ana .carousel-control-next {
        width: 35px;
        height: 35px;
    }

    /* Character Section */
    .character-section {
        padding: 40px 20px;
    }

    .character-section h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .character-swiper {
        height: 350px;
    }

    .character-card {
        width: 220px;
        height: 250px;
    }

    /* Swiper Container */
    .swiper-wrapper-container {
        padding: 30px 0 !important;
    }

    /* Vertical Navigation */
    .vertical-nav {
        display: none !important;
    }

    /* App Management Section */
    .app-management-section {
        padding: 60px 0;
    }

    .app-title {
        font-size: 28px;
    }

    .app-description {
        font-size: 14px;
    }

    .app-btn {
        padding: 12px 24px;
        font-size: 13px;
    }

    .app-phone-mockup {
        width: 240px;
        height: 480px;
        transform: rotate(0deg);
    }

    /* Image Modal */
    #imageModal .modal-dialog {
        margin: 10px;
    }

    #imageModal #modalImage {
        max-height: 80vh;
        border-radius: 8px;
    }

    /* WhatsApp Phone */
    .phone {
        max-width: 100% !important;
        height: auto !important;
        min-height: 500px;
    }

    .phone-screen {
        min-height: 450px;
    }

    /* Phone Notch */
    .phone-notch {
        width: 120px;
        height: 25px;
    }
}

/* Small Mobile Devices (576px and below) */
@media (max-width: 576px) {
    /* Hero Section */
    h1 {
        font-size: 28px;
    }

    .eyebrow {
        font-size: 10px;
    }

    .description {
        font-size: 12px;
    }

    .cta-btn {
        font-size: 12px;
        padding: 10px 20px;
    }

    /* Navigation */
    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 11px;
    }

    /* Products Title */
    .pro-title {
        font-size: 24px !important;
    }

    /* Alert Section */
    .alert-title {
        font-size: 24px !important;
    }

    .alert-description {
        font-size: 13px;
    }

    .alert-features li {
        font-size: 12px;
    }

    /* Character Section */
    .character-section h2 {
        font-size: 24px;
    }

    .character-card {
        width: 200px;
        height: 230px;
    }

    .character-name {
        font-size: 16px;
    }

    .character-role {
        font-size: 11px;
    }

    /* Carousel */
    .img-ana .carousel-indicators button {
        width: 8px;
        height: 8px;
    }

    .img-ana .carousel-indicators button.active {
        width: 20px;
    }

    /* App Section */
    .app-title {
        font-size: 24px;
    }

    .app-description {
        font-size: 13px;
    }

    .app-btn {
        font-size: 12px;
        padding: 10px 20px;
    }

    .app-phone-mockup {
        width: 220px;
        height: 440px;
    }

    /* Phone Mockup */
    .phone {
        min-height: 450px;
    }

    .phone-notch {
        width: 100px;
        height: 22px;
        padding: 6px 10px 4px;
    }

    .phone-notch::before {
        width: 6px;
        height: 6px;
    }

    .phone-notch::after {
        width: 45px;
        height: 5px;
    }

    /* WhatsApp Input */
    #whatsappInput {
        font-size: 0.75rem;
        padding: 6px 10px;
    }

    /* Modal */
    #imageModal #modalImage {
        max-height: 70vh;
    }
}

/* Extra Small Devices (480px and below) */
@media (max-width: 480px) {
    .hero-banner {
        min-height: 100vh;
    }

    h1 {
        font-size: 24px;
    }

    .pro-title {
        font-size: 20px !important;
    }

    .alert-title {
        font-size: 20px !important;
    }

    .character-section h2 {
        font-size: 20px;
    }

    .character-card {
        width: 180px;
        height: 210px;
    }

    .app-title {
        font-size: 20px;
    }

    .phone {
        min-height: 400px;
    }
}

/* Landscape Mode for Mobile */
@media (max-height: 600px) and (orientation: landscape) {
    .hero-banner {
        min-height: 100vh;
    }

    h1 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .description {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .cta-group {
        flex-direction: row;
        gap: 10px;
    }

    .cta-btn {
        padding: 8px 20px;
        font-size: 12px;
    }

    .character-section {
        padding: 30px 20px;
    }

    .social-alert-section {
        padding: 30px 0;
    }
}

/* Fix for very small screens */
@media (max-width: 360px) {
    h1 {
        font-size: 22px;
    }

    .pro-title {
        font-size: 18px !important;
    }

    .alert-title {
        font-size: 18px !important;
    }

    .nav-links a {
        font-size: 10px;
    }

    .character-card {
        width: 160px;
        height: 190px;
    }
}




.tab-buttons{
    display:flex;
    gap:10px;
    margin-bottom:20px;
}

.tab-btn{
    padding:10px 25px;
    border:none;
    background:#ddd;
    cursor:pointer;
    border-radius:5px;
    font-size:16px;
    transition:0.3s;
}

.tab-btn.active{
    background:#000;
    color:#fff;
}

/* Product Content Sections */
.product-content-section {
    width: 100%;
    display: block;
}

.product-content-section.hidden {
    display: none !important;
}


/* Product Navigation Buttons */
.product-nav-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.product-nav-btn {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    position: relative;
    overflow: hidden;
}

.product-nav-btn:hover {
    transform: translateY(-2px);
}

.product-nav-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

/* Responsive styles for product buttons */
@media (max-width: 768px) {
    .product-nav-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin: 20px 0;
    }
    
    .product-nav-btn {
        width: 200px;
        padding: 10px 25px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .product-nav-btn {
        width: 180px;
        padding: 8px 20px;
        font-size: 13px;
    }
}

/* Tab Content System */
.tab-content-container {
    width: 100%;
}

.tab-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tab-content.active-tab {
    display: block;
    opacity: 1;
}

/* Projects Tab Styles */
.projects-container {
    padding: 60px 0;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1419 100%);
    min-height: 80vh;
}

.projects-section {
    text-align: center;
    color: white;
}

.projects-title {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.projects-description {
    font-size: 18px;
    color: #b8c5d6;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.project-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.3);
}

.project-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-info {
    padding: 25px;
    text-align: left;
}

.project-info h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.project-info p {
    font-size: 14px;
    color: #b8c5d6;
    line-height: 1.6;
    margin-bottom: 20px;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

.projects-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.projects-btn-cta, .projects-btn-contact {
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
}

.projects-btn-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.projects-btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.projects-btn-contact {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.projects-btn-contact:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

/* Responsive Design for Projects */
@media (max-width: 768px) {
    .projects-container {
        padding: 40px 0;
    }
    
    .projects-title {
        font-size: 32px;
    }
    
    .projects-description {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .project-card {
        margin: 0 20px;
    }
    
    .projects-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .projects-btn-cta, .projects-btn-contact {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .projects-title {
        font-size: 28px;
    }
    
    .projects-description {
        font-size: 14px;
    }
    
    .project-info h4 {
        font-size: 18px;
    }
    
    .project-info p {
        font-size: 13px;
    }
}

.nav-bar{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.img-logo img{
  width: 100px;
}
.footer-logo img{
  width: 130px;
}

/* Additional Mobile Responsive Styles */

/* Ensure images are responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Mobile-first container adjustments */
@media (max-width: 576px) {
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Adjust phone mockup styles for very small screens */
    .phone-wrap {
        flex-direction: column !important;
        gap: 15px !important;
    }
    
    .phone {
        width: 90% !important;
        max-width: 280px !important;
        height: 480px !important;
    }
    
    /* Adjust swiper for small screens */
    .character-swiper {
        padding: 20px 0;
    }
    
    /* Improve text readability on small screens */
    .alert-features {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }
    
    .alert-features li {
        font-size: 11px !important;
        line-height: 1.6;
    }
}

/* Landscape orientation adjustments for mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-banner {
        min-height: 400px;
    }
    
    .content {
        margin-top: 60px;
    }
    
    h1 {
        font-size: 36px;
    }
    
    .character-section {
        padding: 40px 20px;
    }
}

/* Touch-friendly button sizes */
@media (max-width: 768px) {
    .cta-btn, .product-btn, .nav-btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .social-link {
        min-height: 44px;
        min-width: 44px;
    }
}

/* Improve scrolling performance on mobile */
* {
    -webkit-overflow-scrolling: touch;
}

/* Prevent horizontal scroll */
body {
    overflow-x: hidden;
}

/* Mobile navigation improvements */
@media (max-width: 768px) {
    .nav-links a {
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        text-align: center;
    }
    
    .nav-links a:last-child {
        border-bottom: none;
    }
}
/* Mobile Menu Animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

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

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

/* Smooth transitions for mobile menu */
.nav-links {
    transition: all 0.3s ease-in-out;
}

.mobile-menu-toggle span {
    transition: all 0.3s ease-in-out;
}

/* Fix for mobile swiper issues */
@media (max-width: 768px) {
    .swiper-container {
        overflow: hidden;
    }
    
    .swiper-slide {
        flex-shrink: 0;
    }
}

/* Improve touch targets */
@media (max-width: 768px) {
    .nav-links a {
        padding: 15px 20px;
        display: block;
    }
    
    .swiper-pagination-bullet {
        width: 12px !important;
        height: 12px !important;
        margin: 0 6px !important;
    }
}

/* Better mobile typography */
@media (max-width: 480px) {
    body {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .eyebrow {
        font-size: 10px;
        letter-spacing: 1px;
    }
}

/* Mobile-specific animations */
@media (max-width: 768px) {
    .character-card:hover {
        transform: translateY(-5px) scale(1.02);
    }
    
    .product-card:hover {
        transform: translateY(-5px);
    }
}

/* Ensure proper spacing on very small screens */
@media (max-width: 320px) {
    .container-fluid {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .content {
        padding: 0 10px;
    }
    
    h1 {
        font-size: 28px;
    }
    
    .cta-btn {
        width: 160px;
        padding: 8px 15px;
        font-size: 12px;
    }
}