* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Footlight MT Light','Times New Roman', Times, serif;
}
body {
  margin: 0;
  background-color: #f4f9ff;
  text-align: center;
}

header {
  background: #1a2d50;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 8%;
  height: 70px; /* default large height */
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 70px;
  height: auto;
  object-fit: contain;
}

.logo h3 {
  margin-left: 10px;
  color: #fefefe;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #ff8400;
}

/* Hamburger for mobile */
.menu-icon {
  display: none;
  font-size: 28px;
  cursor: pointer;
  user-select: none;
  z-index: 1100;
}

/* Large Laptop (1200px - 1500px) */
@media (max-width: 1500px) {
  .navbar {
    padding: 12px 6%;
  }
  .logo img {
    width: 65px;
  }
  .logo h3 {
    font-size: 24px;
  }
}

/* Small Laptop / Large Tablet (992px - 1200px) */
@media (max-width: 1200px) {
  .navbar {
    padding: 10px 5%;
  }
  .logo img {
    width: 60px;
  }
  .logo h3 {
    font-size: 22px;
  }
  .nav-links {
    gap: 20px;
  }
  .nav-links a {
    font-size: 17px;
  }
}

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
  .navbar {
    padding: 8px 4%;
    height: 60px;
  }
  .logo img {
    width: 50px;
  }
  .logo h3 {
    font-size: 20px;
  }
  .nav-links {
    gap: 16px;
  }
  .nav-links a {
    font-size: 16px;
  }
}

/* Mobile (up to 767px) */
@media (max-width: 767px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.92);
    position: absolute;
    top: 60px;
    right: 10px;
    width: 160px;
    padding: 14px;
    border-radius: 8px;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-icon {
    display: block;
  }

  .logo img {
    width: 45px;
  }
  .logo h3 {
    font-size: 18px;
  }
  .nav-links a {
    font-size: 15px;
  }
}

/* Small Mobile (up to 420px) */
@media (max-width: 420px) {
  .navbar {
    padding: 8px 12px;
  }
  .logo img {
    width: 40px;
  }
  .logo h3 {
    font-size: 16px;
  }
  .nav-links {
    width: 140px;
    padding: 12px;
  }
  .nav-links a {
    font-size: 14px;
  }
  .menu-icon {
    font-size: 24px;
  }
}




/* BSP Hero Full Section */
.bsp-hero-full {
  background: #1a2d50;
  padding: 60px 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  margin-bottom: 50px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Hero Intro */
.bsp-hero-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 60px;
}

.bsp-hero-text {
  flex: 1 1 480px;
}

.bsp-hero-text h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  margin-left: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #ff8400;
}

.bsp-hero-text p {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 25px;
  margin-left: 20px;
  color: #fff;
}

.bsp-hero-image {
  flex: 1 1 480px;
  text-align: center;
}

.bsp-hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  transition: transform 0.3s, box-shadow 0.3s;
}

.bsp-hero-image img:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* Features & Benefits Grid */
.bsp-features-grid h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #ff8400;
  position: relative;
}

