* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #ffffff;
  color: #222;
}



/* ---------------- Header ---------------- */
.tt-header {
  background: #111;
  color: #fff;
  height: 90px; /* Fixed header height */
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1000;
}

/* Container */
.tt-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.tt-logo span {
  font-weight: bold;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
}
.btc-footer-logo-text {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.5px;
  display: inline-block;
}
  .tt-logo {
  text-decoration: none; /* ✅ Removes underline */
  outline: none;         /* Removes blue outline on focus */
  color: inherit;        /* Ensures it takes the span's color */
}

.tt-logo:hover,
.tt-logo:focus,
.tt-logo:active {
  text-decoration: none; /* Ensures underline doesn’t appear on hover/focus */
}




/* Navigation Menu */
.tt-nav {
  display: flex;
  gap: 25px;
}

.tt-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.tt-nav a:hover {
  color: #ff6600;
}
/* Submenu styling */
.tt-submenu-container {
  position: relative;
  display: inline-block;
}

.tt-submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #111; /* Change background if needed */
  min-width: 250px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  z-index: 1000;
  flex-direction: column;
  padding-top: 10px;
  padding-bottom: 10px;
}

.tt-submenu a {
  display: block;
  padding: 10px 15px;
  color: #ffffff;
  text-decoration: none;
}

.tt-submenu a:hover {
  background: #111;
}

/* Show submenu on hover */
.tt-submenu-container:hover .tt-submenu {
  display: flex;
}

/* Mobile menu adjustment */
@media (max-width: 768px) {
  .tt-nav {
    flex-direction: column;
  }
  .tt-submenu {
    position: relative;
    top: 0;
    left: 0;
    box-shadow: none;
  }
}
/* Button */
.tt-btn {
  background: #ff6600;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  transition: background 0.3s;
}

.tt-btn:hover {
  background: #e65c00;
}

/* Hamburger Menu */
.tt-menu-btn {
  display: none; /* hidden on desktop */
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.tt-menu-btn span {
  width: 28px;
  height: 3px;
  background: #fff;
  display: block;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ---------------- Responsive ---------------- */
@media screen and (max-width: 768px) {
  /* Nav menu hidden by default on mobile */
  .tt-nav {
    position: absolute;
    top: 90px; /* below header */
    left: 0;
    width: 100%;
    background: #111;
    flex-direction: column;
    align-items: center;
    display: none; /* hidden initially */
    padding: 15px 0;
    gap: 15px;
  }

  .tt-nav.active {
    display: flex;
  }

  .tt-menu-btn {
    display: flex; /* show hamburger */
  }

  .tt-btn {
    display: none; /* optional: hide button on mobile */
  }

  .tt-nav a {
    font-size: 16px;
    padding: 10px 0;
    width: 100%;
    text-align: center;
  }
}















/* Banner Wrapper */
  .tt-banner {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
  }

  .tt-slider {
    position: relative;
    height: 100%;
  }

  .tt-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }

  .tt-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .tt-prev,
  .tt-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    padding: 10px;
    z-index: 2;
  }

  .tt-prev {
    left: 10px;
  }

  .tt-next {
    right: 10px;
  }

  .tt-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
  }

  .tt-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
  }

  .tt-dot.active {
    background: white;
  }
@media (max-width: 480px) {
  .tt-banner {
    height: 300px;
  }

  .tt-content h2 {
    font-size: 20px;
  }

  .tt-content p {
    font-size: 13px;
  }

  .tt-prev, .tt-next {
    font-size: 20px;
    padding: 6px;
  }
}












/* About Section */
.volt-about-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
}

/* Flex Container */
.volt-about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 50px;
}

