* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.custom-navbar {
  background: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 999;
}

.custom-navbar .container {
  padding-left: 15px;
  padding-right: 15px;
}

.navbar-brand span {
  color: #3F3A8A;
  font-size: 18px;
}


.navbar-nav .nav-link {
  margin-left: 20px;
  font-weight: 500;
  color: #333;
  position: relative;
  transition: 0.3s;
}


.navbar-nav .nav-link:hover {
  color: #7c75e4;
}

.dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  border: none;
}

.dropdown-item {
  transition: 0.3s;
}

.dropdown-item:hover {
  background: #3F3A8A;
  color: #fff;
}

@media (max-width: 991px) {

  .navbar-nav {
    margin-top: 10px;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
  }

  .navbar-nav .nav-link {
    margin-left: 0;
    padding: 10px;
    text-align: center;
  }

  .navbar-nav .nav-link::after {
    display: none;
  }

  .dropdown-menu {
    box-shadow: none;
    border-radius: 5px;
  }
}

@media (max-width: 576px) {

  .navbar-brand span {
    font-size: 16px;
  }

  .custom-navbar {
    padding: 8px 0;
  }

}

/* Home page */
.carousel {
  position: relative;
  overflow: hidden;
}

.carousel img {
  width: 100%;
  height:700px;
 background-size:cover;
}

.carousel .heading {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 15vh;
  width: 400px;
  border-radius: 20px;
  transform: translate(-50%, -50%);
  color: #3F3A8A;
  /* background-color: rgba(0, 0, 0, 0.5); */
  text-align: center;
}

.carousel .heading h2 {
  font-size: 48px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(-50px);
  animation: slideDown 3s ease forwards;
}

.heading p {
  opacity: 0;
  transform: translateY(50px);
  animation: slideUp 1s ease forwards;
  animation-delay: 0.8s;
}

@keyframes slideDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 576px) {
  .carousel {
    width: 100%;
    height: 50vh;
  }
}

.about {
  background: #f8f9fa;
}

.about img {
  border-radius: 15px;
  height: 400px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.about h2 {
  font-weight: 700;
  margin-bottom: 15px;
  color: #3F3A8A;
}

.about p {
  color: #555;
  line-height: 1.7;
  font-size: 15px;
  text-align: justify;
}

.about .btn {
  border-radius: 8px;
  padding: 10px 20px;
  transition: 0.3s ease;
}

.about .btn:hover {
  background-color: #2e2a6d !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.services {
  padding: 60px 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.services h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.card {
  border: 1px solid #eee;
  padding: 25px;
  border-radius: 12px;
  background: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
}

.card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.icon {
  font-size: 30px;
  margin-bottom: 15px;
}

.card p {
  font-size: 15px;
  color: #444;
  margin-bottom: 15px;
}

.card a {
  text-decoration: none;
  color: #ff6b00;
  font-weight: 600;
}

.card a:hover {
  text-decoration: underline;
}


/* About page Banner*/

.banner {
  position: relative;
}

.banner-img {
  height: 350px;
  object-fit: cover;
}

/* Text overlay */
.banner-text {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  color: #3F3A8A;
}

.banner-text p {
  color: black;
}

.banner-text {
  position: absolute;
  z-index: 2;
}


.info-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
}

.info-card h3 {
  color: #3F3A8A;
  font-weight: 700;
}

.info-card p {
  margin: 0;
  color: #555;
  font-size: 14px;
  text-align: center;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.mv-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.mv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.mv-card .icon {
  font-size: 40px;
}

.mv-card h3 {
  color: #3F3A8A;
  margin-bottom: 10px;
}

.mv-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}


.why {
  background: #f8f9fa;
}

.why-list {
  max-width: 900px;
  margin: auto;
}

.why-list p {
  background: #fff;
  padding: 12px 15px;
  border-radius: 8px;
  margin-bottom: 10px;
  font-size: 15px;
  color: #444;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.why-list p:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}



/* Services Page styling */
.overlay {
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 20px;
  border-radius: 10px;
  backdrop-filter: blur(5px);
}

.overlay h2 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0;
  color: white;
  text-transform: uppercase;
}

.overlay {
  animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.services-pattern {
  background: #f9f9f9;
}

.service-box {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  height: 100%;
  transition: 0.3s;
}

.service-box h5 {
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.service-box p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

.service-box h5 i {
  color: #3F3A8A;
  margin-right: 8px;
  font-size: 25px;
  transition: 0.3s;
}

.service-box:hover i {
  color: #ff6600;
}

.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}


.how-work {
  background: linear-gradient(135deg, #f8f9ff, #eef1ff);
}


.work-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}


.work-card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(108, 99, 255, 0.2), transparent);
  top: 0;
  left: -100%;
  transition: 0.5s;
}

.work-card:hover::before {
  left: 100%;
}

