@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
body {
  font-family: "Lato", sans-serif;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

ul {
  padding: 0px;
  margin: 0;
}

ul li {
  list-style: none;
}

p {
  text-align: justify;
  margin-bottom: 0px;
}

h1 {
  margin-bottom: 0px;
}

h2,
h3,
h4 {
  margin-bottom: 0px;
}

:root {
  --dark-orange: #d96d00;
  --light-orange: #ffa94d;

  --black: #000;
  --white: #fff;
  --red: #ba0001;
  --green: #70a430;
  --orange: #f17c00;
  --blue: #20305c;
  --light-blue: #2b689f;
}

/* ---------------- universal read more button start --------------------------- */

.read-more a {
  display: inline-block;
  margin-top: 30px;
  background: var(--green);
  border: 2px solid var(--green);
  padding: 8px 40px;
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
  transition: 0.4s ease-in-out;
}

.read-more a:hover {
  background: none;
  color: var(--green);
}
.read-more p {
  display: inline-block;
  margin-top: 10px;
  background: var(--green);
  border: 2px solid var(--green);
  padding: 8px 40px;
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
  transition: 0.4s ease-in-out;
}

.read-more p:hover {
  background: none;
  color: var(--green);
}

@media screen and (max-width: 1200px) {
  .read-more a {
    margin-top: 20px;
    padding: 5px 25px;
    font-size: 14px;
    font-weight: 500;
  }
  .read-more p {
    padding: 5px 25px;
    font-size: 14px;
    font-weight: 500;
  }
}

@media screen and (max-width: 991px) {
  .read-more a {
    padding: 3px 20px;
  }
  .read-more p {
    padding: 3px 20px;
  }
}

@media screen and (max-width: 767px) {
  .read-more a {
    padding: 2px 20px;
  }
  .read-more p {
    padding: 2px 20px;
  }
}

/* ---------------- universal read more button end --------------------------- */

/* section css */
section {
  padding: 50px 0px;
}

.section-head {
  text-align: center;
  margin-bottom: 50px;
}

.section-head .heading {
  font-size: 30px;
  font-weight: 600;
  position: relative;
  color: gray;

  position: relative;
}




@media screen and (max-width: 767px) {
  p {
    font-size: 12px;
  }

  section {
    padding: 20px 0px;
  }

  .section-head {
    margin-bottom: 20px;
  }

  .section-head .heading {
    font-size: 24px;
  }
}

@media screen and (max-width: 575px) {
  .section-head .heading {
    font-size: 20px;
  }
}

/* section css */

/* footer css */
.footer {
  padding: 50px 0px;
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 20px 0px;
  }
}

/* footer css */

/* top-bar css start here */

.top-bar {
  background: var(--green);
  color: var(--white);
  padding: 5px 0px;
}

.top-bar .top-content a {
  color: var(--white);
}

