

/* ========= NAVBAR ========= */

#header .header_text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}
#logo .logo{
        display: flex;
    align-items: center;
}
#logo a{
    margin-left: 0; 
    max-width: 209px;
}
#logo a img{
    width: 100%;
    object-fit: contain;
}
.main_menu ul li a.active, .main_menu ul li a:hover{
    color:#F2640C;
}
.main_menu ul li a:after{
    display:none;
}
#logo .tag_line{
    color: #F2640C;
    padding-left: 10px;
    margin-top: -15px;
    font-family: Open Sans;
    font-weight: 700;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0px;
}
#logo .logo_right{
    max-width: 229px;
    margin-left: auto;
}
#logo .logo_right img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.navbar{
        border-top: 1px solid #fff;
}
.main_menu ul li a{
    font-weight:500;
}
/* ========= TOP BAR ========= */
.top-wrap {
  font-size: 16px;
  color: #000;
}
.top-wrap a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
}

/* ========= HERO ========= */
.hero-section .hero-img {
  object-fit: cover;
  border-radius: 8px;
  min-height: 220px;
}

/* ========= ABOUT ========= */
.intro-text {
  max-width: 1145px;
  margin: 0 auto;
  line-height: 30px;
  font-size: 18px;
  font-weight: 500;
}
.about-section ul li {
  line-height: 30px;
  font-size: 15px;
}

/* ========= CONSUMER ALERT ========= */
.consumer-alert {
  background: #494b64;
}

/* ========= SERVICE AREA ========= */
.service-area h4 {
  margin-bottom: 15px;
}

/* ========= TAKE CHARGE ========= */
.image-box {
  position: relative;
  max-width: 930px;
  margin: auto;
}
.image-box::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000000;
  opacity: 0.54;
  z-index: 2;
  border-radius: 8px;
}
.image-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  z-index: 1;
  border-radius: 8px;
}
.img-box-content {
  z-index: 3;
  position: relative;
  padding: 60px;
  max-width: 650px;
  margin: auto;
  color: #fff;
}

/* ========= Button ========= */
.btn.btn-white {
  background: #fff;
  color: #494b64;
}
.btn.btn-white:hover {
  background: #494b64;
  color: #fff;
}

.btn-dark {
  background: #494b64;
  color: #fff;
}
.btn-dark:hover {
  background: #fff;
  color: #494b64;
  border-color: #494b64;
}
.copyright {
  border-top: 1px solid #fff;
}
.copyright a{
    color:#fff;
}

/* ========= RESPONSIVE ========= */
@media (max-width: 991px) {
}
@media (max-width: 766px) {
  .top-bar {
    flex-direction: column;
  }
}
@media (max-width: 576px) {
  .hero-text h1 {
    font-size: 20px;
  }
  .hero-text p {
    font-size: 14px;
  }
  .top-wrap{
      flex-direction: column;
  }
}

/* ======================================== */
/* lightning-protection page */
/* ======================================== */


/* installation-slider */

.installation-slider h1 {
  /* font-family: "Open Sans"; */
  font-weight: 600;
  font-size: 32px;
  line-height: 26px;
  text-align: center;
}
.installation-slider .slider {
  max-width: 1028px;
  margin: auto;
}

/* Misconception */

.bg-gray {
  background-color: #494b64;
}
.misconception ul li {
  width: fit-content;
  margin: auto;
}
.misconception p {
  max-width: 1025px;
  margin: 0 auto;
}

/*================ Rodhini LPS Pricing Formula ================*/

.total-cost {
  background: #eef0fb; /* light bluish background like screenshot */
}

/* each row is a 2-column grid */
.price-grid .row {
  display: grid;
  grid-template-columns: 260px 1fr; /* left fixed, right flexible */
  column-gap: 48px;
  padding: 10px 0;
}

.price-grid .label {
  font-weight: 600;
  color: #4a4a4a;
  font-size: 14px;
  line-height: 1.5;
  text-align: left;
}

.price-grid .value {
  color: #4a4a4a;
  font-size: 14px;
  line-height: 1.7;
}
a {
  color: #000;
  text-decoration: none;
}
a:hover {
  color: #f2640c;
  text-decoration: none;
}
p span {
  color: #f2640c;
}