.work-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.icon-box {
  width: 75px;
  height: 75px;
  margin: 0 auto 15px;
  background: linear-gradient(135deg, #3F3A8A, #6C63FF);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: 0.3s;
}

.work-card:hover .icon-box {
  transform: rotate(10deg) scale(1.1);
}


.work-card h6 {
  font-weight: 600;
  margin-top: 10px;
}

.work-card p {
  font-size: 14px;
  color: #666;
}

.premium-btn {
  background: linear-gradient(135deg, #3F3A8A, #6C63FF);
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.premium-btn:hover {
  background: #000;
  transform: scale(1.05);
}

/* Network Page style */
.cart {
  background: #ffffff;
  padding: 25px 15px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.cart:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(63, 58, 138, 0.25);
}

.cart i {
  color: #3F3A8A;
  background: rgba(63, 58, 138, 0.1);
  padding: 15px;
  border-radius: 50%;
  margin-bottom: 10px;
}


.cart h3 {
  color: #3F3A8A;
  margin-top: 10px;
}

.cart p {
  color: #6c757d;
  font-size: 14px;
}

.container.py-5 {
  background: #f8f9fc;
}

.container h3 {
  color: #3F3A8A;
  font-size: 28px;
  line-height: 1.3;
}

.container p {
  font-size: 15px;
  line-height: 1.7;
}

.shadow {
  border: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: #fff;
}

.shadow:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12) !important;
}


.shadow i {
  transition: 0.3s ease;
}

.shadow h6 {
  font-size: 16px;
  margin-top: 8px;
  color: #333;
}

.shadow p {
  font-size: 13px;
}

@media (max-width: 768px) {
  .container h3 {
    font-size: 22px;
    text-align: center;
  }

  .container p {
    text-align: center;
  }
}

/* Track Page */
.tabs {
  max-width: 900px;
  width: 40%;
  margin: auto;
  background: white;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  padding: 20px;
  border-radius: 6px;
  margin-bottom: 20px;
}



.tab-header {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border-bottom: 2px solid #eee;
  margin-bottom: 15px;
}


.tab-btn {
  flex: 1 1 auto;
  font-size: clamp(12px, 2vw, 15px);
  border: none;
  cursor: pointer;
  height: 40px;
  border-top: 3px solid transparent;
  transition: all 0.3s ease;
  border-radius: 5px;
}

.tab-btn.active {
  border-top: 3px solid #3F3A8A;
  color: #3F3A8A;
}


.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.track-btn {
  margin-top: 10px;
  background: #3F3A8A;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 150px;
  height: 40px;
  border-radius: 10px;
}


@media (max-width: 576px) {
  .track-cart {
    width: 90%;
    top: 30%;
    height: auto;
    padding: 15px;
  }

  .tabs {
    padding: 15px;
  }

  .tab-btn {
    font-size: 12px;
    height: 35px;
  }

  .track-btn {
    font-size: 14px;
    padding: 8px;
  }
}


.info-card-new {
  background: #fff;
  padding: 30px 20px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

.info-card-new::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #3F3A8A, #6c63ff);
}

.info-card-new:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.icon-box {
  width: 60px;
  height: 60px;
  margin: auto;
  margin-bottom: 15px;
  border-radius: 50%;
  background: linear-gradient(45deg, #3F3A8A, #6c63ff);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box i {
  color: #fff;
  font-size: 24px;
}

.info-card-new h5 {
  font-weight: 600;
  margin-bottom: 8px;
}

.info-card-new p {
  font-size: 14px;
  color: #777;
}

/* Banned Items */
.banned-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 15px;
  text-align: left;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #3F3A8A;
  position: relative;
  overflow: hidden;
}

.banned-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.banned-card i {
  font-size: 28px;
  color: #3F3A8A;
  margin-right: 10px;
}

.banned-card h5 {
  font-weight: 600;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.banned-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.banned-list li {
  font-size: 14px;
  color: #444;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.banned-list li::before {
  content: "⚠️";
  font-size: 14px;
}

.banned-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: rgba(63, 58, 138, 0.05);
  border-radius: 50%;
}

  .main-heading {
  color: #2f3542;
  margin-bottom: 10px;
}

/* Calculator Card */
.calc-card-new {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.calc-card-new:hover {
  transform: translateY(-8px) scale(1.02);
}

.icon {
  font-size: 30px;
  margin-bottom: 10px;
}

.calc-card-new h5 {
  font-weight: 600;
}

.calc-card-new small {
  display: block;
  color: #888;
  margin-bottom: 10px;
}

.calc-card-new input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 10px;
  border: 1px solid #ddd;
  outline: none;
}

.calc-card-new input:focus {
  border-color: #6c5ce7;
  box-shadow: 0 0 6px rgba(108,92,231,0.3);
}

.calc-card-new button {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(45deg, #6c5ce7, #a29bfe);
  color: white;
  font-weight: 500;
  margin-top: 5px;
}

.calc-card-new button:hover {
  opacity: 0.9;
}

.calc-card-new p {
  margin-top: 10px;
  font-weight: bold;
  color: #2ecc71;
}


/* Footer Style */
.footer {
  position: relative;
  background-image: url('images/footer.jpg');
  background-size: cover;
  height: 50vh;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  display: flex;
}

.footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.footer .container {
  position: relative;
  z-index: 1;
}

.footer h3 {
  font-weight: 600;
  color: white;
}

.underline {
  width: 60px;
  height: 3px;
  background: #3F3A8A;
  margin: 10px auto 20px;
}

.footer-links {
  max-width: 900px;
  margin: auto;
  line-height: 30px;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  margin: 0 5px;
  font-size: 14px;
}

.footer-links a:hover {
  color: #fff;
}

.subscribe-btn {
  background: #3F3A8A;
  color: #fff;
  border: none;
  padding: 8px 20px;
  border-radius: 5px;
  margin: 10px 0 20px;
  cursor: pointer;
}

.subscribe-btn:hover {
  background: darkred;
}

.social i {
  font-size: 18px;
  margin: 10px;
  border: 1px solid #fff;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
}

.social i:hover {
  background: #fff;
  color: #4b4b63;
}

.coming {
  margin-top: 15px;
  color: #ccc;
}