  /*--------------------------------------------------------------
  # Global Footer
  --------------------------------------------------------------*/


  .footer .footer-about .logo img {
    width: 250px;
  }

  /* Intro Section */
  .intro-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: rgb(0, 0, 0);
  }

  /* Blurred Background */
  .intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/Brand\ regonition.jpg') no-repeat center center/cover;
    background-size: cover;
    background-position: center;
    filter: blur(10px) brightness(0.6);
    transform: scale(1.1);
    z-index: -1;
    /* Make sure it's behind content */
  }

  /* Content Styling */
  .intro-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    max-width: 1200px;
    width: 100%;
  }



  /* Logo Animation Styling */
  /* General Reset */
  /* Animation Container */
  .animation-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }

  /* Animated Circles */
  .circle {
    position: absolute;
    border-radius: 50%;
    animation: float 6s infinite ease-in-out;
    opacity: 0.7;
    mix-blend-mode: screen;
  }

  /* Circle Variations */
  /* Responsive Circle Sizes and Positions */
  .circle1 {
    width: 15vw;
    height: 15vw;
    background: linear-gradient(135deg, #FF6B6B, #FFD93D);
    top: 10vh;
    left: 40vw;
  }

  .circle2 {
    width: 20vw;
    height: 20vw;
    background: linear-gradient(135deg, #32a852, #00C9FF);
    top: 50vh;
    left: 60vw;
  }

  .circle3 {
    width: 12vw;
    height: 12vw;
    background: linear-gradient(135deg, #FDC830, #F37335);
    top: 20vh;
    left: 20vw;
  }

  .circle4 {
    width: 8vw;
    height: 8vw;
    background: linear-gradient(135deg, #C06C84, #6C5B7B);
    top: 70vh;
    left: 10vw;
  }

  .circle5 {
    width: 13vw;
    height: 13vw;
    background: linear-gradient(135deg, #355C7D, #6C5B7B);
    top: 5vh;
    left: 80vw;
  }

  .circle6 {
    width: 18vw;
    height: 18vw;
    background: linear-gradient(135deg, #F8B500, #E64A19);
    top: 60vh;
    left: 50vw;
  }

  .circle7 {
    width: 16vw;
    height: 16vw;
    background: linear-gradient(135deg, #00C9FF, #92FE9D);
    top: 40vh;
    left: 30vw;
  }

  /* Keyframes for Floating Animation */
  @keyframes float {
    0% {
      transform: translateY(0px);
    }

    50% {
      transform: translateY(-20px);
    }

    100% {
      transform: translateY(0px);
    }
  }

  /* Content Reveal */
  .logo-content {
    position: absolute;
    top: 40%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    opacity: 0;
    animation: fadeIn 3s forwards ease-in-out;
    width: 100%;
  }

  /* Text Area */
  .intro-text {
    padding: 20px 20px;
    background-color: #0a0a0ab7;
    max-width: 2000px;
  }

  .intro-text h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: 1.5px;
    color: orange;
  }

  .intro-text h1 span {
    font-weight: 700;
    font-size: 3.5rem;
    color: white;
  }

  .intro-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    color: #ccc;
  }

  .cta-button {
    padding: 10px 20px;
    font-size: 1.1rem;
    background-color: #00bcd4;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }

  .cta-button:hover {
    background-color: #0097a7;
  }

  /* Content Reveal Animation */
  @keyframes fadeIn {
    0% {
      opacity: 0;
      transform: translate(-50%, -60%);
    }

    100% {
      opacity: 1;
      transform: translate(-50%, -50%);
    }
  }

  @media (max-width: 999px) {
    .logo-content .intro-text .cta-button {
      font-size: 22px !important;
    }

    .logo-content {
      top: 22%;
      width: 90%;
    }

  }

  /* Logo Animation Styling */
  /* Responsive Styling */


  .logo-section {
    max-width: 1300px;
    margin: 0 auto;
    padding: 80px 20px;
  }

  .section-header {
    /* text-align: center; */
    margin-bottom: 60px;
    position: relative;
  }

  .section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
  }

  .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--accent-color), transparent);
  }

  .section-header p {
    color: var(--secondary-color);
    /* max-width: 800px; */
    margin: 20px 0;
    font-size: 1.1rem;
  }

  .logo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .logo-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
  }

  .logo-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(120, 180, 220, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

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

  .logo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
  }

  .logo-type {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }

  .logo-type::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50%;
    height: 3px;
    background: var(--accent-color);
  }

  .logo-description {
    color: var(--secondary-color);
    margin-bottom: 20px;
  }

  @media screen and (max-width: 768px) {
    .logo-grid {
      grid-template-columns: 1fr;
    }

    .section-header h2 {
      font-size: 2rem;
    }

    .logo-section .section-header h2 {
      font-size: 2rem;
    }

    .logo-section .section-header p {
      font-size: 20px !important;
    }

    .logo-description {}

    .logo-section {
      width: 90% !important;
      padding: 20px 15px;
      margin-bottom: 20px !important;
    }

  }


  .logo-section:nth-of-type(1) {
    background: #f0f9ff;
  }

  .logo-section:nth-of-type(2) {
    background: #f1f7f6;
  }

  .logo-section:nth-of-type(3) {
    background: #f9feff;
  }

  .logo-section:nth-of-type(4) {
    background: #e5eeff;
  }

  .logo-section:nth-of-type(5) {
    background: #c3d8f0;
  }

  .logo-section:nth-of-type(6) {
    background: #c6dfef;
  }

  .logo-section {
    border-radius: 12px;
    padding: 80px 20px;
    margin-bottom: 40px;
  }

  .logo-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
    background-color: rgba(240, 240, 255, 0.1);
  }

  .logo-card:nth-of-type(1) {
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
  }

  .logo-card:nth-of-type(2) {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  }

  .logo-card:nth-of-type(3) {
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.2);
  }

  .logo-card:nth-of-type(4) {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  .section-header h2 {
    font-weight: 700;
  }

  .logo-type {
    font-weight: 600;
    font-size: 1.8rem;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }

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

  .logo-card {
    animation: fadeInUp 0.6s ease-out;
  }


  @media screen and (max-width: 768px) {
    .logo-grid {
      grid-template-columns: 1fr;
    }

    .section-header h2 {
      font-size: 1rem;
    }
  }

  .section-header::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 10px;
  }

  .logo-grid {
    background-color: #f6ecec;
    padding: 30px;
    border-radius: 15px;
  }

  .logo-card {
    background: linear-gradient(to top left, #8e8e8e1a, #34a2fc44);
    color: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
  }

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

  .logo-type {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    transition: color 0.3s ease, background-color 0.3s ease;
  }

  .logo-type {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
  }

  .logo-card:hover .logo-type {
    animation: slideInFromLeft 0.5s ease-out;
  }

  @keyframes slideInFromLeft {
    from {
      transform: translateX(-100%);
      opacity: 0;
    }

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

  .logo-grid .logo-card {
    border: 2px solid transparent;
    padding: 40px;
    transition: border-color 0.3s ease;
  }

  .logo-grid .logo-card:hover {
    border-color: var(--primary-color);
  }

  .logo-card:nth-child(odd) {
    border-radius: 15px;
    transform: rotate(2deg);
  }

  .logo-card:nth-child(even) {
    border-radius: 10px;
    transform: rotate(-2deg);
  }

  .logo-card:hover {
    transform: rotate(0deg) scale(1.05);
  }



  /* Website Design Process  */
  /* Section Container */
  .process-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 15px;
    overflow: hidden;
    background-color: #0a0a0a;
    z-index: 0;
    box-shadow: 0px 4px 20px rgb(255, 255, 255);
  }

  /* Blurred Background */
  .process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/websiteimg/webbg.avif') no-repeat center center/cover;
    background-size: cover;
    background-position: center;
    filter: blur(10px) brightness(0.6);
    transform: scale(1.1);
    z-index: -1;
    /* Make sure it's behind content */
  }

  .process-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    padding: 1rem;
  }

  .process-text {
    flex: 1;
    padding: 1rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .process-text h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    /* Scales font size dynamically */
    margin-bottom: 1rem;
    color: #ffffff;
  }

  .process-text .brand-name {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    /* Dynamically scale for responsiveness */
    color: rgb(255, 123, 0);
  }

  .process-text p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 1.5rem;
    color: #ffffff;
    /* Improved contrast for readability */
  }

  /* Interactive Steps */
  /* The Animated Browser */
  .animated-browser {
    width: 400px;
    height: 300px;
    transform-style: preserve-3d;
    animation: rotateBrowser 6s infinite linear;
    position: relative;
  }

  /* Browser Frame */
  .browser-frame {
    position: relative;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transform-style: preserve-3d;
  }

  /* Top Bar with Browser Controls */
  .browser-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 30px;
    background-color: #f1f1f1;
    padding: 0 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }

  /* Browser Control Buttons (Red, Yellow, Green) */
  .browser-buttons {
    display: flex;
    gap: 8px;
  }

  .button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: gray;
  }

  .button.red {
    background-color: #ff5f57;
  }

  .button.yellow {
    background-color: #ffbd2e;
  }

  .button.green {
    background-color: #27c93f;
  }

  /* Browser Screen */
  .browser-screen {
    width: 100%;
    height: calc(100% - 30px);
    background: #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* Inside the browser window - Content */
  .website-content {
    color: #333;
    font-size: 18px;
    text-align: center;
    animation: fadeInContent 3s ease-in-out;
  }

  /* Keyframes for Rotation Animation */
  @keyframes rotateBrowser {
    0% {
      transform: rotateY(0deg);
    }

    50% {
      transform: rotateY(180deg);
    }

    100% {
      transform: rotateY(360deg);
    }
  }

  /* Keyframes for Content Fade-In */
  @keyframes fadeInContent {
    0% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }

  /* Responsive Adjustments */
  @media (max-width: 999px) {
    .process-content {
      align-items: center;
      /* Center-align content */
      text-align: center;
      /* Center text for smaller screens */
    }

    .web-main {
      position: absolute;
      top: 0%;
      /* Adjusts the content vertically */
      left: -0%;
      transform: translate(-50%, -50%);
      z-index: -1;
      width: 100vw;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0.5 !important;
      /* Centers the content */
    }

    .animated-browser {
      z-index: -1;
      opacity: 0.5;
      position: absolute;
      margin-top: 0%;
      width: 250px;
      height: 250px;
    }
.browser-title{
  font-size: 10px;
}
    .process-text {
      text-align: center;
      flex-direction: column;
      margin-top: 5%;
    }

    .process-text h2 {
      font-size: 35px;
    }

    .process-text p {
      padding: 10px;
      font-size: 20px;
    }
  }

  /* Animations */
  @keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
      transform: translateY(0);
    }

    40% {
      transform: translateY(-10px);
    }

    60% {
      transform: translateY(-5px);
    }
  }

  @keyframes pulse {
    0% {
      transform: scale(1);
    }

    50% {
      transform: scale(1.1);
    }

    100% {
      transform: scale(1);
    }
  }

  /* Website Design Process End */




  /* E-commerce Website Design Process Start */
  /* General Section Styles */
  .ecommerce-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 15px;
    overflow: hidden;
    z-index: 0;
  }

  .ecommerce-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/websiteimg/e-com\ info.avif');
    background-size: cover;
    background-position: initial;
    filter: blur(10px) brightness(0.6);
    transform: scale(1.1);
    z-index: -1;
  }

  .ecommerce-content {
    display: flex;
    align-items: center;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    padding: 20px;
  }

  /* Title Text Animation */
  .ecommerce-text p {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 1px;
    color: orange;
    margin-bottom: 10px;
  }

  .ecommerce-text h2 {
    font-size: 36px;
    font-weight: bold;
    color: #ffffff;
    margin-top: 20px;
  }

  .ecommerce-text .brand-name {
    color: orange;
    /* Highlight brand name */
    font-style: italic;
    font-size: 60px;
  }

  /* Storefront Design */
  .ecommerce-visual {
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 50px;
  }

  .animated-storefront {
    position: relative;
    width: 500px;
    height: 400px;
    background-color: #fff;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    overflow: hidden;
  }

  .storefront-frame {
    font-style: italic;
    position: relative;
    height: 100%;
  }

  .storefront-top-bar {
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    background-color: #333;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
  }

  .storefront-buttons span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #dcdcdc;
    margin-right: 5px;
  }

  .storefront-title {
    /* text-transform: uppercase; */
    letter-spacing: 1px;
  }

  /* Storefront Screen Styles */
  .storefront-screen {
    background-color: #e9e9e9;
    padding: 20px;
    height: calc(100% - 40px);
    /* Adjusting height to fit screen */
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }

  .ecommerce-content img {
    width: 100%;
    max-width: 800px;
    height: auto;
  }


  /* Responsive Design */
  @media screen and (max-width: 768px) {
    .ecommerce-text p {
      font-size: 20px;
    }

    .ecommerce-text h2 {
      font-size: 28px;
    }

    .ecommerce-text .brand-name {
      font-size: 40px;
    }

    .ecommerce-content {
      padding: 10px;
    }

    .ecommerce-visual {
      margin-top: 20px;
    }

    .animated-storefront {
      width: 100%;
      height: auto;
    }
  }

  /* E-commerce Website Design Process End */





  /* ----------------------------------------- */
  /* E-mail Page Start */
  /* ----------------------------------------- */

  .emailhero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 15px;
    overflow: hidden;
    z-index: 0;
    padding: 2rem;
    background: #0a0a1f;
  }

  .emailhero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/email/email-background.jpg');
    /* Check if path is correct */
    background-size: cover;
    background-position: center;
    filter: blur(7px) brightness(0.3);
    transform: scale(1.1);
    z-index: -1;
  }

  .emailhero-wrapper {
    width: min(1200px, 100%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 1;
  }

  .emailhero-content {
    flex: 1;
  }

  .emailhero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: rgb(255, 123, 0);
    ;
    line-height: 1.2;
    text-shadow: 0 0 20px rgba(66, 108, 245, 0.3);
  }

  .emailhero-content p {
    font-size: 1.25rem;
    color: #5893e0;
    margin-bottom: 2rem;
    line-height: 1.6;
  }

  .cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #426cf5 0%, #3b5fe3 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
  }

  .emailanimation-container {
    flex: 1;
    position: relative;
    height: 500px;
    perspective: 1000px;
  }

  .hologram {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: rotate 20s infinite linear;
  }

  .particle {
    position: absolute;
    background: #426cf5;
    border-radius: 50%;
    filter: blur(1px);
  }

  .connection-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #426cf5, transparent);
    height: 1px;
    transform-origin: left center;
  }

  .email-cube {
    position: absolute;
    width: 100px;
    height: 60px;
    background: rgba(66, 108, 245, 0.2);
    border: 2px solid #426cf5;
    transform-style: preserve-3d;
    animation: float 4s infinite ease-in-out;
  }

  @keyframes rotate {
    0% {
      transform: rotateY(0deg);
    }

    100% {
      transform: rotateY(360deg);
    }
  }

  @keyframes float {

    0%,
    100% {
      transform: translateY(0) rotateX(0);
    }

    50% {
      transform: translateY(-20px) rotateX(10deg);
    }
  }

  @media (max-width: 999px) {
    .emailhero-wrapper {
      flex-direction: column;
      text-align: center;
      gap: 2rem;
    }

    .content h1 {
      font-size: 2.5rem;
    }

    .emailanimation-container {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0.3;
    }

    .hologram {
      transform: scale(1.5);
    }

    .email-cube {
      transform: scale(0.8);
    }
  }

  /* ----------------------------------------- */
  /* E-mail Page ENd */
  /* ----------------------------------------- */







  /* Live Support setup Page Start */
  .live-support-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 15px;
    overflow: hidden;
    z-index: 0;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.4);
  }

  .live-support-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/livesetup/livebg.avif');
    /* Check if path is correct */
    background-size: cover;
    background-position: center;
    filter: blur(5px) brightness(0.4);
    transform: scale(1.1);
    z-index: -1;
  }

  .live-support-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }

  .live-support-text {
    width: 48%;
  }

  .live-support-text h2 {
    font-size: 48px;
    font-weight: 600;
    color: rgb(255, 255, 255);
    letter-spacing: 2px;
    animation: textGlow 2s ease-in-out infinite alternate;
  }

  .live-support-text p {
    font-size: 18px;
    color: #dcdcdc;
    margin-bottom: 30px;
    max-width: 450px;
  }

  .live-support-visual {
    width: 48%;
    position: relative;
  }

  .animated-chat-box {
    width: 100%;
    height: 400px;
    background: #0f0f0f;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    position: relative;
    transform: rotateY(10deg);
    animation: boxHover 2s ease-in-out infinite alternate;
  }

  .chat-box-header {
    background: #0072ff;
    color: white;
    padding: 20px;
    border-radius: 15px 15px 0 0;
    text-align: center;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  }

  .chat-box-body {
    color: white;
    padding: 10px 15px;
    height: calc(100% - 85px);
    overflow-y: auto;
  }

  .chat-bubble {
    margin: 15px 0;
    padding: 12px 20px;
    border-radius: 20px;
    max-width: 75%;
    background: #333;
    opacity: 0;
    animation: bubbleAppear 1s ease forwards;
    transform: translateY(20px);
  }

  .chat-bubble-user {
    background: #00c6ff;
    align-self: flex-start;
    animation-delay: 1s;
  }

  .chat-bubble-support {
    margin-top: 30px;
    margin-left: 25%;
    background: #ff3366;
    align-self: flex-end;
    animation-delay: 2s;
  }

  .chat-box-footer {
    background: #222;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
  }

  .input-field {
    width: 80%;
    padding: 12px;
    border-radius: 25px;
    background: #333;
    color: #fff;
    border: none;
    font-size: 16px;
  }

  .send-button {
    width: 50px;
    height: 50px;
    background: #0072ff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transform: scale(1);
    transition: transform 0.3s ease;
    color: white;
    font-size: 20px;
  }

  .send-button:hover {
    transform: scale(1.1);
  }

  @keyframes bubbleAppear {
    from {
      opacity: 0;
      transform: translateY(20px);
    }

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

  @keyframes boxHover {
    0% {
      transform: rotateY(10deg);
    }

    100% {
      transform: rotateY(0deg);
    }
  }

  @keyframes textGlow {
    0% {
      text-shadow: 0 0 10px #00c6ff, 0 0 20px #00c6ff, 0 0 30px #00c6ff;
    }

    100% {
      text-shadow: 0 0 15px #0072ff, 0 0 30px #0072ff, 0 0 40px #0072ff;
    }
  }

  @media (max-width: 999px) {
    .live-support-content {
      flex-direction: column;
      justify-content: space-evenly;
      height: 90vh;
    }

    .live-support-text {
      margin-top: 12%;
      width: 90%;
      align-items: center;
      justify-content: center;
    }

    .live-support-visual {
      width: 100%;
    }

    .live-support-visual {
      height: auto;
      margin: 10px auto;
      width: 90%;
    }

    .live-support-text h2 {
      font-size: 35px;
    }

    .live-support-text p {
      font-size: 18px;
    }

    .animated-chat-box {
      height: auto;
    }

  }

  /* Live Support setup Page End */




  /* ----------------------------------------- */
  /* SEO Setup Page Start */
  /* ----------------------------------------- */
  .seocreation-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 0;
    /* Ensure section is above the pseudo-element */
    padding: 2rem;
    background: #0f172a;
  }

  .seocreation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/SEO/seo-featured-image.webp');
    /* Check if path is correct */
    background-size: cover;
    background-position: center;
    filter: blur(10px) brightness(0.6);
    transform: scale(1.1);
    z-index: -1;
    /* Make sure it's behind content */
    pointer-events: none;
  }

  .seocreation-wrapper {
    width: min(1200px, 100%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 1;
  }

  .seocreation-content {
    flex: 1;
  }

  .seocreation-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: rgb(255, 115, 0);
    line-height: 1.2;
    text-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
  }

  .seocreation-content p {
    font-size: 1.25rem;
    color: #d9e1ec;
    margin-bottom: 2rem;
    line-height: 1.6;
  }

  .seocreation-animation {
    flex: 1;
    position: relative;
    height: 500px;
    perspective: 1000px;
  }

  .seo-visualization {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
  }

  .keyword-bubble {
    position: absolute;
    background: rgba(99, 102, 241, 0.1);
    border: 2px solid #6366f1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: float 4s infinite ease-in-out;
  }

  .ranking-bar {
    position: absolute;
    width: 4px;
    background: linear-gradient(to top, #6366f1, transparent);
    bottom: 0;
    border-radius: 4px;
    transform-style: preserve-3d;
  }

  .search-pulse {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 2px solid #6366f1;
    border-radius: 50%;
    animation: pulse 2s infinite;
  }

  .data-point {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #6366f1;
    border-radius: 50%;
    filter: blur(1px);
  }

  .connection-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #6366f1, transparent);
    height: 1px;
    transform-origin: left center;
  }

  @keyframes float {

    0%,
    100% {
      transform: translateY(0) scale(1);
    }

    50% {
      transform: translateY(-20px) scale(1.05);
    }
  }

  @keyframes pulse {
    0% {
      transform: scale(0.95);
      opacity: 1;
    }

    100% {
      transform: scale(1.2);
      opacity: 0;
    }
  }

  @media (max-width: 768px) {
    .seocreation-wrapper {
      flex-direction: column;
      text-align: center;
      height: 100vh;
      gap: 2rem;
    }

    .seocreation-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      margin: auto;
    }

    .seocreation-content h1 {
      font-size: 3.5rem;
    }

    .seocreation-content p {
      color: #ffffff;
    }

    .seocreation-animation {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0.3;
      z-index: -1;
    }

  }

  /* ----------------------------------------- */
  /* SEO Setup Page ENd */
  /* ----------------------------------------- */


  /* ----------------------------------------- */
  /* SEO Optimization Page Start */
  /* ----------------------------------------- */
  .seooptimization-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 0;
    /* Ensure section is above the pseudo-element */
    padding: 2rem;
    background: #0f172a;
  }

  .seooptimization-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/SEO/seooptibg.webp');
    /* Check if path is correct */
    background-size: cover;
    background-position: center;
    filter: blur(10px) brightness(0.6);
    transform: scale(1.1);
    z-index: -1;
    /* Make sure it's behind content */
    pointer-events: none;
  }

  .seooptimization-animation {
    flex: 1;
    position: relative;
    height: 500px;
    width: 500px;
    perspective: 1000px;
  }

  .seooptimization-visualization {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
  }

  /* Floating Spheres representing SEO concepts */
  .seo-bubble {
    position: absolute;
    background: rgba(99, 102, 241, 0.2);
    border: 2px solid #3134eed1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    animation: float 4s infinite ease-in-out;
  }

  /* Pulsing Search Effect */
  .search-pulse {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 2px solid #435df3;
    border-radius: 50%;
    animation: pulse 2s infinite;
  }

  /* Energy Lines */
  .energy-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(135deg, rgba(32, 39, 223, 0.8), rgba(99, 102, 241, 0));
    border-radius: 4px;
    opacity: 0.8;
    animation: pulseLine 5s infinite ease-in-out;
  }

  /* Glowing Particles in the Background */
  .background-particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(48, 70, 237, 0.6);
    animation: fadeInOut 5s infinite ease-in-out;
    opacity: 0;
  }

  /* Keyframe Animations */
  @keyframes float {

    0%,
    100% {
      transform: translateY(0) scale(1);
    }

    50% {
      transform: translateY(-30px) scale(1.1);
    }
  }

  @keyframes pulse {
    0% {
      transform: scale(0.9);
      opacity: 1;
    }

    100% {
      transform: scale(1.2);
      opacity: 0;
    }
  }

  @keyframes pulseLine {
    0% {
      transform: scaleX(0);
      opacity: 0.2;
    }

    50% {
      transform: scaleX(1);
      opacity: 0.8;
    }

    100% {
      transform: scaleX(0);
      opacity: 0.2;
    }
  }

  @keyframes fadeInOut {
    0% {
      opacity: 0;
    }

    50% {
      opacity: 1;
    }

    100% {
      opacity: 0;
    }
  }

  @media (max-width: 768px) {
    .seocreation-wrapper {
      flex-direction: column;
      text-align: center;
      gap: 2rem;
    }

    .seocreation-content h1 {
      font-size: 2.5rem;
    }

    .seooptimization-animation {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0.3;
      z-index: -1;
    }
  }

  /* ----------------------------------------- */
  /* SEO Optimization Page ENd */
  /* ----------------------------------------- */


  /* Our Process Page Start  */
  .our-process-section {
    position: relative;
    max-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 15px;
    overflow: hidden;
    z-index: 0;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  }

  .our-process-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/process/compliance-rule-law-regulation-graphic-interface-business-quality-policy-planning-to-meet-international-standard-184946168.webp');
    /* Check if path is correct */
    background-size: cover;
    background-position: center;
    filter: blur(8px) brightness(0.4);
    transform: scale(1.1);
    z-index: -1;
  }

  .process-content {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin: auto;
    max-width: 1400px;
    padding: 4rem 2rem;
    gap: 4rem;
    height: 100vh;
  }

  .our-process-text {
    flex: 1;
    color: #fff;
    position: relative;
    z-index: 2;
  }

  .our-process-text h2 {
    font-size: 5.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: rgb(255, 123, 0);
    position: relative;
  }

  .our-process-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 28%;
    height: 3px;
    background: #ffa200;
    animation: lineGlow 1s infinite;
  }

  .our-process-text p {
    font-size: 1.2rem;
    color: #b4b4b4;
    margin-bottom: 2rem;
    max-width: 600px;
  }

  .process-visual {
    flex: 1;
    width: 50%;
    position: relative;
    height: 500px;
    perspective: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .process-sphere {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
    transform-style: preserve-3d;
    animation: sphereRotate 20s linear infinite;
  }

  .sphere-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(0, 94, 255, 0.3);
    transform-style: preserve-3d;
  }

  .sphere-ring::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: #0088ff;
    border-radius: 50%;
    top: -10px;
    left: calc(50% - 10px);
    box-shadow: 0 0 20px #0088ff;
  }

  /* Background Particles */
  .particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
  }

  .particle {

    position: absolute;
    width: 5px;
    height: 5px;
    background: rgba(59, 130, 246, 0.5);
    border-radius: 50%;
    animation: moveParticle 20s linear infinite;
  }

  /* Animations */


  @keyframes moveParticle {
    0% {
      transform: translateY(0) translateX(0);
      opacity: 0;
    }

    50% {
      opacity: 1;
    }

    100% {
      transform: translateY(-100vh) translateX(100vw);
      opacity: 0;
    }
  }

  @keyframes sphereRotate {
    0% {
      transform: rotateX(60deg) rotateZ(0);
    }

    100% {
      transform: rotateX(60deg) rotateZ(360deg);
    }
  }

  @keyframes lineGlow {

    0%,
    100% {
      box-shadow: 0 0 10px #00f7ff;
    }

    50% {
      box-shadow: 0 0 20px #00f7ff;
    }
  }

  /* Responsive Design */
  @media screen and (max-width: 1200px) {
    .process-content {
      padding: 3rem 1.5rem;
      gap: 2rem;
    }

    .our-process-text h2 {
      font-size: 5rem;
    }
  }

  @media screen and (max-width: 992px) {
    .process-content {
      flex-direction: column;
      text-align: center;
    }

    .our-process-text {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      margin: 30% auto;
    }

    .our-process-text h2::after {
      left: 15%;
      transform: translateX(-50%);
    }

    .our-process-text p {
      margin: 5% auto;
    }

    .process-visual {
      position: absolute;
      height: 100vh;
      width: 100vw;
    }

    .process-sphere {
      width: 100vw;
      height: 100vh;
    }

    .sphere-ring {
      width: 100vw;
      height: 80vh;
    }
  }

  @media screen and (max-width: 768px) {
    .our-process-text h2 {
      font-size: 5rem;
    }

    .our-process-text h2::after {
      left: 50%;
      width: 100%;
    }

    .process-visual {
      height: 300px;
    }

    .process-sphere {
      width: 200px;
      height: 200px;
    }
  }

  .our-process-container {
    /* max-width: 1300px; */
    margin: 0 auto;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    font-family: 'Inter', sans-serif;
    color: #fff;
    z-index: 0;

    position: relative;
    overflow: hidden;
    z-index: 0;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.4);
  }

  .our-process-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/process/processbg.avif');
    background-size: cover;
    background-position: center;
    filter: blur(10px) brightness(0.3);
    transform: scale(1.1);
    z-index: -1;
  }

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

  .our-process-header h2 {
    font-size: 3.5rem;
    background: linear-gradient(to right, #60a5fa, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
  }

  .our-process-main {
    max-width: 1300px;
    display: grid;
    gap: 3rem;
    margin: auto;
  }

  .our-process-step {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 1.5rem;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    width: 100%;
    height: auto;
    margin: 0 auto;
  }

  .step-number {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 40%;
    margin: 10px auto;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 50%;
    display: flex;
    margin-top: -10px;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    text-align: center;
    font-size: 1.25rem;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
  }

  .our-step-info {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .our-step-title {
    font-weight: 600;
    font-size: 1.9rem;
    color: #ff9100;
    margin-bottom: 1rem;
  }

  .our-step-description {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 2rem;
  }

  .our-step-section {
    margin-bottom: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0.5rem;
  }

  .our-section-title {
    font-size: 1.1rem;
    color: #93c5fd;
    background-color: #00000047;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .our-section-title::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #93c5fd;
    border-radius: 50%;
  }

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

  .expectation-item i {
    right: 10%;
    float: right;
    color: #93c5fd;
  }

  /* Style for the arrow icon */
  .expectation-item .arrow {
    display: inline-block;
    margin-left: 10px;
    transition: transform 0.3s ease;
    /* Smooth transition for rotation */
  }

  .expectation-item.open .arrow {
    transform: rotate(180deg);
    /* Rotate arrow 180 degrees when description is visible */
  }

  .our-process-heading {
    width: 100%;
    display: flex;
    padding: 0 10px;
    /* margin: 0 10px; */
    align-items: flex-start;
    justify-content: space-between;
  }

  .expectation-item {
    transition: all 0.3s ease-in;
    margin: 10px;
    width: 100%;
    cursor: pointer;
    padding: 0.1rem 0;
    font-size: 1.2rem;
    color: #cbd5e1;
    gap: 0.5rem;
  }

  .expectation-item-description {
    display: none;
    width: 100%;
    line-height: 2;
    padding: 15px;
    font-size: 0.89rem;
    background-color: #00000025;
  }

  .why-matters {
    color: #cbd5e1;
    line-height: 1.6;
  }

  .our-process-main {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  /* Our Process Page End */





  /* Website Maintanance Page Start  */
  .maintenance-section {
    height: 100vh;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    font-family: 'Inter', sans-serif;
    color: #fff;
    z-index: 0;
    position: relative;
    overflow: hidden;
    z-index: 0;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  }

  .maintenance-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/process/processbg.avif');
    background-size: cover;
    background-position: center;
    filter: blur(5px) brightness(0.5);
    transform: scale(1.1);
    z-index: -1;
  }

  .maintenance-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 2rem;
    gap: 4rem;
  }

  .maintenance-text {
    flex: 1;
    color: #fff;
  }

  .maintenance-text p {
    font-size: 25px;
  }

  .maintenance-text h2 {
    font-size: 3.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: rgb(255, 140, 0);
  }

  .maintenance-visual {
    flex: 1;
    height: 500px;
    position: relative;
    perspective: 1000px;
  }

  .server-structure {
    width: 300px;
    height: 300px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform-style: preserve-3d;
    transform: translate(-50%, -50%) rotateX(-20deg) rotateY(45deg);
    animation: float 6s ease-in-out infinite;
  }

  .server {
    width: 100%;
    height: 60px;
    position: absolute;
    background: rgba(100, 255, 218, 0.1);
    border: 2px solid #0770bb;
    border-radius: 10px;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    margin: auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .server p {
    color: white;
    font-size: 20px !important;
  }

  .server-light {
    position: absolute;
    right: 10px;
    top: 50%;
    width: 8px;
    height: 8px;
    background: #64beff;
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 15px #64afff;
    animation: blink 2s infinite;
  }

  .data-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #64b9ff;
    border-radius: 50%;
    opacity: 0;
  }

  .maintenance-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(100, 255, 218, 0.1) 0%, transparent 70%);
    pointer-events: none;
  }

  @keyframes float {

    0%,
    100% {
      transform: translate(-50%, -50%) rotateX(-20deg) rotateY(45deg) translateY(0);
    }

    50% {
      transform: translate(-50%, -50%) rotateX(-20deg) rotateY(45deg) translateY(-20px);
    }
  }

  @keyframes blink {

    0%,
    100% {
      opacity: 1;
    }

    50% {
      opacity: 0.3;
    }
  }

  @keyframes particle {
    0% {
      transform: translate(0, 0);
      opacity: 0;
    }

    50% {
      opacity: 1;
    }

    100% {
      transform: translate(var(--tx), var(--ty));
      opacity: 0;
    }
  }

  .gear-container {
    position: relative;
    width: 600px;
    height: 600px;
    opacity: 0.3;
  }

  .gear {
    margin-top: -2%;
    margin-left: 5%;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: rotateGear 5s linear infinite;
  }

  .gear img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    border-radius: 50%;
  }

  @keyframes rotateGear {
    0% {
      transform: rotate(0deg);
    }

    100% {
      transform: rotate(360deg);
    }
  }

  @media (max-width:999px) {
    .maintenance-content {
      flex-direction: column;
      text-align: center;
      gap: 2rem;
      padding: 2rem;
      height: 100vh;
    }

    .gear-container {
      width: 400px;
      height: 400px;
    }

    .maintenance-visual {
      position: absolute;
      height: 70vh;
      margin-top: 8%;
      opacity: 0.3 !important;
    }

    .gear {
      margin-top: -8%;
      margin-left: 0%;
    }

    .maintenance-text {
      height: 30vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      margin: auto;
      z-index: 1;
    }

    .maintenance-text h2 {
      font-size: 3rem;
    }

    .maintenance-text p {
      font-size: 20px;
    }

    .server-structure {
      top: 40%;
    }
  }

  /* Website Maintanance Page End  */


  /* Add-on Service Page Start */
  .addon-services-section {
    height: 100vh;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    font-family: 'Inter', sans-serif;
    color: #fff;
    z-index: 0;
    position: relative;
    overflow: hidden;
    z-index: 0;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  }

  .addon-services-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/websiteimg/addonbg.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(8px) brightness(0.3);
    transform: scale(1.1);
    z-index: -1;
  }

  .addon-services-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
  }

  .addon-services-content {
    z-index: 2;
    background-color: #0000002b;
    padding: 50px;
  }

  .addon-services-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ff8c18;
    text-shadow: 0 0 15px rgba(99, 102, 241, 0.6);
  }

  .addon-services-content p {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.6;
  }

  .addon-services-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
  }

  .neon-ring {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 4px solid rgba(99, 102, 241, 0.8);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
    animation: rotate 6s infinite linear;
  }

  .neon-ring::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
    border: 3px solid rgba(99, 102, 241, 0.4);
    border-radius: 50%;
    animation: pulse 2s infinite ease-in-out;
  }

  .neon-particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(99, 102, 241, 1);
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.8);
    border-radius: 50%;
    animation: float 3s infinite ease-in-out;
  }

  .service-box {
    position: absolute;
    padding: 1rem;
    background: rgba(15, 23, 42, 0.8);
    color: white;
    border: 1px solid rgba(99, 102, 241, 0.5);
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    text-align: center;
    animation: fadeInOut 4s infinite;
  }

  @keyframes rotate {
    0% {
      transform: rotate(0deg);
    }

    100% {
      transform: rotate(360deg);
    }
  }

  @keyframes pulse {

    0%,
    100% {
      transform: scale(1);
      opacity: 0.8;
    }

    50% {
      transform: scale(1.2);
      opacity: 1;
    }
  }

  @keyframes float {

    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-20px);
    }
  }

  @keyframes fadeInOut {

    0%,
    100% {
      opacity: 0;
      transform: scale(0.8);
    }

    50% {
      opacity: 1;
      transform: scale(1);
    }
  }

  @media (max-width: 768px) {
    .addon-services-content h1 {
      font-size: 2.5rem;
    }

    .neon-ring {
      width: 100px;
      height: 100px;
    }

    .addon-services-animation {
      opacity: 0.5;
    }

  }

  /* Add-on Service Page End */



  /* Package Comparison Page Start */
  .comparison-section {
    height: 100vh;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    font-family: 'Inter', sans-serif;
    color: #fff;
    z-index: 0;
    position: relative;
    overflow: hidden;
    z-index: 0;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  }

  .comparison-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/websiteimg/addonbg.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(8px) brightness(0.3);
    transform: scale(1.1);
    z-index: -1;
  }

  .comparison-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    min-height: 100vh;
    box-sizing: border-box;
    flex-wrap: wrap;
  }

  .comparison-text-container {
    max-width: 600px;
    margin-bottom: 30px;
    z-index: 2;
  }

  .comparison-text-slogan {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #0368f6;
    text-shadow: 0 0 20px rgba(3, 104, 255, 0.8);
  }

  .comparison-text-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #b8c0d4;
  }

  .comparison-animation-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 400px;
  }

  #comparisonCanvas {
    width: 100%;
    height: 100%;
    border-radius: 15px;
  }

  @media (max-width: 999px) {
    .comparison-animation-container {
      position: absolute;
      width: 100%;
      max-width: 100vw;
      height: 100vh;
      opacity: 0.7;
    }

    .comparison-text-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      margin: 0 auto;
      max-width: 100vw;
      width: 80%;
      /* margin-bottom: 30px; */
      z-index: 2;
    }
  }

  .package-section {
    padding: 50px 20px;
    max-width: 1400px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: #0d1117; */
  }

  .package-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }

  .package-card {
    color: white;
    background: linear-gradient(145deg, #161b22, #1f2329);
    border: 1px solid #30363d;
    border-radius: 10px;
    padding: 20px;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .package-card:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  }

  .package-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    background-color: #58a6ff;
    padding: 10px;
    color: rgb(0, 0, 0);
    text-transform: uppercase;
    font-weight: 700;
  }

  .package-card h3 span {
    font-size: 1.2rem;
    color: rgb(55, 55, 55);
    text-transform: none;
    font-weight: 400;
  }

  .package-card h4 {
    font-size: 1.5rem;
    margin: 10px 0;
    color: rgb(255, 111, 0);
  }

  .package-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .package-card ul li {
    color: #8b949e;
    background-color: #7979793f;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    padding-bottom: 10px;
    padding: 10px;
  }

  .package-card ul li::before {
    content: '\2022';
    color: #58a6ff;
    font-size: 2.5rem;
    top: 0;
    margin-right: 10px;
  }

  .package-card .strength {
    margin-top: 20px;
    font-weight: 700;
    color: #79c0ff;
  }

  .package-card p {
    color: #8b949e;
    font-size: 1rem;
  }

  @media (max-width: 999px) {
    .package-card {
      width: 100%;
    }

    .package-card h3 span {
      font-size: 1rem;
    }
  }

  .package-decision-section {
    background: linear-gradient(135deg, #17176e, #04046f);
  }

  .decision-section {
    padding: 50px 20px;
    text-align: center;
    overflow: hidden;
  }

  .decision-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    padding: 10px;
    text-transform: uppercase;
    animation: glow 1.5s infinite alternate !important;
    color: #00d1ff;
  }

  .decision-section h3 {
    font-size: 1.8rem;
    color: #d6d6d6;
    margin-bottom: 15px;
    text-transform: none;
    animation: none !important;
  }

  @keyframes glow {
    from {
      text-shadow: 0 0 10px #00d1ff, 0 0 20px #00d1ff;
    }

    to {
      text-shadow: 0 0 20px #00ffff, 0 0 30px #00d1ff;
    }
  }

  .decision-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #cfd8dc;
  }

  .deicsion-package-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .decision-package {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    width: 300px;
    transform: scale(1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .decision-package:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.8);
  }

  .decision-package h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #00d1ff;
  }

  .decision-package p {
    font-size: 1rem;
    line-height: 1.5;
    color: #c6d9f1;
  }

  .decision-footer {
    margin-top: 40px;
    font-size: 1.2rem;
    color: #cfd8dc;
    animation: fadeIn 2s ease;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  @media (max-width: 999px) {
    section {
      padding: 10px !important;
    }

    .deicsion-package-container {
      flex-direction: column;
      align-items: center;
    }

    .decision-package {
      width: 90%;
      padding: 10px;
    }

    .decision-section {
      padding: 20px;
    }

    .decision-section h2 {
      font-size: 2rem;
      padding: 0px;
    }

    .decision-section h3 {
      font-size: 1.8rem;
      text-align: left;
    }

    .decision-section p {
      text-align: left;
    }

    .decision-package p {
      text-align: left;
      font-size: 1.2rem;
    }

    .decision-footer {
      text-align: left;
    }
  }

  /* Package Comparison Page End */



  /* PACKAGE 1 PAGE START  */
  .package1-section {
    height: 100vh;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    font-family: 'Inter', sans-serif;
    color: #fff;
    z-index: 0;
    position: relative;
    overflow: hidden;
    z-index: 0;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  }

  .package1-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/websiteimg/package1bgnew.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(5px) brightness(0.5);
    transform: scale(1.1);
    z-index: -1;
  }

  .package1-content {
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    position: relative;
    overflow: hidden;
    margin: auto;
  }

  .package1-heading {
    flex: 1 1 50%;
    text-align: left;
    padding: 20px;
  }

  .package1-heading h1 {
    font-size: 3rem;
    color: #F37335;
    margin-bottom: 15px;
  }

  .package1-heading p {
    font-size: 1.2rem;
    color: #cfd8dc;
    line-height: 1.6;
  }

  .package1-animation-container {
    flex: 1 1 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }

  .package1-box {
    width: 350px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    transform: rotateY(0deg);
    animation: rotate 15s infinite linear;
    margin: auto;
  }

  .package1-box::after {
    border: 2px solid #00d1ff;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/websiteimg/images.jpeg');
    background-size: cover;
    background-position: center;
    filter: blur(3px) brightness(0.8);
    transform: scale(1.1);
    z-index: -1;
  }

  @keyframes rotate {
    from {
      transform: rotateY(0deg);
    }

    to {
      transform: rotateY(360deg);
    }
  }

  .package1-box h3 {
    text-align: center;
    font-size: 1.5rem;
    padding: 10px;
    margin-bottom: 10px;
    color: #80deea;
  }

  .package1-box p {
    font-size: 1rem;
    color: #b0bec5;
    text-align: center;
    padding: 0 10px;
  }

  .package1-box p span {
    font-size: 1.5rem;
    color: #ff6600;
  }

  @media (max-width: 899px) {
    .package1-content {
      height: 90vh;
      flex-direction: column;

    }

    .package1-heading {
      margin: auto;
      height: fit-content;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      z-index: 1;
    }

    .package1-animation-container {
      position: absolute;
      height: 100%;
      margin: auto;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      opacity: 0.5 !important;
    }

    .package1-heading h1 {
      font-size: 3rem;
    }

    .package1-heading p {
      font-size: 1.3rem;
    }

    .package1-box {
      width: 200px;
      height: 300px;
    }

    .package1-box h3 {
      font-size: 1.2rem;
      padding: 5px;
    }

    .package1-box p {
      font-size: 1rem;
    }

    .package1-box p span {
      font-size: 1rem;
    }

  }

  /* PACKAGE 1 PAGE END */




  /* PACKAGE 2 PAGE START */
  .package2-section {
    height: 100vh;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    font-family: 'Inter', sans-serif;
    color: #fff;
    z-index: 0;
    position: relative;
    overflow: hidden;
    z-index: 0;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  }

  .package2-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/websiteimg/package2.avif');
    background-size: cover;
    background-position: center;
    filter: blur(5px) brightness(0.5);
    transform: scale(1.1);
    z-index: -1;
  }

  .package2-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: auto;
    padding: 50px 20px;
    position: relative;
    overflow: hidden;
    height: 90vh;
  }

  .package2-heading {
    flex: 1 1 40%;
    text-align: left;
    padding: 20px;
  }

  .package2-heading h1 {
    font-size: 3rem;
    color: #ff8c00;
    margin-bottom: 15px;
  }

  .package2-heading p {
    font-size: 1.2rem;
    color: #cfd8dc;
    line-height: 1.6;
  }

  .package2-animation-container {
    flex: 1 1 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }

  .package2-box {
    width: 300px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #0084ff;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    transform: perspective(600px) rotateX(0deg);
    animation: flip 10s infinite;
    z-index: 1;
  }

  @keyframes flip {
    0% {
      transform: perspective(600px) rotateX(0deg);
    }

    100% {
      transform: perspective(600px) rotateX(360deg);
    }
  }

  .package2-box h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #ff8b07;
  }

  .package2-box h2 {
    text-align: center;
    font-size: 1.5rem;
    color: #ff8b07;
  }

  .package2-box p {
    font-size: 1rem;
    color: #b0bec5;
    text-align: center;
    padding: 0 10px;
  }

  .glowing-lines {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: rgba(0, 89, 255, 0.1);
    border: 2px solid #fdfdfd;
    border-radius: 50%;
    background-image: url('../img/websiteimg/package2.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(5px) brightness(0.7);
    transform: scale(1.1);
    animation: package2pulsate 10s infinite;
  }

  @keyframes package2pulsate {
    0% {
      transform: translate(-50%, -50%) scale(1);
      opacity: 1;
    }

    50% {
      transform: translate(-50%, -50%) scale(1.2);
      opacity: 0.8;
    }

    100% {
      transform: translate(-50%, -50%) scale(1);
      opacity: 1;
    }
  }

  @media (max-width: 999px) {
    .package2-content {
      flex-direction: column;
      width: 100%;
    }

    .package2-heading {
        margin: auto;
        height: fit-content;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 1;
    }

    .package2-heading h1 {
      font-size: 2.5rem;
    }

    .package2-heading p {
      font-size: 1rem;
    }

    .package2-animation-container {
      position: absolute;
      opacity: 0.5;
      width: 90%;
    }

    .package2-box {
      width: 250px;
      height: 350px;
    }

    .glowing-lines {
      width: 300px;
      height: 300px;
    }
  }

  /* PACKAGE 2 PAGE END */





  /* PACKAGE 3 PAGE START */
  .package3-section {
    height: 100vh;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    font-family: 'Inter', sans-serif;
    color: #fff;
    z-index: 0;
    position: relative;
    overflow: hidden;
    z-index: 0;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  }

  .package3-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/websiteimg/package3bg.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(5px) brightness(0.5);
    transform: scale(1.1);
    z-index: -1;
  }

  #package3-galaxyCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }

  .package3-content {
    height: 100vh;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    position: relative;
    overflow: hidden;
    margin: auto;
  }

  .package3-heading {
    width: 50%;
    text-align: left;
    padding: 20px;
  }

  .package3-heading h1 {
    font-size: 3rem;
    color: #ff4d00;
    margin-bottom: 15px;
  }

  .package3-heading p {
    font-size: 1.2rem;
    color: #cfd8dc;
    line-height: 1.6;
  }

  .package3-animation-container {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }

  .package3-box {
    width: 350px;
    height: 450px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #0073ff;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    transform: scale(1);
    animation: pulse-scale 3s infinite;
    z-index: 1;
  }

  @keyframes pulse-scale {

    0%,
    100% {
      transform: scale(1);
    }

    50% {
      transform: scale(1.1);
    }
  }

  .package3-box h3 {
    padding: 10px;
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #f17203;
  }

  .package3-box p {
    font-size: 1rem;
    color: #b0bec5;
    text-align: center;
    padding: 0 10px;
  }

  .package3-orbital-animation {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 5%;
    /* left: 50%; */
    transform: translate(-50%, -50%);
    animation: package3-orbit 10s infinite linear;
    z-index: -0;
  }

  .package3-orbital-animation span {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #ff5e0081;
    border-radius: 50%;
  }

  .package3-orbital-animation span:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: spin 5s infinite linear;
  }

  .package3-orbital-animation span:nth-child(2) {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation: spin 7s infinite linear reverse;
  }

  .package3-orbital-animation span:nth-child(3) {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: spin 6s infinite linear;
  }

  .package3-orbital-animation span:nth-child(4) {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation: spin 8s infinite linear reverse;
  }

  @keyframes package3-orbit {
    0% {
      transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }

  @keyframes spin {
    0% {
      transform: translate(-50%, -50%) scale(1);
    }

    50% {
      transform: translate(-50%, -50%) scale(1.5);
    }

    100% {
      transform: translate(-50%, -50%) scale(1);
    }
  }

  @media (max-width: 999px) {
    .package3-heading {
      width: 90%;
      height: fit-content;
      /* margin: auto; */
      margin-top: 10%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      z-index: 2 !important;
      /* padding: 10px; */
    }

    .package3-content {
      padding: 20px;
    }

    .package3-animation-container {
      width: 90%;
      height: 100vh;
      position: absolute;
      align-items: center;
      justify-content: center;
      opacity: 0.3 !important;
    }

    .package3-heading h1 {
      font-size: 2.5rem;
    }

    .package3-heading p {
      font-size: 1rem;
    }

    .package3-box {
      width: 80vw;
      height: 40vh;
    }

    .package3-box h3 {
      font-size: 18px;
    }

    .package3-box p {
      font-size: 15px;
    }

    .package3-orbital-animation {
      top: 30%;
      width: 200px;
      height: 200px;
    }
  }

  .package3-galaxy-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .package3-star {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
    animation: twinkle 5s infinite ease-in-out;
  }

  .package3-star:nth-child(odd) {
    background: #e96c05;
  }

  @keyframes twinkle {

    0%,
    100% {
      opacity: 0;
      transform: scale(0.5);
    }

    50% {
      opacity: 1;
      transform: scale(1);
    }
  }

  @keyframes package3-orbit {
    0% {
      transform: rotate(0deg) translateX(150px) rotate(0deg);
    }

    100% {
      transform: rotate(360deg) translateX(150px) rotate(-360deg);
    }
  }

  .package3-orbit {
    position: absolute;
    width: 300px;
    height: 300px;
    /* border: 1px dashed rgba(255, 255, 255, 0.3); */
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: package3-orbit 10s infinite linear;
  }

  .package3-orbit .orbiter {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #ff7300;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  /* PACKAGE 3 PAGE END */





  /* FAQ PAGE START */
  .faq-section {
    height: 100vh;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    z-index: 0;
    position: relative;
    overflow: hidden;
    z-index: 0;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  }

  .faq-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/websiteimg/faqbg.webp');
    background-size: cover;
    background-position: center;
    filter: blur(5px) brightness(0.5);
    transform: scale(1.1);
    z-index: -1;
  }

  .faq-header {
    max-width: 1500px;
    margin: auto;
    position: relative;
    min-height: 100vh;
    display: flex;
    padding: 2rem;
  }

  .faq-content-container {
    width: 50%;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
  }

  .faq-main-title {
    font-size: 4rem;
    background: linear-gradient(135deg, #00ffff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
  }

  .faq-description {
    font-size: 1rem;
    color: #a0a0a0;
    line-height: 1.3;
    margin-bottom: 2rem;
    max-width: 600px;
  }

  .faq-interactive-container {
    width: 50%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .faq-question-grid {
    position: relative;
    width: 400px;
    height: 400px;
  }

  .faq-question-item {
    width: 250px;
    position: absolute;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform-origin: center;
  }

  .faq-question-icon {
    width: 30px;
    height: 30px;
    background: rgba(236, 75, 0, 0.868);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    width: 15%;
  }

  .faq-question-text {
    color: white;
    width: 80%;
    font-size: 0.9rem;
    opacity: 1;
    transition: opacity 0.3s ease;
  }

  .faq-question-item:hover .faq-question-text {
    opacity: 1;
  }

  .faq-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #fff;
    border-radius: 50%;
    pointer-events: none;
  }

  .faq-energy-beam {
    position: absolute;
    width: 2px;
    background: linear-gradient(to bottom, transparent, #00ffff, transparent);
    pointer-events: none;
    transform-origin: top;
  }

  .highlight {
    color: #00ffff;
    font-weight: 500;
  }

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

  @keyframes floatParticle {
    0% {
      transform: translate(0, 0);
    }

    50% {
      transform: translate(10px, -20px);
    }

    100% {
      transform: translate(0, 0);
    }
  }

  @media (max-width: 768px) {
    .faq-header {
      flex-direction: column;
      padding: 0.5rem;
      justify-content: center;
    }

    .faq-interactive-container {
      width: 100vw;
      text-align: center;
      padding: 1rem;
      height: 100vh;
      position: absolute;
      filter: blur(1px) brightness(0.9);
    }

    .faq-content-container {
      width: 100%;
      text-align: center;
      padding: 1rem;
    }

    .faq-main-title {
      font-size: 30px;
      margin-bottom: 10px;
    }

    .faq-description {
      font-size: 12px;
      margin-bottom: 1rem;
    }

    .faq-question-grid {
      position: absolute;
      width: 100vw;
      opacity: 0.5;

    }

    .faq-question-item {
      width: 70%;
      padding: 0.5rem;
      margin: 10px auto;
    }

    .faq-content-section {
      padding: 2rem 1rem;
    }

    .faq-content-section h2 {
      font-size: 1.5rem;
    }

    .faq-content-section p {
      font-size: 1rem;
    }
  }

  @media (max-width: 310px) {
    .faq-main-title {
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
    }

    .faq-question-grid {
      width: 100%;
      height: 100%;
    }

    .faq-content-section {
      padding: 1rem 1rem;
    }

    .faq-content-section h2 {
      font-size: 1.2rem;
    }

    .faq-content-section p {
      font-size: 0.5rem;
    }
  }

  .faq-info-section {
    background: linear-gradient(135deg, #1e1e2f, #252537);
  }

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

  .faq-container-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
  }

  .faq-container-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(100, 255, 218, 0.1);
  }

  .faq-question {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #fb5901;
  }

  .faq-description {
    color: #e2e2e2;
    line-height: 1.6;
    margin-bottom: 1rem;
  }

  .faq-conclusion {
    color: #e2e2e2;
    line-height: 1.6;
    margin-bottom: 1rem;
  }

  .faq-subpoints {
    margin-left: 1.5rem;
  }

  .subpoint {
    margin: 1rem 0;
  }

  .subpoint-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #39a5ed;
    padding: 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
  }

  .subpoint-title:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .subpoint-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
    color: #ffffff;
    background-color: rgba(96, 128, 223, 0.1);
    border-radius: 0 0 8px 8px;
    padding: 0 1rem;
    margin-top: 0;
    opacity: 0;
  }

  .subpoint-content.active {
    max-height: 500px;
    padding: 1rem;
    margin-top: 0.5rem;
    opacity: 1;
    border-left: 3px solid #64ffda;
  }

  .arrow {
    transition: transform 0.3s ease;
    color: #64ffda;
    font-size: 0.8em;
  }

  .arrow.active {
    transform: rotate(180deg);
  }

  /* Enhanced faq-conclusion styling */
  .faq-conclusion {
    color: #e2e2e2;
    line-height: 1.6;
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(100, 255, 218, 0.05);
    border-left: 3px solid #64ffda;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    transition: all 0.3s ease;
  }

  .faq-conclusion:hover {
    background: rgba(100, 255, 218, 0.08);
    transform: translateX(5px);
  }

  /* Improve subpoint spacing */
  .subpoint {
    margin: 1rem 0;
    border-radius: 8px;
    overflow: hidden;
  }

  /* Animation for content appearance */
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

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

  .subpoint-content.active {
    animation: slideDown 0.3s ease-out;
  }

  .arrow {
    transition: transform 0.3s ease;
  }

  .arrow.active {
    transform: rotate(180deg);
  }

  .bullet-point {
    color: #d1d0d0;
    margin: 0.5rem 0;
    padding-left: 1rem;
    padding-bottom: 5PX;
    border-bottom: 1px solid rgba(166, 166, 166, 0.395);
  }

  /* .bullet-point::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: red;
  position: absolute;
  left: 3%;
  margin-top: 0.5%;
} */

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }

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

  @media (max-width: 768px) {
    .faq-title {
      font-size: 3rem;
    }

    .faq-question {
      font-size: 2.1rem;
    }

    .faq-container-item {
      padding: 1rem;
    }

    .faq-subpoints {
      margin-left: 0.5rem;
    }
  }

  /* FAQ PAGE END */




  /* Contact PAGE Start */
  .contact-section {
    height: 100vh;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    z-index: 0;
    position: relative;
    overflow: hidden;
    z-index: 0;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  }

  .contact-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/contact/blue-globe_world_network_global-transformation_connected_global-connection-100777432-large.webp');
    background-size: cover;
    background-position: center;
    filter: blur(5px) brightness(0.5);
    transform: scale(1.1);
    z-index: -1;
  }

  .contact-header-section {
    position: relative;
    max-width: 1500px;
    margin: auto;
    min-height: 100vh;
    display: flex;
    padding: 2rem;
    background: radial-gradient(circle at center, #1a1a2e0a 100%, #0000002f 100%);
  }

  /* Galaxy Background */
  .galaxy-particle {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    animation: twinkle var(--duration) infinite;
  }

  @keyframes twinkle {

    0%,
    100% {
      opacity: 0;
      transform: scale(0.5);
    }

    50% {
      opacity: var(--opacity);
      transform: scale(1);
    }
  }

  .nebula {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--x) var(--y),
        rgba(var(--color), 0.15) 0%,
        rgba(var(--color), 0.05) 30%,
        transparent 70%);
    mix-blend-mode: screen;
    pointer-events: none;
    transition: all 2s ease;
  }

  .contact-header-content-container {
    width: 50%;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
  }

  .contact-header-title {
    font-size: 4rem;
    background: linear-gradient(270deg, #1f4fe2, #fbfbfb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(0, 255, 157, 0.5);
  }

  .contact-header-description {
    font-size: 1.2rem;
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
  }

  .contact-interactive-container {
    width: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .contact-sphere {
    position: relative;
    width: 400px;
    height: 400px;
    perspective: 1000px;
  }

  .orbit-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(0, 255, 157, 0.2);
    border-radius: 50%;
    animation: rotateSphere 20s linear infinite;
  }

  .contact-method {
    position: absolute;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 200px;
    animation: floatCard 6s ease-in-out infinite;
  }

  .contact-method::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(45deg, #00ff9d, #00b8ff);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .contact-method:hover::before {
    opacity: 1;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: rgba(0, 255, 157, 0.2);
    position: relative;
  }

  .contact-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(0, 255, 157, 0.2);
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .contact-method:hover .contact-icon::after {
    opacity: 1;
  }

  .contact-info {
    display: flex;
    flex-direction: column;
  }

  .contact-label {
    font-size: 0.9rem;
    color: #00ff9d;
    margin-bottom: 0.2rem;
  }

  .contact-value {
    font-size: 1rem;
    color: white;
  }

  .energy-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: #00ff9d;
    border-bottom-color: #00b8ff;
    animation: rotateRing 8s linear infinite;
  }

  .contact-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ff9d, transparent);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    filter: drop-shadow(0 0 5px #00ff9d);
  }

  @keyframes rotateSphere {
    from {
      transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }

  @keyframes rotateRing {
    from {
      transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }

  @keyframes floatCard {

    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-10px);
    }
  }

  @media (max-width: 899px) {
    .contact-header-section {
      margin-top: 20%;
      flex-direction: column;
    }

    .contact-header-content-container {
      padding: 0rem;
      width: 100%;
    }

    .contact-interactive-container {
      padding: 0rem;
      width: 100%;
    }

    .contact-header-title {
      font-size: 2.5rem;
      margin-bottom: 0;
    }

    .contact-header-description {
      font-size: 1rem;
      margin-bottom: 0rem;
    }

    .contact-sphere {
      width: 100%;
      height: 300px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
    }

    .contact-method {
      width: 100%;
      /* justify-content: center; */
      margin: 5px;
      left: 0 !important;
      top: 10px !important;
      position: relative;
      padding: 0.5rem;
      min-width: 180px;
    }
  }



  /* Contact Section */
  /* Main contact-form-container */
  .contact-form-container {
    border-radius: 20px;
    /* padding: 40px; */
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
  }

  /* Contact Section */
  .contact-form-section {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .contact-form-section {
    margin: 25px auto;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    z-index: 0;
    position: relative;
    z-index: 0;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  }

  .contact-form-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/contact/earthgify.gif');
    background-size: cover;
    background-position: bottom;
    filter: blur(10px) brightness(0.3);
    transform: scale(1.1);
    z-index: -1;
  }

  .contact-form {
    flex: 1;
    min-width: 80%;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.152);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    z-index: 10;
  }

  .form-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #00ff9d, #00b8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
  }

  .form-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #00ff9d, #00b8ff);
  }

  .input-group {
    position: relative;
    margin-bottom: 2rem;
  }

  .input-field {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
  }

  .input-field::placeholder {
    color: rgba(255, 255, 255, 0.5);
  }

  .input-field:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 157, 0.2);
  }

  /* Captcha Styles */
  .captcha-contact-form-container {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
  }

  .captcha-text {
    font-size: 25px;
    color: white;
  }

  .captcha-input {
    flex: 1;
  }

  /* Submit Button */
  .contact-submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(90deg, #00ff9d, #00b8ff);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 157, 0.3);
  }

  .error-message {
    color: #ff4444;
    font-size: 0.9rem;
    margin-top: 0.5rem;
  }

  .success-message {
    padding: 10px;
    text-align: center;
    color: #ff5e00;
    font-size: 3rem;
    margin-top: 10px;
  }

  @media (max-width: 768px) {
    .contact-form-section {
      padding: 20px;
    }

    .contact-form,
    .contact-info-container {
      width: 100%;
    }

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

    .contact-info-item {
      width: 250px;
      height: auto;
      align-items: flex-start;
    }

    .captcha-contact-form-container {
      flex-direction: column;
    }
  }

  /* Contact PAGE END */

/* ETG: center Packages dropdown heroes to match other inner pages */
.package1-content,
.package2-content,
.package3-content {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.package1-heading,
.package2-heading,
.package3-heading {
  flex: none;
  width: 100%;
  max-width: 920px;
  text-align: center;
  margin: 0 auto;
  padding: 20px;
  z-index: 2;
  position: relative;
}

.package1-animation-container,
.package2-animation-container,
.package3-animation-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  flex: none;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
}

.comparison-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.comparison-text-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  z-index: 2;
  position: relative;
}

.comparison-animation-container {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
}

.maintenance-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.maintenance-text {
  flex: none;
  width: 100%;
  max-width: 920px;
  text-align: center;
  z-index: 2;
  position: relative;
}

.maintenance-visual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
}

.addon-services-section {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.addon-services-content {
  margin: 0 auto;
  text-align: center;
  z-index: 2;
  position: relative;
}
