body {
  background-color: #111;
  margin: 0;
  overflow-x: hidden !important;
  /* Yeh yahan hona chahiye */
}
body {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}
.phone-link {
  color: #ccd4d3; /* initial text color */
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.phone-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -4px;
  background-color: #fff;
  transition: width 0.3s ease;
}

.phone-link:hover {
  color: #fff; /* hover पर text का रंग हल्का change */
}

.phone-link:hover::after {
  width: 100%; /* hover पर नीचे line animate होकर दिखे */
}

.normal-text {
    color: #857d7d;
    font-size: 1rem;
}
.new_logo {
  width: 300px;
}

@media (max-width: 992px) {
  .new_logo {
    width: 150px;
  }
}

.new .dropdown .nav-link {
  color: #fff !important;
  text-decoration: none;
  padding: 0px 14px !important;

}

.new a {
  padding: 0px 14px !important;

}

.new .nav-link:hover {
  box-shadow: none;

}

.custom-header {
  background-color: #0d1b22;
  /* background: linear-gradient(135deg, #7ec0d81c, #4b91b285); */
  border-radius: 100px;
  padding: 10px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-text {
  color: white;
  font-size: 28px;
  font-weight: bold;
  margin-right: 10px;
}

.powered-by {
  font-size: 10px;
  line-height: 1.1;
  color: #ccc;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #ccc;
  font-weight: 500;
  font-size: 18px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: white;
}

.btn-talk {
  border-radius: 50px;
  padding: 8px 24px !important;
  border: 1px solid #4d74ff;
  color: white;
  background: transparent;
  font-weight: 500;
  transition: all 0.3s;
}

.btn-talk:hover {
  background-color: #4d74ff;
  color: white;
}

.hamburger {
  font-size: 24px;
  color: white;
  display: none;
}

@media (max-width: 992px) {
  .nav-links {
    display: none;
  }

  .btn-talk {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .custom-header {
    justify-content: space-between;
  }
}

.hero-section {
  background-color: #0d1b22;
  color: white;
}

.hero-heading {
  font-size: 2.5rem;
  font-weight: 700;
}

.highlight {
  color: #4d74ff;
  background-color: rgba(77, 116, 255, 0.1);
  padding: 3px 10px;
  border-radius: 10px;
}

.hero-text {
  color: #ccc;
  margin-top: 20px;
  font-size: 1rem;
  max-width: 500px;
}

.hero-buttons .btn {
  border-radius: 50px;
  padding: 10px 25px;
  font-weight: 500;
  margin-right: 10px;
}

.btn-primary {
  background-color: white;
  color: black;
  border: none;
  padding: 10px 25px;
    font-weight: 500;
    margin-right: 10px;
  
}

.btn-outline-light {
  border: 1px solid #ccc;
  color: white;
  padding: 10px 25px;
     border-radius: 50px;
    font-weight: 500;
    margin-right: 10px;
}
@media (max-width: 768px) {
  .hero-heading {
    font-size: 2rem;
    text-align: center;
  }

  .hero-text {
    text-align: center;
    margin: 0 auto 20px;
  }

  .hero-buttons {
    text-align: center;
  }
}

.toolbox-section {
  padding: 60px 20px;
}

.toolbox-header {
  text-align: center;
  margin-bottom: 40px;
}

.toolbox-header h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #ffffff;
}
.animated-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  background: linear-gradient(45deg, #73b9d0, #128C7E);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 12px rgba(18, 140, 126, 0.4);
}

.animated-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(18, 140, 126, 0.6);
}

.animated-btn:active {
  transform: scale(0.96);
}
.toolbox-header .btn {
  background-color: #161b22;
  border: 1px solid #3f3f3f;
  color: #fff;
  margin-top: 15px;
  border-radius: 30px;
  padding: 8px 20px;
  transition: all 0.3s ease;
}

.toolbox-header .btn:hover {
  background-color: #58a6ff;
  color: #000;
}

.toolbox-card {
  background-color: #161b22;
  border-radius: 15px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  box-shadow: 0 0 0 transparent;
}

.toolbox-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(88, 166, 255, 0.2);
}

.toolbox-card img {
  max-width: 100%;
  margin-bottom: 15px;
}

