* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
  color: #0a0a0a;
  overflow-x: hidden;
}
a,
a:hover,
a:focus {
  text-decoration: none;
}

/* CONTAINER */
.container {
  max-width: 1400px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* COMMON */
.container {
  width: 100%;
  margin: auto;
}

/* TOP HEADER */
.top-header {
  background: #000;
  height: 80px;
  display: flex;
  align-items: center;
}

/* LOGO */
.logo {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.logo img {
  height: 30px;
}

.agent-text {
  font-size: 11px;
  letter-spacing: 1px;
  color: #bbb;
}

/* NAV MENU */
.nav-menu {
  display: flex;
  gap: 30px;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.nav-menu .lang {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-menu img {
  width: 18px;
}

/* RIGHT SIDE */
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.agents {
  color: #fff;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dot {
  width: 8px;
  height: 8px;
  background: #ff3b30;
  border-radius: 50%;
}

/* CALL BUTTON */
.call-btn {
  background: #ffcc00;
  color: #000;
  padding: 14px 22px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
}



.announcement {
    background: linear-gradient(90deg, #f4bf2e, #f48b1d);
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 16px;
    font-size: 15px;
}

.announcement a {
  color: #000;
  text-decoration: underline;
  margin-left: 5px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .nav-menu {
    display: none;
  }

  .agents {
    display: none;
  }
}


<!--hero-->
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* background image ko separate layer me lagaye */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://brightspeedinternetdeals.com/images/Brightspeed-Small-Biz-Worker-1280x859.jpg') no-repeat center center;
  background-size: cover;
  z-index: -1; /* ensure card comes on top */
}


.hero-overlay {
  max-width: 1350px;
  width: 100%;
  margin: auto;
}

.hero-card {
  background: rgba(255, 255, 255, 0.95);
  max-width: 520px;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}



.hero-card h1 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 20px;
}

.sub {
  color: #ff6a00;
  font-weight: 700;
  margin-bottom: 10px;
}

.price-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 20px 0;
}

.price-img {
  width: 180px;
}

.ribbon-img {
  width: 120px;
}

.small-text {
  font-size: 13px;
  color: #555;
  margin-bottom: 20px;
}

.features {
  list-style: none;
  margin: 15px 0;
}

.features li {
  margin-bottom: 8px;
  font-weight: 600;
  position: relative;
  padding-left: 22px;
}

.features li::before {
  content: "✔";
  color: #ff6a00;
  position: absolute;
  left: 0;
}

.check-title {
  margin-top: 20px;
}

.address-form {
  display: flex;
  gap: 10px;
  margin: 15px 0;
}

.address-form input {
  flex: 1;
  padding: 12px;
  border-radius: 25px;
  border: 1px solid #ccc;
}

.address-form button {
  padding: 12px 24px;
  border-radius: 25px;
  background: #ffd966;
  border: none;
  font-weight: 700;
  cursor: pointer;
}

.terms {
  font-size: 11px;
  color: #666;
  margin-top: 15px;
}



<!--3rdsection-->

.bright-section {
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  padding: 80px 40px;
  background: #fff;
}

.main-heading {
  font-size: 48px;
  font-weight: 400;
  text-align: center;
}

.main-heading span {
  color: #f05a28;
  font-weight: 700;
}

.subtitle {
  max-width: 800px;
  margin: 20px auto 60px;
  font-size: 20px;
  color: #000;
}

.cards {
  display: flex;
  gap: 40px;
  justify-content: center;
}

.card {
  width: 420px;
  padding: 40px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  text-align: left;
  position: relative;
}

.card h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.card h2 span {
  color: #f05a28;
}

.price-label {
  margin-top: 20px;
  font-weight: bold;
}

.price {
  font-size: 64px;
  font-weight: 800;
}

.price .small {
  font-size: 18px;
  font-weight: 400;
}

.tax {
  margin-top: -10px;
}

button {
  margin: 30px 0;
  background: #f9c233;
  border: none;
  padding: 16px 30px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.fine {
  font-size: 12px;
  line-height: 1.5;
}

/* Badge */
.badge {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 150px;
  height: 150px;
}

.badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* =========================
   Mobile Responsive Styles
   ========================= */
@media (max-width: 768px) {

  .bright-section {
    padding: 40px 16px;
  }

  .main-heading {
    font-size: 28px;
    line-height: 1.2;
  }

  .subtitle {
    font-size: 16px;
    margin: 16px auto 32px;
  }

  .cards {
    flex-direction: column;
    gap: 24px;
  }

  .card {
    width: 100%;
    padding: 24px;
    text-align: center;
  }

  .card h2 {
    font-size: 28px;
    line-height: 1.2;
  }

  .card p {
    font-size: 15px;
  }

  .price-label {
    text-align: center;
    margin-top: 16px;
  }

  .price {
    font-size: 56px;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 4px;
    flex-wrap: wrap;
  }

  .price .small {
    font-size: 16px;
  }

  .tax {
    text-align: center;
    font-size: 14px;
  }

  button {
    width: 100%;
    font-size: 16px;
    padding: 16px;
  }

  .fine {
    text-align: left;
    font-size: 11px;
  }

  /* Badge adjustments */
  .badge {
    width: 110px;
    height: 110px;
    top: -20px;
    right: -10px;
  }
}



/* HERO */
.left-content-right-image .container {
  display: flex;
  align-items: center;
  gap: 50px;
}
.left-content-right-image .content {
  flex: 1;
}
.left-content-right-image h2 {
  font-weight: 700;
  font-size: 50px;
  color: #000000;
  line-height: 1.1em;
}
.left-content-right-image p {
  margin: 20px 0;
  font-size: 19px;
  line-height: 1.4em;
}
.left-content-right-image .features {
  list-style: none;
  margin-bottom: 25px;
}
.left-content-right-image .features li {
  margin-bottom: 10px;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
}
.left-content-right-image .features li img {
  max-width: 30px;
  height: 30px;
}
.left-content-right-image .features li i {
  font-size: 7px;
}
.left-content-right-image .features li span {
  font-weight: 600;
}
.left-content-right-image .cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.brightbtn {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  background-color: #fec800;
  padding: 15px 35px;
  border-radius: 27px;
  cursor: pointer;
  text-transform: uppercase;
  display: inline-block;
  border: none;
  text-align: center;
}
.bsbtn {
  font-size: 18px;
  font-weight: 800;
  color: #000;
  background-color: #fec800;
  padding: 15px 35px;
  border-radius: 27px;
  cursor: pointer;
  width: max-content;
  display: inline-block;
  border: none;
  text-align: center;
}
.left-content-right-image .image {
  flex: 1;
}
.left-content-right-image .image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.3);
}

/* DIFFERENCE */

@media (max-width: 768px) {

  .difference {
    padding: 48px 16px;
  }

  .difference .container {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .difference h2 {
    width: 100%;
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 auto 40px;
  }

  .difference h2 span {
    color: #f7931e;
  }

  .difference-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
  }
}

@media (max-width: 768px) {

  .difference {
    display: block !important;
    padding: 48px 16px;
  }

  .difference .container {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
  }

  .difference h2 {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    margin: 0 auto 40px !important;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
  }

  .difference-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
}


.difference {
  text-align: center;
  padding: 40px 0 20px 0;
}
.difference h2 {
  font-weight: 700;
  font-size: 50px;
  color: #000000;
  line-height: 1.1em;
  text-align: center;
  margin-bottom: 40px;
}
.difference h2 span {
  background: -webkit-linear-gradient(
    45deg,
    rgba(250, 120, 60, 1) 40%,
    rgba(250, 120, 60, 1) 20%,
    rgba(290, 200, 0, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.difference-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.difference-card {
  padding: 20px;
}
.difference-card .icon img {
  width: 100%;
  border-radius: 20px;
  max-width: 125px;
}
.difference-card h3 {
  font-size: 26px;
  line-height: 1.2em;
  margin-bottom: 12px;
  margin-top: 25px;
  font-weight: 600;
}
.difference-card p {
  font-size: 16px;
}
.places-section {
  background-color: #eeeeee;
  padding-top: 30px;
  padding-bottom: 30px;
}
.bsbtn2 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  background-color: #000;
  padding: 15px 35px;
  border-radius: 27px;
  cursor: pointer;
  width: max-content;
  display: inline-block;
  border: none;
  text-align: center;
}
.places-section .image img,
.voice-section .image img {
  border-radius: 0px;
  box-shadow: none;
}
.left-content-right-image.places-section p {
  font-size: 21px;
}
.moving-section {
  padding: 50px 0;
}
.bg-internet-section {
  margin-bottom: 50px;
}
.bg-internet-section .container {
  background: url("images/Brightspeed-Fast-Highway.jpg"),
    linear-gradient(90deg, #303030 0%, rgba(48, 48, 48, 0) 100%) !important;
  background-position: center top 97%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
  background-blend-mode: overlay;
  padding: 70px 40px;
  display: block;
}
.bg-internet-section h2,
.bg-internet-section p {
  color: #fff;
}
.bg-internet-section .content {
  max-width: 700px;
}
.voice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-radius: 24px;
}
.voice-card {
  background: #ecedee;
  overflow: hidden;
  flex: auto !important;
  padding: 30px;
}
.voice-section .image img {
  height: 100%;
  object-fit: cover;
}
.permonth {
  font-size: 25px;
  font-weight: 500;
  display: inline-block;
  line-height: 1em;
  position: relative;
  top: -4px;
}
.voice-card .price p {
  font-size: 96px;
  font-weight: 600;
}
/* FOOTER */
.footer {
  background: #fff;
  border-top: 1px solid #e5e5e5;
}
.footer-top {
  display: flex;
  gap: 50px;
}
.footer-left {
  flex: 2;
  font-size: 14px;
  color: #333;
}
.footer-links {
  font-weight: 600;
  margin-bottom: 12px;
}
.footer-text {
  line-height: 1.6;
}
.footer-text a {
  color: #0a0a0a;
}
.footer-right {
  flex: 1;
  font-size: 14px;
  text-align: right;
}
.footer .logo img {
  width: 100%;
  max-width: 270px;
  margin-bottom: 10px;
}

.footer-right p {
  margin-bottom: 12px;
}
.footer .isg-badge img {
  width: 100%;
  max-width: 80px;
}
.footer-bottom {
  color: #000;
  text-align: center;
  font-size: 13px;
  padding: 15px 20px 80px 20px;
}
.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  gap: 12px;
  z-index: 999;
}
.cta-btn {
  display: inline-block;
  text-align: center;
  padding: 24px 0;
  font-size: 24px;
  line-height: 1em;
  cursor: pointer;
  border-radius: 100px;
  margin-left: 1%;
  margin-right: 1%;
  margin-bottom: 1%;
  box-shadow: 0 0 10px #00000091;
  background-color: #fec800;
  color: #000000;
  width: 58%;
  font-weight: 900;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .left-content-right-image .container {
    flex-direction: column;
    gap: 0px;
    background-color: #ecedee;
    padding: 0;
  }
  .difference-grid {
    grid-template-columns: 1fr;
  }
  .left-content-right-image .content {
    padding: 40px;
  }
  .left-content-right-image.reverse-image .container {
    flex-direction: column-reverse;
  }
  .left-content-right-image .image img {
    border-radius: 0px;
    box-shadow: none;
  }
  .business-section {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .brightspeed-section {
    margin-top: 50px;
  }
  .voice-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    border-radius: 24px;
  }
  .voice-section .container {
    background-color: transparent;
  }
  .voice-card.content.content2 {
    order: 4;
  }
  .voice-card.content.content1,
  .voice-card.content.content2 {
    margin-bottom: 50px;
  }
  .footer-top {
    flex-direction: column;
  }
  .footer-right {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .left-content-right-image .content {
    padding: 22px;
  }
  .left-content-right-image h2,
  .difference h2 {
    font-size: 30px;
  }
  .difference h2 {
    margin-bottom: 20px;
  }
  .difference-grid {
    gap: 0px;
  }
  .places-section.left-content-right-image .content {
    padding: 0;
  }
  .voice-card .price p {
    font-size: 66px;
  }
  .left-content-right-image p,
  .left-content-right-image li {
    font-size: 17px;
  }
  .left-content-right-image .features li img {
    max-width: 24px;
    height: 24px;
  }
  .cta-btn {
    padding: 22px 0;
    font-size: 16px;
	width: 55%;
  }
  
  @media (max-width: 767px) {
    .cta-btn {
        padding: 17px 6px;
        font-size: 16px;
        width: 100%;
        border-radius: 1px;
    }
}
  .cta-btn span{display: none;}
  .fixed-cta{gap: 0;}
}
