/*
Theme Name: Netband
Author: Modina Theme
Author URI: https://themeforest.net/user/modinatheme/
Description:  Internet provider & Broadband TV HTML Template
Version: 1.0.0
*/

/*
=================================
|***    Table of contents:   ***|
=================================

1. General styles
2. Typography
3. Helpers
4. Preloader
5. Go up button
6. Header and navigation
7. Hero Section
8. About us
9. Services
10. Fun facts
11. Projects
12. Pricing
13. Testimonial
14. CTA
15. Team
16. Video Banner
17. Shop
18. Marquee
19. Blog
20. Footer

Main Style file-> assets/css/main.css 
*/


.actor-items img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;      /* circular icon */
    border: 3px solid #fff;  /* white border */
    box-shadow: 0 4px 8px rgba(0,0,0,0.2); /* subtle shadow */
  }
  
  /* Target the pricing boxes */
.pricing-box-items {
  color: #fff; /* makes all text inside white */
}

/* If you want to be more specific */
.pricing-box-items h3,
.pricing-box-items h4,
.pricing-box-items ul li,
.pricing-box-items .price-button a span {
  color: #fff;
}

/* Ensure icons also appear clearly */
.pricing-box-items i {
  color: #fff;
}

/* Space between stacked cards */
.card + .card {
  margin-top: 20px;
}

/* FIX INPUT TEXT VISIBILITY */
input,
select,
textarea {
  color: #111 !important;        /* text color while typing */
  background-color: #fff !important;
  caret-color: #111;             /* cursor color */
}

/* Placeholder text */
input::placeholder,
textarea::placeholder {
  color: #9ca3af;
}

/* When focused (clicking or typing) */
input:focus,
select:focus,
textarea:focus {
  color: #111 !important;
  background-color: #f3f4f6;     /* light grey like selection */
  outline: none;
  border-color: #e63946;
}

/* Selected text */
::selection {
  background: #d1d5db;
  color: #111;
}


* Remove unnecessary spacing around the footer */
.footer-section {
  margin: 0;          /* removes outside spacing */
  padding: 20px 0;    /* keeps a balanced top/bottom padding */
}

/* Ensure container doesn’t add extra spacing */
.footer-section .container {
  margin: 0 auto;     /* center without extra gaps */
  padding: 0;         /* reset default padding */
}

/* Optional: tighten spacing between widgets */
.footer-widgets-wrapper {
  margin: 0;
  padding: 0;
}

info@thestreamview.com


/* From Uiverse.io by Gaurang7717 */ 
.Btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition-duration: 0.3s;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
  background-color: #00d757;
}

.sign {
  width: 100%;
  transition-duration: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sign svg {
  width: 25px;
}

.sign svg path {
  fill: white;
}
.text {
  position: absolute;
  right: 0%;
  width: 0%;
  opacity: 0;
  color: white;
  font-size: 1.2em;
  font-weight: 600;
  transition-duration: 0.3s;
}

.Btn:hover {
  width: 150px;
  border-radius: 40px;
  transition-duration: 0.3s;
}

.Btn:hover .sign {
  width: 30%;
  transition-duration: 0.3s;
  padding-left: 10px;
}

.Btn:hover .text {
  opacity: 1;
  width: 70%;
  transition-duration: 0.3s;
  padding-right: 10px;
}
.Btn:active {
  transform: translate(2px, 2px);
}

.Btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  position: fixed;        /* <-- key change */
  bottom: 20px;           /* distance from bottom */
  right: 20px;            /* distance from right */
  z-index: 9999;          /* keep it above other elements */
  overflow: hidden;
  transition-duration: 0.3s;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
  background-color: #00d757;
}