/* Left Image */
.volt-about-left {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.volt-about-main-img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Right Content */
.volt-about-right {
  flex: 1;
  min-width: 300px;
}

.volt-subtitle {
  color: #ff6600;
;
  font-weight: bold;
  letter-spacing: 1px;
  font-size: 14px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.volt-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.4;
}
.btc-description {
  font-size: 16px;
  color: #555;
  margin: 10px auto 0 auto; /* top 10px, horizontal auto to center, bottom 0 */
  line-height: 1.6;
  max-width: 700px;
  text-align: center; /* center text inside the paragraph */
}

.volt-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
}

/* CTA Button */
.volt-cta-row {
  margin-top: 20px;
}

.volt-learn-btn {
  background-color: #ff6600;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.volt-learn-btn:hover {
  background-color: #ff6600;
}

/* Responsive */
@media (max-width: 768px) {
  .volt-about-container {
    flex-direction: column;
    gap: 30px;
    padding: 0 10px;
    text-align: center;
  }

  .volt-about-left,
  .volt-about-right {
    max-width: 100%;
    text-align: center;
  }

  .volt-title {
    font-size: 26px;
  }

  .btc-description,
  .volt-desc {
    text-align: center;
    font-size: 15px;
  }

  .volt-cta-row {
    text-align: center;
  }

  .volt-learn-btn {
    width: 100%;
    max-width: 250px;
    display: inline-block;
  }
}
















/* Services Section */
.btc-services {
  background: #f8f8fc;
  padding: 60px 20px;
  font-family: 'Arial', sans-serif;
  text-align: center;
}

.btc-subtitle {
  color: #ff6600;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
}

.btc-title {
  font-size: 32px;
  font-weight: 700;
  color: #111;
  margin-top: 10px;
}

/* Grid Layout */
.btc-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Card Style */
.btc-service-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px 20px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btc-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.btc-icon {
  width: 50px;
  margin-bottom: 20px;
}

.btc-service-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #111;
  margin-bottom: 10px;
}

.btc-service-card hr {
  border: none;
  border-top: 1px solid #eee;
  margin: 10px 0 15px;
}

.btc-service-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.btc-service-card a {
  color: #000;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.btc-service-card a:hover {
  color: #ff6600
}
@media (max-width: 768px) {
  .btc-title {
    font-size: 24px;
  }

  .btc-subtitle {
    font-size: 12px;
    letter-spacing: 0.5px;
  }

  .btc-services-grid {
    grid-template-columns: 1fr; /* Stack cards in single column */
    gap: 20px;
    margin-top: 30px;
    padding: 0 10px;
  }

  .btc-service-card {
    padding: 20px 16px;
  }

  .btc-icon {
    width: 40px;
    margin-bottom: 15px;
  }

  .btc-service-card h3 {
    font-size: 18px;
  }

  .btc-service-card p {
    font-size: 14px;
  }

  .btc-service-card a {
    display: inline-block;
    margin-top: 10px;
  }
}

















/* Mission and Vission Section Wrapper */
.voltz-approach-section {
  background-color: #f6f6fa;
  padding: 80px 20px;
}

.voltz-approach-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

/* Left Side */
.voltz-approach-left {
  flex: 1;
  min-width: 320px;
}

.voltz-approach-subtitle {
  color: #ff6600;
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 10px;
  position: relative;
}

.voltz-approach-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #111;
}

.voltz-approach-block {
  margin-bottom: 25px;
}

.voltz-approach-block h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111;
}

.voltz-approach-block p {
  color: #555;
  font-size: 16px;
  line-height: 1.7;
}

.voltz-approach-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #ff6600;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.voltz-approach-btn:hover {
  background-color: #ff6600;;
}

