@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* ========= Base ========= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

.full-body {
  width: 100%;
  font-family: "Inter", sans-serif;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ========= Tokens (colors used repeatedly) ========= */
:root {
  --ink: #0b2545;
  /* heading */
  --muted: #4a5b73;
  /* paragraphs */
  --ink-2: #172236;
  /* subheads */
  --text: #2b3547;
  /* lists */
  --beige: #fcf9f5;
  /* industry bg */
  --accent: #ef5a34;
  /* orange indicator */
  --nav-grad: linear-gradient(90deg, #f4d3c5 0%, #b7d0ff 100%);
}


/* ===== Common CSS ====== */


.main-gradient {
  background: var(--nav-grad);
}

/* ========= Navbar ========= */
.navbar-custom {
  background: var(--nav-grad);
  padding: .75rem 1rem;
  position: relative;
  z-index: 2000;
}

.nav-container {
  background: rgba(255, 255, 255, .2);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50px;
  padding: .25rem 1rem;
  display: flex;
  gap: 2em;
  align-items: center;
  font-size: .9rem;
}

.nav-link {
  color: #000 !important;
  font-weight: 500;
}

.nav-link.active {
  color: #f2541b !important;
}

/* Nested dropdown */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu>.dropdown-menu {
  top: 0;
  left: 100%;
  margin: .25rem 0 0 .25rem;
}

.dropdown-submenu>.dropdown-toggle::after {
  transform: rotate(-90deg);
  margin-left: .5rem;
}

.navbar-custom,
.navbar-custom .dropdown-menu {
  z-index: 2050;
  position: relative;
}

/* CTA */
.btn-touch {
  background: #333;
  color: #fff;
  border-radius: 50px;
  font-size: .9rem;
  padding: .5rem 1.25rem;
  font-weight: 500;
}

.btn-touch:hover {
  background: #000;
  color: #fff;
}

/* ========= Gradient blobs (shared) ========= */
.gradients_purple,
.gradients_blue {
  position: absolute;
  width: min(60vw, 380px);
  height: min(60vw, 380px);
  border-radius: 50%;
  filter: blur(160px);
}

.gradients_purple {
  background: linear-gradient(104.82deg, #B8FCFF -1.73%, #FF86D7 111.74%);
}

.gradients_blue {
  background: linear-gradient(104.82deg, #B8FCFF 0%, #0A33FE 100%);
}

.top-left {
  top: 0;
  left: -120px;
}

.top-right {
  top: -30px;
  right: 20px;
}

/* ========= Hero ========= */
.hero-telecom {
  background: var(--nav-grad);
  padding: 60px 0 40px;
  min-height: 480px;
  position: relative;
  isolation: isolate;
}

.hero-title {
  font-weight: 800;
  color: #3f3f46;
  letter-spacing: .2px;
  line-height: 1.15;
  font-size: clamp(28px, 3.2vw, 40px);
}

.hero-sub {
  color: #6b7280;
  max-width: 560px;
}

.hero-indicators .bar {
  display: inline-block;
  height: 4px;
  width: 56px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .08);
}

.hero-indicators .bar.active {
  background: var(--accent);
  box-shadow: 0 0 0 2px rgba(239, 90, 52, .15) inset;
}

.hero-hills {
  position: absolute;
  inset: auto 0 -2px 0;
  z-index: -1;
  overflow: hidden;
}

.hero-hills img {
  width: 100%;
  object-fit: cover;
}

/* Towers (desktop only via HTML classes) */
.tower {
  position: absolute;
  bottom: 0;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, .2));
  max-height: 280px;
}

.tower-1 {
  right: 8%;
  bottom: -150px;
  z-index: 3;
}

.tower-2 {
  right: 30%;
  bottom: -130px;
  z-index: 2;
}

.tower-3 {
  right: 18%;
  bottom: -140px;
  z-index: 2;
}

/* ========= Shared Typographic Patterns ========= */
.section-title,
.about-title,
.services-heading,
.manufacturing-title,
.pi-title,
.industry-title,
.solar-title {
  font-weight: 800;
  color: var(--ink);
  letter-spacing: .2px;
}

.about-title {
  font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2rem);
}

