 /* Global Font Styles */
body {
    font-family: 'Poppins', sans-serif;
}

h1, h2, h3, h4, h5, h6, .call-btn {
     font-family: "Lato", sans-serif;

}

.speedlink-navbar {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.speedlink-navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.speedlink-navbar .logo img {
  height: 40px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
  margin: 0;
}

.nav-links li a {
  text-decoration: none;
  color: #1c1c1c;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #ff6600;
}

.nav-call .call-btn {
  background-color: #ff6600;
  color: #fff;
  padding: 8px 20px;
/*  border-radius: 25px;*/
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.nav-call .call-btn:hover {
  background-color: #cc5200;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    width: 100%;
    display: none;
    margin-top: 15px;
  }
  .nav-links.show {
    display: flex;
  }
  .menu-toggle {
    display: flex;
  }
  .nav-call{
    margin-top: 20px;
  }
}


.speedlink-banner-v2 {
  background: linear-gradient(135deg, #002244, #003366);
  padding: 100px 20px;
  color: #fff;
  position: relative;
}

.banner-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.banner-text {
  flex: 1 1 50%;
  max-width: 550px;
}

.banner-text h1 {
  font-size: 42px;
  line-height: 1.3;
  margin-bottom: 20px;
  font-weight: 700;
}

.banner-text p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.banner-call-btn {
  background-color: #ff6600;
  padding: 12px 25px;
/*  border-radius: 25px;*/
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.banner-call-btn:hover {
  background-color: #cc5200;
}

.banner-visual {
  flex: 1 1 40%;
  position: relative;
  text-align: center;
}

.banner-visual img {
  max-width: 100%;
  height: auto;
}

.offer-tag {
  position: absolute;
  bottom: -20px;
  right: 10px;
  background-color: #fff;
  color: #002244;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
}

/* Responsive */
@media (max-width: 768px) {
  .banner-grid {
    flex-direction: column;
    text-align: center;
  }

  .banner-text, .banner-visual {
    flex: 1 1 100%;
  }

  .banner-text h1 {
    font-size: 30px;
  }

  .offer-tag {
    position: static;
    margin-top: 20px;
  }
}

.who-we-are-section {
  background: #f9f9f9;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.who-wrapper {
  position: relative;
  max-width: 1000px;
  margin: auto;
  padding: 60px;
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.07);
  z-index: 2;
}

.who-deco-circle {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: #ff6600;
  border-radius: 50%;
  opacity: 0.05;
  z-index: 1;
}

.who-text {
  position: relative;
  z-index: 3;
  text-align: center;
}

.who-text h2 {
  font-size: 40px;
  color: #222;
  margin-bottom: 20px;
}

.who-text p {
  font-size: 17px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.who-btn {
  background-color: #ff6600;
  color: #fff;
  padding: 12px 28px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.who-btn:hover {
  background-color: #cc5200;
}

/* Responsive */
@media (max-width: 768px) {
  .who-wrapper {
    padding: 30px;
  }

  .who-text h2 {
    font-size: 28px;
  }

  .who-text p {
    font-size: 15px;
  }
}
.services-section {
  background: #ffffff;
  padding: 100px 20px;
  position: relative;
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
  color: #1a1a1a;
  font-weight: bold;
}

.service-list {
  list-style: none;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #f8f8f8;
  border-left: 6px solid #ff6600;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.service-list li:hover {
  background: #f0f0f0;
  transform: translateY(-5px);
}

.service-list .icon {
  font-size: 36px;
  color: #ff6600;
  flex-shrink: 0;
}

.service-list h4 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #222;
}

.service-list p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .service-list {
    grid-template-columns: 1fr;
  }
}
.cta-section-v2 {
  position: relative;
  background: linear-gradient(135deg, #ff6600, #ff944d);
  padding: 100px 20px;
  color: #fff;
  text-align: center;
  overflow: hidden;
  z-index: 1;
}

.cta-overlay {
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: pulse-bg 10s linear infinite;
  z-index: 0;
}

@keyframes pulse-bg {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0.6;
  }
}

.cta-section-v2 h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.cta-section-v2 p {
  font-size: 18px;
  margin-bottom: 25px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.cta-contact {
  position: relative;
  z-index: 2;
}

.cta-btn-v2 {
  background: #fff;
  color: #ff6600;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.cta-btn-v2:hover {
  background: #ffe0cc;
  color: #cc5200;
}

.location-info {
  font-size: 16px;
  margin-top: 15px;
  color: #fff;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-section-v2 h2 {
    font-size: 28px;
  }

  .cta-section-v2 p {
    font-size: 16px;
  }

  .cta-btn-v2 {
    padding: 12px 26px;
    font-size: 16px;
  }
}
.key-features-alt {
  padding: 80px 20px;
  background: linear-gradient(to bottom, #fff, #f8f9fa);
}

.key-features-alt .section-title {
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 60px;
  color: #1a1a1a;
}

.feature-block {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 50px;
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.feature-block:hover {
  transform: scale(1.02);
}

.feature-block.reverse {
  flex-direction: row-reverse;
}

.feature-block .icon {
  font-size: 50px;
  color: #ff6600;
  min-width: 70px;
  text-align: center;
}

.feature-block .content h4 {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.feature-block .content p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .feature-block,
  .feature-block.reverse {
    flex-direction: column;
    text-align: center;
  }

  .feature-block .icon {
    margin-bottom: 20px;
  }
}
.plans-section {
  padding: 90px 20px;
  background: linear-gradient(to bottom, #f8f8f8, #ffffff);
  text-align: center;
}

.section-title {
  font-size: 38px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 70px;
  position: relative;
}

.plans-timeline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  position: relative;
}

.plans-timeline::before {
  content: '';
  position: absolute;
  width: 4px;
  height: 100%;
  background: #ff6600;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

.plan-block {
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  width: 100%;
  max-width: 600px;
  text-align: center;
  transition: transform 0.3s ease;
  z-index: 1;
}

.plan-block:hover {
  transform: translateY(-6px);
}

.plan-icon {
  font-size: 40px;
  margin-bottom: 20px;
  color: #ff6600;
}

.plan-content h3 {
  font-size: 26px;
  font-weight: 700;
  color: #222;
  margin-bottom: 12px;
}

.plan-content p {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}

.plan-content .price {
  font-size: 24px;
  color: #ff6600;
  font-weight: 800;
  display: block;
  margin-bottom: 20px;
}

.plan-btn {
  background-color: #ff6600;
  color: #fff;
  padding: 12px 30px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.plan-btn:hover {
  background-color: #009973;
}

@media (max-width: 768px) {
  .plans-timeline::before {
    left: 20px;
  }

  .plan-block {
    padding: 30px 20px;
  }
}

.marquee-section {
  background-color: #ff6600;
  padding: 12px 0;
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.marquee-container {
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}

.marquee-text {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  padding-left: 100%;
  animation: marquee-slide 15s linear infinite;
}

.marquee-text a {
  color: #fff;
  text-decoration: underline;
}

@keyframes marquee-slide {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@media (max-width: 768px) {
  .marquee-text {
    font-size: 16px;
  }
}

.disclaimer-section {
  background: linear-gradient(135deg, #222, #111);
  color: #ddd;
  padding: 60px 20px 50px;
  border-bottom: 3px solid #ff6600;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.disclaimer-section .section-title {
  font-size: 32px;
  font-weight: 700;
  color: #ff6600;
  margin-bottom: 30px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.disclaimer-content {
  max-width: 900px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.7;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 25px 35px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 102, 0, 0.3);
}

.disclaimer-content p {
  margin-bottom: 20px;
  color: #ccc;
}

.disclaimer-content a {
  color: #ff944d;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.disclaimer-content a:hover {
  color: #ffa64d;
}

.speedlink-footer {
  background-color: #111;
  color: #ccc;
  padding: 60px 20px 30px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
}

.footer-logo {
  width: 250px;
  margin-bottom: 20px;
}

.footer-about,
.footer-links,
.footer-policy,
.footer-contact {
  flex: 1 1 220px;
}

.footer-links h4,
.footer-policy h4,
.footer-contact h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #fff;
}

.footer-links ul,
.footer-policy ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li,
.footer-policy ul li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-policy a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover,
.footer-policy a:hover {
  color: #ff6600;
}

.footer-contact p {
  margin: 8px 0;
}

.social-icons a {
  color: #ccc;
  margin-right: 10px;
  font-size: 18px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #ff6600;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 20px;
  font-size: 14px;
  color: #aaa;
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: 40px;
  }

  .footer-logo {
    margin: 0 auto 20px;
  }

  .footer-about {
    text-align: center;
  }
}
.breadcrumb-section {
  background-color: #f4f6f8;
  padding: 20px 0;
  margin-bottom: 40px;
}

.breadcrumb {
  background: none;
  padding: 0;
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
}

.breadcrumb-item {
  display: inline-block;
  font-size: 16px;
  color: #333;
}

.breadcrumb-item a {
  color: #ff6600;
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb-item a:hover {
  color: #019c77;
}

.breadcrumb-item.active {
  font-weight: bold;
  color: #555;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: ">";
  margin: 0 10px;
  color: #aaa;
}
.contact-section {
  background-color: #f8f9fa;
  padding: 60px 0;
}

.contact-section h2 {
  font-size: 36px;
  color: #333;
  margin-bottom: 20px;
}

.contact-section p {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  font-size: 16px;
  color: #555;
  margin-bottom: 8px;
  display: block;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
}

.form-group textarea {
  resize: vertical;
}

.btn-submit {
  background-color: #ff6600;
  color: #fff;
  padding: 12px 30px;
  font-size: 16px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-submit:hover {
  background-color: #cc5200;
}

.map-container {
  margin-top: 30px;
}

@media (max-width: 768px) {
  .contact-section .row {
    flex-direction: column;
  }

  .contact-section .col-lg-6 {
    margin-bottom: 30px;
  }
}
