/* =========================
   FEATURE-RICH CLOUD PBX (BIG BOX)
========================= */

.fr-wrapper {
  max-width: 1200px;
  margin: 0 auto 90px;
  padding: 0 20px;
}

.fr-box {
  background: #ffffff;
  padding: 50px 50px 55px;
  border-radius: 20px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.08);
}

/* Blue heading like SIP page */
.fr-box h2 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 45px;
  color: #1a73e8;
  font-weight: 600;
}

/* Side-by-side features */
.fr-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* Inner feature columns (NO extra box) */
.fr-column ul {
  padding-left: 22px;
}

.fr-column li {
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.6;
  color: #374151;
}
/* =========================
   BLUE HEADINGS FOR ALL BOXES
========================= */

/* Standard boxes */
.box h2,
.box h3 {
  color: #1a73e8;
}

/* Center box (24/7 Support) */
.center-box h2,
.center-box h3 {
  color: #1a73e8;
}

/* Optional: tighten spacing for sub-headings */
.box h3 {
  font-size: 16px;
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 900px) {
  .fr-grid {
    grid-template-columns: 1fr;
  }

  .fr-box {
    padding: 35px 28px;
  }
}

/* =========================
   SIP TRUNKING PAGE
========================= */

.sip-section {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
}

.sip-section h1 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 12px;
}

.sip-intro {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 60px;
  color: #4b5563;
  font-size: 16px;
}

/* Feature Boxes */
.sip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-bottom: 70px;
}

.sip-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 14px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sip-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 34px rgba(0,0,0,0.08);
}

.sip-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #1a73e8;
}

.sip-card p {
  font-size: 14.5px;
  color: #374151;
  line-height: 1.6;
}

/* Text Sections */
.sip-text {
  max-width: 900px;
  margin: 0 auto 60px;
}

.sip-text h2 {
  font-size: 26px;
  margin-bottom: 18px;
  color: #111827;
}

.sip-text p {
  font-size: 15px;
  margin-bottom: 18px;
  color: #374151;
}

.sip-benefits {
  max-width: 900px;
  margin: 0 auto 80px;
}

.sip-benefits ul {
  margin-top: 20px;
}

.sip-benefits li {
  margin-bottom: 10px;
  font-size: 15px;
}

/* MOBILE */
@media (max-width: 768px) {
  .sip-section h1 {
    font-size: 30px;
  }
}

/* =========================
   GLOBAL RESET & BASE
========================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #f8fafc;
  color: #1f2937;
  line-height: 1.6;
}

/* =========================
   NAVBAR
========================= */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 40px;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Logo image stays unchanged */
.logo img {
  height: 42px;
}

/* Brand text – BLACK like screenshot */
.brand-text {
  font-size: 22px;
  font-weight: 700;
  color: #000000; /* BLACK */
  letter-spacing: 0.3px;
}

nav a {
  margin-left: 18px;
  text-decoration: none;
  color: #374151;
  font-weight: 500;
}

nav a:hover {
  color: #1a73e8;
}

.btn {
  background: #1a73e8;
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 6px;
}

/* =========================
   HERO SECTION
========================= */
.hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #1a73e8, #2563eb);
  color: white;
}

.hero .cta {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 22px;
  background: #ffffff;
  color: #1a73e8;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

/* =========================
   CONTENT & CARDS
========================= */
.content {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 40px;
}

.card {
  background: #ffffff;
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

/* =========================
   LISTS
========================= */
ul {
  margin-top: 20px;
  padding-left: 20px;
}

li {
  margin-bottom: 10px;
}

/* =========================
   FOOTER
========================= */
footer {
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  padding: 30px;
  text-align: center;
  font-size: 14px;
  margin-top: 60px;
}

footer a {
  margin: 0 8px;
  color: #1a73e8;
  text-decoration: none;
}

/* =========================
   COVERAGE MAP (YOUR CODE)
========================= */
.svg-map {
  width: 100%;
  max-width: 1000px;
  margin: 40px auto;
  display: block;
}

.active-country {
  fill: #1a73e8;
  opacity: 0.6;
  transition: all 0.6s ease;
}

.active-country.glow {
  opacity: 1;
  filter: drop-shadow(0 0 6px #1a73e8);
}

/* =========================
   FORMS
========================= */
.form {
  max-width: 600px;
  margin: 40px auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

.form input,
.form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 14px;
  border-radius: 6px;
  border: 1px solid #d1d5db;
}

.form button {
  background: #1a73e8;
  color: #ffffff;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.fr-pbx {
  max-width: 1200px;
  margin: 0 auto 90px;
  padding: 0 20px;
}

.fr-pbx h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
  font-weight: 600;
}

.fr-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.fr-card {
  background: #ffffff;
  padding: 34px;
  border-radius: 16px;
  box-shadow: 0 8px 26px rgba(0,0,0,0.06);
}

.fr-card ul {
  padding-left: 22px;
}

.fr-card li {
  margin-bottom: 16px;
  font-size: 15px;
  color: #374151;
  line-height: 1.6;
}
/* FOOTER */
.ub-footer {
  background: #2563eb;
  color: #fff;
  padding: 60px 40px 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-brand img {
  height: 40px;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-links h4 {
  margin-bottom: 14px;
}

.footer-links a {
  display: block;
  color: #e5e7eb;
  margin-bottom: 8px;
  font-size: 14px;
}

.expert-btn {
  margin-top: 16px;
  background: #22d3ee;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
}

.footer-bottom .social a {
  margin: 0 8px;
  color: #fff;
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal-box {
  background: #fff;
  padding: 30px;
  width: 100%;
  max-width: 520px;
  border-radius: 12px;
  position: relative;
}

.modal-box h2 {
  margin-bottom: 20px;
}

.modal-box input,
.modal-box select {
  width: 100%;
  padding: 10px;
  margin-bottom: 14px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
}

.modal-box .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.submit-btn {
  background: #2563eb;
  color: #fff;
  border: none;
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

.close {
  position: absolute;
  top: 14px;
  right: 18px;
  cursor: pointer;
  font-size: 20px;
}
ul { list-style: none; padding-left: 0; }

/* MOBILE */
@media (max-width: 900px) {
  .fr-grid {
    grid-template-columns: 1fr;
  }
}
section,
.main,
.page,
.section {
  position: relative;
  z-index: 1;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("../images/telecom-bg.jpg") center / cover no-repeat;
  opacity: 0.18;
  z-index: -1;
}


/* =========================
   NOTES / WARNINGS
========================= */
.note {
  margin-top: 20px;
  padding: 14px;
  background: #eef2ff;
  border-left: 4px solid #1a73e8;
}