.services-heading {
  font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.25rem);
}

.manufacturing-title,
.industry-title,
.solar-title {
  font-size: clamp(1.5rem, 1rem + 1.6vw, 2.25rem);
  line-height: 1.3;
}

.pi-title {
  font-size: clamp(1.4rem, 1rem + 1.4vw, 1.9rem);
}

.about-text {
  color: var(--muted);
  line-height: 1.65;
  font-size: .98rem;
}

/* ========= Lists (shared for many sections) ========= */
.service-list,
.mf-list,
.pi-list,
.solar-list,
.industry-list {
  margin: 0;
  padding-left: 1.2rem;
  list-style: disc;
  color: var(--text);
  line-height: 1.55;
  font-size: .96rem;
}

.service-list li,
.mf-list li,
.pi-list li,
.solar-list li,
.industry-list li {
  margin-bottom: .3rem;
}

/* ========= Sections ========= */
.about-section {
  position: relative;
  padding-top: 40px;
}

.about-section img {
  max-width: 70%;
}

.services-section {
  position: relative;
}

.service-block {}

/* (kept for hooks) */

.icon-tile {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  box-shadow: none;
}

.icon-tile img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.tile-purple {
  background: #dcd6ff;
}

.tile-indigo {
  background: #dbe2ff;
}

.tile-green {
  background: #ccf3da;
}

.tile-peach {
  background: #ffd9cd;
}

.tile-yellow {
  background: #ffe89a;
}

.install-commissioning {
  position: relative;
}

.ic-sub {
  font-weight: 700;
  color: var(--ink-2);
  font-size: .98rem;
}

.ic-text {
  color: var(--text);
  line-height: 1.55;
  font-size: .98rem;
}

.servey-image {
  max-width: 320px;
  width: 100%;
}

.makein-image {
  max-width: 220px;
}