@media screen and (max-width: 991px) {
  .top-bar .top-content {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .top-bar {
    display: none;
  }
}

/* top-bar css ends here */

/* fixed icons css start */
.fix-icons .whatsapp-icon {
  position: fixed;
  top: 80%;
  right: 1%;
  z-index: 999999;
}
.fix-icons .phone-icon {
  position: fixed;
  top: 70%;
  right: 1%;
  z-index: 999999;
}
.fix-icons .whatsapp-icon a {
  color: #fff;
  font-size: 24px;
  background: #25d366;
  padding: 10px 15px;
  border-radius: 50%;
  /* box-shadow: rgba(37, 211, 101, 0.753) 0px 0px 5px 5px; */
}
.fix-icons .phone-icon a {
  color: #fff;
  font-size: 24px;
  background: #00c300;
  padding: 10px 13px;
  border-radius: 50%;
  /* box-shadow: rgba(0, 195, 0, 0.733) 0px 0px 5px 5px; */
}

@media screen and (max-width: 1400px) {
  .fix-icons .whatsapp-icon {
    top: 75%;
  }
  .fix-icons .phone-icon {
    top: 60%;
  }
}

@media screen and (max-width: 1200px) {
  .fix-icons .whatsapp-icon {
    top: 75%;
  }
  .fix-icons .phone-icon {
    top: 65%;
  }

  .fix-icons .whatsapp-icon a {
    font-size: 18px;
    padding: 6px 10px;
  }
  .fix-icons .phone-icon a {
    font-size: 18px;
    padding: 7px 10px;
  }
}

@media screen and (max-width: 767px) {
  .fix-icons .whatsapp-icon a {
    font-size: 16px;
    padding: 6px 10px;
  }
  .fix-icons .phone-icon a {
    font-size: 16px;
    padding: 7px 10px;
  }
}

/* end of fixed icons css */

/* top button css start here */

.top {
  display: none;
  color: var(--white);
  background: var(--black);
  padding: 5px 10px;
  font-size: 24px;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 99999999;
}
.top:hover {
  color: var(--green);
}

@media screen and (max-width: 767px) {
  .top {
    display: none !important;
  }
}

/* top button css ends here */

/* custom css start   -------------------------------------------------------- */

/* ----------- navbar css start here ----------- */

.navbar {
  padding: 5px 0px;
  background: var(--white);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.navbar .logo {
  width: 180px;
}

.navbar .navbar-nav .nav-item .nav-link {
  color: gray;
  font-size: 20px;
}

.navbar .navbar-nav .nav-item .nav-link:hover {
  color: var(--orange);
}

.navbar .navbar-nav .nav-item {
  position: relative;
}

.navbar .navbar-nav .nav-item::after {
  content: "";
  position: absolute;
  width: 0%;
  left: 0;
  bottom: 0%;
  height: 2px;
  background: var(--orange);
  opacity: 0;
  transition: 0.5s ease-in-out;
}

.navbar .navbar-nav .nav-item:hover::after {
  opacity: 1;
  width: 100%;
  transition: 0.5s ease-in-out;
}

.navbar-light .navbar-toggler {
  font-size: 1rem;
  border-color: black;
}
.navbar-light .navbar-toggler:focus {
  border: 1px solid var(--green);
  box-shadow: none;
}

/* responsive navbar */

@media screen and (max-width: 1400px) {
  .navbar .navbar-nav .nav-item .nav-link {
    font-size: 16px;
  }
}

@media screen and (max-width: 1200px) {
  .navbar .navbar-nav .nav-item .nav-link {
    font-size: 14px;
  }
}

@media screen and (max-width: 991px) {
  .navbar .navbar-nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  .navbar .navbar-nav .nav-item .nav-link {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .navbar .logo {
    width: 150px;
  }

  .navbar .navbar-nav {
    display: flex;
    flex-direction: column;
    justify-content: start;
    margin-top: 20px;
  }
}

.dropdown .dropdown-menu {
  display: block;
  position: absolute;
  border: none !important;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.4s ease;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown .dropdown-menu li {
  font-size: 18px;
  padding: 10px 5px;
  transition: 0.2s ease-in-out;
}
.dropdown .dropdown-menu li a {
  color: var(--black);
  transition: 0.2s ease-in-out;
}

.dropdown .dropdown-menu li:hover {
  background: var(--green);
}

.dropdown .dropdown-menu li:hover a {
  color: var(--white);
}

.dropdown .dropdown-menu .dropdown-item {
  background: none;
}

@media screen and (max-width: 1400px) {
  .dropdown .dropdown-menu li {
    font-size: 16px;
    padding: 5px 2px;
  }
}

@media screen and (max-width: 991px) {
  .dropdown .dropdown-menu {
    display: none;
  }
  .dropdown:hover .dropdown-menu {
    display: block;
  }

  .dropdown .dropdown-menu li {
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  .dropdown .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
  }

  .dropdown .dropdown-menu li {
    font-size: 16px;
    padding: 5px 2px;
    transition: 0.2s ease-in-out;
  }
}

/* --------------- end of navbar css here ------------- */

/* ------------------------- banner slider css start here ------------------------------- */

/* Slider wrapper */
.mainslider {
  width: 100%;
  position: relative;
}

/* Slick fixes */

/* Slide item */
.slider-big .item {
  position: relative;
}

/* Image */
.slider-big .item img {
  width: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.15);
  transition: transform 1.5s ease;
}

/* Active slide zoom effect */
.slider-big .slick-active img {
  transform: scale(1);
}

/* banner-button */
.banner {
  position: relative;
  overflow: hidden;
}
.banner .banner-button {
  position: absolute;
  left: 5%;
  bottom: 25%;
}
/* .banner .banner-button .read-more a {
  background: var(--orange);
}
.banner .banner-button .read-more a {
  border: var(--orange);
}
.banner .banner-button:hover .read-more a {
  background: var(--white);
  color: var(--orange);
} */

@media screen and (max-width: 991px) {
  .banner .banner-button {
    bottom: 20%;
  }
}

@media screen and (max-width: 767px) {
  .banner .banner-button {
    bottom: 10%;
  }

  .banner .banner-button .read-more a {
    padding: 2px 15px;
    color: var(--white);
    font-size: 12px;
  }
}

/* banner-button */

/* ------------------------- banner slider css ends here ------------------------------- */

/* ------------------------------ sub-page banner css start here ----------------------------- */

.sub-banner {
  position: relative;
  overflow: hidden;
}

.sub-banner-img {
  position: relative;
}
.sub-banner-text {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--white);
}

.sub-banner h1 {
  font-size: 52px;
  letter-spacing: 2px;
}
.sub-banner p {
  font-size: 22px;
  letter-spacing: 2px;
  margin-top: 10px;
  align-items: center;
}
.sub-banner p a {
  color: var(--white);
}

@media screen and (max-width: 767px) {
  .sub-banner h1 {
    font-size: 20px;
  }
  .sub-banner p {
    font-size: 12px;
    margin-top: 5px;
  }
}

/* ------------------------------ end of sub-page banner css here ----------------------------- */

/* --------------------- about company css start here --------------------- */
.about-row {
  display: flex;
  align-items: stretch;
}

.about-cmpny .about-text {
  background: rgba(160, 159, 159, 0.11);
  padding: 40px;
  height: 100%;
}
.about-cmpny .about-text h4 {
  margin-bottom: 20px;
  font-weight: 600;
}
.about-cmpny .about-text h2 {
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 42px;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  height: 100%;
}

.about-cards .card-1 {
  background-color: rgba(241, 125, 0, 0.644);
}
.about-cards .card-2 {
  background-color: rgba(241, 125, 0, 0.822);
}
.about-cards .card-3 {
  background-color: rgba(241, 125, 0, 0.959);
}
.about-cards .card-4 {
  background-color: #dd7403;
}

.about-cmpny .about-card {
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 46px;
  text-align: center;
}

.about-cmpny .about-card h2 {
  margin-bottom: 5px;
  font-weight: 600;
}
.about-cmpny .about-card p {
  text-align: center;
}

.about-cmpny .about-card span {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 500;
}

/* responsive css */

@media screen and (max-width: 1200px) {
  .about-cmpny .about-card {
    padding: 20px;
  }
}

@media (max-width: 992px) {
  .about-row {
    flex-direction: column;
  }

  .about-cards {
    grid-template-columns: 1fr 1fr;
  }
  .about-cmpny .about-card {
    padding: 30px;
  }
}

@media screen and (max-width: 767px) {
  .about-cmpny .about-text {
    padding: 10px;
  }

  .about-cmpny .about-text h4 {
    margin-bottom: 15px;
    font-size: 16px;
  }
  .about-cmpny .about-text h2 {
    font-size: 36px;
  }

  .about-cmpny .about-card {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .about-cards {
    grid-template-columns: 1fr;
  }
}

/* responsive css */


/* --------------------- end of about company css here --------------------- */


/* --------------------- services section css start here --------------------- */

.services .service-content {
  position: relative;
  overflow: hidden;
}

.services .service-card .service-img img {
  position: relative;
}

.services .service-card .service-img img {
  transition: 0.2s ease-in-out;
}

.services .service-content:hover .service-img img {
  transform: scale(1.1);
}

.services .service-content .service-card .text-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.13), rgba(0, 0, 0, 0.781));
}

.services .service-content .service-bg {
  position: absolute;
  bottom: -20%;
  left: 5%;
  padding-right: 5px;
  color: var(--white);
  transition: 0.2s ease-in-out;
}
.services .service-content .service-bg .service-name h2 {
  font-size: 22px;
  margin-bottom: 20px;
}
.services .service-content:hover .service-bg {
  bottom: 5%;
}

.services .service-card .service-icon {
  font-size: 40px;
}

/* responsive css start */

@media screen and (max-width: 1399px) {
  .services .service-content .service-bg {
    bottom: -25%;
  }
}

@media screen and (max-width: 1200px) {
  .services .service-content .service-bg .service-name h2 {
    font-size: 20px;
  }
  .services .service-content .service-bg {
    bottom: -15%;
  }
}

@media screen and (max-width: 991px) {
  .services .service-content .service-bg {
    bottom: 5%;
  }
}

