@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

/* 
---------------------------------------------
reset
--------------------------------------------- 
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
div pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
figure,
header,
nav,
section,
article,
aside,
footer,
figcaption .calculate-body {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

/* clear fix */
.grid:after {
  content: "";
  display: block;
  clear: both;
}

/* ---- .grid-item ---- */

.grid-sizer,
.grid-item {
  width: 50%;
}

.grid-item {
  float: left;
}

.grid-item img {
  display: block;
  max-width: 100%;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.clearfix {
  display: inline-block;
}

html[xmlns] .clearfix {
  display: block;
}

* html .clearfix {
  height: 1%;
}

ul,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}

header,
nav,
section,
article,
aside,
footer,
hgroup {
  display: block;
}

* {
  box-sizing: border-box;
}

html,
body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  background-color: #fff;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.calculate-body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  background-color: #fff;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0px;
  margin-bottom: 0px;
}

ul {
  margin-bottom: 0px;
}

p {
  font-size: 15px;
  line-height: 30px;
  color: #2a2a2a;
}

img {
  width: 100%;
  overflow: hidden;
}

.logo {
  max-height: 70px;
  margin: 5px 0;
}

/* 
---------------------------------------------
global styles
--------------------------------------------- 
*/
html,
body {
  background: #fff;
  font-family: "Poppins", sans-serif;
}

::selection {
  background: #d2de24;
  color: #fff;
}

::-moz-selection {
  background: #d2de24;
  color: #fff;
}

@media (max-width: 991px) {
  html,
  body {
    overflow-x: hidden;
  }

  .mobile-top-fix {
    margin-top: 30px;
    margin-bottom: 0px;
  }

  .mobile-bottom-fix {
    margin-bottom: 30px;
  }

  .mobile-bottom-fix-big {
    margin-bottom: 40px;
  }
}

.page-section {
  margin-top: 120px;
}

.section-heading h2 {
  font-size: 30px;
  text-transform: capitalize;
  color: #2a2a2a;
  font-weight: 700;
  letter-spacing: 0.25px;
  position: relative;
  z-index: 2;
  line-height: 44px;
}

.section-heading h2 em {
  font-style: normal;
  color: #d2de24;
}

.section-heading h2 span {
  color: #d2de24;
}

.main-blue-button a {
  display: inline-block;
  background-color: #d2de24;
  font-size: 15px;
  font-weight: 400;
  color: #000000;
  text-transform: capitalize;
  padding: 12px 25px;
  border-radius: 23px;
  letter-spacing: 0.25px;
}

.main-red-button a {
  display: inline-block;
  background-color: #d2de24;
  font-size: 15px;
  font-weight: 400;
  color: #000000;
  text-transform: capitalize;
  padding: 12px 25px;
  border-radius: 23px;
  letter-spacing: 0.25px;
}

.main-white-button a {
  display: inline-block;
  background-color: #000000;
  font-size: 15px;
  font-weight: 400;
  color: #d2de24;
  text-transform: capitalize;
  padding: 12px 25px;
  border-radius: 23px;
  letter-spacing: 0.25px;
}

/* Whatsapp call */
.icon-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  /* Stack items vertically */
  align-items: flex-end;
  /* Align items to the end (right) */
}

.call-icon,
.whatsapp-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  /* Set the desired width */
  height: 60px;
  /* Set the desired height */
  background-color: #ffffff;
  color: blue;
  /* Change the color as needed */
  border-radius: 50%;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
  margin-bottom: 10px;
  /* Add margin between icons */
}

.call-icon:hover {
  background-color: rgb(255, 255, 255);
  color: #d2de24;
}

.whatsapp-icon {
  background-color: #25d366;
  color: rgb(255, 255, 255);
  animation: pulsate 1s infinite;
  /* Added animation property for pulsating effect */
}

.whatsapp-icon:hover {
  color: #d2de24;
  background-color: #ffffff;
  animation: none;
  /* Disable animation on hover */
}

/* Remove underline from anchor tag */
.call-icon:link,
.call-icon:visited,
.whatsapp-icon:link,
.whatsapp-icon:visited {
  text-decoration: none;
}