.micro-images{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.tower-images {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.tower-img {
  width: 80px;
  /* height: 420px; */
}

/* small decorative towers */

.solar-sub {
  font-weight: 700;
  color: var(--ink-2);
  font-size: .98rem;
}

.solar-img {
  max-width: 100%;
}

.industry-section {
  background: var(--beige);
}

.industry-intro {
  font-size: .95rem;
  color: #444;
  font-weight: 500;
}

.industry-heading {
  font-weight: 700;
  color: var(--ink);
  font-size: 1rem;
  margin-bottom: .25rem;
}

/* Footer */
.flex-container {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.footer-img {
  max-height: 50px;
}

.ft-head {
  font-weight: 700;
  color: #222;
  margin-bottom: .5rem;
}

.ft-text {
  color: #3b3f47;
  font-size: .95rem;
  line-height: 1.55;
}


.s-image {
  width: 40px;
  height:40px;
}

/* ========= Offcanvas ========= */
#offcanvasNav {
  width: 280px;
}

#offcanvasNav .list-group-item {
  border-color: #eee;
}

.mobile-menu {
  z-index: 9999;
}

/* ========= Responsive ========= */

/* Navbar compaction */
@media (max-width:1199.98px) {
  .nav-container {
    gap: 1rem;
    padding: .25rem .75rem;
  }

  .tower {
    max-height: 240px;
  }
}

/* Tablet and below */
@media (max-width:991.98px) {
  .nav-container {
    border-radius: 14px;
    gap: .5rem;
    padding: .4rem .6rem;
    flex-wrap: wrap;
    max-width: 100%;
  }

  .navbar-nav.flex-row {
    flex-wrap: wrap;
  }

  .btn-touch {
    padding: .45rem 1rem;
    font-size: .875rem;
  }

  /* dropdowns stack, no overflow */
  .dropdown-submenu {
    position: static;
  }

  .dropdown-submenu>.dropdown-menu {
    position: static;
    float: none;
    margin: .25rem 0 0 0;
    border: 0;
    box-shadow: none;
  }

  .dropdown-submenu>.dropdown-toggle::after {
    transform: none;
    margin-left: .5rem;
  }

  /* hero */
  .hero-telecom {
    padding: 40px 0 80px;
    min-height: 420px;
  }

  .hero-sub {
    max-width: 100%;
  }

  /* images */
  .servey-image {
    max-width: 260px;
  }

  .makein-image {
    max-width: 200px;
  }

  .tower-img {
    width: 120px;
  }

  .solar-img {
    max-width: 85%;
  }

  /* industry spacing */
  .industry-title {
    margin-bottom: 1.25rem;
  }

  /* footer grid on tablet */
  .flex-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}

/* Phones */
@media (max-width:575.98px) {

  /* small text tune */
  .service-list,
  .mf-list,
  .pi-list,
  .solar-list,
  .industry-list,
  .about-text {
    font-size: .95rem;
  }

  /* hero */
  .hero-telecom {
    padding: 28px 0 68px;
    min-height: 360px;
  }

  .hero-indicators .bar {
    width: 44px;
  }

  .hero-hills img {
    height: 140px;
    object-fit: cover;
    object-position: center bottom;
  }

  /* about */
  .about-section {
    padding-top: 28px;
  }

  .about-section img {
    max-width: 100%;
  }

  /* services grid spacing */
  .services-section .row {
    row-gap: 1.25rem;
  }

  .icon-tile {
    width: 52px;
    height: 52px;
  }

  .icon-tile img {
    width: 30px;
    height: 30px;
  }

  /* specific images */
  .servey-image {
    max-width: 220px;
  }

  .makein-image {
    max-width: 180px;
    margin-top: .5rem;
  }

  .tower-img {
    width: 100px;
  }

  .solar-img {
    max-width: 90%;
  }

  /* industry grid */
  .industry-section .row {
    row-gap: 1.25rem;
  }

  /* footer to single column */
  .flex-container {
    grid-template-columns: 1fr;
  }

  .footer-img {
    max-height: 44px;
  }

  .ft-text {
    font-size: .92rem;
  }

  /* small padding safety for containers */
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* hide big blur blobs on tiny screens (perf + look) */
  .gradients_blue,
  .gradients_purple {
    display: none;
  }
}

/* Extra tiny tweaks */
@media (max-width:575.98px) {
  .top-left {
    top: -40px;
    left: -30px;
  }

  .top-right {
    top: -30px;
    right: -20px;
  }
}


/* logo-img */

.logo-img {
  height: 50px;
  width: auto;
}


.main-gradient {
  background: linear-gradient(90deg, #f4d3c5 0%, #b7d0ff 100%);
}

.gallery-frame {
  border: 3px solid rgba(33, 123, 255, .45);
  border-radius: 14px;
  background: rgba(255, 255, 255, .65);
  backdrop-filter: saturate(160%) blur(2px);
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

.gallery-link:hover .gallery-item img {
  transform: scale(1.03);
}

.image-modal {
  z-index: 99999;
}

@media (max-width: 575.98px) {
  .gallery-item.ratio {
    --bs-aspect-ratio: 70%;
  }

  /* a bit taller on phones */
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.logo-img {
  height: 40px;
}


.rf-list {
  margin: 0;
  padding-left: 1.2rem;
  list-style: disc;
  color: #2b3547;
  /* matches your --text */
  line-height: 1.55;
  font-size: 0.96rem;
}

.rf-list li {
  margin-bottom: .35rem;
}

.rf-illustration {
  max-width: 340px;
  /* nice size on desktop */
  width: 100%;
  height: auto;
}

/* mobile tweaks */
@media (max-width: 991.98px) {
  .rf-illustration {
    max-width: 300px;
  }
}

@media (max-width: 575.98px) {
  .rf-illustration {
    max-width: 260px;
    margin-top: .5rem;
  }

  .rf-section .about-title {
    line-height: 1.25;
  }

  .rf-list {
    font-size: .95rem;
  }
}

/* GPS Timing Antenna Solution */
.gps-section .gps-subtitle {
  color: #172236;
  font-size: 1rem;
  text-decoration: underline;
}

.gps-features {
  list-style: disc;
  padding-left: 1.25rem;
  font-size: .95rem;
  color: #2b3547;
  line-height: 1.55;
}

.gps-features li {
  margin-bottom: .4rem;
}

.gps-table td,
.gps-table th {
  font-size: .9rem;
  padding: .35rem .5rem;
  color: #2b3547;
}

/* 5-up grid */
.gps-grid {
  --gps-size: 140px;
  /* desktop circle size */
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 3 on first row, 2 on second */
  gap: 1.25rem 1.25rem;
  justify-items: center;
}

.gps-card {
  text-align: center;
  width: 100%;
}

.gps-item {
  width: var(--gps-size);
  height: var(--gps-size);
  border: 2px solid #f2541b;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  /* room so images don't touch border */
  overflow: hidden;
  transition: transform .3s ease;
}

.gps-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* always fit inside circle */
  display: block;
}

.gps-item:hover {
  transform: scale(1.04);
}

.gps-cap {
  margin-top: .5rem;
  margin-bottom: 0;
  font-size: .92rem;
  line-height: 1.25;
  color: #172236;
  max-width: 12ch;
  /* keep short labels from wrapping too long */
  margin-inline: auto;
}

/* Tablet */
@media (max-width: 991.98px) {
  .gps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gps-grid {
    --gps-size: 120px;
  }
}

/* Phone */
@media (max-width: 575.98px) {
  .gps-grid {
    gap: 1rem;
  }

  .gps-grid {
    --gps-size: 100px;
  }

  .gps-cap {
    font-size: .88rem;
    max-width: 16ch;
  }
}


/* IBS DAS Antennas */
.ibs-sub {
  color: #6b7280;
  font-size: .95rem;
}

.ibs-table thead th {
  font-weight: 700;
  color: #0b2545;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.ibs-table td,
.ibs-table th {
  padding: .45rem .6rem;
  font-size: .92rem;
  color: #2b3547;
  vertical-align: top;
}

.ibs-table td:first-child {
  font-weight: 600;
}

.ibs-table tbody tr:not(:last-child) td {
  border-bottom: 1px dashed rgba(0, 0, 0, .06);
}

/* Right Image Card */
.ibs-img-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, .08);

}

.ibs-main-img {
  max-height: 350px;
  object-fit: contain;

}

/* IBS DAS Antennas Table Transparent */
.ibs-table {
  background-color: transparent !important;
}

.ibs-table thead th {
  background-color: transparent !important;
}

.ibs-table tbody td {
  background-color: transparent !important;
}


/* Responsive Tweaks */
@media (max-width: 991.98px) {
  .ibs-main-img {
    max-height: 280px;
  }

  .ibs-table td,
  .ibs-table th {
    font-size: .9rem;
  }
}

@media (max-width: 575.98px) {
  .ibs-main-img {
    max-height: 220px;
  }

  .ibs-table td,
  .ibs-table th {
    font-size: .85rem;
  }

  .ibs-section .table-responsive {
    -webkit-overflow-scrolling: touch;
  }
}

/* RF Jumpers */
.rf-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform .3s ease, box-shadow .3s ease;
}

.rf-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.rf-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.rf-img img {
  width: 70%;
  max-height: 180px;
  object-fit: contain;
}

.rf-desc {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 0;
}

/* Mobile tweaks */
@media (max-width: 767.98px) {
  .rf-img img {
    max-height: 140px;
  }

  .rf-desc {
    font-size: 0.85rem;
  }
}

/* AISG Cable Assemblies */
.aisg-dl {
  margin: 0;
}

.aisg-dl dt {
  font-weight: 600;
  color: #0b2545;
  margin-top: .35rem;
}

.aisg-dl dd {
  margin-left: 0;
  color: #2b3547;
  font-size: .95rem;
  line-height: 1.5;
}

/* Right image card */
.aisg-card {
  border: 1px solid rgba(0, 0, 0, .08);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .06);
}