@media screen and (max-width: 767px) {
  .services .service-content .service-bg {
    bottom: 5%;
  }

  .services .service-card .service-icon {
    font-size: 24px;
  }
}

@media screen and (max-width: 420px) {
  .services .service-content .service-bg .service-name h2 {
    font-size: 18px;
  }
}

/* responsive css ends */

/* --------------------- end of services section css here --------------------- */

/* -------------------- why-choose-us section css start here ------------------- */
.why-us {
  background-color: #f7f7f7;
}

.why-us-post-mob {
  display: none;
}
.why-us .why-us-post-tab {
  display: none;
}

.why-us .why-content {
  margin-bottom: 20px;
}
.why-us .why-points .point img {
  width: 45px;
}

.why-us .why-points .point {
  margin-bottom: 20px;
}
.why-us .why-points .point h4 {
  margin-bottom: 5px;
}

.why-us .why-points .point p {
  color: rgb(122, 121, 121);
}

.why-content-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

@media screen and (max-width: 1400px) {
  .why-us .why-content {
    margin-bottom: 20px;
  }

  .why-us .why-points .point img {
    width: 30px;
  }

  .why-us .why-points .point h4 {
    font-size: 18px;
  }
  .why-us .why-points .point p {
    font-size: 14px;
  }
}

@media screen and (max-width: 1200px) {
  .why-us .why-us-post {
    display: none;
  }
  .why-us .why-us-post-tab {
    display: block;
  }

  .why-us .why-content {
    margin-bottom: 40px;
  }
  .why-us .why-content p {
    font-size: 16px;
  }

  .why-us .why-points .point img {
    width: 40px;
  }

  .why-us .why-points .point h4 {
    font-size: 22px;
  }
}