/* Responsive: stack label above value */
@media (max-width: 768px) {
  .price-grid .row {
    grid-template-columns: 1fr;
    row-gap: 6px;
  }
  .price-grid .value.dotted-line {
    white-space: normal;
  }
}

/* ========How to get a Rodhini LPS=========== */
.orderd-list {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 520px; /* optional */
}

.orderd-list li {
  counter-increment: step;
  position: relative;
  padding-left: 45px;
  margin-bottom: 18px;
  color: #373738;
  font-size: 14px;
  line-height: 1.6;
}

/* Number circle */
.orderd-list li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 2px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #494b64; /* dark grey */
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 14px;
}

/* Responsive tweak */
@media (max-width: 576px) {
  .orderd-list li {
    padding-left: 35px;
  }
  .orderd-list li::before {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }
}

/* ========== protection-from-lightning ============= */

.protection-from-lightning h4 {
  color: #f2640c;
}
.method-box h4 {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #000;
}

.text-orange {
  color: #f2640c;
}


/* =============================================== */
/* ========== Our Promise =================== */
/* =============================================== */


.promise-wrap{
  padding:70px 0 40px;
}
.page-title{
  color: #f2640c;
  font-weight:600;
  font-size:30px;
  margin:0 0 14px;
}
.promise-text{
  font-size:14px;
  line-height:1.75;
  margin:0;
}

.signature{
  margin-top:30px;
  text-align:right;
}
.sig-name{
  font-weight:500;
  font-size:20px;
  color:#111;
}
.sig-role{
  font-style:italic;
  margin-top:2px;
  color:#222;
}
.sig-company{
  font-style:italic;
  margin-top:2px;
  color:#222;
}

.chairman-card{
  width:290px;
  border-radius:10px;
  overflow:hidden;
  background:#eee;
  box-shadow:0 6px 22px rgba(0,0,0,.18);
  margin-top:10px;
}
.chairman-card img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}

/* Mission / Vision panel */
.mv-section{
  padding:40px 0 20px;
}
.mv-panel{
  background:#494B64;
  border-radius:6px;
  padding:44px 18px;
  text-align:center;
}
.mv-block h3{
  color:#fff;
  font-weight:600;
  font-size:28px;
  margin:0 0 10px;
}
.mv-block p{
  color:rgba(255,255,255,.9);
  font-size:13px;
  line-height:1.7;
  max-width:900px;
  margin:0 auto;
}
.mv-divider{
  height:32px;
}

/* Company background */
.company-bg{
  padding:55px 0 70px;
}
.section-title{
  color: #f2640c;
  font-weight:600;
  font-size:28px;
  margin:0 0 14px;
}
.company-text{
  max-width:980px;
  margin:0 auto 26px;
  font-size:13px;
  line-height:1.9;
}

/* ======================== */
/* ========== faq ============== */
/* ======================= */

#quest_and_ans .quest_and_ans_text p{
    font-size: 16px;
    line-height: 30px;
}
#quest_and_ans .quest_and_ans_text button{
        padding-left: 20px;
        color: #000;
        box-shadow:none;
        border-bottom:unset;
}
#quest_and_ans .quest_and_ans_text button.collapsed:before{
    display:none;
}
#quest_and_ans .quest_and_ans_text .accordion-button:not(.collapsed){
    color: #000;
}

.rs-qa-accordion .accordion-item {
  border: 1px solid #494b64;
  border-radius: 6px;
  overflow: hidden;
  /* background: var(--rs-bg); */
  margin-bottom: 12px;
}

/* remove bootstrap default inner borders */
.rs-qa-accordion .accordion-item + .accordion-item {
  border-top: 1px solid #494b64;
}

/* button */
.rs-qa-accordion .accordion-button {
  background: #fff;
  color: #494b64;
  font-weight: 500;
  font-size: 14px;
  padding: 18px 52px 18px 20px; /* right space for + icon */
  box-shadow: none;
  font-weight: 600;
}

/* remove bootstrap arrow caret */
.rs-qa-accordion .accordion-button::after {
  display: none !important;
}

/* add + / - icon on right */
.rs-qa-accordion .accordion-button {
  position: relative;
}
.rs-qa-accordion .accordion-button::before {
  display:block;
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #f2640c;
  font-size: 22px;
  font-weight: 500;
  line-height: 1;

}

/* when open show minus */
.rs-qa-accordion .accordion-button:not(.collapsed)::before {
  content: "–";
  font-size: 26px;
  top: 14px; /* matches screenshot: minus sits a bit higher */
  transform: none;
}