/* Right Side Images */
.voltz-approach-right {
  position: relative;
  flex: 1;
  min-width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.voltz-img-top,
.voltz-img-bottom {
  position: absolute;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.voltz-img-top {
  top: 0;
  right: 0;
  width: 250px;
  z-index: 2;
}

.voltz-img-bottom {
  bottom: 0;
  left: 0;
  width: 300px;
  z-index: 1;
}

.voltz-img-top img,
.voltz-img-bottom img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .voltz-approach-container {
    flex-direction: column-reverse; /* Stack image below text */
    gap: 40px;
    text-align: center;
    padding: 0 10px;
  }

  .voltz-approach-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .voltz-approach-block h4 {
    font-size: 18px;
  }

  .voltz-approach-block p {
    font-size: 14px;
  }

  .voltz-approach-btn {
    font-size: 14px;
    padding: 10px 20px;
  }

  .voltz-approach-right {
    position: relative;
    width: 100%;
    height: auto;
    justify-content: center;
    flex-direction: column;
    display: flex;
    gap: 20px;
  }

  .voltz-img-top,
  .voltz-img-bottom {
    position: relative;
    width: 90%;
    margin: 0 auto;
    left: unset;
    right: unset;
    top: unset;
    bottom: unset;
    z-index: unset;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  }

  .voltz-img-bottom {
    margin-top: 20px;
  }

  .voltz-img-top img,
  .voltz-img-bottom img {
    border-radius: 10px;
  }
}

















/* Why Choose Us Section */
/* Section */
.btc-choose-section {
  padding: 80px 0;
  background: #fff;
  font-family: "Arial", sans-serif;
}

/* Container */
.btc-choose-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;   /* vertical alignment */
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

/* Left Content */
.btc-choose-content {
  flex: 1;
  min-width: 350px;
}

.btc-choose-subtitle {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #ff6600;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.btc-choose-heading {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 18px;
}

.btc-choose-description {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 600px;
}

/* Features */
.btc-choose-feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 22px;
}

.btc-choose-icon {
  width: 55px;
  height: 55px;
  background: #f5f5f5;
  border: 2px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  font-size: 22px;
  transition: 0.3s;
  flex-shrink: 0;
}

.btc-choose-feature .btc-choose-icon {
  background: #ff6600;
  border-color: #ff6600;
  color: #fff;
}

.btc-choose-textblock h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.btc-choose-textblock p {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
  margin: 0;
}

/* Button */
.btc-choose-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 28px;
  background: #ff6600;
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btc-choose-btn:hover {
  background: #ff6600;
}

/* Right Image */
.btc-choose-images {
  flex: 1;
  min-width: 350px;
  text-align: center;
}

.btc-choose-img-main img {
  max-width: 420px;
  width: 100%;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 992px) {
  .btc-choose-container {
    flex-direction: column;
    text-align: center;
  }

  .btc-choose-feature {
    justify-content: center;
    text-align: left;
  }

  .btc-choose-btn {
    margin-left: auto;
    margin-right: auto;
  }

  .btc-choose-images {
    margin-top: 40px;
  }
}
@media (max-width: 576px) {
  .btc-choose-section {
    padding: 60px 15px;
  }

  .btc-choose-container {
    gap: 30px;
    text-align: center;
  }

  .btc-choose-heading {
    font-size: 28px;
    line-height: 1.3;
  }

  .btc-choose-description {
    font-size: 15px;
    line-height: 1.6;
    max-width: 100%;
  }

  .btc-choose-feature {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
  }

  .btc-choose-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .btc-choose-textblock h4 {
    font-size: 16px;
  }

  .btc-choose-textblock p {
    font-size: 14px;
  }

  .btc-choose-btn {
    padding: 10px 22px;
    font-size: 14px;
    margin-top: 20px;
  }

  .btc-choose-images {
    margin-top: 30px;
  }

  .btc-choose-img-main img {
    max-width: 100%;
    border-radius: 10px;
  }
}