@keyframes pulsate {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  50% {
    transform: scale(1.1);
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* 
---------------------------------------------
header
--------------------------------------------- 
*/

.contact_link-container {
  display: flex;
  justify-content: flex-end; /* Align items to the right */
}

.contact_link-container a {
  display: flex;
  align-items: center;
  color: #000000;
  font-size: 15px;
  margin-left: 10px; /* Add some spacing between links */
}

.contact_link-container a i {
  font-size: 20px;
  color: #000000;
  margin-right: 5px;
}

@media (max-width: 767px) {
  .contact_link-container {
    display: none;
  }
}

.background-header {
  background-color: #fff !important;
  height: 80px !important;
  position: fixed !important;
  top: 0px;
  left: 0px;
  right: 0px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15) !important;
}

.background-header .logo,
.background-header .main-nav .nav li a {
  color: #1e1e1e !important;
}

.background-header .main-nav .nav li:hover a {
  color: #d2de24 !important;
}

.background-header .nav li a.active {
  color: #d2de24 !important;
}

.header-area {
  background-color: #fafafa;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 100;
  height: 100px;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.header-area .nav-container {
  max-width: 1200px;
  /* Adjust max-width as needed */
  margin: 0 auto;
  /* Center the container horizontally */
  padding: 0 20px;
}

.header-area .main-nav {
  min-height: 80px;
  background: transparent;
}

.header-area .main-nav .logo {
  line-height: 120px;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  float: left;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.header-area .main-nav .logo h4 {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: #d2de24;
  line-height: 100px;
  float: left;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.logo h4 span {
  color: #d2de24;
}

.background-header .main-nav .logo h4 {
  line-height: 80px;
}

.background-header .main-nav .nav {
  margin-top: 20px !important;
}

.header-area .main-nav .nav {
  float: right;
  margin-top: 30px;
  margin-right: 0px;
  background-color: transparent;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  z-index: 999;
}

.header-area .main-nav .nav li {
  padding-left: 20px;
  padding-right: 20px;
}

.header-area .main-nav .nav li:last-child {
  padding-right: 0px;
  padding-left: 10px;
}

.header-area .main-nav .nav li:last-child a,
.background-header .main-nav .nav li:last-child a {
  color: #fff !important;
  padding: 0px 20px;
  font-weight: 400;
}

.header-area .main-nav .nav li:last-child a:hover,
.header-area .main-nav .nav li:last-child a.active {
  color: #fff !important;
}

.header-area .main-nav .nav li a {
  display: block;
  font-weight: 500;
  font-size: 15px;
  color: #2a2a2a;
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  height: 40px;
  line-height: 40px;
  border: transparent;
  letter-spacing: 1px;
}

.header-area .main-nav .nav li a {
  color: #2a2a2a;
}

.header-area .main-nav .nav li:hover a,
.header-area .main-nav .nav li a.active {
  color: #d2de24 !important;
}

.background-header .main-nav .nav li:hover a,
.background-header .main-nav .nav li a.active {
  color: #d2de24 !important;
  opacity: 1;
}

.header-area .main-nav .nav li:last-child a:hover,
.background-header .main-nav .nav li:last-child a:hover {
  background-color: #d2de24;
}

.header-area .main-nav .nav li.submenu {
  position: relative;
  padding-right: 30px;
}

.header-area .main-nav .nav li.submenu:after {
  font-family: FontAwesome;
  content: "\f107";
  font-size: 12px;
  color: #2a2a2a;
  position: absolute;
  right: 18px;
  top: 12px;
}

.background-header .main-nav .nav li.submenu:after {
  color: #2a2a2a;
}

.header-area .main-nav .nav li.submenu ul {
  position: absolute;
  width: 200px;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
  overflow: hidden;
  top: 50px;
  opacity: 0;
  transform: translateY(+2em);
  visibility: hidden;
  z-index: -1;
  transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s,
    z-index 0s linear 0.01s;
}

.header-area .main-nav .nav li.submenu ul li {
  margin-left: 0px;
  padding-left: 0px;
  padding-right: 0px;
}

.header-area .main-nav .nav li.submenu ul li a {
  opacity: 1;
  display: block;
  background: #f7f7f7;
  color: #2a2a2a !important;
  padding-left: 20px;
  height: 40px;
  line-height: 40px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  font-size: 13px;
  font-weight: 400;
  border-bottom: 1px solid #eee;
}

.header-area .main-nav .nav li.submenu ul li a:hover {
  background: #fff;
  color: #d2de24 !important;
  padding-left: 25px;
}

.header-area .main-nav .nav li.submenu ul li a:hover:before {
  width: 3px;
}

.header-area .main-nav .nav li.submenu:hover ul {
  visibility: visible;
  opacity: 1;
  z-index: 1;
  transform: translateY(0%);
  transition-delay: 0s, 0s, 0.3s;
}

.header-area .main-nav .menu-trigger {
  cursor: pointer;
  display: block;
  position: absolute;
  top: 33px;
  width: 32px;
  height: 40px;
  text-indent: -9999em;
  z-index: 99;
  right: 40px;
  display: none;
}

.background-header .main-nav .menu-trigger {
  top: 23px;
}

.header-area .main-nav .menu-trigger span,
.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #1e1e1e;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
}

.background-header .main-nav .menu-trigger span,
.background-header .main-nav .menu-trigger span:before,
.background-header .main-nav .menu-trigger span:after {
  background-color: #1e1e1e;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #1e1e1e;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
  width: 75%;
}

.background-header .main-nav .menu-trigger span:before,
.background-header .main-nav .menu-trigger span:after {
  background-color: #1e1e1e;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  content: "";
}

.header-area .main-nav .menu-trigger span {
  top: 16px;
}

.header-area .main-nav .menu-trigger span:before {
  -moz-transform-origin: 33% 100%;
  -ms-transform-origin: 33% 100%;
  -webkit-transform-origin: 33% 100%;
  transform-origin: 33% 100%;
  top: -10px;
  z-index: 10;
}

.header-area .main-nav .menu-trigger span:after {
  -moz-transform-origin: 33% 0;
  -ms-transform-origin: 33% 0;
  -webkit-transform-origin: 33% 0;
  transform-origin: 33% 0;
  top: 10px;
}

.header-area .main-nav .menu-trigger.active span,
.header-area .main-nav .menu-trigger.active span:before,
.header-area .main-nav .menu-trigger.active span:after {
  background-color: transparent;
  width: 100%;
}

.header-area .main-nav .menu-trigger.active span:before {
  -moz-transform: translateY(6px) translateX(1px) rotate(45deg);
  -ms-transform: translateY(6px) translateX(1px) rotate(45deg);
  -webkit-transform: translateY(6px) translateX(1px) rotate(45deg);
  transform: translateY(6px) translateX(1px) rotate(45deg);
  background-color: #1e1e1e;
}

.background-header .main-nav .menu-trigger.active span:before {
  background-color: #1e1e1e;
}

.header-area .main-nav .menu-trigger.active span:after {
  -moz-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -ms-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -webkit-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  transform: translateY(-6px) translateX(1px) rotate(-45deg);
  background-color: #1e1e1e;
}

.background-header .main-nav .menu-trigger.active span:after {
  background-color: #1e1e1e;
}

.header-area.header-sticky {
  min-height: 100px;
}

.header-area .nav {
  margin-top: 30px;
}

.header-area.header-sticky .nav li a.active {
  color: #d2de24;
}

@media (max-width: 1200px) {
  .header-area .main-nav .nav li {
    padding-left: 12px;
    padding-right: 12px;
  }

  .header-area .main-nav:before {
    display: none;
  }
}

@media (max-width: 992px) {
  .header-area .main-nav .nav li:last-child,
  .background-header .main-nav .nav li:last-child {
    display: none;
  }

  .header-area .main-nav .nav li:nth-child(6),
  .background-header .main-nav .nav li:nth-child(6) {
    padding-right: 0px;
  }

  .header-area .main-nav .nav .scroll-to-section a {
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  .background-header .main-nav .nav {
    margin-top: 80px !important;
  }

  .header-area .main-nav .logo {
    color: #1e1e1e;
  }

  .header-area.header-sticky .nav li a:hover,
  .header-area.header-sticky .nav li a.active {
    color: #d2de24 !important;
    opacity: 1;
  }

  .header-area.header-sticky .nav li.search-icon a {
    width: 100%;
  }

  .header-area {
    background-color: #f7f7f7;
    padding: 0px 15px;
    height: 100px;
    box-shadow: none;
    text-align: center;
  }

  .header-area .logo {
    margin-left: none;
  }

  .header-area .menu-trigger {
    display: block !important;
  }

  .header-area .main-nav {
    overflow: hidden;
  }

  .header-area .main-nav .nav {
    float: none;
    width: 100%;
    display: none;
    -webkit-transition: all 0s ease 0s;
    -moz-transition: all 0s ease 0s;
    -o-transition: all 0s ease 0s;
    transition: all 0s ease 0s;
    margin-left: 0px;
  }

  .background-header .nav {
    margin-top: 80px;
  }

  .header-area .main-nav .nav li:first-child {
    border-top: 1px solid #eee;
  }

  .header-area.header-sticky .nav {
    margin-top: 100px;
  }

  .header-area .main-nav .nav li {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #e7e7e7;
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

  .header-area .main-nav .nav li a {
    height: 50px !important;
    line-height: 50px !important;
    padding: 0px !important;
    border: none !important;
    background: #f7f7f7 !important;
    color: #191a20 !important;
  }

  .header-area .main-nav .nav li a:hover {
    background: #eee !important;
    color: #d2de24 !important;
  }

  .header-area .main-nav .nav li.submenu ul {
    position: relative;
    visibility: inherit;
    opacity: 1;
    z-index: 1;
    transform: translateY(0%);
    transition-delay: 0s, 0s, 0.3s;
    top: 0px;
    width: 100%;
    box-shadow: none;
    height: 0px;
  }

  .header-area .main-nav .nav li.submenu ul li a {
    font-size: 12px;
    font-weight: 400;
  }

  .header-area .main-nav .nav li.submenu ul li a:hover:before {
    width: 0px;
  }

  .header-area .main-nav .nav li.submenu ul.active {
    height: auto !important;
  }

  .header-area .main-nav .nav li.submenu:after {
    color: #3b566e;
    right: 25px;
    font-size: 14px;
    top: 15px;
  }

  .header-area .main-nav .nav li.submenu:hover ul,
  .header-area .main-nav .nav li.submenu:focus ul {
    height: 0px;
  }
}

@media (min-width: 767px) {
  .header-area .main-nav .nav {
    display: flex !important;
  }
}

/* 
---------------------------------------------
preloader
--------------------------------------------- 
*/

.js-preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  z-index: 9999;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}

.js-preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@-webkit-keyframes dot {
  50% {
    -webkit-transform: translateX(96px);
    transform: translateX(96px);
  }
}

@keyframes dot {
  50% {
    -webkit-transform: translateX(96px);
    transform: translateX(96px);
  }
}

@-webkit-keyframes dots {
  50% {
    -webkit-transform: translateX(-31px);
    transform: translateX(-31px);
  }
}

@keyframes dots {
  50% {
    -webkit-transform: translateX(-31px);
    transform: translateX(-31px);
  }
}

.preloader-inner {
  position: relative;
  width: 142px;
  height: 40px;
  background: #fff;
}

.preloader-inner .dot {
  position: absolute;
  width: 16px;
  height: 16px;
  top: 12px;
  left: 15px;
  background: #d2de24;
  border-radius: 50%;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-animation: dot 2.8s infinite;
  animation: dot 2.8s infinite;
}

.preloader-inner .dots {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  margin-top: 12px;
  margin-left: 31px;
  -webkit-animation: dots 2.8s infinite;
  animation: dots 2.8s infinite;
}

.preloader-inner .dots span {
  display: block;
  float: left;
  width: 16px;
  height: 16px;
  margin-left: 16px;
  background: #d2de24;
  border-radius: 50%;
}

/* 
---------------------------------------------
Banner Style
--------------------------------------------- 
*/

.main-banner {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* .main-banner:after {
  content: '';
  background-image: url(../images/baner-dec-left.png);
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 100px;
  width: 193px;
  height: 467px;
}

.main-banner:before {
  content: '';
  background-image: url(../images/baner-dec-right.png);
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  top: 100px;
  width: 98px;
  height: 290px;
} */

.main-banner .left-content {
  margin-right: 45px;
}

.main-banner .left-content h6 {
  text-transform: uppercase;
  font-size: 25px;
  font-weight: 700;
  color: #d2de24;
  margin-bottom: 15px;
}

.main-banner .left-content h2 {
  font-size: 50px;
  font-weight: 700;
  color: #2a2a2a;
  line-height: 72px;
}

.main-banner .left-content h2 em {
  color: #d2de24;
  font-style: normal;
}

.main-banner .left-content h2 span {
  color: #d2de24;
}

.main-banner .left-content p {
  margin: 20px 0px;
}

.main-banner-form {
  margin-top: -5px;
  padding: 20px;
  background-color: #f5f7db;
  border-radius: 10px;
  display: flex;
  align-items: center;
  max-width: fit-content;
}

.main-banner-form fieldset {
  flex: 1;
}

.main-banner-form button.main-button {
  background-color: #d2de24;
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  text-transform: capitalize;
  padding: 12px 25px;
  border-radius: 10px;
  letter-spacing: 0.5px;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.main-banner form .form-group {
  display: flex;
  align-items: center;
}

.main-banner-form .bill {
  width: 260px;
  height: 40px;
  border-radius: 8px;
  background-color: #ffffff;
  border: none;
  outline: none;
  font-size: 14px;
  font-weight: 300;
  color: #000000;
  padding: 12px 25px;
  margin-bottom: 20px;
}

.main-banner form button.main-button:hover {
  background-color: #000000;
  color: #d2de24;
}

/* 
---------------------------------------------
About Us Style
--------------------------------------------- 
*/

#about {
  margin-top: 50px;
}

.about-us {
  background-image: url(../images/about-bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 140px 0px 120px 0px;
}

.about-us .left-image {
  margin-right: 45px;
}

.about-us .services .item {
  margin-bottom: 30px;
}

.about-us .services .item .icon {
  float: left;
  margin-right: 25px;
}

.about-us .services .item .icon img {
  max-width: 70px;
}

.about-us .services .item h4 {
  color: #000000;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.about-us .services .item p {
  color: #000000;
}

/* 
---------------------------------------------
Services Style
--------------------------------------------- 
*/

.our-services {
  margin-top: 0px;
  padding-top: 50px;
}

.our-services .left-image {
  margin-right: 45px;
}

.our-services .section-heading h2 {
  margin-right: 100px;
}

.our-services .section-heading p {
  margin-top: 30px;
  margin-bottom: 60px;
}

.our-services .progress-skill-bar {
  margin-bottom: 30px;
  position: relative;
  width: 100%;
}

.our-services .progress-skill-bar span {
  position: absolute;
  top: 0;
  font-size: 18px;
  font-weight: 600;
  color: #d2de24;
}

.our-services .first-bar span {
  left: 69%;
}

.our-services .second-bar span {
  left: 81%;
}

.our-services .third-bar span {
  left: 88%;
}

.our-services .progress-skill-bar h4 {
  font-size: 18px;
  font-weight: 700;
  color: #2a2a2a;
  margin-bottom: 14px;
}

.our-services .progress-skill-bar .full-bar {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background-color: #f7eff1;
  position: relative;
  z-index: 1;
}

.our-services .progress-skill-bar .filled-bar {
  background: rgb(255, 77, 30);
  background: linear-gradient(
    105deg,
    rgba(255, 77, 30, 1) 0%,
    rgba(255, 44, 109, 1) 100%
  );
  height: 6px;
  border-radius: 3px;
  margin-bottom: -6px;
  position: relative;
  z-index: 2;
}

.our-services .first-bar .filled-bar {
  width: 71%;
}

.our-services .second-bar .filled-bar {
  width: 83%;
}

.our-services .third-bar .filled-bar {
  width: 90%;
}

/* 
---------------------------------------------
Perks
--------------------------------------------- 
*/
/* General styles */
.solar-perks-section {
  text-align: center;
}

.solar-perks-section h1 {
  font-weight: 600;
}

.solar-perks-section h1 span {
  color: #d2de24;
}

.solar-perk {
  background: white;
  margin: 20px 0;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: left;
  position: relative;
}

/* Image styles */
.image-holder {
  background: rgba(0, 0, 0, 0.1);
  height: 0;
  border-radius: 15px 15px 0 0;
  padding-bottom: 75%;
}

.image {
  max-width: 100%;
}

/* Title styles */
.solar-perk-title {
  background: white;
  padding: 1px 2px 5px;
  position: relative;
}

.solar-perk-title h3 {
  margin-bottom: 50px;
  font-weight: 500;
}

/* Toggle button styles */
.read-more-btn {
  background-color: #d2de24;
  outline: none;
  border: none;
  border-radius: 4px;
  color: rgb(0, 0, 0);
  cursor: pointer;
  padding: 6px 12px;
  position: absolute;
  right: 15px;
  bottom: 10px;
  /* Adjusted position */
  transition: background-color 0.3s ease;
}

.read-more-btn:hover {
  background-color: #000000;
  color: #d2de24;
}

.additional-info {
  margin-top: 10px;
  padding: 0 15px 10px;
  position: relative;
  font-size: 14px;
  background-color: #d2de24;
  display: none;
  padding-left: 20px;
}

.additional-info li {
  margin-bottom: 5px;
  list-style-type: disc;
}

.read-more-btn {
  display: block;
  margin-top: 10px;
}

/* 
---------------------------------------------
Portfolio
--------------------------------------------- 
*/

.our-portfolio {
  margin-top: 50px;
}

.our-portfolio .section-heading h1 {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.our-portfolio .section-heading h1 span {
  color: #d2de24;

  font-weight: 700;
}

.our-portfolio .item {
  position: relative;
}

.our-portfolio .item:hover .hidden-content {
  top: -100px;
  opacity: 1;
  visibility: visible;
}

.our-portfolio .item:hover .showed-content {
  top: 90px;
}

.our-portfolio .hidden-content {
  background: #d2de24;
  background: linear-gradient(
    105deg,
    rgb(238, 255, 1) 0%,
    rgb(224, 238, 24) 50%
  );
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  opacity: 0;
  top: 0;
  visibility: hidden;
  position: absolute;
  z-index: 2;
  transition: all 0.5s;
}

.our-portfolio .hidden-content:after {
  width: 20px;
  height: 20px;
  position: absolute;
  background: #d2de24;
  content: "";
  left: 50%;
  bottom: -8px;
  margin-left: -5px;
  transform: rotate(45deg);
  background: linear-gradient(
    105deg,
    rgb(238, 255, 1) 0%,
    rgb(224, 238, 24) 50%
  );
  z-index: -1;
}

.our-portfolio .hidden-content h4 {
  font-size: 30px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 20px;
}

.our-portfolio .hidden-content p {
  color: #000000;
}

.our-portfolio .showed-content {
  top: 0px;
  position: relative;
  z-index: 3;
  background-color: #fff;
  text-align: center;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.5s;
}

.our-portfolio .showed-content img {
  max-width: 200px;
}

.our-portfolio .showed-content h4 {
  font-size: 20px;
  font-weight: 700;

  color: #000000;
  margin-bottom: 20px;
}

/* 
---------------------------------------------
Cards
--------------------------------------------- 
*/
.container {
  max-width: 1200px;
  /* Adjust max-width as needed */
  margin: 0 auto;
  /* Center the container horizontally */
  padding-top: 40px;
  /* Adjust as needed */
}

.services-section h1 {
  font-weight: 600;
  text-align: center;
}

.services-section h1 span {
  color: #d2de24;
}

.blog-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}

.card__content figure {
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.3s ease;
}

.card:hover .card__content figure {
  transform: scale(1.1);
}

.card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: box-shadow 0.3s ease;
}

.card:hover {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  transform: scale(1.05);
}

.card__content {
  position: relative;
  padding: 20px;
}

.card h2 {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #d2de24;
}

.card p {
  font-size: 14px;
  line-height: 1.5;
  color: #666;
}

.card figure {
  margin-top: 10px;
}

.card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* 
---------------------------------------------
Solutions
--------------------------------------------- 
*/
.solutions-section {
  text-align: center;
  padding: 50px 0;
  margin-top: 20px;
}

.solutions-section h1 {
  font-weight: 600;
}

.solutions-section h1 span {
  color: #d2de24;
}

.solution-description {
  font-weight: bold;
  color: #333;
  line-height: 1.5;
}

.section-title {
  font-weight: bold;
  color: #333;
  margin-top: 100px;
  padding-bottom: 10px;
}

.solutions-section h2 span {
  color: #d2de24;
}

.solutions-container {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 10px;
  outline: none;
  border: #d2de24;
  border-radius: 10px;
}

.solutions-container img {
  max-width: 80%;
}

/* 
---------------------------------------------
Power Solution
--------------------------------------------- 
*/
.solution2-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.solution2-section h1 {
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 30px;
}

.solution2-section h1 span {
  color: #d2de24;
}

.left-text {
  text-align: center;
  margin-bottom: 40px;
}

.left-text img {
  max-width: 35%;
}

.left-text h6 {
  font-size: 18px;
  font-weight: 500;
  color: #d2de24;
  margin-top: 20px;
  margin-bottom: 10px;
}

.left-text p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
}

.img-fluid {
  max-width: min-content;
}

/* 
---------------------------------------------
Care PAckage
--------------------------------------------- 
*/
.care-pack-section {
  max-width: 80%;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
  border: 2px solid #d2de24;
  border-radius: 10px;
  margin-top: 100px;
}

.care-service img {
  margin-top: 20px;
  width: 100%;
  height: auto;
}

.care-service img:hover {
  transform: scale(0.9);
}

.question span {
  margin-top: 20px;
  color: #d2de24;
}

.care-note {
  font-weight: 600;
  margin-top: 20px;
  font-style: italic;
}

.sign-up:hover {
  transform: scale(1.1);
}

.care-note span {
  color: #d2de24;
  margin-top: 20px;
  font-style: italic;
}

.sign-up {
  background-color: #d2de24;
  color: white;
  padding: 15px;
  border-radius: 8px;
  margin-top: 20px;
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
  max-width: fit-content;
  display: inline-block;
  /* Convert to block-level element */
  margin: 20px auto;
  /* Center horizontally */
}

.sign-up-calculator {
  background-color: #d2de24;
  color: white;
  padding: 15px;
  border-radius: 8px;
  margin-top: 20px;
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
  max-width: fit-content;
  display: inline-block;
  /* Convert to block-level element */
  margin: 20px auto;
  /* Center horizontally */
}

/* 
---------------------------------------------
Owner's Info
--------------------------------------------- 
*/

/* 
---------------------------------------------
Gallery Section
--------------------------------------------- 
*/
.gallery-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.gallery-section .section-heading p {
  text-align: center;
  color: #666;
  margin-top: 10px;
  font-size: 16px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  aspect-ratio: 4/3;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(210, 222, 36, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  font-size: 48px;
  color: #000000;
}

/* Gallery Modal */
.gallery-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
}

.gallery-modal.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.gallery-modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-modal-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
}

.gallery-close {
  position: absolute;
  top: 30px;
  right: 45px;
  color: #ffffff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
  transition: color 0.3s ease;
}

.gallery-close:hover {
  color: #d2de24;
}

.gallery-prev,
.gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff;
  font-size: 30px;
  font-weight: bold;
  padding: 16px;
  cursor: pointer;
  user-select: none;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.gallery-prev:hover,
.gallery-next:hover {
  background-color: rgba(210, 222, 36, 0.8);
  color: #000000;
}

.gallery-prev {
  left: 20px;
}

.gallery-next {
  right: 20px;
}

@media (max-width: 767px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
  }

  .gallery-close {
    top: 15px;
    right: 20px;
    font-size: 30px;
  }

  .gallery-prev,
  .gallery-next {
    font-size: 20px;
    width: 40px;
    height: 40px;
    padding: 10px;
  }

  .gallery-prev {
    left: 10px;
  }

  .gallery-next {
    right: 10px;
  }
}

/* 
---------------------------------------------
Partners Section
--------------------------------------------- 
*/
.partners-section {
  padding: 60px 0;
  background-color: #f9fae5;
  overflow: hidden;
}

.partners-section .section-heading p {
  text-align: center;
  color: #666;
  margin-top: 10px;
  font-size: 16px;
}

.partners-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 40px;
}

.partners-track {
  display: flex;
  animation: marquee 30s linear infinite;
  gap: 60px;
}

.partners-track:hover {
  animation-play-state: paused;
}

.partner-item {
  flex-shrink: 0;
  width: 200px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.partner-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.partner-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 767px) {
  .partners-section {
    padding: 40px 0;
  }

  .partner-item {
    width: 150px;
    height: 90px;
    padding: 15px;
  }

  .partners-track {
    gap: 40px;
  }
}

/* 
---------------------------------------------
Owners Section
--------------------------------------------- 
*/
.owners-section {
  padding: 80px 0;
  background-color: #f9fae5;
}

.owners-section .section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.owners-section .section-heading h2 {
  font-size: 36px;
  font-weight: 700;
  color: #2a2a2a;
}

.owners-section .section-heading h2 span {
  color: #d2de24;
}

.owner-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.owner-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.owner-image {
  width: 180px;
  height: 180px;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #d2de24;
}

.owner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.owner-info {
  text-align: center;
}

.owner-info h3 {
  font-size: 24px;
  font-weight: 700;
  color: #2a2a2a;
  margin-bottom: 8px;
}

.owner-info .owner-title {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #d2de24;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.owner-info p {
  font-size: 15px;
  line-height: 1.8;
  color: #666;
  text-align: justify;
}

@media (max-width: 767px) {
  .owners-section {
    padding: 60px 0;
  }

  .owners-section .section-heading h2 {
    font-size: 28px;
  }

  .owner-card {
    padding: 30px 20px;
  }

  .owner-image {
    width: 150px;
    height: 150px;
  }

  .owner-info h3 {
    font-size: 20px;
  }

  .owner-info .owner-title {
    font-size: 14px;
  }

  .owner-info p {
    font-size: 14px;
    text-align: center;
  }
}
/* 
---------------------------------------------
contact
--------------------------------------------- 
*/
.contact-us {
  padding: 120px 0;
  background-image: url("../images/contact.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-container h2 {
  margin-bottom: 20px;
  font-weight: 700;
}

.contact-container #map iframe {
  border-radius: 23px;
}

.contact-container .info span {
  display: flex;
  align-items: center;
}

.contact-container .info a.contact-information i {
  width: 28px;
  height: 28px;
  display: inline-block;
  text-align: center;
  line-height: 28px;
  border-radius: 50%;
  color: #000;
  margin-left: 15px;
  font-size: 16px;
}
.contact-container .info a.contact-information {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  font-size: 18px;
  line-height: 1.6;
  transition: transform 0.2s ease;
}

.contact-container .info a.contact-information:hover {
  transform: scale(1.1);
}

.contact-form {
  background-color: #fff;
  padding: 60px 30px;
  border-radius: 20px;
}

.contact-form input,
.contact-form textarea,
.contact-form button,
.contact-form select {
  width: 100%;
  height: 46px;
  border-radius: 20px;
  background-color: #f5f7db;
  border: none;
  outline: none;
  font-size: 15px;
  font-weight: 300;
  color: #2a2a2a;
  padding: 0 20px;
  margin-bottom: 20px;
}

.contact-form textarea {
  min-height: 140px;
  max-height: 180px;
}

.contact-form button {
  background-color: #d2de24;
  color: #000;
  text-transform: capitalize;
  padding: 12px 25px;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: #d2de24;
}

.contact-us-info h3 {
  font-size: 24px;
  font-weight: bold;
  color: #000;
}

.contact-us-info .info {
  margin-top: 20px;
  margin-bottom: 20px;
}

.contact-us-info .info a {
  margin-left: 10px;
  font-size: 12px;
  color: #000;
  text-decoration: none;
}

.contact-us-info .info a:hover {
  transform: scale(1.1);
}

@media (max-width: 767px) {
  .contact-us-info .info {
    margin-top: 40px;
  }

  .contact-us-info h3 {
    margin-left: 20px;
  }

  .contact-us-info p {
    margin-top: 20px;
    margin-left: 20px;
  }
}

@media (max-width: 575px) {
  .contact-us-info .info {
    margin-top: 0;
  }
}

/* 
---------------------------------------------
Footer Style
--------------------------------------------- 
*/

.footer-dec {
  width: 100%;
  margin-top: 160px;
}

footer {
  background-color: rgb(0, 0, 0);
  margin-top: -120px;
  z-index: 2;
  position: relative;
}

footer .footer-item h4 {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
}

footer .footer-item h4:hover {
  color: #d2de24;
}

.footer .about .logo {
  background-color: #d2de24;
  padding: 10px;
  border-radius: 10px;
  max-height: fit-content;
  /* Optional: Add border-radius for a rounded look */
  max-width: fit-content;
}

.footer .about .logo img {
  max-width: 200px;
  margin-bottom: 0;
  /* Remove the margin-bottom to avoid extra space */
}

footer .about a {
  color: #ffffff;
  font-weight: 300;
}

footer .about ul {
  margin-top: 20px;
}

footer .about ul li {
  display: inline-block !important;
  margin-right: 5px;
}

footer .about ul li a {
  width: 32px;
  height: 32px;
  background-color: #d2de24;
  color: #000000 !important;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
  line-height: 32px;
  font-size: 20px;
}

footer .about ul li a:hover {
  background-color: #d2de24;
}

footer .footer-item ul li {
  display: block;
  margin-bottom: 12px;
}

footer .footer-item ul li:last-child {
  margin-bottom: 0px;
}

footer .footer-item ul li a {
  font-size: 15px;
  color: #ffffff;
  transition: all 0.3s;
}

footer .footer-item ul li a:hover {
  color: #d2de24;
}

footer .footer-item p {
  font-size: 15px;
  color: #ffffff;
  margin-top: -5px;
}

footer .footer-item form {
  background-color: #d2de24;
  height: 46px;
  border-radius: 23px;
  position: relative;
  margin-top: 15px;
}

footer .footer-item form input {
  line-height: 46px;
  background-color: transparent;
  border: none;
  font-size: 14px;
  padding: 0px 20px;
  outline: none;
}

footer .footer-item form input::placeholder {
  color: #000000;
}

footer .footer-item form button {
  position: absolute;
  right: 20px;
  top: 10px;
  color: #fff;
  background-color: transparent;
  border: none;
  outline: none;
}

footer .copyright {
  text-align: center;
  border-top: 1px solid #eee;
  color: #ffffff;
  margin-top: 50px;
  padding: 20px 0px;
  font-weight: 300;
}

footer .copyright:hover {
  color: #d2de24;
}

/* Calculator styles are now in a separate file: calculator.css */