/* open state */
.rs-qa-accordion .accordion-button:not(.collapsed) {
  color: #494b64;
  background: #fff;
  box-shadow: none;
}

/* body */
.rs-qa-accordion .accordion-body {
  padding: 0 20px 18px 20px;
  font-size: 12.5px;
  line-height: 1.75;
  color: #494b64;
}

.rs-qa-accordion .accordion-body p {
  margin-bottom: 0;
}

/* focus */
.rs-qa-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: #494b64;
}

/* responsive tweaks */
@media (max-width: 576px) {
  .rs-qa-accordion .accordion-button {
    padding: 16px 46px 16px 16px;
  }
  .rs-qa-accordion .accordion-body {
    padding: 0 16px 16px 16px;
  }
}

/* =========================== */
/* franchise  */
/* =========================== */

.rs-fr-title{
  color:#F2640C;
  font-weight:600;
  font-size:32px;
  line-height:26px;
  margin: 0 0 14px;
}

.rs-fr-text{
  color:#373738;
  font-size:16px;
  line-height:30px;
  margin: 0 0 10px;
}


/* image card */
.rs-fr-image-card{
  width: 520px;                    /* matches screenshot proportion */
  max-width: 100%;
  border-radius:10px;
  overflow:hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,.18);
}

.rs-fr-image-card img{
  width:100%;
  height: 210px;                   /* fixed height like screenshot */
  object-fit: cover;
  display:block;
}

/* Responsive */
@media (max-width: 991px){
  .rs-franchise-section{ padding: 44px 0; }
  .rs-fr-text{ max-width: 100%; }
  .rs-fr-image-card{ margin: 0 auto; }
  .rs-fr-image-card img{ height: 240px; }
}

@media (max-width: 576px){
  .rs-fr-image-card img{ height: 200px; }
}


/*======== electrical earthing page  =============*/
.project_btm_text h4{
    display: flex;
    align-items: center;
    gap: 5px;
    color: #494B64;
}

/*============= contact page ====================*/

    #contact-us h3 {
        font-size: 16px;
        line-height: 30px;
        font-weight: 500;
        text-transform: uppercase;
    }
    
.map-wrap{
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.map-wrap iframe{
  width: 100%;     /* ✅ takes only column width */
  height: 480px;
  border: 0;
  display: block;
}

.follow_us .social_icon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    flex-wrap: wrap;
}

.social_icon img{
        max-width: 43px;
}
.contact-form-snipper{
    max-width: 730px;
    margin: auto;
}
#email_form .form_inner .form-select {
    border: 1px solid #ced4da;
    border-bottom: 1px solid #ced4da;
    padding: .375rem 2.25rem .375rem .75rem;
    margin-bottom: unset;
}
#email_form .form_inner button {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
    padding: 10px 25px;
    background: #494b64;
    border: 1px solid #494b64;
    margin-top: 10px;
    -webkit-transition: all linear .3s;
    transition: all linear .3s;
}
#email_form .form_inner button:hover {
    background: #fff;
    color: #494b64;
}
@media (min-width: 576px) and (max-width: 767.98px) {
    .location {
        padding-top: 40px;
        padding-bottom: unset !important;
    }
}
@media (max-width: 575.98px) {
    .location {
        padding-top: 40px;
        padding-bottom: unset !important;
    }
}

/*==========================*/
/*surge-protection page */
/*=========================*/

.surge-protection-device-img{
    max-width: 600px;
}

#home_details ul {
    list-style: unset;
}

#home_details img{
    width:100%;
    border-radius:8px;
        object-fit: contain;
}
.pluggable-cartridges{
    max-width: 488px;
    margin: 15px auto;
}
.surge-protection-for-data-line-in-offices {
    max-width: 450px;
    margin: 15px auto;
}
/*=====================*/
/* ========footer ==========*/
/*=================*/

.footer{
    background:#494B64;
        overflow: hidden;
}
.footer-logo img{
        width: 100%;
    max-height: 90px;
    object-fit: contain;
}
.footer a{
    color:#fff;
}
.footer-title {
    color:#CACACA;
}
.footer-logo .tag_line{
    font-weight: 700;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0px;
    color: #F2640C;
    transform: translate(50px, -30px);
}
.footer h6{
        font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}