/*Get A Quote Section*/
.tt-left-right {
  background: linear-gradient(135deg, #ff6600, #e05402);
  padding: 50px 20px;
  color: #fff;
}

.tt-lr-container {
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  color: #222;
  padding: 40px 50px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

/* Left */
.tt-lr-text h2 {
  font-size: 30px;
  margin-bottom: 12px;
  color: #ff6600
}
.tt-lr-text p {
  font-size: 18px;
  color: #444;
  line-height: 1.6;
}

/* Right Button */
.tt-lr-action {
  flex-shrink: 0;
}
.tt-lr-btn {
  background: linear-gradient(135deg, #ff6600, #e05402);
  color: #fff;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}
.tt-lr-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
}

/* Responsive */
@media (max-width: 768px) {
  .tt-lr-container {
    flex-direction: column;
    padding: 30px 20px;
    text-align: center;
    gap: 20px;
  }

  .tt-lr-text h2 {
    font-size: 24px;
  }

  .tt-lr-text p {
    font-size: 16px;
  }

  .tt-lr-action {
    width: 100%;
  }

  .tt-lr-btn {
    display: inline-block;
    width: auto;
    padding: 12px 24px;
    font-size: 15px;
  }
}























/*Breadcrumb Section*/
.btc-breadcrumb-unique {
  background-image: url('https://tse3.mm.bing.net/th/id/OIP.W0IyCHZ3W2il1iv7Zj2SXgHaCh?pid=Api&P=0&h=180');
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  color: #fff;
}

.btc-breadcrumb-unique::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 0;
}

.btc-breadcrumb-unique .breadcrumb-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
}

.btc-breadcrumb-unique .breadcrumb-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
}

.btc-breadcrumb-unique .breadcrumb {
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.btc-breadcrumb-unique .breadcrumb li {
  margin: 0 5px;
  position: relative;
  color: #fff;
}

.btc-breadcrumb-unique .breadcrumb li + li::before {
  content: ">";
  color: #fff;
  margin: 0 5px;
}

.btc-breadcrumb-unique .breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.btc-breadcrumb-unique .breadcrumb a:hover {
  text-decoration: underline;
}

.btc-breadcrumb-unique .breadcrumb .active {
  color: #ddd;
  pointer-events: none;
}














/* Contact section */
.btcstar-section {
  background: #ffffff;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.btcstar-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  justify-content: space-between;
}

.btcstar-header {
  text-align: center;
  margin-bottom: 40px;
}

.btcstar-header h2 {
  font-size: 40px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.btcstar-header p {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto;
}

/* ====== Left Column ====== */
.btcstar-left {
  flex: 1;
  min-width: 300px;
}

.btcstar-description {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 30px;
  margin-top: 30px;
}

.btcstar-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.btcstar-info-card {
  display: flex;
  gap: 15px;
  padding: 20px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
  align-items: flex-start;
}

.btcstar-icon {
  width: 42px;
  height: 42px;
  background-color: #f97316;
  color: white;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  flex-shrink: 0;
}

.btcstar-title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #111;
}

.btcstar-info-card p {
  font-size: 15px;
  color: #333;
  margin: 0;
}

.btcstar-info-card a {
  color: #333;
  text-decoration: none;
  transition: color 0.2s ease;
}

.btcstar-info-card a:hover {
  color: #f97316;
}

/* ====== Social Icons Card ====== */
.btcstar-social-card {
  flex-direction: column;
}

.btcstar-socials {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.btcstar-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f1f1f7;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  font-size: 15px;
  transition: background 0.3s ease;
}

.btcstar-socials a:hover {
  background: #ddd;
}

/* ====== Right Column ====== */
.btcstar-right {
  flex: 1;
  min-width: 320px;
  background: #f8f8fc;
  padding: 30px;
  border-radius: 12px;
}

.btcstar-form-heading {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 10px;
}

.btcstar-form-subheading {
  font-size: 15px;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.5;
}

/* ====== Form Styling ====== */
.btcstar-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.btcstar-form-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btcstar-input,
.btcstar-textarea {
  flex: 1;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  background: white;
}

.btcstar-textarea {
  min-height: 120px;
  resize: vertical;
}

.btcstar-button {
  background-color: #f97316;
  color: white;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 6px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.btcstar-button:hover {
  background-color: #e76305;
}

/* ====== Responsive ====== */
@media (max-width: 768px) {
  .btcstar-container {
    flex-direction: column;
  }

  .btcstar-form-row {
    flex-direction: column;
  }
}
















.google-map-section-947 {
  width: 100vw; /* full viewport width */
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw; /* pull it full width */
  margin-right: -50vw;
  padding: 40px 0;
  background-color: #fff;
  box-shadow: 0 0 12px rgba(0,0,0,0.1);
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  overflow: hidden;
}

.google-map-section-947 h2 {
  margin-bottom: 25px;
  color: #34495e;
  font-size: 2.2rem;
}

/* Make iframe responsive */
.google-map-section-947 iframe {
  width: 100%;
  max-height: 450px;
  border: 0;
}














  /* Unique class name: privacy-policy-unique */
  .privacy-policy-unique {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px 25px;
    background-color: #f9fafb;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
  }

  .privacy-policy-unique h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #ff6600;
    border-bottom: 2px solid #ff6600;
    padding-bottom: 8px;
  }

  .privacy-policy-unique h3 {
    margin-top: 25px;
    margin-bottom: 10px;
    color: #ff6600;
    font-size: 1.3rem;
  }

  .privacy-policy-unique p, 
  .privacy-policy-unique li {
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 1.1rem;
  }

  .privacy-policy-unique ul {
    padding-left: 20px;
  }

  .privacy-policy-unique ul li {
    margin-bottom: 12px;
  }

  .privacy-policy-unique a {
    color: #000000;
    text-decoration: none;
  }

  .privacy-policy-unique a:hover {
    text-decoration: underline;
    color: #ff6600;
  }
  
  /* Responsive */
  @media (max-width: 600px) {
    .privacy-policy-unique {
      padding: 20px 15px;
      margin: 20px 15px;
    }
  }


















/* ===== BTC STAR PRODUCT SECTION ===== */

.btcstar-ecom-section {
  padding: 40px 20px;
  background-color: #ffffff;
  font-family: 'Segoe UI', sans-serif;
}

.btcstar-ecom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.btcstar-ecom-card {
  background: #f9f9f9;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
}

.btcstar-ecom-image {
  position: relative;
  background: #fff;
  padding: 20px;
  text-align: center;
  height: 250px; /* Fixed height for consistency */
  display: flex;
  align-items: center;
  justify-content: center;
}

.btcstar-ecom-image img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* or use 'cover' if you want crop-style */
  border-radius: 8px;
}

