
    :root {
      --primary: #7b61ff;
      --primary-light: #7b61ff;
      --secondary: #5affb2;
      --dark: #0d0d0d;
      --darker: #000;
      --card-bg: rgba(18, 18, 18, 0.9);
      --text-light: #fff;
      --text-muted: #ccc;
      --icon-green: #5affb2;
      --icon-blue: #00c3ff;
      --icon-yellow: #5affb2;
      --icon-pink: #00c3ff;
      --icon-purple: #7b61ff;
      --icon-cyan: #00c3ff;
      --bg: #000;
      --text: #fff;
      --section1: #0d0d0d;
      --section2: linear-gradient(145deg, #0f0f0f, #1a1a1a);
      --section3: linear-gradient(to right, #0c0c0c, #191919);
      --section4: #0e0e0e;
      --card: #121212;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', system-ui, sans-serif;
      background-color: var(--bg);
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
      background-image: 
        radial-gradient(circle at 10% 20%, rgba(123, 97, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(90, 255, 178, 0.08) 0%, transparent 40%);
      background-attachment: fixed;
    }

    section {
      padding: 100px 20px;
      position: relative;
      overflow: hidden;
    }

    .container {
      max-width: 1200px;
      margin: auto;
      position: relative;
      z-index: 2;
    }
    #why-deepvox {
      padding-top: 150px;
    }
    /* Main Title Area */
    .main-title-container {
      text-align: center;
      margin-bottom: 80px;
      position: relative;
    }

    .section-title {
      font-size: 52px;
      font-weight: 800;
      background: linear-gradient(90deg, var(--primary-light), var(--secondary));
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      margin-bottom: 15px;
      position: relative;
      display: inline-block;
      letter-spacing: -0.5px;
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s ease;
    }

    .section-subtitle {
      font-size: 20px;
      color: var(--text-muted);
      margin-bottom: 20px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      opacity: 0;
      transform: translateY(30px);
    }

    /* Floating Elements Background */
    .floating-elements {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      pointer-events: none;
      z-index: 0;
    }

    .floating-element {
      position: absolute;
      opacity: 0.1;
      border-radius: 50%;
      filter: blur(6px);
    }

    /* Mission & Vision Section */
    .mv-section {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: center;
      position: relative;
      margin-bottom: 100px;
    }

    .parallax-bg {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      z-index: -1;
    }

    .mv-box {
      flex: 1;
      min-width: 340px;
      max-width: 500px;
      height: 380px;
      background: var(--card);
      border-radius: 20px;
      backdrop-filter: blur(10px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
      padding: 40px;
      position: relative;
      overflow: hidden;
      transition: transform 0.5s ease, box-shadow 0.5s ease;
      opacity: 0;
      transform: translateY(50px);
    }

    .mv-box:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 50px rgba(123, 97, 255, 0.4);
    }

    .mv-box::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(45deg, rgba(123, 97, 255, 0.1), transparent);
      z-index: -1;
    }

    .mv-box.mission::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 4px;
      height: 0;
      background: linear-gradient(to top, var(--icon-green), var(--primary));
      transition: height 0.8s ease;
    }

    .mv-box.vision::after {
      content: "";
      position: absolute;
      bottom: 0;
      right: 0;
      width: 4px;
      height: 0;
      background: linear-gradient(to top, var(--icon-blue), var(--primary));
      transition: height 0.8s ease;
    }

    .mv-box.active::after {
      height: 100%;
    }

    .mv-title {
      display: flex;
      align-items: center;
      font-size: 30px;
      margin-bottom: 30px;
      position: relative;
    }

    .mv-icon {
      font-size: 40px;
      margin-right: 15px;
    }

    .mv-box.mission .mv-icon {
      color: var(--icon-green);
    }

    .mv-box.vision .mv-icon {
      color: var(--icon-blue);
    }

    .mv-box h3 {
      background: linear-gradient(90deg, var(--text), #ccc);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      font-weight: 700;
      font-size: 30px;
      letter-spacing: 0.5px;
    }

    .mv-content {
      font-size: 18px;
      line-height: 1.7;
      color: var(--text-muted);
      position: relative;
      z-index: 2;
    }

    .mv-shape {
      position: absolute;
      opacity: 0.1;
      z-index: 0;
    }

    /* Core Values Section */
    .core-values-section {
      padding-top: 50px;
      position: relative;
    }

    .core-title-container {
      text-align: center;
      position: relative;
      margin-bottom: 70px;
    }

    .core-title {
      font-size: 38px;
      font-weight: 700;
      background: linear-gradient(90deg, var(--icon-cyan), var(--primary-light));
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      margin-bottom: 10px;
      position: relative;
      display: inline-block;
      opacity: 0;
      transform: translateY(30px);
    }

    .core-values-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      position: relative;
      z-index: 5;
    }

    .value-card {
      background: var(--card);
      border-radius: 16px;
      backdrop-filter: blur(8px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      padding: 30px;
      position: relative;
      overflow: hidden;
      height: 100%;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      display: flex;
      flex-direction: column;
      opacity: 0;
      transform: translateY(40px);
    }

    .value-card:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 15px 40px rgba(123, 97, 255, 0.3);
    }

    .value-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(to right, var(--primary), transparent);
      transform: translateX(-100%);
      transition: transform 0.5s ease;
    }

    .value-card:hover::before {
      transform: translateX(0);
    }

    .value-icon-wrapper {
      width: 80px;
      height: 80px;
      border-radius: 20px;
      background: rgba(18, 18, 18, 0.7);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      position: relative;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .value-card:hover .value-icon-wrapper {
      transform: rotate(5deg) scale(1.1);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }

    .value-icon {
      font-size: 36px;
      position: relative;
      z-index: 2;
      transition: transform 0.3s ease;
    }

    .value-card:hover .value-icon {
      transform: scale(1.2);
    }

    .value-title {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 15px;
      position: relative;
      display: inline-block;
    }

    .value-description {
      color: var(--text-muted);
      font-size: 16px;
      line-height: 1.6;
      flex-grow: 1;
    }

    /* Icon glow effect */
    .icon-glow {
      position: absolute;
      width: 100%;
      height: 100%;
      border-radius: 20px;
      opacity: 0.5;
      filter: blur(15px);
      z-index: 1;
      transform: scale(0.7);
      transition: transform 0.5s ease, opacity 0.5s ease;
    }

    .value-card:hover .icon-glow {
      transform: scale(0.9);
      opacity: 0.7;
    }

    .glow-green { background-color: rgba(90, 255, 178, 0.2); }
    .glow-blue { background-color: rgba(0, 195, 255, 0.2); }
    .glow-yellow { background-color: rgba(90, 255, 178, 0.2); }
    .glow-pink { background-color: rgba(0, 195, 255, 0.2); }
    .glow-cyan { background-color: rgba(0, 195, 255, 0.2); }
    .glow-purple { background-color: rgba(123, 97, 255, 0.2); }
    .glow-orange { background-color: rgba(255, 150, 50, 0.2); }
    .glow-red { background-color: rgba(255, 80, 80, 0.2); }

    /* Product Portfolio Section */
    .portfolio-section {
      padding-top: 120px;
      position: relative;
      margin-top: 50px;
      border-top: 1px solid rgba(123, 97, 255, 0.1);
    }

    .portfolio-title-container {
      text-align: center;
      position: relative;
      margin-bottom: 50px;
    }

    .portfolio-title {
      font-size: 42px;
      font-weight: 700;
      background: linear-gradient(90deg, var(--secondary), var(--icon-blue));
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      margin-bottom: 20px;
      position: relative;
      display: inline-block;
      opacity: 0;
      transform: translateY(30px);
    }

    .portfolio-subtitle {
      font-size: 18px;
      color: var(--text-muted);
      max-width: 800px;
      margin: 0 auto 60px;
      opacity: 0;
      transform: translateY(30px);
    }

    .portfolio-category {
      margin-bottom: 100px;
      position: relative;
    }

    .category-header {
      display: flex;
      align-items: center;
      margin-bottom: 40px;
      opacity: 0;
      transform: translateX(-30px);
    }

    .category-icon {
      font-size: 32px;
      margin-right: 20px;
    }

    .category-title {
      font-size: 32px;
      font-weight: 700;
      background: linear-gradient(90deg, var(--text), #ccc);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
    }
    
    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
    }

    .product-card {
      background: var(--card);
      border-radius: 16px;
      backdrop-filter: blur(8px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      padding: 30px;
      position: relative;
      overflow: hidden;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      opacity: 0;
      transform: translateY(40px);
    }

    .product-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 40px rgba(123, 97, 255, 0.3);
    }

    .product-card::before {
      content: "";
      position: absolute;
      bottom: 0;
      right: 0;
      width: 100px;
      height: 100px;
      background: radial-gradient(circle, rgba(123, 97, 255, 0.15), transparent 70%);
      border-radius: 50%;
      z-index: 0;
    }

    .product-icon-wrapper {
      width: 70px;
      height: 70px;
      border-radius: 16px;
      background: rgba(18, 18, 18, 0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      position: relative;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .product-card:hover .product-icon-wrapper {
      transform: rotate(5deg) scale(1.1);
    }

    .product-title {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 15px;
      position: relative;
      display: inline-block;
    }

    .product-subtitle {
      font-size: 18px;
      font-weight: 600;
      color: var(--primary-light);
      margin-bottom: 10px;
    }

    .product-description {
      color: var(--text-muted);
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .product-features {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 15px;
    }

    .product-feature {
      background: rgba(123, 97, 255, 0.1);
      padding: 5px 12px;
      border-radius: 20px;
      font-size: 14px;
      color: var(--text-muted);
    }
    
     /* #footer_section {
        width: 100vw;
        position: relative;
        left: 0;
        overflow-x: visible !important;
      }
      
      #footer_section .container {
        max-width: 100%;
        padding-left: 30px;
        padding-right: 30px;
        box-sizing: border-box;
        margin-left: 0 !important;
        padding-left:0  !important;
  
      } */
      
  /* #footer_section .newsletter-input {
    display: flex;
    align-items: center;
    gap: 10px;           
    max-width: 400px;     
    margin-left: auto;   
    margin-right: auto;
  }
  

  #footer_section .newsletter-input .form-control {
    flex: 1 1 auto;      
    width: auto;          
  }
  
  
  #footer_section .newsletter-input button {
    flex: 0 0 auto;
  } */
  .footer-section {
    width: 100%;
    padding: 60px 0;
    background: #0b0f19;
    color: #fff;
    overflow-x: hidden;
  }
  
  .footer-section .container {
    max-width: 100%;
    padding: 0 40px;
    margin: 0 auto;
  }
  .footer-section .footer-info-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .footer-section .newsletter-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-section .newsletter-input {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
  }

  .footer-section .newsletter-input input.form-control {
    width: 80%; /* control the width of the input field */
    max-width: 250px;
    height: 40px;
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #ddd;
  }
  
  .footer-section .newsletter-input button#submitbtn {
    height: 40px;
    padding: 0 12px;
    background-color: #1e90ff;
    color: white;
    border-radius: 5px;
    cursor: pointer;
  }
  
  
  .footer-section .newsletter-text {
    margin-top: 15px;
    margin-bottom: 10px; 
    font-size: 14px;
    color: #fff;
    text-align: center;
  }
  
  
.footer-section .links_col,
.footer-section .contact_col {
  margin-left: 20px; 
  padding-left: 20px; 
}


.footer-section .navbar-nav li, 
.footer-section .list-unstyled li {
  padding-left: 10px; 
}

.footer-section .about_col {
    margin-left: 20px; 
    padding-left: 20px; 
  }
  
  
  .footer-section .icons {
    padding-left: 10px; 
  }
  


  /* scoped just to your header logo */
.header-logo {
    display: block !important;      
    visibility: visible !important; 
    max-width: 180px;               
    width: auto;
    height: auto;
    margin: 0;                      
    padding: 0;                    
    object-fit: contain;            
    z-index: 1000;                  
  }
  
  
  .navbar-brand figure {
    overflow: visible !important;
  }
  
  
  
  
    /* Product specific colors */
    .icon-orange { color: #ff9632; }
    .icon-red { color: #ff5050; }
    .icon-teal { color: #00e2c8; }

    /* Responsive adjustments */
    @media (max-width: 1100px) {
      .core-values-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .portfolio-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      .section-title {
        font-size: 38px;
      }
      
      .section-subtitle {
        font-size: 18px;
      }
      
      .core-title {
        font-size: 32px;
      }
      
      .portfolio-title {
        font-size: 36px;
      }
      
      .category-title {
        font-size: 28px;
      }
      
      .mv-box {
        min-width: 300px;
        padding: 30px;
        height: auto;
      }
      
      .mv-title {
        font-size: 26px;
      }
      
      .mv-icon {
        font-size: 32px;
      }

      .portfolio-title {
        font-size: 1.8rem;
      }
      
      .portfolio-subtitle {
        font-size: 0.9rem;
        padding: 0 15px;
      }
    }

    @media (max-width: 640px) {
      .core-values-grid {
        grid-template-columns: 1fr;
      }
      
      .portfolio-grid {
        grid-template-columns: 1fr;
      }
      
      .mv-content {
        font-size: 16px;
      }
      
      .category-header {
        flex-direction: column;
        align-items: flex-start;
      }
      
      .category-icon {
        margin-bottom: 10px;
      }
    }
    @media (max-width: 767px) {
        .container, #footer_section {
          margin-left: 0;
          padding-left: 0;
          overflow-x: visible;
        }
      }

      @media (max-width: 576px) {
        .portfolio-title {
          font-size: 1.6rem;
        }
        
        .portfolio-subtitle {
          font-size: 0.85rem;
          line-height: 1.5;
        }
        
        .portfolio-title-container {
          margin-bottom: 25px;
        }
      }
      
      
      @media (max-width: 767px) {
        .footer-section .container {
          margin-left: 0;
          padding-left: 15px;
          text-align: left;
        }
        
        .footer-section .about_col,
        .footer-section .links_col,
        .footer-section .contact_col {
          margin-left: 0;
          padding-left: 0;
        }
        
        .footer-section .navbar-nav li, 
        .footer-section .list-unstyled li {
          padding-left: 0;
        }
        
        .footer-section .icons {
          padding-left: 0;
          margin-right: 10px;
        }
      }
      
      
      
      
    /* Pulse animation for icons */
    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.1); }
      100% { transform: scale(1); }
    }
   
    /* Glow animation for titles */
    @keyframes glow {
        0% { text-shadow: 0 0 5px rgba(123, 97, 255, 0.3); }
        50% { text-shadow: 0 0 20px rgba(123, 97, 255, 0.7); }
        100% { text-shadow: 0 0 5px rgba(123, 97, 255, 0.3); }
      }
  
      /* Float animation for elements */
      @keyframes float {
        0% { transform: translateY(0); }
        50% { transform: translateY(-15px); }
        100% { transform: translateY(0); }
      }
  
      /* Rotating borders */
      @keyframes rotate-border {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
      }
  
      .icon-green { color: var(--icon-green); }
      .icon-blue { color: var(--icon-blue); }
      .icon-yellow { color: var(--icon-yellow); }
      .icon-pink { color: var(--icon-pink); }
      .icon-purple { color: var(--icon-purple); }
      .icon-cyan { color: var(--icon-cyan); }
    