    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
      background: linear-gradient(92deg, #0b0d0d, #180708, #ff2121);
      color: #fff;
      overflow-x: hidden;
    }


    body::before {
      content: "";
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url("https://www.transparenttextures.com/patterns/dark-mosaic.png");
      opacity: 0.2;
      z-index: -1;
    }


    .top-bar {
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 8px 40px;
  overflow-x: hidden;
  font-size: 14px;
}
.top-bar .right a {
  margin-left: 10px;
  color: white;
  text-decoration: none;
}

.right {
  display: flex;
  gap: 15px;
}

.left {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}


.right .social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: #200707;
  color: #fff;
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 16px;
}

.right .social:hover {
  background-color: #ad320d;
  transform: scale(1.2);
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 8%;
  position: relative;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
}

header .logo img {
  height: 50px;
  width: 180px;
}

header .logo {
  flex-shrink: 0;
  margin-left: -70px;
}



nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
  margin-right: -65px;
  align-items: center;
}


header .button {
  margin-left: 50px;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #ff474d;
}


nav ul li.dropdown {
  position: relative;
  z-index: 1000;
}





.dropdown-content li a:hover {
  background: #ff474d;
  color: #fff;
}


@media (min-width: 769px) {
  .dropdown:hover .dropdown-content {
    display: block;
  }
}



.btn-connect {
  background: #fff;
  color: #000;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  margin-left: 50px;
  transition: 0.3s;
}
.btn-connect:hover {
  background: #ff474d;
  color: #fff;
}


.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  cursor: pointer;
}

.mobile-toggle span {
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}


.mobile-toggle.toggle span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-toggle.toggle span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


@media screen and (max-width: 768px) {
  .mobile-toggle {
    display: flex;
  }

  nav {
    position: absolute;
    top: 70px;
    left: 50%;              
    transform: translateX(-50%);  
    width: 100%;                 
    background: #222;
    display: none;
    flex-direction: column;
    border-radius: 10px;
    padding: 15px 0;
  }

  nav.active {
    display: flex;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
    align-items: center;    
  }

  .menu-button {
    text-align: center;
  }

  .btn-connect {
    width: 90%;
    margin: 10px auto;
    display: block;
    text-align: center;
  }

 .top-bar {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    flex-direction: row; 
    padding: 5px 15px;
    font-size: 11px;
    gap: 0; 
  }

  .top-bar .left span {
    margin-right: 10px;
  }

  .top-bar .right {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .top-bar .right .social {
    width: 24px;
    height: 24px;
    margin-top: 10px;
    font-size: 12px;
  }

  header .logo img {
  margin-left: 50px;
}
}

    


nav ul li.dropdown {
  position: relative;
  z-index: 1000;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 140px;
  color: white;
  z-index: 9999;
}

.dropdown-content li a {
  display: block;
  padding: 12px 25px;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  white-space: nowrap;
}

.dropdown-content li a:hover {
  background: #ff474d;
  color: #fff;
}


@media (min-width: 769px) {
  nav ul li.dropdown:hover .dropdown-content {
    display: block;
    position: absolute;
    background: #222;
  }
}



@media (max-width: 768px) {
  .dropdown-content {
    display: none;
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    background: #840808;
    margin-left: -25px;
  }

  .dropdown-content.show {
    display: block;
  }

  .dropdown-arrow {
    cursor: pointer;
    margin-left: 5px;
    font-size: 1.2em;
  }
}



@media screen and (max-width: 768px) {
  body {
    background: linear-gradient(92deg, #0b0d0d, #e12b37); /* Removed red (#ff2121) */
  }
}

    .hero {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0px 8% 150px;
      min-height: 100vh;
      position: relative;
      overflow: hidden;
    }

    .hero-content {
      max-width: 50%;
      margin-left: -40px;
    }

    .hero-content h4 {
      font-style: italic;
      font-weight: 400;
      margin-bottom: 10px;
      color: #eaeaea;
    }

    .hero-content h1 {
      font-size: 80px;
      line-height: 1.1;
      font-weight: 600;
    }

    .hero-content h1 span {
  background: linear-gradient(90deg, #d4145a, #fbb03b);
  background-clip: text;              
  -webkit-background-clip: text;      
  color: transparent;                 
  -webkit-text-fill-color: transparent;
}


    .hero-content p {
      margin-top: 20px;
      font-size: 18px;
      color: #aaa;
    }

    .hero-content .btn-explore {
      margin-top: 40px;
      display: inline-block;
      padding: 12px 28px;
      border: 2px solid #fff;
      border-radius: 30px;
      color: #fff;
      text-decoration: none;
      font-weight: 500;
      transition: 0.3s;
    }

    .hero-content .btn-explore:hover {
      background: #f06292;
      border-color: #f06292;
    }


   .hero-image {
  width: 420px;
  animation: floatDiamond 5s ease-in-out infinite;
  margin-right: 100px;  
}

    @keyframes floatDiamond {
      0% { transform: translateX(0px); }
      50% { transform: translateX(120px); }
      100% { transform: translateX(0px); }
    }

@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 100px 5% 120px;
  }

  .hero-content {
    max-width: 80%;
    margin-left: 0;
  }

  .hero-content h1 {
    font-size: 60px;
  }

  .hero-image {
    width: 350px;
    margin: 20px auto 0;
    animation: floatDiamond 5s ease-in-out infinite;
  }
}


@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    padding: 80px 5% 100px;
  }

  .hero-content {
    max-width: 90%;
    margin-left: 0;
  }

  .hero-content h1 {
    font-size: 48px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-image {
    width: 300px;
    margin: 50px auto 0;
  }
}