.btcstar-ecom-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ff6600;
  color: white;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: bold;
}

.btcstar-ecom-info {
  padding: 20px;
}

.btcstar-ecom-category {
  font-size: 14px;
  color: #ff6600;
  font-weight: bold;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.btcstar-ecom-name {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
}

.btcstar-ecom-rating {
  font-size: 16px;
  color: #ffcc00;
  margin-bottom: 15px;
}

.btcstar-ecom-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.btcstar-ecom-features li {
  font-size: 14px;
  margin-bottom: 8px;
  color: #444;
}














/* ===== BTC STAR SOFTWARE SERVICE SECTION ===== */

.btcstar-softserv-section {
  padding: 40px 20px;
  background-color: #f8f9fa;
  font-family: 'Segoe UI', sans-serif;
}

.btcstar-softserv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns fixed */
  gap: 30px; /* space between cards */
  max-width: 1200px;
  margin: 0 auto;
}
/* ===== Service Card ===== */

.btcstar-softserv-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.btcstar-softserv-card:hover {
  transform: translateY(-5px);
}

/* ===== Image Area ===== */

.btcstar-softserv-image {
  width: 100%;
  height: 200px; /* fixed height for all images */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff; /* optional */
}

.btcstar-softserv-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* crop to fit container nicely */
  display: block;
}
.btcstar-softserv-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background-color: #1dbf73;
  color: white;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: bold;
}

.btcstar-softserv-fav {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  color: #ff4d4d;
  cursor: pointer;
}