.toolbox-card h5 {
  font-weight: 600;
  color: #ffffff;
}

.toolbox-card p {
  color: #9ca3af;
  font-size: 0.9rem;

}

.explore-link {
  text-decoration: none;
  color: #58a6ff;
  font-weight: 500;
  transition: color 0.3s ease;
}

.explore-link:hover {
  color: #1f6feb;
}

.advantage-box {
  /* background-color: rgba(252, 237, 203, 0.2); */
  /* #FCEDCB33 is ~20% opacity */
  border: 1px solid rgba(0, 200, 255, 0.35);
  /* #00C8FF59 */
  border-radius: 15px;
  backdrop-filter: blur(40px);
  box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
}

.advantage-box2 {
  /* background-color: rgba(220, 226, 229, 0.2); */
  /* 0.2 = 20% */
  border: 1px solid rgba(0, 200, 255, 0.35);
  /* #00C8FF59 */
  border-radius: 15px;
  backdrop-filter: blur(40px);
  box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
}

.advantage-box3 {
  /* background-color: rgba(220, 226, 229, 0.2); */
  /* 0.2 = 20% */
  border: 1px solid rgba(0, 200, 255, 0.35);
  /* #00C8FF59 */
  border-radius: 15px;
  backdrop-filter: blur(40px);
  box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
}

.advantage-box4 {
  /* background-color: rgba(205, 230, 219, 0.2); */

  border: 1px solid rgba(0, 200, 255, 0.35);
  /* #00C8FF59 */
  border-radius: 15px;
  backdrop-filter: blur(40px);
  box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
}


.advantage-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.2);
}

.advantage-icon {
  font-size: 32px;
  color: #dce6f4;
  margin-bottom: 15px;
}
.advantage-icon img {
   width: 52px;

}

.advantage-title {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 10px;
}

.advantage-text {
  color: #b3bac1;
  font-size: 15px;
}

@media (max-width: 767.98px) {
  .advantage-box {
    margin-bottom: 20px;
  }
}

.tab-btns {
  background: #111;
  border-radius: 10px;
  padding: 5px 20px;
  display: flex;
  gap: 20px;
}

.tab-link {
  color: #ccc;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.tab-link.active {
  color: white;
  border-bottom: 2px solid #3b82f6;
}

.main-card {
  margin-top: 40px;

  text-align: center;
  transition: opacity 0.5s ease-in-out;
  /* min-height: 300px; */
}

.main-card img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;

}

.circle_img {
  width: 65%;

}

.text-info {
  color: #AFB3BC !important;
}

.stylish {
  /* font-family: Akshar; */
  font-weight: 300;
  font-size: 20px;
  color: #656E76;


}

.custom-email-form {
  background: #111;
  /* dark bg */
  border: 1px solid #444;
  border-radius: 50px;
  display: flex;
  padding: 5px;
  max-width: 400px;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.05);
}

.custom-email-form input {
  background: transparent;
  border: none;
  color: #ccc;
  padding: 10px 20px;
  flex: 1;
  border-radius: 50px 0 0 50px;
  outline: none;
}

.custom-email-form input::placeholder {
  color: #666;
}

.custom-email-form button {
  background: linear-gradient(135deg, #7ec0d8, #4b91b2);
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 0 50px 50px 0;
  font-weight: 600;
  transition: 0.3s ease;
}

.custom-email-form button:hover {
  opacity: 0.9;
}

.communication-img {
  width: 100%;
}

@media (min-width: 768px) {
  .communication-img {
    width: 75%;
  }
}

@media (max-width: 768px) {
  .background-section {

    padding: 30px 30px !important;
  }
}

.background-section {
  background-color: #001225;
  padding: 0px 110px;
}
 /* Make the toggler icon white */
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255,255,255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22' /%3E%3C/svg%3E");
}
.mega-right a{
  color: #555555!important;
  padding: 0px 0px !important;
}
.btn_get{
background: linear-gradient(90deg, rgba(0, 191, 255, 0.933333) 0%, rgba(0, 136, 255, 0.933333) 100%);
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s ease;
}
.btn_get:hover {
  opacity: 0.9;
}