.bsp-features-grid h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #ff8400;
  margin: 12px auto 0 auto;
  border-radius: 2px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.feature-card {
  background: #f5f7fa;
  padding: 25px 20px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.feature-card img {
  width: 100%;
  height: 180px;        /* fixed height */
  border-radius: 10px;
  margin-bottom: 15px;
  object-fit: cover;    /* crops neatly */
}



.feature-card h3 {
  color: #0a2d50;
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 1rem;
  color: #1a2d50;
  line-height: 1.6;
}

/* ✅ Responsive Breakpoints */

/* Large screens / TVs */
@media (min-width: 1600px) {
  .bsp-hero-text h1 {
    font-size: 4rem;
  }
  .bsp-hero-text p {
    font-size: 1.3rem;
  }
  .feature-card img {
    width: 260px;
  }
}

/* Laptops */
@media (max-width: 1200px) {
  .bsp-hero-text h1 {
    font-size: 2.6rem;
  }
  .bsp-hero-text p {
    font-size: 1.1rem;
  }
  .feature-card img {
    width: 220px;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .bsp-hero-intro {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .bsp-hero-text h1 {
    font-size: 2.4rem;
    margin-left: 0;
  }
  .bsp-hero-text p {
    margin-left: 0;
  }
  .feature-card img {
    width: 200px;
  }
}

/* Mobiles */
@media (max-width: 600px) {
  .bsp-hero-text h1 {
    font-size: 2rem;
  }
  .bsp-hero-text p {
    font-size: 1rem;
  }
  .feature-card img {
    width: 220px;
  }
}

/* Small Mobiles */
@media (max-width: 400px) {
  .bsp-hero-text h1 {
    font-size: 1.6rem;
  }
  .bsp-hero-text p {
    font-size: 0.9rem;
  }
  .feature-card img {
    width: 150px;
  }
}



.why-bsp {
  background: linear-gradient(to right, #96c8fb, #eef5fb);
  padding: 70px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  box-sizing: border-box;
  width: 100%;
  overflow-x: hidden; /* prevent horizontal scroll */
}

.why-bsp .container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
  width: 100%;
  box-sizing: border-box;
}

.why-bsp h2 {
  font-size: 2.2rem;
  color: #ff8400;
  margin-bottom: 25px;
  text-align: center;
  font-weight: bold;
}

.why-bsp p {
  font-size: 1.15rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 25px;
  text-align: justify;
  word-wrap: break-word; /* long text won’t break layout */
}

.why-bsp ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
}

.why-bsp ul li {
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: #444;
  padding-left: 35px;
  position: relative;
  line-height: 1.6;
  word-wrap: break-word;
}

.why-bsp ul li::before {
  content: "🚦";
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

.why-bsp ul li:nth-child(2)::before {
  content: "🌿";
}

.why-bsp ul li:nth-child(3)::before {
  content: "🛡️";
}

.why-bsp ul li:nth-child(4)::before {
  content: "🇮🇳";
}

.why-bsp strong {
  color: #0a2d50;
}

/* ================= RESPONSIVE ================= */

/* Large screens / TVs */
@media (min-width: 1600px) {
  .why-bsp h2 {
    font-size: 3rem;
  }
  .why-bsp p {
    font-size: 1.4rem;
    line-height: 2;
  }
  .why-bsp ul li {
    font-size: 1.3rem;
  }
}

/* Laptops */
@media (max-width: 1200px) {
  .why-bsp h2 {
    font-size: 2.5rem;
  }
  .why-bsp p {
    font-size: 1.2rem;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .why-bsp {
    padding: 60px 15px;
  }
  .why-bsp h2 {
    font-size: 2.2rem;
  }
  .why-bsp p {
    font-size: 1.1rem;
  }
  .why-bsp ul li {
    font-size: 1rem;
  }
}

/* Large Mobiles */
@media (max-width: 768px) {
  .why-bsp {
    padding: 50px 15px;
  }
  .why-bsp h2 {
    font-size: 1.8rem;
  }
  .why-bsp p {
    font-size: 1rem;
    line-height: 1.6;
  }
  .why-bsp ul li {
    font-size: 0.95rem;
    padding-left: 28px;
  }
  .why-bsp ul li::before {
    font-size: 1rem;
  }
}

/* Small Mobiles (below 480px) */
@media (max-width: 480px) {
  .why-bsp {
    padding: 40px 12px;
  }
  .why-bsp h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
  .why-bsp p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  .why-bsp ul li {
    font-size: 0.9rem;
    margin-bottom: 12px;
    padding-left: 25px;
  }
}

/* Extra Small (300px - very small devices) */
@media (max-width: 360px) {
  .why-bsp {
    padding: 30px 10px;
  }
  .why-bsp h2 {
    font-size: 1.3rem;
  }
  .why-bsp p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  .why-bsp ul li {
    font-size: 0.85rem;
    padding-left: 22px;
  }
  .why-bsp ul li::before {
    font-size: 0.9rem;
  }
}



.decentralization-section {
  position: relative;
  background: url('q.jpg') no-repeat center center/cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: left;
  padding: 80px 20px;
  overflow: hidden;
}

.decentralization-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 20, 40, 0.788); /* Dark-blue overlay for contrast */
  z-index: 0;
}

.decentralization-section .overlay {
  position: relative;
  max-width: 1100px;
  z-index: 1;
}

.decentralization-section h2 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #e67300; /* Futuristic cyan */
  text-shadow: 0 0 15px rgba(11, 11, 11, 0.6);
}

.decentralization-section h2 span {
  display: block;
  font-size: 1.8rem;
  font-weight: 400;
  color: #ffffff;
  opacity: 0.9;
}

.decentralization-section p {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 18px;
  color: #e0e0e0;
}

.decentralization-section strong {
  color: #fff;
  font-weight: 600;
}

@media (max-width: 768px) {
  .decentralization-section h2 {
    font-size: 2rem;
  }

  .decentralization-section h2 span {
    font-size: 1.4rem;
  }

  .decentralization-section p {
    font-size: 1rem;
  }
}


/* Section Wrapper */
.bsp-compare-section {
  background: #fff;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
}

/* Layout for each container */
.compare-container {
  max-width: 1200px;
  margin: 0 auto 70px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.compare-container.reverse {
  flex-direction: row-reverse;
}

/* Text Section */
.compare-text {
  flex: 1;
  min-width: 280px;
}

.compare-text h2 {
  font-size: 2.2rem;
  color: #002855;
  margin-bottom: 20px;
  position: relative;
  line-height: 1.3;
}

.compare-text h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #ff8400;
  margin-top: 8px;
  border-radius: 2px;
}

.compare-text p {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* Highlight spans */
.compare-text .highlight {
  color: #ff8400;
  font-weight: 600;
}

/* Features List */
.features {
  list-style: none;
  padding: 0;
}

.features li {
  background: #f8f9fa;
  padding: 12px 15px;
  margin: 10px 0;
  border-left: 5px solid #ff8400;
  border-radius: 6px;
  font-size: 1rem;
  color: #002855;
  transition: transform 0.2s ease, background 0.2s ease;
}

.features li:hover {
  background: #ffe7cc;
  transform: translateX(5px);
}

/* Image Styling */
.compare-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0,40,85,0.2);
  object-fit: cover;
}