.aisg-img {
  max-height: 260px;
  object-fit: contain;
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
  .aisg-img {
    max-height: 220px;
  }
}

@media (max-width: 575.98px) {
  .aisg-img {
    max-height: 200px;
  }

  .aisg-dl dd {
    font-size: .9rem;
  }
}

/* Optical SFP Product Range */
.sfp-board {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
  padding: 20px;
  /* breathing room around the transparent PNG */
  max-width: 100%;
  /* keep it from stretching too wide */
}

.sfp-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  /* keeps proportions inside the board */
}

/* Optional small caption style */
.sfp-note {
  color: #6b7280;
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
  .sfp-board {
    padding: 18px;
    max-width: 860px;
  }
}

@media (max-width: 575.98px) {
  .sfp-board {
    padding: 14px;
    border-radius: 12px;
  }
}


/* CAT5E/CAT6 Cables */
.cat-list {
  margin: 0;
  padding-left: 1.15rem;
  list-style: disc;
  color: #2b3547;
  font-size: .95rem;
  line-height: 1.55;
}

.cat-list li {
  margin-bottom: .35rem;
}

.cat-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .06);
}

.cat-img {
  max-height: 160px;
  /* keeps consistent look */
  object-fit: contain;
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
  .cat-img {
    max-height: 140px;
  }
}