@media (max-width: 480px) {
  .hero {
    flex-direction: column;
    justify-content: center;       
    align-items: center;           
    padding: 30px 5% 30px;         
    min-height: auto;              
    gap: 20px;                     
  }

  .hero-content {
    max-width: 100%;
    margin: 0;                     
    text-align: center;
  }

  .hero-content h4 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .hero-content h1 {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .hero-content p {
    font-size: 14px;
    margin: 10px 0 0 0;
    color: #bbb;
  }

  .hero-content .btn-explore {
    margin-top: 18px;
    padding: 8px 20px;
    font-size: 14px;
  }

  .hero-image {
    width: 220px;
    margin: 0 auto;               
    animation: floatDiamond 4s ease-in-out infinite;
  }
}

@media (max-width: 480px) {
  @keyframes floatDiamond {
    0% { transform: translateX(-20px); }   
    50% { transform: translateX(20px); }   
    100% { transform: translateX(-20px); } 
  }
}


@media (min-width: 320px) and (max-width: 380px) {
  .hero {
    padding: 20px 5% 20px;       
    gap: 16px;
  }

  .hero-content h1 {
    font-size: 28px;
    line-height: 1.15;
  }

  .hero-content p {
    font-size: 13px;
    margin-top: 8px;
  }

  .hero-content .btn-explore {
    margin-top: 14px;
    padding: 8px 18px;
    font-size: 13px;
  }

  .hero-image {
    width: 190px;
    margin: 0 auto;
  }
}

.feature-section {
  padding: 80px 0;
  background-color: #060606;
  overflow: hidden;
}

.feature-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.feature-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.feature-title {
  font-size: 2.8rem;
  font-weight: 600;
  position: relative;
  margin-bottom: 10px;
}

.feature-title::after {
  content: "";
  display: block;
  width: 90px;
  height: 5px;
  border-radius: 5px;
  background: linear-gradient(90deg, #ff6b00, #84d40c, #ff6b00);
  background-size: 200% 100%;  
  margin-top: 10px;
  animation: feature-line-move 2s linear infinite;
}


@keyframes feature-line-move {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 200% 0%;
  }
}


.feature-subtitle {
  color: #ccc;
  max-width: 600px;
  font-size: 1rem;
  line-height: 1.6;
}

.feature-items {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex: 1;
  min-width: 280px;
}

.feature-icon-btn {
  width: 140px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #fff;
}

.feature-green {
  background: linear-gradient(90deg, #84d40c, #5ea602);
}

.feature-orange {
  background: linear-gradient(90deg, #ff6b00, #ff3b3b);
}

.feature-item-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-item-text {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {

  .feature-section {
    padding: 60px 10px;
  }

  .feature-container {
    padding: 0 10px;
  }

  .feature-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
  }

  .feature-title {
    font-size: 2rem;
    margin-bottom: 8px;
  }

  .feature-title::after {
    width: 70px;
    height: 4px;
    margin-top: 8px;
  }

  .feature-subtitle {
    max-width: 100%;
    font-size: 0.9rem;
  }

  .feature-items {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  .feature-item {
    flex: 1 1 100%;
    max-width: 350px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }

  .feature-icon-btn {
    width: 100px;
    height: 100px;
    font-size: 18px;
  }

  .feature-item-title {
    font-size: 1.2rem;
  }

  .feature-item-text {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}


.feature-business {
  background-color: #0e0e0f;
  color: #fff;
  padding: 80px 0;
  overflow: hidden;
}

.feature-business-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.feature-business-left {
  flex: 1 1 45%;
  text-align: center;
}

.feature-business-image {
  width: 100%;
  max-width: 480px;
  border-radius: 10px;
}

.feature-business-right {
  flex: 1 1 45%;
  position: relative;
}

.feature-business-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.feature-business-flash {
  width: 75px;
  height: 95px;
  margin-left: 20px;
  animation: feature-flash-glow 1.5s infinite;
  filter: drop-shadow(0 0 8px #ffb100);
}

/* Flashing glow animation */
@keyframes feature-flash-glow {
  0%, 100% {
    opacity: 1;
    filter: drop-shadow(0 0 8px #ffb100);
  }
  50% {
    opacity: 0.4;
    filter: drop-shadow(0 0 18px #ffcc33);
  }
}

.feature-business-underline {
  width: 90px;
  height: 5px;
  background: linear-gradient(to right, #ffb400, #ff3c00);
  border-radius: 5px;
  margin: 15px 0 25px;
}

.feature-business-text {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 30px;
}

.feature-business-action {
  display: flex;
  align-items: center;
  gap: 15px;
}

.feature-icon-btn1 {
  width: 50px;
  height: 50px;
  background: linear-gradient(90deg, #ffb400, #ff3c00);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.feature-icon-btn1:hover {
  transform: scale(1.1);
}

.feature-business-caption {
  color: #ffb400;
  font-weight: 500;
}

@media screen and (max-width: 768px) {

  .feature-business {
    padding: 60px 10px;
  }

  .feature-business-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .feature-business-left,
  .feature-business-right {
    flex: 1 1 100%;
    text-align: center;    
  }

  .feature-business-image {
    max-width: 300px;      
    margin: 0 auto;
  }

  .feature-business-title {
    font-size: 1.8rem;    
    gap: 8px;
  }

  .feature-business-flash {
    width: 50px;            
    height: 65px;
    margin-left: 10px;
  }

  .feature-business-underline {
    width: 60px;            
    height: 4px;
    margin: 10px auto 20px;
  }

  .feature-business-text {
    font-size: 0.95rem;    
    line-height: 1.5;
    margin-bottom: 20px;
    max-width: 100%;
  }

  .feature-business-action {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .feature-icon-btn1 {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }

  .feature-business-caption {
    font-size: 0.9rem;
  }
}


.business-section {
  padding: 80px 10%;
  background: linear-gradient(180deg, #0b0d0d, #180708, #ff2121);
  text-align: center;
  overflow: hidden;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 60px;
  color: #fff;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, #f44336, #ff9800, #ffeb3b);
}

.cards-container {
  display: flex;
  justify-content: space-between; 
  gap: 30px;
  flex-wrap: nowrap; 
  flex-direction: row;
  flex-wrap: nowrap;
}

@media (max-width: 1024px) {
  .cards-container {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.solution-card {
  background: #101a20;
  border: 1px solid #1d2a30;
  border-radius: 12px;
  padding: 40px 30px;
  width: 320px;
  text-align: left;
  transition: all 0.3s ease;
}

.solution-card:hover {
  background: #16242c;
  transform: translateY(-8px);
  border-color: #ff3b3b;
}

.icon {
  font-size: 40px;
  color: #ff3b3b;
  margin-bottom: 25px;
}

.solution-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.solution-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #b0b7bb;
  margin-bottom: 25px;
}

.read-more {
  color: #ff3b3b;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: 0.3s;
}

.read-more span {
  margin-left: 8px;
  transition: 0.3s;
}

.read-more:hover span {
  transform: translateX(5px);
}

.business-slider {
  padding: 80px 0;
  text-align: center;
  position: relative;
  background-color: #000;
  overflow: hidden;
}


.image-track {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  overflow: hidden;
  margin-bottom: 50px;
}

.image-track img {
  height: 320px;
  width: auto;
  border-radius: 8px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.image-track img:hover {
  transform: scale(1.05);
}


.text-marquee {
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
}

.scroll-text {
  display: inline-block;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #ff3b3b;
  animation: marquee 18s linear infinite;
  text-transform: uppercase;
}

.star {
  font-size: 40px;
  color: #ff3b3b;
  margin: 0 20px;
  opacity: 0.8;
}

@keyframes marquee {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}

@media screen and (max-width: 768px) {

  .image-track {
    gap: 15px;            
    margin-bottom: 30px;
    overflow-x: auto;
  }

  .image-track img {
    height: 200px;       
    width: 200px;
    border-radius: 6px;
  }

  .image-track img:hover {
    transform: scale(1.03);
  }


  .text-marquee {
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .scroll-text {
    font-size: 24px;      
    letter-spacing: 1px;  
  }

  .star {
    font-size: 24px;     
    margin: 0 10px;
  }


  @keyframes marquee {
    from {
      transform: translateX(0%);
    }
    to {
      transform: translateX(-50%);
    }
  }
}

.service-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 10%;
  overflow: hidden;
  flex-wrap: wrap;
  background-color: #000;
}

.service-hero-left img {
  width: 500px;
  height: 500px;
  border-radius: 8px;
}

.service-hero-right {
  text-align: left;
  max-width: 400px;
}

.service-hero-right h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
}

.service-underline {
  width: 120px;
  height: 4px;
  background: linear-gradient(to right, orange, limegreen);
  margin: 10px 0 20px;
  border-radius: 2px;
}

.service-hero-right img {
  width:400px;
  border-radius: 8px;
}


@media screen and (max-width: 768px) {

  .service-hero {
    flex-direction: column;     
    align-items: center;
    padding: 30px 5%;           
    text-align: center;
  }

  .service-hero-left img {
    width: 300px;               
    height: 300px;
    margin-bottom: 20px;
  }

  .service-hero-right {
    max-width: 100%;
  }

  .service-hero-right h1 {
    font-size: 1.8rem;          
    line-height: 1.4;
  }

  .service-underline {
    width: 80px;                
    height: 3px;
    margin: 8px auto 15px;
  }

  .service-hero-right img {
    width: 250px;               
    border-radius: 6px;
    margin-top: 15px;
  }
}



.service-header {
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  align-items: center;
  padding: 60px 10%;
  flex-wrap: wrap;
  background-color: #000;
  gap: 40px;
}

.service-header-left h2 {
  font-size: 2rem;
  font-weight: 700;
}

.service-header-left span {
  color: #fff;
}

.service-header-right {
  max-width: 600px;
}

.service-header-right p {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.6;
}


.service-main {
  text-align: center;
  padding: 60px 10%;
  overflow: hidden;
  background-color: #000;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-top: 40px;
}

.service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  flex-wrap: nowrap;
}


.service-item img {
  width: 60%;      
  max-width: 700px;
  height: auto;      
  border-radius: 10px;
}



.service-number {
  position: absolute;
  left: 10px;
  font-size: 10rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  z-index: 999;
}

.service-info {
  background-color: #111;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 25px;
  border-radius: 8px;
  z-index: 2;
  width: 35%;        
  min-width: 250px;
  height: auto;
}

.service-info h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.service-info p {
  color: #aaa;
  font-size: 0.9rem;
  margin-bottom: 10px;
  margin-top: 50px;
}

.service-arrow {
  font-size: 2rem;
  color: limegreen;
  text-decoration: none;
  transition: transform 0.3s ease, color 0.3s ease;
}

.service-arrow:hover {
  transform: translate(5px, -5px);
  color: orange;
}

.service-reverse {
  flex-direction: row-reverse;
}

.service-item.service-reverse .service-number {
  left: auto;
  right: 10px;
}

@media (max-width: 1024px) {
  .service-item {
    flex-direction: column; 
    align-items: center;
    gap: 20px;
  }

  .service-item img,
  .service-info {
    width: 100%;            
  }

  .service-info {
    height: auto;
  }

  .service-number {
    font-size: 6rem;       
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    top: -20px;
  }

  .service-item.service-reverse .service-number {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
}

@media screen and (max-width: 768px) {


  .service-header {
    flex-direction: column;
    align-items: center;
    padding: 40px 5%;
    gap: 20px;
    text-align: center;
  }

  .service-header-left h2 {
    font-size: 1.6rem;
  }

  .service-header-right {
    max-width: 100%;
  }

  .service-header-right p {
    font-size: 0.9rem;
    line-height: 1.4;
  }


  .service-main {
    padding: 40px 5%;
  }

  .service-list {
    gap: 50px;
    margin-top: 30px;
  }

  .service-item {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
  }

  .service-item img {
    width: 100%;
    height: auto;
    max-width: 300px;
    border-radius: 8px;
  }

  .service-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -20px;
    font-size: 5rem; 
    text-align: center;
  }

 
  .service-info {
    width: 90%;
    height: auto;
    padding: 20px;
    margin-top: 20px;
  }

  .service-info h3 {
    font-size: 1rem;
  }

  .service-info p {
    font-size: 0.85rem;
    margin-top: 10px;
  }


  .service-item.service-reverse {
    flex-direction: column; 
  }

  .service-item.service-reverse .service-number {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }


  .service-arrow {
    font-size: 1.5rem;
  }
}



.service-partners {
  background-color: #010a0f;
  color: #fff;
  text-align: center;
  padding: 80px 10%;
  overflow: hidden;
}

.service-partners-content h4 {
  color: #b3b3b3;
  font-size: 1rem;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.service-partners-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 50px;
}


.service-partners-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  overflow: hidden;
}


.marquee {
  overflow: hidden;
  width: 100%;
}


.marquee-content {
  display: flex;
  gap: 30px;
  white-space: nowrap;
}


.service-partner-card {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  width: 180px;
  border-radius: 8px;
  background-color: #0b0b0b;
  padding: 10px;
}

.service-partner-card img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  filter: none;
}


.service-partner-card:hover {
  transform: scale(1.1);
  background-color: #111;
  transition: transform 0.3s ease;
}


.marquee-left .marquee-content {
  animation: scroll-left 20s linear infinite;
}


.marquee-right .marquee-content {
  animation: scroll-right 20s linear infinite;
}


@keyframes scroll-left {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

@keyframes scroll-right {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media screen and (max-width: 768px) {

 
  .service-partners {
    padding: 50px 5%;
  }


  .service-partners-content h4 {
    font-size: 0.85rem;
    margin-bottom: 15px;
  }

  .service-partners-content h2 {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }


  .service-partners-grid {
    gap: 25px;
  }


  .marquee {
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
  }

  .marquee-content {
    display: flex;
    gap: 15px;
  }


  .service-partner-card {
    width: 120px;
    height: 70px;
    padding: 5px;
  }

  .service-partner-card img {
    max-height: 40px;
  }


  .marquee-left .marquee-content,
  .marquee-right .marquee-content {
    animation-duration: 15s;
  }
}

.pricing-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #000;
  overflow: hidden;
}

.pricing-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.pricing-header span {
  position: relative;
}

.pricing-header span::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 3px;
  background: linear-gradient(90deg, orange, limegreen);
  bottom: -8px;
  left: -35%;
  transform: translateX(-50%);
}



.pricing-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 50px;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 30px;
  width: 300px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.8);
}

.premium {
  background-color: #f04937;
}

.plan-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.plan-header .icon {
  font-size: 1.5rem;
}

.plan-name {
  font-size: 2rem;
  font-weight: 700;
  margin: 10px 0;
}

.price {
  font-size: 1.5rem;
}

.price span {
  font-size: 0.9rem;
  color: #ccc;
}

.free {
  font-size: 0.9rem;
  color: #aaa;
  margin-bottom: 20px;
}

button {
  background-color: #fff;
  color: #000;
  padding: 12px 20px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

button:hover {
  background: linear-gradient(90deg, orange, limegreen);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 255, 255, 0.25);
}

.features {
  list-style: none;
  padding: 0;
  margin-top: 25px;
  font-size: 0.95rem;
  text-align: left;
}

.features li {
  margin: 8px 0;
}

.features li::before {
  content: "• ";
  color: #f04937;
}


@media screen and (max-width: 768px) {


  .pricing-section {
    padding: 40px 15px;
  }

  .pricing-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .pricing-header span::after {
    width: 120px;
    left: 50%;
    transform: translateX(-50%);
  }


  .pricing-container {
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
  }


  .pricing-card {
    width: 100%;
    padding: 20px;
  }

  .plan-name {
    font-size: 1.5rem;
  }

  .price {
    font-size: 1.2rem;
  }

  .price span {
    font-size: 0.8rem;
  }

  .free {
    font-size: 0.8rem;
    margin-bottom: 15px;
  }

  button {
    padding: 10px 18px;
    font-size: 0.9rem;
  }

  .features {
    font-size: 0.85rem;
  }
}


    .blog-section {
      display: flex;
      overflow: hidden;
      justify-content: space-between;
      align-items: flex-start;
      padding: 100px 8%;
      background-color: #000;
      flex-wrap: wrap;
    }


    .blog-left {
      flex: 1;
      max-width: 40%;
    }

    .blog-left h2 {
      font-size: 48px;
      line-height: 1.3;
      font-weight: 700;
    }

    .underline {
      width: 160px;
      height: 5px;
      background: linear-gradient(90deg, #ff6b00, #84d40c);
      border-radius: 5px;
      margin: 10px 0 40px;
    }

    .get-started-btn {
      display: inline-flex;
      align-items: center;
      background: linear-gradient(90deg, #ff6b00, #ff3b3b);
      border: none;
      padding: 14px 28px;
      border-radius: 30px;
      color: #fff;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      gap: 10px;
      transition: 0.3s;
    }

    .get-started-btn:hover {
      transform: translateY(-3px);
    }

    .get-started-btn i {
      background: #fff;
      color: #ff3b3b;
      border-radius: 50%;
      padding: 10px;
      font-size: 14px;
    }


    .blog-right {
      flex: 1;
      max-width: 50%;
      display: flex;
      flex-direction: column;
      gap: 30px;
    }

    .blog-card {
      background: #0d1b21;
      padding: 30px;
      border-radius: 20px;
      position: relative;
      transition: 0.3s;
    }

    .blog-card:hover {
      transform: translateY(-5px);
    }

    .blog-meta {
      display: flex;
      align-items: center;
      gap: 20px;
      color: #aaa;
      font-size: 14px;
      margin-bottom: 20px;
    }

    .blog-meta i {
      color: #ff6b00;
    }

    .blog-card h3 {
      font-size: 22px;
      line-height: 1.4;
      font-weight: 600;
      margin-bottom: 20px;
    }

    .blog-author {
      display: flex;
      align-items: center;
      gap: 10px;
      color: #ccc;
      font-size: 14px;
    }

    .blog-author img {
      width: 35px;
      height: 35px;
      border-radius: 50%;
    }

    .read-arrow {
      position: absolute;
      right: 30px;
      bottom: 30px;
      background: #fff;
      color: #ff3b3b;
      border-radius: 50%;
      padding: 10px;
      transition: 0.3s;
    }

    .read-arrow:hover {
      transform: translateX(5px);
      background-color: red;
      color: white;
    }

  @media screen and (max-width: 768px) {

  .blog-section {
    flex-direction: column;
    padding: 60px 5%;
  }


  .blog-left {
    max-width: 100%;
    text-align: center;
    margin-bottom: 40px;
  }

  .blog-left h2 {
    font-size: 2rem;
  }

  .underline {
    width: 100px;
    margin: 10px auto 30px;
  }

  .get-started-btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .get-started-btn i {
    padding: 8px;
    font-size: 12px;
  }


  .blog-right {
    max-width: 100%;
    gap: 20px;
  }

  .blog-card {
    padding: 20px;
  }

  .blog-card h3 {
    font-size: 18px;
  }

  .blog-meta,
  .blog-author {
    font-size: 12px;
    gap: 10px;
  }

  .blog-author img {
    width: 30px;
    height: 30px;
  }

  .read-arrow {
    right: 20px;
    bottom: 20px;
    padding: 8px;
  }
}

    .contact-banner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: linear-gradient(90deg, #ff4b2b, #ff416c);
      padding: 40px 8%;
      flex-wrap: wrap;
      overflow: hidden;
    }

    .contact-item {
      display: flex;
      align-items: center;
      color: #fff;
      font-size: 18px;
      gap: 15px;
    }

    .contact-item i {
      font-size: 24px;
    }

    .contact-item a {
      color: #fff;
      text-decoration: underline;
    }

    .contact-item span {
      font-weight: 500;
    }


    @media screen and (max-width: 768px) {

  .contact-banner {
    flex-direction: column;
    text-align: center;
    padding: 30px 5%;
    gap: 20px;
  }

  .contact-item {
    justify-content: center;
    font-size: 16px;
    gap: 10px;
    flex-wrap: wrap;
  }

  .contact-item i {
    font-size: 20px;
  }

  .contact-item a {
    font-size: 16px;
  }

  .contact-item span {
    font-weight: 500;
  }
}


    footer {
      background-color: #0d1b21;
      padding: 80px 8% 40px;
      overflow: hidden;
    }

    .footer-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 40px;
    }


    .footer-logo-section img {
      width: 150px;
      margin-bottom: 20px;
    }

    .footer-logo-section p {
      color: #ccc;
      font-size: 15px;
      line-height: 1.6;
      max-width: 300px;
    }


    .footer-column h3 {
      font-size: 18px;
      font-weight: 600;
      position: relative;
      display: inline-block;
      margin-bottom: 20px;
    }

    .footer-column h3::after {
      content: "";
      display: block;
      width: 60px;
      height: 2px;
      background: #ff4b2b;
      margin-top: 5px;
    }

    .footer-column ul {
      list-style: none;
      padding: 0;
    }

    .footer-column ul li {
      margin-bottom: 10px;
    }

    .footer-column ul li a {
      text-decoration: none;
      color: #aaa;
      transition: 0.3s;
    }

    .footer-column ul li a:hover {
      color: #ff4b2b;
    }


    .newsletter input[type="email"] {
      width: 100%;
      padding: 12px;
      border: none;
      border-bottom: 1px solid #555;
      background: transparent;
      color: #fff;
      margin-bottom: 15px;
      outline: none;
    }

    .newsletter label {
      font-size: 13px;
      color: #aaa;
      display: block;
      margin-bottom: 20px;
    }

    .social-icons a {
      color: #fff;
      margin-right: 15px;
      font-size: 18px;
      transition: 0.3s;
    }

    .social-icons a:hover {
      color: #ff4b2b;
    }

   
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-top: 1px solid #222;
      padding-top: 25px;
      margin-top: 50px;
      flex-wrap: wrap;
      color: #aaa;
      font-size: 14px;
    }

    .footer-bottom a {
      color: #ff4b2b;
      text-decoration: none;
    }

    @media (max-width: 768px) {
      .contact-banner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 10px;
      }
    }

 @keyframes bounceIn {
      0% { opacity: 0; transform: scale(0.3); }
      50% { opacity: 1; transform: scale(1.05); }
      70% { transform: scale(0.9); }
      100% { transform: scale(1); }
    }

    @keyframes bounceInLeft {
      0% { opacity: 0; transform: translateX(-300px); }
      60% { opacity: 1; transform: translateX(30px); }
      80% { transform: translateX(-10px); }
      100% { transform: translateX(0); }
    }

    @keyframes bounceInRight {
      0% { opacity: 0; transform: translateX(300px); }
      60% { opacity: 1; transform: translateX(-30px); }
      80% { transform: translateX(10px); }
      100% { transform: translateX(0); }
    }

    @keyframes bounceInUp {
      0% { opacity: 0; transform: translateY(300px); }
      60% { opacity: 1; transform: translateY(-20px); }
      80% { transform: translateY(10px); }
      100% { transform: translateY(0); }
    }

    @keyframes bounceInDown {
      0% { opacity: 0; transform: translateY(-300px); }
      60% { opacity: 1; transform: translateY(20px); }
      80% { transform: translateY(-10px); }
      100% { transform: translateY(0); }
    }

    .animate-bounceIn { animation: bounceIn 2s ease both; }
    .animate-bounceInLeft { animation: bounceInLeft 2s ease both; }
    .animate-bounceInRight { animation: bounceInRight 2s ease both; }
    .animate-bounceInUp { animation: bounceInUp 2s ease both; }
    .animate-bounceInDown { animation: bounceInDown 2s ease both; }

    @keyframes headShake {
  0% { transform: translateX(0); }
  6.5% { transform: translateX(-6px) rotateY(-9deg); }
  18.5% { transform: translateX(5px) rotateY(7deg); }
  31.5% { transform: translateX(-3px) rotateY(-5deg); }
  43.5% { transform: translateX(2px) rotateY(3deg); }
  50% { transform: translateX(0); }
}

.headShake {
  animation: headShake 2s ease;
}

@media (min-width: 320px) and (max-width: 380px) {
  .top-bar .right {
    gap: 4px;
  }

  .top-bar .right .social {
    width: 20px;
    height: 20px;
    margin-top: 6px;
    font-size: 10px;
  }

  .top-bar {
    padding: 5px 10px;
    font-size: 10px;
  }
}


.newsletter-box {
    position: relative;
    width: 100%;
    max-width: 350px;
}

.newsletter-box input {
    width: 100%;
    padding: 12px 50px 12px 15px; /* space for button */
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    transition: 0.3s ease;
}

.newsletter-box input:focus {
    border-color: #007bff;
}

/* COMMON SEND BUTTON */
#sendNewsletter {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: #007bff;
    color: white;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s ease-in-out;
}

#sendNewsletter:hover {
    background: #0056b3;
    transform: translateY(-50%) scale(1.08);
}

/* Error message */
.error-text {
    display: block;
    color: red;
    font-size: 13px;
    margin-top: 6px;
}