/* ================= Responsive Breakpoints ================= */

/* Large screens (TVs / desktops >1400px) */
@media (min-width: 1400px) {
  .compare-text h2 {
    font-size: 2.8rem;
  }
  .compare-text p {
    font-size: 1.2rem;
  }
  .features li {
    font-size: 1.1rem;
    padding: 14px 18px;
  }
}

/* Tablets & small laptops (≤900px) */
@media (max-width: 900px) {
  .compare-container {
    flex-direction: column;
    text-align: center;
    gap: 35px;
  }

  .compare-container.reverse {
    flex-direction: column;
  }

  .features li {
    text-align: left;
  }

  .compare-image {
    max-width: 90%;
    margin: 0 auto;
  }
}

/* Mobiles (≤600px) */
@media (max-width: 600px) {
  .bsp-compare-section {
    padding: 50px 15px;
  }

  .compare-text h2 {
    font-size: 1.6rem;
  }

  .compare-text p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .features li {
    font-size: 0.9rem;
    padding: 10px 12px;
  }

  .compare-image {
    max-width: 100%;
  }
}

/* Small Mobiles (≤385px) */
@media (max-width: 385px) {
  .compare-text h2 {
    font-size: 1.3rem;
  }

  .compare-text p {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .features li {
    font-size: 0.82rem;
    padding: 8px 10px;
  }
}

/* Extra Small Devices (≤300px) */
@media (max-width: 300px) {
  .bsp-compare-section {
    padding: 20px 3px;
  }

  .compare-text h2 {
    font-size: 1.1rem;
  }

  .compare-text p {
    font-size: 0.78rem;
    line-height: 1.3;
  }

  .features li {
    font-size: 0.75rem;
    padding: 6px 8px;
  }
}




/* ================= Comparison Box ================= */
.compare-box {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.compare-column {
  flex: 1;
  background: linear-gradient(135deg, #4886fa, #9ab4d1);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  min-width: 280px;
}

.compare-column h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #002855;
}

.compare-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.compare-column ul li {
  padding: 8px 0;
  color: #000;
  font-size: 1rem;
}

/* Highlight Box for BSP */
.highlight-box {
  background: linear-gradient(135deg, #ff8400, #f6c28d);
  color: #fff;
  border: none;
}

.highlight-box h3 {
  color: #fff;
}

.highlight-box ul li {
  color: #fff;
}

/* Tagline */
.tagline {
  margin-top: 25px;
  font-size: 1.1rem;
  font-weight: 500;
  color: #002855;
  border-left: 4px solid #ff8400;
  padding-left: 12px;
}

/* Image Styling */
.compare-image img {
  max-width: 480px;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,40,85,0.2);
  border: 3px solid #ff8400;
  transition: transform 0.3s ease;
}

.compare-image img:hover {
  transform: scale(1.05);
}

/* ================= Responsive Breakpoints ================= */

/* Large laptops & tablets */
@media (max-width: 1200px) {
  .compare-box {
    gap: 20px;
  }
  .compare-column {
    padding: 20px;
  }
}

/* Tablets (≤900px) */
@media (max-width: 900px) {
  .compare-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .compare-box {
    flex-direction: column;
    gap: 20px;
  }
  .compare-column {
    min-width: auto;
  }
  .tagline {
    text-align: center;
    border-left: none;
    border-top: 3px solid #ff8400;
    padding-left: 0;
    padding-top: 10px;
  }
}

/* Mobiles (≤600px) */
@media (max-width: 600px) {
  .compare-column {
    padding: 16px;
  }
  .compare-column h3 {
    font-size: 1.1rem;
  }
  .compare-column ul li {
    font-size: 0.9rem;
  }
  .tagline {
    font-size: 1rem;
  }
  .compare-image img {
    max-width: 100%;
  }
}

/* Small Mobiles (≤400px) */
@media (max-width: 400px) {
  .compare-box {
    gap: 15px;
  }
  .compare-column {
    padding: 12px;
  }
  .compare-column h3 {
    font-size: 1rem;
  }
  .compare-column ul li {
    font-size: 0.85rem;
  }
  .tagline {
    font-size: 0.9rem;
  }
}

/* Footer */

.footer {
  background: linear-gradient(135deg, #0a2d50, #001627);
  color: #ddd;
  padding: 60px 20px 20px;
  font-family: 'Segoe UI', Tahoma, sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-section h3, 
.footer-section h4 {
  color: #ff8400;
  margin-bottom: 15px;
}

.footer-logo {
  width: 170px;
  margin-bottom: 15px;
  margin-left: 10px;
}
.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #ff8400;
}

.contact-info p {
  margin: 8px 0;
}

.contact-info i {
  margin-right: 8px;
  color: #ff8400;
}

.feedback-form form {
  display: flex;
  flex-direction: column;
}

.feedback-form input, 
.feedback-form textarea {
  margin-bottom: 12px;
  padding: 12px;
  border: none;
  border-radius: 8px;
  outline: none;
}

.feedback-form button {
  background: #ff8400;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.feedback-form button:hover {
  background: #e67300;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 14px;
  color: #aaa;
}