@media (max-width: 575.98px) {
  .cat-img {
    max-height: 120px;
  }

  .cat-list {
    font-size: .93rem;
  }
}

/* Optical SFP Product Range (single image + bullets) */
.sfp-list {
  margin: 0;
  padding-left: 1.15rem;
  list-style: disc;
  color: #2b3547;
  font-size: .95rem;
  line-height: 1.6;
}

.sfp-list li {
  margin-bottom: .4rem;
}

/* right image card */
.sfp-card {
  border: 1px solid rgba(0, 0, 0, .08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
}

.sfp-main-img {
  max-height: 260px;
  /* keeps proportion similar to screenshot */
  object-fit: contain;
}

/* responsiveness */
@media (max-width: 991.98px) {
  .sfp-main-img {
    max-height: 220px;
  }
}

@media (max-width: 575.98px) {
  .sfp-main-img {
    max-height: 200px;
  }

  .sfp-list {
    font-size: .93rem;
  }
}

/* Optical Fiber (lists) */
.fiber-list {
  margin: 0;
  padding-left: 1.15rem;
  list-style: disc;
  color: #2b3547;
  font-size: .95rem;
  line-height: 1.6;
}

.fiber-list li {
  margin-bottom: .35rem;
}

/* Single transparent image on white board */
.fiber-board {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
  padding: 16px;
}

.fiber-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
  .fiber-list {
    font-size: .93rem;
  }
}

@media (max-width: 575.98px) {
  .fiber-board {
    padding: 12px;
    border-radius: 12px;
  }

  .fiber-list {
    font-size: .92rem;
  }
}


/* Fiber Patch Cords / Pigtails */
.fp-list {
  margin: 0;
  padding-left: 1.1rem;
  list-style: disc;
  color: #2b3547;
  font-size: .95rem;
  line-height: 1.6;
}

.fp-list li {
  margin-bottom: .35rem;
}

.fp-subhead {
  font-weight: 700;
  color: #0b2545;
  margin-bottom: .35rem;
}

/* white boards for transparent PNGs */
.fp-board {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
}

.fp-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* responsive polish */
@media (max-width: 991.98px) {
  .fp-list {
    font-size: .93rem;
  }
}

@media (max-width: 575.98px) {
  .fp-board {
    border-radius: 12px;
    padding: 12px !important;
  }

  .fp-list {
    font-size: .92rem;
  }
}

/* FMS/FAT — full-width responsive grid */
.fms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