@media screen and (max-width: 991px) {
  .why-us .why-us-post-tab {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .why-us-post-mob {
    display: block;
    margin-bottom: 10px;
  }
  .why-us .why-content {
    margin-bottom: 20px;
  }
  .why-us .why-content p {
    font-size: 14px;
  }

  .why-us .why-points .point {
    margin-bottom: 20px;
  }

  .why-us .why-points .point h4 {
    font-size: 18px;
  }
  .why-us .why-points .point img {
    width: 35px;
  }

  .why-us .why-points .point p {
    font-size: 12px;
  }
}

/* -------------------- end of why-choose us section css here -------------------- */



/* ------------------ contact us css start here ------------------- */


.contact-us .left-side {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  /* color: var(--white); */
}

.contact-us .left-side h4 {
  margin-bottom: 40px;
}

.contact-us .left-side p {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.contact-us .left-side p i {
  font-size: 20px;
  margin-right: 10px;
}

.contact-us .left-side p a {
  color: var(--black);
}

.contact-us .center-form {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.contact-us .contact-form {
  /* background: rgba(255, 255, 255, 0.1); */
  backdrop-filter: blur(12px);
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(61, 61, 61, 0.377);
  padding: 10px;
  width: 100%;
}

.contact-us .contact-form .form-head h3 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 10px;
}

.contact-us .contact-form .form-control::placeholder {
  color: var(--black);
}

.contact-us .contact-form .form-control:focus {
  box-shadow: none;
}

.contact-us .contact-form .form-btn {
  margin-top: 20px;
  text-align: center;
}

.contact-us .contact-form .form-btn button {
  border: none;
  background: none;
  color: var(--white);
  letter-spacing: 2px;
  font-size: 20px;
  font-weight: 500;
  background: var(--green);
  border: 2px solid var(--green);
  padding: 8px 40px;
  transition: 0.2s ease-in-out;
}

.contact-us .contact-form .form-btn button:hover {
  background: none;
  color: var(--orange);
  border: 2px solid var(--orange);
}

/* responsive css start here */

@media screen and (max-width: 1200px) {
  .contact-us .left-side h4 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 20px;
    text-align: justify;
  }
  .contact-us .contact-form .form-btn button {
    padding: 3px 25px;
    font-size: 14px;
  }
}

@media screen and (max-width: 991px) {
  .contact-us .section-head {
    display: block;
  }

  .contact-us .left-side h4 {
    font-size: 20px;
  }

  .contact-us .left-side p {
    margin-bottom: 10px;
  }

  .contact-us .left-side p i {
    font-size: 14px;
  }

  .contact-us .contact-form {
    border-radius: 5px;
    padding: 5px;
    margin-bottom: 20px;
  }
  .contact-us .contact-form .form-btn button {
    padding: 3px 20px;
  }
}

@media screen and (max-width: 767px) {
  .contact-us .left-side h4 {
    font-size: 18px;
  }

  .contact-us .contact-form .form-head h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .contact-us .contact-form .form-btn button {
    padding: 2px 20px;
  }
}

/* end of responsive css */

/* -------------- captcha css start ------------ */

.captchasep1 {
  display: flex;
}

.contact-us .contact-form .captchasep1 .form-floating label {
  color: #000;
}

.contact-us .contact-form .captchasep1 .form-floating .form-control {
  padding-top: 1.625rem !important;
  padding-bottom: 0.625rem !important;
}

.captchasep1 input {
  width: 100% !important;
  height: 40px;
}

.captchasep1 .captcha-codes-sec {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100% !important;
  border-radius: 5px;
  background: #fff;
}

.captchasep1 .captcha-codes-sec p {
  letter-spacing: 9px;
  font-style: italic;
  font-size: 28px;
  font-weight: 700;
  color: gray;
}

.captchasep1 .captcha-codes-sec button {
  font-style: italic;
  font-size: 24px;
  outline: none;
  height: 100%;
  border: none;
  background: none;
}

.captchasep1 .captcha-codes-sec button i {
  background: var(--green);
  color: #fff;
  padding: 10px;
  border-radius: 5px;
}

/* responsive captcha */
@media screen and (max-width: 767px) {
  .captchasep1 .captcha-codes-sec p {
    letter-spacing: 2px;
    font-size: 18px;
    width: 60% !important;
  }

  .captchasep1 .captcha-codes-sec button {
    font-size: 12px;
  }

  .contact-form .captchasep1 .form-floating label {
    font-size: 14px;
    padding: 5px;
  }

  .form-floating .form-control,
  .form-floating .form-select {
    height: 2.5rem;
    line-height: 1.25;
  }
}

/* end of responsive captcha */

/* ----------- end of captcha css ----------- */

/* ------------------------ end of contact us css --------------------- */

/* --------------- blog section css start here ------------- */

.blog-section .blog-card {
  position: relative;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  padding: 10px;
  margin: 20px 5px;
}

.blog-section .blog-card .blog-img {
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}

.blog-section .blog-card .blog-img img {
  width: 100%;
  transition: 0.2s ease-in-out;
}

.blog-section .blog-card .blog-img:hover img {
  transform: scale(1.1);
  transition: 0.2s ease-in-out;
}

.blog-section .blog-card .blog-text h3 {
  font-size: 18px;
  color: #181717;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  /* white-space: nowrap; */
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-section .blog-card .blog-text p {
  display: inline-block;
  margin-bottom: 5px;
}
.blog-section .blog-card .blog-text .date p {
  font-size: 14px;
  color: var(--green);
}

.blog-section .blog-card .blog-text .blog-para {
  font-size: 14px;
  color: #767373;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  /* white-space: nowrap; */
  overflow: hidden;
  text-overflow: ellipsis;
}

/* responsive css start */

@media screen and (max-width: 1200px) {
  .blog-section .blog-card .blog-text h3 {
    font-size: 16px;
  }
}

@media screen and (max-width: 991px) {
  .blog-section .blog-card {
    margin-bottom: 20px;
  }

  .blog-section .blog-card .blog-text h3 {
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  .blog-section .solution-heading p {
    font-size: 12px;
  }

  .blog-section .blog-card {
    margin-bottom: 20px;
  }

  .blog-section .blog-card .blog-text h3 {
    font-size: 16px;
  }

  .blog-section .blog-card .blog-text p {
    font-size: 12px;
    margin-bottom: 5px;
  }
}

/* responsive css end */

/* ----------- end of blog section css here ------------ */

/* ------------------ brands we deal in css start here ---------------------- */

.our-clients {
  /* background: rgba(243, 241, 241, 0.801); */
  background: linear-gradient(#00000010);
}
.our-clients .brand-img {
  margin: 5px;
  /* padding: 2px; */
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

/* ----------- end of brands we deal in css here -------------- */

/* --------------------- FAQ's section css start ----------------------- */
.faq {

  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.faq .accordion .accordion-item .accordion-body p {
  color: #000;
}

.faq .accordion .accordion-item .accordion-header .accordion-button:focus {
  box-shadow: none;
}

.faq .accordion .accordion-item .accordion-header .accordion-button {
  color: #000;
  font-size: 18px;
  transition: 0.5s ease-in-out;
}

.faq .accordion .accordion-item .accordion-body p {
  font-size: 16px;
}

.faq
  .accordion
  .accordion-item
  .accordion-header
  .accordion-button:not(.collapsed) {
  color: #fff;
  background-color: var(--orange);
}

.faq .accordion .accordion-item .accordion-header .accordion-button::after {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  margin-left: auto;
  content: "+";
  font-size: 2rem;
  background-image: none;
  background-repeat: no-repeat;
  background-size: 2.25rem;
  transition: transform 0.2s ease-in-out;
}

.faq
  .accordion
  .accordion-item
  .accordion-header
  .accordion-button:not(.collapsed)::after {
  content: "-";
  font-size: 2rem;
  /* Same size for consistency */
  color: white;
  background-image: none;
  transform: rotate(0deg);
  transition: transform 0.2s ease-in-out;
}

/* responsive css start */
@media screen and (max-width: 981px) {
  .faq .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 16px;
    padding: 15px;
  }

  .faq .accordion .accordion-item .accordion-body {
    padding: 15px;
  }

  .faq .accordion .accordion-item .accordion-body p {
    font-size: 14px;
    text-align: justify;
    margin-bottom: 5px;
  }
}

@media screen and (max-width: 767px) {
  .faq .accordion .accordion-item .accordion-header .accordion-button {
    padding: 10px;
    font-size: 14px;
  }

  .faq .accordion .accordion-item .accordion-body {
    padding: 10px;
  }

  .faq .accordion .accordion-item .accordion-body p {
    font-size: 12px;
  }
}

/* responsive css end */

/* --------------------- end of FAQ's section css ----------------------- */

/* ----------------------- footer css start here ----------------------- */

.footer {
  background:
    linear-gradient(rgba(54, 54, 54, 0.959), rgba(54, 54, 54, 0.979)),
    url(../img/footer/footer-image.jpg) no-repeat center center/cover;

  color: var(--white);
}

.footer .part .part-head {
  margin-bottom: 20px;
}

.footer .part .part-text p {
  text-align: justify;
  line-height: 2;
}

.footer .footer-icons .social-icons li {
  background: var(--white);
  width: 60px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  border-radius: 50%;
}

.footer .footer-icons .social-icons li a {
  color: var(--orange);
}

.footer .part-2 {
  padding-left: 50px;
}

.footer .part .part-text .footer-links li {
  margin-bottom: 20px;
}
.footer .part .part-text .footer-links li a {
  color: var(--white);
  transition: 0.5s ease-in-out;
}
.footer .part .part-text .footer-links li a:hover {
  color: var(--orange);
}

.footer .part-4 p {
  margin-bottom: 20px;
}
.footer .part-4 i {
  font-size: 28px;
  margin-right: 5px;
  color: var(--orange);
}

.footer .part-4 .connect p a {
  color: var(--white);
}

.footer-widget .copyright {
  background: var(--orange);
  padding: 10px;
}
.footer-widget .copyright p {
  text-align: center;
}
.footer-widget .copyright span {
  font-size: 18px;
}
.footer-widget .copyright a {
  color: var(--white);
}

/* responsive css start */

@media screen and (max-width: 1200px) {
  .footer .part {
    margin-bottom: 40px;
  }
  .footer .part .part-head h2 {
    font-size: 26px;
  }
}

@media screen and (max-width: 991px) {
  .footer .part .part-head {
    margin-bottom: 15px;
  }

  .footer .part .part-head h2 {
    font-size: 24px;
  }

  .footer .part .part-text p {
    font-size: 14px;
  }
  .footer .footer-icons .social-icons li {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .footer .part .part-text .footer-links li {
    margin-bottom: 15px;
    font-size: 14px;
  }

  .footer .part-4 .address p {
    font-size: 14px;
  }
  .footer .part-4 i {
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  .footer .part .part-head {
    margin-bottom: 10px;
  }

  .footer .part .part-head h2 {
    font-size: 22px;
  }

  .footer .part .part-text p {
    font-size: 12px;
  }

  .footer .footer-icons .social-icons li {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  .footer .part .part-text .footer-links li {
    margin-bottom: 10px;
  }

  .footer .part-4 .address p {
    font-size: 12px;
  }
  .footer .part-4 .connect p a {
    font-size: 12px;
  }

  .footer .part-4 i {
    font-size: 16px;
  }
}

@media screen and (max-width: 575px) {
  .footer .part-2 {
    padding-left: 0px;
  }
}

/* responsive css end */

/* ----------------------- footer css ends here ----------------------- */

/* ==================================================================================================== */
/* ==================================================================================================== */

/* =================== contact page css start =================== */

.map-location,
.map-location iframe {
  width: 100%;
  height: 100%;
  height: 400px;
  border: 1px solid #bdbbbb80;
}

@media screen and (max-width: 767px) {
  .map-location,
  .map-location iframe {
    height: 200px;
  }
}

/* ======================== contact page css end ======================== */

/* ============================================================================================================ */
/* ============================================================================================================ */

/* ============================ blog detail page css start here ============================ */
/* .blog-detail {
  background: linear-gradient(#f7f7f773, #f7f7f7);
} */
/* .blog-detail .blog-img {
  background: #eaeaec;
} */

.blog-detail .blog-date {
  display: inline-block;
  background: var(--green);
  padding: 5px 20px;
  font-weight: 600;
  color: var(--white);
  margin-top: 10px;
}

.blog-detail .blog-text {
  margin-top: 30px;
}

.blog-detail .blog-text h3 {
  margin-bottom: 5px;
  font-size: 20px;
}
.blog-detail .blog-text p {
  margin-bottom: 20px;
  text-align: justify;
}

.blog-detail .recent-blogs .recent .recent-img {
  background: #eaeaec;
}

.blog-detail .recent-blogs .recent .recent-date p {
  display: inline-block;
  background: var(--green);
  padding: 5px 20px;
  font-weight: 600;
  color: var(--white);
  margin-top: 10px;
}

.blog-detail .recent-blogs .recent p {
  color: black;
  padding: 5px;
  transition: 0.4s ease-in-out;
}

.blog-detail .recent-blogs .recent:hover p {
  color: gray;
}
.blog-detail .recent-blogs .recent:hover .recent-date p {
  color: var(--white);
}

.blog-detail .recent-blogs .recent .recent-img {
  position: relative;
  overflow: hidden;
}
.blog-detail .recent-blogs .recent .recent-img img {
  transition: 0.2s ease-in-out;
}

.blog-detail .recent-blogs .recent .recent-img:hover img {
  transform: scale(1.1);
}

/* responsive css start */

@media screen and (max-width: 1200px) {
  .blog-detail .blog-text h2 {
    font-size: 24px;
  }

  .blog-detail .recent-blogs .recent .recent-img p {
    font-size: 14px;
  }
}

@media screen and (max-width: 991px) {
  .blog-detail .blog-text h2 {
    font-size: 22px;
  }

  .blog-detail .recent-blogs {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .blog-detail .blog-date {
    padding: 1px 10px;
    font-weight: 600;
    margin-top: 5px;
  }
  .blog-detail .blog-text {
    margin-top: 10px;
  }
  .blog-detail .blog-text h2 {
    font-size: 18px;
  }
  .blog-detail .blog-text h3 {
    margin-bottom: 2px;
    font-size: 16px;
  }
  .blog-detail .blog-text p {
    margin-bottom: 10px;
  }
}

/* responsive css end */

/* ============================ blog detail page css ends here ============================ */

/* ============================================================================================================ */
/* ============================================================================================================ */

/* ============================ about page css start here ============================ */

/* ----------------------- about detail section css start here ----------------------- */

.about-detail {
  padding-bottom: 0px;
  background-color: #f7f7f7;
  text-align: justify;
}

.about-detail .detail-content h2 {
  color: var(--orange);
  margin-bottom: 40px;
  font-size: 48px;
}

.about-detail .detail-content h4 {
  margin-bottom: 20px;
}

.about-detail .detail-content p {
  margin-bottom: 20px;
  color: gray;
}

@media screen and (max-width: 991px) {
  .about-detail .detail-content h2 {
    font-size: 32px;
  }

  .about-detail .detail-content h4 {
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) {
  .about-detail .detail-content h2 {
    margin-bottom: 20px;
    font-size: 22px;
  }

  .about-detail .detail-content h4 {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .about-detail .detail-content p {
    margin-bottom: 10px;
  }
}

/* ----------------------- about detail section css ends here ----------------------- */

/* ----------------------- mission vision section css start here ----------------------- */

.about-page .mission-vision .mis-vis-img img {
  border-radius: 30px;
}

.about-page .mission-vision .mis-vis-card {
  position: relative;
  overflow: hidden;
}

.about-page .mission-vision .mis-vis-card .mis-vis-img {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}

.about-page .mission-vision .mis-vis-card .mis-vis-img img {
  transition: 0.2s ease-in-out;
  width: 100%;
}
.about-page .mission-vision .mis-vis-card:hover .mis-vis-img img {
  transform: scale(1.2);
}

.about-page .mission-vision .mis-vis-card .mis-vis-text {
  border-radius: 30px;
  color: var(--white);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: 0.2s ease-in-out;
}

.about-page .mission-vision .mis-vis-card:hover .mis-vis-text {
  transition: 0.2s ease-in-out;
  background: linear-gradient(rgba(0, 0, 0, 0.432), rgba(0, 0, 0, 0.5));
}

.about-page .mission-vision .mis-vis-card .mis-vis-text .mis-vis-head {
  position: absolute;
  left: 5%;
  bottom: 2%;
  opacity: 1;
  transition: 0.2s ease-in-out;
}

.about-page .mission-vision .mis-vis-card:hover .mis-vis-head {
  opacity: 0;
  bottom: 0;
}

.about-page .mission-vision .mis-vis-card .mis-vis-text .mis-vis-head h4 {
  font-size: 28px;
}

.about-page .mission-vision .mis-vis-card .mis-vis-text .mis-vis-content {
  position: absolute;
  left: 5%;
  bottom: 0;
  opacity: 0;
  padding: 10px;
  transition: 0.2s ease-in-out;
}

.about-page .mission-vision .mis-vis-card:hover .mis-vis-content {
  opacity: 1;
  left: 5%;
  bottom: 5%;
}

.about-page .mission-vision .mis-vis-card .mis-vis-text .mis-vis-content h4 {
  font-size: 28px;
  margin-bottom: 20px;
}
.about-page .mission-vision .mis-vis-card .mis-vis-text .mis-vis-content li {
  margin-bottom: 2px;
}
.about-page .mission-vision .mis-vis-card .mis-vis-text .mis-vis-content p {
  font-size: 18px;
}

@media screen and (max-width: 991px) {
  .about-page .mission-vision .mis-vis-card {
    margin-bottom: 20px;
  }

  .about-page .mission-vision .mis-vis-card .mis-vis-text .mis-vis-head {
    bottom: 4%;
  }

  .about-page .mission-vision .mis-vis-card .mis-vis-text .mis-vis-head h4 {
    font-size: 22px;
  }

  .about-page .mission-vision .mis-vis-card .mis-vis-text .mis-vis-content h4 {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .about-page .mission-vision .mis-vis-card .mis-vis-text .mis-vis-content p {
    font-size: 16px;
  }
}

/* ----------------------- mission vision section css ends here ----------------------- */

/* ----------------------- member section css start here ----------------------- */

.team-members {
  background-color: #f7f7f7;
}

.team-members .member-card {
  margin-bottom: 40px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.team-members .member-card .member-detail {
  padding: 6px;
}

.team-members .member-card .member-detail h4 {
  font-size: 20px;
  font-weight: 600;
}

.team-members .member-card .member-detail p {
  color: gray;
}

.team-members .member-card .member-img {
  position: relative;
  overflow: hidden;
}

.team-members .member-card .member-img img {
  position: relative;
  transition: 0.2s ease-in-out;
}

.team-members .member-card:hover .member-img img {
  transform: scale(1.1);
}

@media screen and (max-width: 991px) {
  .team-members .member-card {
    margin-bottom: 20px;
  }

  .team-members .member-card .member-detail h4 {
    font-size: 16px;
  }
}

/* ----------------------- member section css ends here ----------------------- */


/* ----------------------- circle section css start here ----------------------- */

.circle-section {
  background-color: #f7f7f7;
}

.circle-section .circle-card {
  background: var(--white);
  text-align: center;
  padding: 10px;
}

.circle-section .circle-card .circle-img img {
  margin-bottom: 5px;
}

.circle-section .circle-card h4 {
  font-weight: 600;
  margin-bottom: 10px;
}

.circle-section .circle-card p {
  text-align: center;
  color: gray;
}

.circle-card {
  position: relative;
}

.circle-card .to-next-img {
  position: absolute;
  left: 80%;
  bottom: 55%;
  width: 200px;
  z-index: 1;
}

@media screen and (max-width: 1400px) {
  .circle-card .to-next-img {
    left: 85%;
    width: 120px;
  }
}

@media screen and (max-width: 991px) {
  .circle-card .to-next-img {
    display: none;
  }
  .circle-section .circle-card {
    margin-bottom: 20px;
  }
}

/* ----------------------- circle section css ends here ----------------------- */

/* ============================ about page css ends here ============================ */

/* ============================================================================================================ */
/* ============================================================================================================ */

/* ============================ enquiry page css start here ============================ */

.service-detail .detail-text p {
  font-size: 17px;
  margin-bottom: 10px;
}

/* .more-detail {
  background-color: #f7f7f7;
} */
.service-detail .service-img {
  margin-bottom: 10px;
}

.more-detail .key-features h2 {
  font-size: 48px;
  margin-bottom: 40px;
  text-align: center;
}

.more-detail .key-features li {
  margin-bottom: 30px;
}
.more-detail .key-features li h4 {
  margin-bottom: 5px;
}

@media screen and (max-width: 1400px) {
  .service-detail .detail-text p {
    margin-bottom: 5px;
    font-size: 15px;
  }
}

@media screen and (max-width: 1200px) {
  .service-detail .detail-text p {
    margin-bottom: 5px;
    font-size: 12.5px;
  }
}

@media screen and (max-width: 991px) {
  .service-detail .detail-text p {
    font-size: 14px;
  }

  .more-detail .key-features h2 {
    font-size: 34px;
    margin-bottom: 30px;
  }

  .more-detail .key-features li h4 {
    font-size: 22px;
  }
}

@media screen and (max-width: 767px) {
  .service-detail .detail-text p {
    font-size: 12px;
  }

  .more-detail .key-features h2 {
    font-size: 24px;
  }

  .more-detail .key-features li {
    margin-bottom: 15px;
  }
  .more-detail .key-features li h4 {
    font-size: 16px;
  }
}

/* type boxes section css start here */

.type-boxes {
  background-color: #f3f2f2;
}

.type-boxes .type-card {
  padding: 20px 5px;
  background: var(--white);
  text-align: center;
  transition: 0.2s ease-in-out;
  margin-bottom: 30px;
}

.type-boxes .type-card .type-img {
  margin-bottom: 10px;
}
.type-boxes .type-card h2 {
  color: var(--black);
  font-size: 22px;
}

.type-boxes .type-card:hover {
  box-shadow:
    rgba(0, 0, 0, 0.19) 0px 10px 20px,
    rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

/* responsive css */

@media screen and (max-width: 991px) {
  .type-boxes .type-card h2 {
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  .type-boxes .type-card h2 {
    font-size: 20px;
  }
}

@media screen and (max-width: 575px) {
  .type-boxes .type-card h2 {
    font-size: 18px;
  }
}

/* responsive css */

/* type boxes section css ends here */

/* map-section css */

.map-section {
  background-color: #f7f7f7;
}

/* map-section css */

/* related services section css start */

.related-services {
  background-color: #f7f7f7;
}

/* related services section css ends */

/* ============================ enquiry page css ends here ============================ */

/* ============================================================================================================== */
/* ============================================================================================================== */

/* ============================= leadership page css start ================================= */

.leadership-heading {
  padding: 20px;
  text-align: center;
}
.leadership-heading p {
  margin-top: 20px;
  text-align: center;
}

/* ============================= leadership page css end ================================= */

/* ============================================================================================================== */
/* ============================================================================================================== */

/* ============================= job opening page css start ================================= */

.job-openings {
  background-color: #f7f7f7;
}

.job-openings .job-content h2 {
  margin-bottom: 20px;
}

.job-openings .job-detail {
  margin-top: 50px;
  padding: 20px;
  background: var(--white);
}

.job-openings .job-detail h3 {
  margin-bottom: 30px;
}

.job-openings .job-detail ul li span {
  display: inline-block;
  background: var(--orange);
  margin-bottom: 20px;
  padding: 5px;
  color: var(--white);
  font-weight: 600;
  font-size: 18px;
}

.job-openings .job-detail .requirement {
  width: 70%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* responsive css start */

@media screen and (max-width: 991px) {
  .job-openings .job-detail .requirement {
    width: 80%;
  }

  .job-openings .job-detail ul li span {
    font-size: 16px;
    font-weight: 500;
  }
}

@media screen and (max-width: 767px) {
  .job-openings .job-content h2 {
    margin-bottom: 10px;
  }

  .job-openings .job-detail h3 {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .job-openings .job-detail ul li span {
    margin-bottom: 10px;
    font-size: 14px;
  }

  .job-openings .job-detail .requirement {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 5px;
  }
}

/* responsive css ends */

/* ============================= job opening page css ends ================================= */

/* ============================================================================================================== */
/* ============================================================================================================== */

/* ============================= sunshell life page css start ================================= */

.about-sunshell .sunshell-text .sunshell-name {
  margin-bottom: 20px;
}

.sunshell-life .gallery {
  background-color: #e6e3e3;
}

.sunshell-life .gallery .gallery-card {
  background: var(--white);
  padding: 10px;
  margin-bottom: 20px;
}

/* ============================= sunshell life page css ends ================================= */

/* ============================================================================================================== */
/* ============================================================================================================== */

/* ============================= complete epc solution page css start ================================= */

/* iso content css start */

.service-detail .head-name h2 {
  margin-bottom: 20px;
}

.service-detail .iso-content {
  background: #f7f7f7;
}

.service-detail .iso-content .msme {
  /* border-right: 2px dashed var(--orange); */
  padding: 10px 80px 10px 2px;
}
.service-detail .iso-content .msme img {
  width: 40px;
  height: 40px;
}

.service-detail .iso-content .msme h3 {
  font-size: 16px;
}

.border-2-end-orange {
  border-right: 2px dashed var(--orange);
}

@media screen and (max-width: 1200px) {
  .service-detail .iso-content .msme {
    padding: 5px 50px 5px 5px;
  }
  .service-detail .iso-content .msme img {
    width: 25px;
    height: 25px;
  }
}

@media screen and (max-width: 767px) {
  .service-detail .head-name h2 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .service-detail .iso-content .msme {
    padding: 5px 50px 5px 5px;
  }
  .service-detail .iso-content .msme h3 {
    font-size: 12px;
  }
  .service-detail .iso-content .msme img {
    width: 20px;
    height: 20px;
  }
}

@media screen and (max-width: 424px) {
  .service-detail .iso-content .msme {
    padding: 5px 10px 5px 5px;
  }
}

/* iso content css ends */

/* extra section css start */

.core-strengths {
  position: relative;
  color: #fff;
}

/* TOP BACKGROUND IMAGE */
.core-top {
  background: url("../img/extra-banner/core-banner.jpg") center/cover no-repeat;
  padding: 100px 0 120px;
  position: relative;
  z-index: -2;
}

/* DARK OVERLAY */
.core-top::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.core-top .container {
  position: relative;
  z-index: 2;
}

.core-top h2 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 10px;
}

.core-top p {
  font-size: 16px;
  color: #ddd;
}

/* BOTTOM BOXES */
.core-boxes {
  margin-top: -70px;
}

/* EACH BOX */
.core-item {
  background: linear-gradient(135deg, #f17c00, #c95f00);
  padding: 40px 25px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: 0.3s ease;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

/* ICON */
.core-item i {
  font-size: 28px;
  border: 2px solid #fff;
  border-radius: 50%;
  padding: 12px;
}

/* TEXT */
.core-item h5 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

/* REMOVE BORDER LAST */
.core-item:last-child {
  border-right: none;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .core-top {
    padding: 80px 0 100px;
  }

  .core-boxes {
    margin-top: -50px;
  }
}

@media (max-width: 767px) {
  .core-top h2 {
    font-size: 20px;
  }

  .core-item {
    justify-content: start;
  }
}

/* extra section css ends */

/* ---------------- epc boxes section css start here ---------------- */

.epc-section {
  background: #f7f7f7;
}

.epc-card {
  position: relative;
  background: #fff;
  padding: 30px 25px 25px 30px;
  border-radius: 12px;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.08);
  height: 100%;
  overflow: hidden;
  transition: 0.3s ease;
}

/* Left Gradient Bar */
.epc-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 6px;
  background: linear-gradient(to bottom, #ff8c00, #ff5e00);
  border-radius: 10px 0 0 10px;
}

/* Heading */
.epc-card h4 {
  color: #d35400;
  font-weight: 600;
  margin-bottom: 15px;
}

/* List */
.epc-card ul {
  padding-left: 0;
  list-style: none;
}

.epc-card ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  color: #555;
  font-size: 15px;
}

/* Arrow */
.epc-card ul li::before {
  content: "➜";
  position: absolute;
  left: 0;
  color: #ff6a00;
  font-size: 14px;
}

/* Hover Effect */
.epc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.12);
}

/* ---------------- epc boxes section css start here ---------------- */



/* -------------------- our projects section css start here -------------------- */

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 20px;
}

.project-card img {
  width: 100%;

  object-fit: cover;
  transition: 0.5s ease;
}

/* Overlay */
.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* pushes text to bottom */

  padding: 20px;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  transition: 0.4s ease;
}

.project-overlay h5 {
  margin-bottom: 5px;
  font-weight: 600;
}

.project-overlay span {
  font-size: 14px;
  color: #ddd;
}

/* Hover Effect */
.project-card:hover img {
  transform: scale(1.1);
}

.project-card:hover .project-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
}

@media screen and (max-width: 1200px) {
  .project-card {
    margin-bottom: 20px;
  }
}

/* -------------------- our-projects section css ends here -------------------- */

/* ========================= complete epc solution page css ends =========================== */

/* ============================================================================================================== */
/* ============================================================================================================== */

/* ========================= galvanization page css start =========================== */

/* ------------------ galv-benefits section css start here ------------------ */

.galv-benefits {
  color: #fff;
}

/* TOP IMAGE */
.galv-benefits-top {
  background: url("../img/extra-banner/why-galvan.jpg") center/cover no-repeat;
  padding: 100px 0 120px;
  position: relative;
  z-index: -1;
}

.galv-benefits-top::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.galv-benefits-top .container {
  position: relative;
  z-index: 2;
}

.galv-benefits-top h2 {
  font-size: 40px;
  font-weight: 600;
}

.galv-benefits-top p {
  color: #ddd;
}

/* OVERLAP */
.galv-benefits-boxes {
  margin-top: -50px;
}

/* BOX */
.galv-benefit-item {
  background: linear-gradient(135deg, #f17c00, #c95f00);
  padding: 30px 20px;
  height: 100%;
  transition: 0.3s;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

/* ICON */
.galv-benefit-item i {
  font-size: 26px;
  border: 2px solid #fff;
  border-radius: 50%;
  padding: 12px;
  margin-bottom: 10px;
}

/* TITLE */
.galv-benefit-item h5 {
  font-size: 18px;
  font-weight: 600;
}

/* TEXT */
.galv-benefit-item p {
  font-size: 14px;
  color: #f1f1f1;
}

/* HOVER */
.galv-benefit-item:hover {
  background: linear-gradient(135deg, #ff9a2f, #e56a00);
  transform: translateY(-5px);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .galv-benefits-top h2 {
    font-size: 32px;
  }

  .galv-benefits-boxes {
    margin-top: -90px;
  }
}

@media screen and (max-width: 767px) {
  .galv-benefits-top h2 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 5px;
  }
}

/* -------------- galv-benefits section css ends here --------------- */

/* ------------ galvanizing process section css start here ----------- */

.process-section {
  background: #f8f9fa;
}

/* CENTER LINE */
.timeline {
  position: relative;
  max-width: 1000px;
  margin: auto;
}

.timeline::after {
  content: "";
  position: absolute;
  width: 4px;
  background: #f17c00; /* ORANGE */
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
}

/* ITEM */
.timeline-item {
  padding: 20px 40px;
  position: relative;
  width: 50%;
}

/* LEFT */
.timeline-item.left {
  left: 0;
}

/* RIGHT */
.timeline-item.right {
  left: 50%;
}

/* CONTENT BOX */
.timeline-item .content {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

/* STEP TITLE */
.timeline-item h5 {
  color: #6ca12b; /* GREEN */
  font-weight: 600;
}

/* TEXT */
.timeline-item p {
  margin: 0;
  font-size: 14px;
}

/* CIRCLE */
.timeline-item::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  right: -9px;
  background: #6ca12b;
  border: 3px solid #fff;
  top: 30px;
  border-radius: 50%;
  z-index: 1;
}

/* RIGHT SIDE FIX */
.timeline-item.right::before {
  left: -9px;
}

/* HOVER EFFECT */
.timeline-item .content:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* RESPONSIVE */
@media screen and (max-width: 768px) {
  .timeline::after {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 50px;
    padding-right: 20px;
  }

  .timeline-item.right {
    left: 0;
  }

  .timeline-item::before {
    left: 10px;
  }
}

/* ------------ galvanizing process section css ends here ----------- */

/* ========================= galvanization page css ends =========================== */

/* ======================================================================================================== */

/* ======================================================================================================== */

/* ========================= i-c solar solution page css start =========================== */

.strength-top {
  background: url("../img/extra-banner/i-c-strengths.jpg") center/cover
    no-repeat;
  padding: 100px 0 120px;
  position: relative;
  z-index: -2;
}

/* ========================= i-c solar solution page css ends =========================== */

/* ========================================================================================================= */
/* ========================================================================================================= */

/* ----------------------- solar bom page css start ------------------------- */

/* pie chart section css start here */

/* Section */
.cost-section {
  padding: 80px 0;
  background: #f9f9f9;
  text-align: center;
}

/* Heading */
.cost-section h2 {
  font-weight: 700;
  margin-bottom: 40px;
}

/* Donut Chart */
.donut {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  margin: auto;
  position: relative;
  background: conic-gradient(
    var(--orange) 0% 35%,
    /* Solar Panels */ var(--dark-orange) 35% 55%,
    /* Inverters */ #ff9933 55% 70%,
    /* Mounting */ #ffb84d 70% 85%,
    /* Electrical */ #ffd699 85% 95%,
    /* Labor */ var(--green) 95% 100% /* Others */
  );
}

/* Inner Circle */
.donut::after {
  content: "35%\A Solar Panels";
  white-space: pre;
  position: absolute;
  width: 160px;
  height: 160px;
  background: #fff;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: bold;
  color: var(--orange);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Legend */
.legend {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.legend-item {
  display: flex;
  align-items: center;
  font-size: 14px;
}

.legend-color {
  width: 14px;
  height: 14px;
  margin-right: 8px;
  border-radius: 3px;
}

@media screen and (max-width: 767px) {
  .donut {
    width: 260px;
    height: 260px;
  }
}

/* pie chart section css ends here */

.bom-highlight {
  background: url("../img/extra-banner/bom-highlight.jpg") center/cover
    no-repeat;
}

/* ----------------------- solar bom page css ends ----------------------- */

/* ========================================================================================================= */
/* ========================================================================================================= */

/* =========================== electrical solution page css start here ========================== */

/* list content css start here */

.list-content h3 {
  margin-top: 30px;
  margin-bottom: 10px;
}

.list-content .electrical-list li {
  margin-bottom: 5px;
}

.list-content .electrical-list li i {
  color: var(--green);
  margin-right: 5px;
}

@media screen and (max-width:991px) {
    .list-content .electrical-list li{
  font-size: 14px;
}
}

@media screen and (max-width: 767px) {
  .list-content h3 {
    margin-top: 20px;
    font-size: 18px;
  }

  .list-content .electrical-list li{
  font-size: 12px;
}
}

/* list content css ends here */

/* ----------------------- lt-ht section css start here --------------------- */

.lt-ht-section {
  background: #f9f9f9;
}

/* Table Styling */
.custom-table {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* Header */
.custom-table thead {
  background: linear-gradient(135deg, #f17c00, #ff9a2f);
  color: #fff;
}

.custom-table th {
  padding: 18px;
  font-size: 18px;
}

/* Body */
.custom-table td {
  padding: 18px;
  font-size: 15px;
  color: #555;
  border: 1px solid #eee;
}

/* Feature Column Highlight */
.custom-table .feature {
  font-weight: 600;
  color: #2e7d32; /* green from logo */
}

/* Row Hover */
.custom-table tbody tr:hover {
  background: rgba(241, 124, 0, 0.05);
  transition: 0.3s;
}

/* Responsive */
@media (max-width: 768px) {
  .custom-table th,
  .custom-table td {
    font-size: 14px;
    padding: 12px;
  }
}

/* ----------------------- lt-ht section css ends here --------------------- */



/* ---------------------------- */
.electrical-top {
  background: url("../img/extra-banner/electrical-solution.jpg") center/cover no-repeat;
  padding: 100px 0 120px;
  position: relative;
  z-index: -2;
}

/* ---------------------------- */


/* =========================== electrical solution page css ends here ========================== */
