/* ========================= FEATURE-RICH CLOUD PBX (BIG BOX) ========================= */ .fr-wrapper { max-width: 1200px; 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: rgba(255, 255, 255, 0.65); 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; } } 
/* SIP Trunking Boxes – match P2P style */
.sip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* always 2 columns */
  gap: 40px;
  margin-bottom: 60px;
}

.sip-card {
  background: rgba(255, 255, 255, 0.65);
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.sip-card h2,
.sip-card h3 {
  color: #2563eb; /* same blue as P2P */
  font-size: 20px;
  margin-bottom: 16px;
}

.sip-card p,
.sip-card li {
  font-size: 14px;
  color: #374151;
  line-height: 1.6;
}

/* Responsive: stack to 1 column on mobile */
@media (max-width: 900px) {
  .sip-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================= 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; } 

/* ========================= HAMBURGER MENU (MOBILE ONLY) ========================= */ .navbar { position: relative; /* required for mobile dropdown */ } .menu-toggle { display: none; font-size: 28px; cursor: pointer; user-select: none; } 

/* Mobile behavior */
@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .navbar {
    padding: 16px 20px;
  }

  .navbar nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    padding: 20px;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    z-index: 9999;
  }

  .navbar nav.show {
    display: flex;
  }

  .navbar nav a {
    margin: 0;
    padding: 14px 6px;
    font-size: 16px;
    border-bottom: 1px solid #f1f5f9;
  }

  .navbar nav a.btn {
    margin-top: 12px;
    text-align: center;
  }
}


/* ========================= 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: rgba(255, 255, 255, 0.65); 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; } 

/* BACKGROUND */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("../images/telecom-bg1.jpg") center / cover no-repeat;
  opacity: 0.32;
  z-index: -1;
}