/* Card */
.fms-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .07);
  padding: 16px 14px;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

/* Fixed image area keeps all cards equal height */
.fms-imgbox {
  width: 100%;
  height: 150px;
  /* adjust if you want taller images */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.fms-imgbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.fms-cap {
  font-size: .95rem;
  line-height: 1.25;
  color: #2b3547;
}

/* Hover polish */
.fms-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, .12);
}

/* Mobile tweaks */
@media (max-width:575.98px) {
  .fms-imgbox {
    height: 120px;
  }

  .fms-card {
    padding: 12px;
    border-radius: 12px;
  }

  .fms-cap {
    font-size: .9rem;
  }
}

.contact-section .form-control {
  border: 1px solid #e5e7eb;
  box-shadow: none;
}

.contact-section .form-control:focus {
  border-color: #0a50b9;
  box-shadow: 0 0 0 .2rem rgba(10, 80, 185, .15);
}

.contact-section ul {
  padding-left: 1.1rem;
}

.contact-section li {
  margin-bottom: .35rem;
}

.mobile-app-section .about-title {
  font-weight: 700;
}

.mobile-app-section p {
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: justify;
}

.mobile-app-img {
  max-width: 400px;
}

@media (max-width: 768px) {
  .mobile-app-section p {
    font-size: 0.9rem;
  }

  .mobile-app-img {
    max-width: 300px;
  }
}

.microwave-installation-section .about-title {
  font-weight: 800;
  line-height: 1.25;
}

.microwave-installation-section h6 {
  font-weight: 700;
  margin-bottom: .35rem;
}

.microwave-installation-section .solar-list {
  margin: 0 0 1rem 0;
  padding-left: 1.15rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #2b3547;
}

.microwave-installation-section .solar-list li {
  margin-bottom: .35rem;
}

/* Perfect circular images with double ring (white inner + orange outer) */
.microwave-installation-section .s-image {
  width: 165px;
  height: 165px;
  object-fit: cover;
  border-radius: 50%;
  background: #fff;
  border: 6px solid #fff;
  /* inner white ring */
  box-shadow: 0 0 0 6px #ff6a3d;
  /* outer orange ring */
}

.microwave-installation-section .micro-cap,
.microwave-installation-section .microwave-img-box p {
  font-size: .9rem;
  font-weight: 600;
  color: #2b2b2b;
  margin-bottom: 0;
}

.microwave-installation-section .microwave-img-box {
  display: inline-block;
}

@media (max-width: 991.98px) {
  .microwave-installation-section .s-image {
    width: 180px;
    height: 180px;
    box-shadow: 0 0 0 5px #ff6a3d;
  }

  .microwave-installation-section .solar-list {
    font-size: .93rem;
  }
}

@media (max-width: 575.98px) {
  .microwave-installation-section .s-image {
    width: 160px;
    height: 160px;
    box-shadow: 0 0 0 4px #ff6a3d;
  }
}

/* ===== Solar Energy Section ===== */
.solar-energy-section {
  background: linear-gradient(90deg, #fff7f7, #f3f6ff); /* soft background */
}

.solar-energy-section .about-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #222;
}

.solar-energy-section p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
}

.solar-energy-section p strong {
  color: #000;
}

/* Image styling */
.solar-energy-section .row .col-6 img {
  border-radius: 8px;
  display: block;
  width: 70%;
  height: auto;
  position: relative;
}

/* Orange underline for images */
.solar-energy-section .row .col-6 {
  position: relative;
}

.solar-energy-section .row .col-6::after {
  content: "";
  display: block;
  width: 80%;
  height: 5px;
  background: #ff4d00; /* orange strip */
  margin: 8px auto 0 auto;
  border-radius: 4px;
}

/* Mobile optimization */
@media (max-width: 767px) {
  .solar-energy-section .about-title {
    font-size: 1.5rem;
    text-align: center;
  }
  .solar-energy-section p {
    text-align: center;
  }
  .solar-energy-section .row .col-6::after {
    width: 60%;
  }
}