/* ===== Card Info ===== */

.btcstar-softserv-info {
  padding: 15px;
}

.btcstar-softserv-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.btcstar-softserv-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.btcstar-softserv-name {
  font-weight: bold;
  font-size: 14px;
  color: #333;
}

.btcstar-softserv-title {
  font-size: 15px;
  color: #333;
  margin: 8px 0 12px;
  line-height: 1.4;
}

.btcstar-softserv-rating {
  font-size: 15px;
  color: #ffa500;
  margin-bottom: 8px;
}

.btcstar-softserv-rating span {
  color: #555;
  font-size: 13px;
}

.btcstar-softserv-price {
  font-weight: bold;
  font-size: 15px;
  color: #222;
}

@media (max-width: 900px) {
  .btcstar-softserv-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .btcstar-softserv-grid {
    grid-template-columns: 1fr;
  }
}
















/* Footer Wrapper */
.btc-footer {
  background: #0a0a1a;
  color: #ddd;
  padding-top: 50px;
  font-family: Arial, sans-serif;
}

/* Container Grid */
.btc-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 0 20px 40px;
}

/* Company Info - First Column */
.btc-footer-col.company-info .btc-footer-logo {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.btc-footer-col.company-info .btc-footer-logo:hover {
  color: #ff6600
}

.btc-footer-col.company-info p {
  font-size: 15px;
  line-height: 1.7;
  color: #bbb;
  max-width: 300px;
}

/* Column Titles */
.btc-footer-col h4 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 600;
}

/* Paragraphs */
.btc-footer-col p {
  font-size: 14px;
  line-height: 1.6;
  color: #aaa;
  margin: 6px 0;
  padding-top: 10px;
}

/* Links List */
.btc-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.btc-footer-col ul li {
  margin-bottom: 10px;
}

.btc-footer-col ul li a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.btc-footer-col ul li a:hover {
  color: #fff;
}

/* Contact Icons */
.btc-footer-col i {
  margin-right: 10px;
  color: #ff6600
}

/* Link Styling */
.btc-footer-col a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.btc-footer-col a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Social Icons */
.btc-footer-social a {
  font-size: 18px;
  margin-right: 14px;
  color: #aaa;
  display: inline-block;
  transition: color 0.3s ease, transform 0.2s ease;
  padding-top: 10px;
}

.btc-footer-social a:hover {
  color: #fff;
  transform: scale(1.2);
}
.btc-footer-col ul li {
  margin-bottom: 18px; /* or 20px for more space */
}

/* Bottom Bar */
.btc-footer-bottom {
  background: #060612;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
}

.btc-footer-bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.btc-footer-bottom-left p {
  font-size: 13px;
  color: #777;
  margin: 0;
}

.btc-footer-bottom-left a {
  color: #ff6600;
  text-decoration: none;
  margin-left: 6px;
  font-weight: 500;
}

.btc-footer-bottom-left a:hover {
  text-decoration: underline;
}

.btc-footer-bottom-right {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btc-footer-bottom-right a {
  color: #aaa;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.btc-footer-bottom-right a:hover {
  color: #fff;
}

@media (max-width: 768px) {
  .btc-footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px 30px;
    text-align: center;
  }

  .btc-footer-col.company-info p {
    margin: 0 auto;
  }

  .btc-footer-social {
    justify-content: center;
  }

  .btc-footer-social a {
    margin-right: 10px;
  }

  .btc-footer-bottom-container {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .btc-footer-bottom-left p {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .btc-footer-bottom-right {
    justify-content: center;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .btc-footer {
    padding-top: 30px;
  }

  .btc-footer-col h4 {
    font-size: 15px;
  }

  .btc-footer-col p,
  .btc-footer-col ul li a {
    font-size: 13px;
  }

  .btc-footer-social a {
    font-size: 16px;
  }

  .btc-footer-bottom-left p,
  .btc-footer-bottom-right a {
    font-size: 12px;
  }
}