/* ========================= NOTES / WARNINGS ========================= */ .note { margin-top: 20px; padding: 14px; background: #eef2ff; border-left: 4px solid #1a73e8; } /* Mobile form adjustments */ @media (max-width: 600px) { .form { padding: 20px; width: 100%; } .form input, .form textarea, .form select { font-size: 15px; width: 100%; box-sizing: border-box; } .form button { font-size: 16px; width: 100%; } } 

/* ========================= SIGNUP FORM MOBILE OVERRIDES Place this at the very end of css1.txt ========================= */ @media (max-width: 600px) { /* Form container */ .form { padding: 20px !important; width: 100% !important; margin: 0 auto !important; } /* Inputs, selects, textareas */ .form input, .form select, .form textarea { font-size: 15px !important; width: 100% !important; box-sizing: border-box !important; padding: 14px !important; } /* Grid collapse */ .form-grid { grid-template-columns: 1fr !important; gap: 16px !important; } /* Textarea full width */ .form-grid textarea { grid-column: span 1 !important; min-height: 140px !important; } /* Captcha + button stack */ .captcha-submit-row { flex-direction: column !important; align-items: stretch !important; gap: 16px !important; } /* Submit button full width */ .form button, .form .submit-btn { font-size: 16px !important; width: 100% !important; padding: 14px !important; } } 

/* ========================= SIGNUP FORM – MOBILE FIX ========================= */ @media (max-width: 600px) { /* Reduce outer spacing */ .section { margin: 30px auto; padding: 0 14px; } /* Form container */ .form { padding: 20px !important; border-radius: 12px; } /* Grid → single column */ .form-grid { grid-template-columns: 1fr !important; gap: 16px !important; } /* Inputs & selects */ .form-grid input, .form-grid select, .form-grid textarea { padding: 14px 16px !important; font-size: 15px !important; border-radius: 8px !important; } /* Textarea full width */ .form-grid textarea { grid-column: span 1 !important; min-height: 120px !important; } /* CAPTCHA + button stack */ .captcha-submit-row { flex-direction: column !important; align-items: stretch !important; gap: 16px !important; } /* Submit button */ .submit-btn { width: 100% !important; padding: 14px !important; font-size: 16px !important; } } h1, h2, h3, h4, h5, h6 { color: #1a73e8 !important; } .site-footer h1, .site-footer h2, .site-footer h3, .site-footer h4, .site-footer h5, .site-footer h6 { color: #ffffff; } .page h1 { color: #1a73e8 !important; } 

/* ========================= SECTION HERO (FINAL OVERRIDE) ========================= */ .section > h1 { text-align: center !important; color: #1a73e8 !important; } .section > p { text-align: center !important; margin-left: auto !important; margin-right: auto !important; max-width: 800px; }
/* ======================================================
   CLOUD PBX PAGE – SPACING NORMALIZATION (FINAL FIX)
   ====================================================== */

/* Reduce excessive spacing after Feature-Rich PBX box */
.fr-wrapper {
  margin-bottom: 64px !important;
}

/* Normalize space below PBX heading */
.fr-box h2 {
  margin-bottom: 32px !important;
}

/* Ensure consistent spacing between all grids */
.page .grid {
  margin-bottom: 64px;
}

/* Prevent stacked padding from inflating gaps */
.page {
  padding-bottom: 80px;
}

/* Calling section spacing consistency */
.calling-box {
  margin-bottom: 64px;
}

/* Center support box spacing */
.center-box {
  margin-bottom: 64px;
}

/* CTA spacing balance */
.fr-cta {
  margin-top: 64px;
}

/* Mobile spacing refinement */
@media (max-width: 900px) {
  .fr-wrapper {
    margin-bottom: 48px !important;
  }

  .page .grid {
    margin-bottom: 48px;
  }

  .fr-cta {
    margin-top: 48px;
  }
}
/* ======================================================
   CLOUD PBX – FINAL SPACING NORMALIZATION (AUTHORITATIVE)
   ====================================================== */

/* Global vertical rhythm */
:root {
  --section-gap: 64px;
}

/* Page padding */
.page {
  padding-bottom: 80px;
}

/* Intro spacing */
.page .intro {
  margin-bottom: var(--section-gap);
}

/* Enterprise PBX wrapper – controlled spacing */
.fr-wrapper {
  margin-bottom: 64px; /* clean, intentional gap */
  padding: 0;
}

/* Enterprise PBX box */
.fr-box {
  margin-bottom: var(--section-gap);
}

/* PBX heading spacing */
.fr-box h2 {
  margin-top: 0;
  margin-bottom: 32px;
}

/* All grid sections (SIP, Calling, Unified Comm) */
.grid {
  margin-bottom: var(--section-gap);
}

/* Calling box */
.calling-box {
  margin-bottom: var(--section-gap);
}

/* Center support box */
.center-box {
  margin: 0 auto var(--section-gap);
}

/* CTA spacing */
.fr-cta {
  margin-top: var(--section-gap);
}
/* ===============================
   ENTERPRISE PBX FEATURE LIST
================================ */

.fr-column ul {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.fr-column li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.fr-icon {
  font-size: 22px;
  line-height: 1;
  margin-top: 4px;
}

.fr-column strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #1e3a8a;
  margin-bottom: 4px;
}

.fr-column p {
  font-size: 15px;
  line-height: 1.65;
  color: #4b5563;
  margin: 0;
}

/* =====================================
   GLOBAL LIST RESET – NO BULLETS ANYWHERE
   ===================================== */

ul,
ol {
  list-style: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}

li::before,
li::marker {
  content: none !important;
  display: none !important;
}
/* =====================================================
   GLASS BOX SYSTEM – FINAL, AUTHORITATIVE
   ===================================================== */

.box,
.fr-box,
.fr-card,
.center-box {
  background: rgba(255, 255, 255, 0.65) !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
}

/* Enterprise elevation */
.box,
.fr-box,
.fr-card {
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.7) !important;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-link img {
  height: 40px;
  width: auto;
}

.brand-text {
  font-size: 20px;
  font-weight: 700;
  color: #1e3a8a;
}

.logo-link:hover .brand-text {
  color: #2563eb;
}

/* Mobile rhythm */
@media (max-width: 900px) {
  :root {
    --section-gap: 48px;
  }
}

