:root {
  --yellow: #fbec6b;
  --blue: #163563;
  --black: #000000;
  --white: #ffffff;
  --gray: #b2b2b2;
  --para: #8f8f8f;
  --bg-dark-1-rgb: 22, 53, 99;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Inter Tight", sans-serif;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
}

h1 {
  font-size: 5rem;
  color: var(--black);
}

h2 {
  font-size: 4rem;
  color: var(--black);
}

h3 {
  font-size: 2.8rem;
  color: var(--black);
}

h4 {
  font-size: 2rem;
  color: var(--black);
}

h5 {
  font-size: 1.5rem;
  color: var(--black);
}

h6 {
  font-size: 1.4rem;
  color: var(--black);
}

p {
  font-size: 1.6rem;
  color: var(--para);
}

a {
  display: block;
  text-decoration: none;
  font-size: 1.6rem;
}

li {
  list-style: none;
}

/* ============= */
.wrapper-heading {
  max-width: 132rem;
  margin: auto;
  padding: 10rem 2.8rem 0rem 2.8rem;
}

.wrapper {
  max-width: 132rem;
  margin: auto;
  padding: 10rem 2.8rem;
}

.grid {
  display: grid;
  gap: 5rem;
}

.grid-two-cols {
  grid-template-columns: 1fr 1fr;
}

.grid-three-cols {
  grid-template-columns: 1fr 1fr 1fr;
}

.grid-four-cols {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
/* ============= */
/* ============= */
/* ============= */
/* ============= */
/* For WebKit browsers (Chrome, Edge, Safari, Opera) */
::-webkit-scrollbar {
  width: 12px; /* vertical scrollbar width */
  height: 12px; /* horizontal scrollbar height */
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb {
  background-color: var(--yellow);
  border-radius: 8px;
  border: 3px solid #f1f1f1; /* gives padding effect */
}
::-webkit-scrollbar-thumb:hover {
  background-color: var(--yellow);
}

/* For Firefox */
* {
  scrollbar-width: thin; /* auto | thin | none */
  scrollbar-color: var(--yellow) #f1f1f1; /* thumb color, track color */
}
.thdp-address {
  width: 170px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
/* ============= */
/* ============= */
/* ============= */
/* ============= */
/* ============= */

/* Preloader container */
/* Preloader container */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--blue);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Loader animation */
.loader {
  width: 1.6rem; /* responsive size using rem */
  height: 1.6rem;
  box-shadow: 0 3rem, 0 -3rem;
  border-radius: 0.4rem;
  background: currentColor;
  display: block;
  position: relative;
  color: #fff;
  transform: translateY(3rem);
  animation: animloader 2s ease infinite;
}

.loader::after,
.loader::before {
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  box-shadow: 0 3rem, 0 -3rem;
  border-radius: 0.4rem;
  background: currentColor;
  position: absolute;
  left: 3rem;
  top: 0;
  animation: animloader 2s 0.2s ease infinite;
}

.loader::before {
  left: 6rem;
  animation-delay: 0.4s;
}

@keyframes animloader {
  0% {
    top: 0;
    color: white;
  }
  50% {
    top: 3rem;
    color: rgba(255, 255, 255, 0.2);
  }
  100% {
    top: 0;
    color: white;
  }
}

/* ✅ RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
  .loader {
    width: 1.2rem;
    height: 1.2rem;
    box-shadow: 0 2.4rem, 0 -2.4rem;
    transform: translateY(2.4rem);
  }

  .loader::after,
  .loader::before {
    width: 1.2rem;
    height: 1.2rem;
    box-shadow: 0 2.4rem, 0 -2.4rem;
    left: 2.4rem;
  }

  .loader::before {
    left: 4.8rem;
  }
}

@media (max-width: 480px) {
  .loader {
    width: 1rem;
    height: 1rem;
    box-shadow: 0 2rem, 0 -2rem;
    transform: translateY(2rem);
  }

  .loader::after,
  .loader::before {
    width: 1rem;
    height: 1rem;
    box-shadow: 0 2rem, 0 -2rem;
    left: 2rem;
  }

  .loader::before {
    left: 4rem;
  }
}

/* =========header============ */
/* ==========header=========== */
/* =========header============ */
/* =========header============ */
/* =========header============ */
/* =========header============ */
header {
  z-index: 99;
  width: 100%;
  background-color: #163563db;
}

.common-header {
  margin-top: 13rem;
  background-color: var(--blue);
  text-align: center;
}
.common-header .wrapper {
  padding: 3rem 2.8rem;
}
.common-header h1 {
  color: var(--white);
  font-weight: 600;
  text-transform: uppercase;
}
.common-header p {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  gap: 1rem;
  color: var(--yellow);
  text-transform: uppercase;
}
.common-header p a {
  color: var(--white);
  font-weight: 500;
}

/* Make sure top-header, nav, and banner2 appear above gradient */
.top-header,
nav,
.banner2 {
  position: relative;
  z-index: 2;
}

.nav-nav {
  background-color: #163563;
  position: fixed;
  top: 4.2rem;
  left: 0;
  width: 100%;
  z-index: 99;
  transition: top 0.3s ease;
  border-bottom: 1px solid var(--gray);
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 132rem;
  margin: 0rem auto;
  padding: 2rem 2.8rem;
}
.nav-nav.nav-up {
  top: 0;
}
.nav-login {
  background-color: var(--yellow);
  padding: 0.8rem 2rem !important;
  border-radius: 2rem;
  color: var(--blue) !important;
  font-weight: 600;
}

/* ========================= */
/* Keep your existing styles */
/* ========================= */

.top-header {
  padding: 1rem 0rem;
  background-color: #041e47f2;
  transition: transform 0.3s ease;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: transform 0.3s ease;
}

.top-header-data {
  width: 100%;
  max-width: 132rem;
  margin: 0 auto;
  padding: 0 2.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-header-data-left {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.thdl-box {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.thdl-box i {
  font-size: 2rem;
  color: var(--yellow);
}

.thdl-box p a,
.thdl-box p {
  color: var(--white);
  font-size: 1.4rem;
}

.thdr-box {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.thdr-box a i {
  color: var(--blue);
  font-size: 1.4rem;
  padding: 0.5rem;
  border-radius: 50%;
  background-color: var(--yellow);
  transition: all 0.3s linear;
}
.thdr-box a i:hover {
  color: var(--yellow);
  font-size: 1.4rem;
  padding: 0.5rem;
  border-radius: 50%;
  background-color: var(--white);
}

.logo img {
  width: 80%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  text-transform: uppercase;
}

.nav-links a {
  color: var(--white);
  font-weight: 500;
  padding: 1.5rem 0;
  transition: all 1s linear color 0.3s ease;
}
.nav-links a.active {
  color: yellow;
  border-bottom: 1px solid var(--yellow);
}
.nav-links a:hover {
  border-bottom: 1px solid var(--yellow);
  color: var(--yellow);
}

.mobile-menu {
  display: none;
}

.mobile-menu i {
  font-size: 2.5rem;
  color: var(--white);
  cursor: pointer;
}

/* =====slider========== */
/* =====slider========== */
/* =====slider========== */
/* =====slider========== */
/* =====slider========== */
/* ==============================================
      slider css
============================================== */
.hero-slider .owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: -35px;
  z-index: 999;
  position: absolute;
  left: 50%;
  transform: translate(-12px, -29px);
}
.hs-img {
  position: relative;
  width: 100%;
  height: 100%;
}
.hs-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Red overlay */
/* .hs-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.964);
  opacity: 0.5; 
  z-index: 1;
} */

/* Heading over the image */
.hs-data-box {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
}
.hs-img h1 {
  color: var(--white);
  font-size: 8rem;
  font-weight: 500;
}
.hs-img p {
  color: var(--white);
  padding-top: 2rem;
  line-height: 2.5rem;
  letter-spacing: 0.1rem;
}
/* =====about us========== */
/* =====about us========== */
/* =====about us========== */
/* =====about us========== */
/* =====about us========== */
.about {
  position: relative;
  width: 100%;
  border-bottom: 1px solid var(--gray);
}

.about .grid-two-cols {
  grid-template-columns: 1fr 1fr;
}

.about-left h4 {
  font-weight: 700;
  color: var(--black);
}

.about-right .about-right-para {
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 3.5rem;
  margin-bottom: 2rem;
  color: var(--black);
}

.about-right .about-right-para span {
  color: var(--gray);
}

.about-right-section {
  display: flex;
  align-items: center;
  gap: 15rem;
}

.about-right-project p:nth-child(1) {
  font-size: 3.5rem;
  color: var(--black);
  font-weight: 700;
  margin-top: 2rem;
}

.about-right-project p:nth-child(2) {
  font-size: 1.6rem;
  color: rgba(0, 0, 0, 0.635);
  margin-top: 1rem;
}

/* =====smarter-future========== */
/* =====smarter-future========== */
/* =====smarter-future========== */
/* =====smarter-future========== */
/* =====smarter-future========== */
.smarter-future {
  position: relative;
  width: 100%;
  overflow: hidden; /* Prevents extra scrollbar */
  border-bottom: 1px solid var(--gray);
}
.smarter-future-left {
  /* text-align: center; */
}

.smarter-future-left img {
  width: 100%;
  height: auto;
  border-radius: 2rem;
}

.border-none {
  border-bottom: none !important;
}
.smarter-future-right h5 {
  padding-bottom: 3rem;
  font-weight: 500;
}
.smarter-future-right h2 {
  padding-bottom: 3rem;
  font-weight: 600;
  font-size: 4rem;
}
.smarter-future-right h2 span {
  color: var(--gray);
}
.sf-para {
  color: var(--para);
  padding-bottom: 3rem;
  line-height: 3rem;
  border-bottom: 1px solid var(--gray);
}
.sf-list {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.sf-list i {
  font-size: 2rem;
  color: var(--yellow);
}
.sf-list p {
  color: var(--para);
}
/* ======text scroll========== */
/* ======text scroll========== */
/* ======text scroll========== */
/* ======text scroll========== */
/* ======text scroll========== */

/* article {   
  position: relative; 
}
.example-right {
  white-space: nowrap;
  position: absolute;
  top:0; 
  text-transform: uppercase;
  font-size: 3.5rem;
  background-color: var(--yellow);
  padding: 2rem;
  color: var(--black) !important;
  font-weight: 600;
}

.example-right {
  -webkit-animation: urmove 8s linear infinite;  
  white-space: nowrap;
  animation: urmove 8s linear infinite alternate;
}

 
@-webkit-keyframes urmove {
  from {
    right: 10px;
  }
  to {
    right: -500px;
  }
}
  */

/* ======services========== */
/* ======services========== */
/* ======services========== */
/* ======services========== */
/* ======services========== */
.services {
  position: relative;
  width: 100%;
}
.wrapper-heading {
  text-align: center;
}
.services-heading h5 {
  font-weight: 500;
  padding-bottom: 2rem;
}
.services-heading h2 {
  font-weight: 600;
  padding-bottom: 3rem;
}
.services-heading h2 span {
  color: var(--gray);
}
.services-heading p {
  color: var(--para);
  width: 50%;
  margin: 0 auto;
}
.services-list {
  position: relative;
  overflow: hidden;
  height: 444px;
}
.services-list img {
  width: 100%;
  height: auto;
  border-radius: 2rem;
  z-index: 8;
}
.services-list-data i {
  font-size: 4rem;
  position: absolute;
  top: -15%;
  right: 2rem;
  background-color: var(--yellow);
  border-radius: 50%;
  color: var(--white);
}
.services-list-data {
  background-color: var(--white);
  border-radius: 2rem;
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translate(-50%);
  z-index: 9;
  text-align: center;
  padding: 2rem;
  width: 80%;
  margin: 0 auto;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.services-list-data h4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-weight: 500;
}
.services-list-data p {
  line-height: 2.5rem;
}
.main-btn {
  text-align: center;
}
.button-design {
  display: inline-block;
  color: var(--black);
  background-color: var(--yellow);
  padding: 1.5rem 2.5rem;
  font-weight: 600;
  border-radius: 1rem;
}
/* ======choose-us========== */
/* ======choose-us========== */
/* ======choose-us========== */
/* ======choose-us========== */
/* ======choose-us========== */
.choose-us {
  position: relative;
  width: 100%;
  background-color: var(--blue);
}

.choose-left img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
}

.choose-right h5 {
  padding-bottom: 3rem;
  color: var(--white);
  font-weight: 500;
}
.choose-right h2 {
  padding-bottom: 3rem;
  color: var(--white);
  font-weight: 600;
  font-size: 4rem;
}
.choose-right-box {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.choose-right-left-data h4 {
  color: var(--white);
  padding-bottom: 2rem;
  font-weight: 500;
}
.choose-right-left-data p {
  color: #ffffffb9;
  line-height: 2.5rem;
  padding-bottom: 2rem;
}
/* ======projects========== */
/* ======projects========== */
/* ======projects========== */
/* ======projects========== */
/* ======projects========== */
.projects {
  position: relative;
  width: 100%;
  border-bottom: 1px solid var(--gray);
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  position: relative; /* Required for overlay */
  text-align: left;
  font-size: 18px;
  background: #444;
  display: flex;
  justify-content: left;
  /* align-items: center; */
  border-radius: 2rem;
  overflow: hidden; /* So the gradient doesn't overflow */
}

/* Slide Image */
.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2rem;
}

/* Gradient Overlay */
.swiper-slide::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%; /* Adjust as needed */
  background: linear-gradient(
    0deg,
    rgba(var(--bg-dark-1-rgb), 1) 0%,
    rgba(var(--bg-dark-1-rgb), 0) 100%
  );
  z-index: 5;
  border-radius: 2rem; /* Match the slide border-radius */
}
.swiper-slide:hover img {
  transform: scale(1.5);
  transition: all 1s ease-in-out;
}

/* Slide Text */
.swiper-slide h3 {
  position: absolute;
  z-index: 10;
  bottom: 19%;
  left: 5%;
  color: #fff;
  font-size: 2rem;
}
.swiper-slide p {
  position: absolute;
  z-index: 10;
  bottom: 7%;
  left: 5%;
  color: #fff;
}
/* ====testimonial========= */
/* ====testimonial========= */
/* ====testimonial========= */
/* ====testimonial========= */
/* ====testimonial========= */
/* ====testimonial========= */
/* ====testimonial========= */
/* ====testimonial========= */
.testimonial {
  position: relative;
  background-color: var(--blue);
  width: 100%;
}
.testimonial .grid {
  gap: 0rem;
}
.testi-left {
  overflow: hidden;
  text-align: center;
}
.testi-left img {
  width: 100%;
  height: auto;
}

/* =========faq======== */
/* =========faq======== */
/* =========faq======== */
/* =========faq======== */
/* =========faq======== */
/* =========faq======== */
/* =========faq======== */
/* =========faq======== */
/* =========faq======== */
/* =========faq======== */
.faq {
  position: relative;
  width: 100%;
}
.faq-left h5 {
  font-weight: 600;
  padding-bottom: 3rem;
}
.faq-left h2 {
  font-weight: 600;
}
.container {
  color: black;
  margin: 20px 0;
}

.question {
  font-size: 1.8rem;
  font-weight: 600;
  padding: 20px 80px 20px 20px;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  background-color: var(--yellow);
}

.question::after {
  content: "\002B";
  font-size: 2.2rem;
  position: absolute;
  right: 20px;
  transition: 0.2s;
}

.question.active::after {
  transform: rotate(45deg);
}

.answercont {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
}

.answer {
  font-size: 1.4rem;
  padding: 20px 20px 20px;
  line-height: 2.5rem;
  color: var(--black);
}

@media screen and (max-width: 790px) {
  html {
    font-size: 14px;
  }
}

/* ===========footer======== */
/* ----footer--- */
footer {
  position: relative;
  background-color: var(--blue);
}
footer .wrapper {
  padding: 4rem 2.8rem;
}
.footer1 img {
  height: 6rem;
}
.footer1 p {
  padding-top: 2rem;
  color: var(--white);
  line-height: 2.9rem;
}
/* ------footer2--- */
.footer2,
.footer3 {
  margin-top: 2rem;
}

.footer2 h5 {
  color: var(--white);
  padding-bottom: 2rem;
  font-size: 1.8rem;
}
.footer2 ul li {
  padding: 1rem 0;
}
.footer2 ul li a {
  color: var(--white);
  transition: all 0.3s ease-in-out;
}
.footer2 ul li a:hover {
  color: var(--yellow);
}
/* ------footer3-data- */
.footer3 h5 {
  color: var(--white);
  font-size: 1.8rem;
  padding-bottom: 2rem;
}
.footer3-data {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
}
.footer3-data i {
  color: var(--yellow);
  font-size: 2rem;
}
.footer3-data p {
  color: var(--white);
}
/* ----sub-footer--- */
.sub-footer {
  background-color: #0e2548;
  position: relative;
}
.sub-footer .wrapper {
  padding: 2rem 8rem;
}
.sub-footer1 p {
  color: var(--white);
  font-size: 1.3rem;
}
.sub-footer2 {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: end;
}
.sub-footer2 p {
  font-size: 1.3rem;
  color: var(--white);
}
.sub-footer2 a {
  font-size: 1.3rem;
  color: var(--white);
  text-decoration: underline;
}
/* ------click to top button------ */
#scrollToTopBtn {
  position: fixed;
  bottom: 40px;
  right: 30px;
  z-index: 999;
  font-size: 2rem;
  background-color: var(--yellow);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
#scrollToTopBtn:hover {
  background-color: var(--blue);
}

#scrollToTopBtn.show {
  opacity: 1;
  visibility: visible;
}
/* ============ */
/* ============ */
/* ============ */
/* ============ */
/* ============ */
/* ============ */
/* ============ */
/* ============ */
/* ============ */
.heading-section {
  text-align: center;
}
.sub-heading {
  font-size: 12px;
  display: block;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
}
.heading-section h2 {
  font-size: 28px;
  font-weight: 600;
  padding-top: 10px;
  padding-bottom: 15px;
  color: var(--white);
}
.testimonial-box {
  display: block;
  position: relative;
  padding: 30px 20px;
  border-radius: 5px;
  background-color: var(--white);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
}
.user-img {
  width: 100px;
  height: 100px;
  border-radius: 50% !important;
  position: relative;
  min-width: 80px;
  background-size: 100%;
}
.carousel-testimonial .item {
  padding: 30px 10px;
}
.quote {
  position: absolute;
  top: -23px;
  color: var(--yellow);
  font-size: 4rem;
}
.name {
  padding: 1rem 0;
  line-height: 14px;
  font-size: 17px;
  font-weight: 500;
}
.position {
  color: #adadad;
  font-size: 14px;
}
.text p {
  padding: 1rem 0;
  color: var(--black);
}
.carousel-testimonial .owl-nav {
  text-align: center;
}
.carousel-testimonial .owl-nav button.owl-next,
.carousel-testimonial .owl-nav button.owl-prev {
  padding: 0 12px !important;
}
.carousel-testimonial .owl-nav button {
  outline: none;
  padding: 0;
}
.carousel-testimonial .owl-nav button.owl-next span,
.carousel-testimonial .owl-nav button.owl-prev span {
  display: block;
  font-size: 40px;
  width: 25px;
  height: 25px;
  vertical-align: 0px;
  line-height: 16px;
  color: var(--yellow);
}
.carousel-testimonial .owl-nav button.owl-next.disabled,
.carousel-testimonial .owl-nav button.owl-prev.disabled {
  opacity: 0.5;
}
/* ==========Director Message========= */
/* ==========Director Message========= */
/* ==========Director Message========= */
/* ==========Director Message========= */
/* ==========Director Message========= */
/* ==========Director Message========= */
/* ==========Director Message========= */
.dir-mess {
  position: relative;
  width: 100%;
  border-bottom: 1px solid var(--gray);
}
.dir-mess-left img {
  width: 80%;
  height: auto;
}
.dir-mess-right h2 {
  font-weight: 600;
  padding-bottom: 3rem;
}
.dir-mess-right p {
  line-height: 2.5rem;
}
/* =====vis-mis====== */
/* =====vis-mis====== */
/* =====vis-mis====== */
/* =====vis-mis====== */
/* =====vis-mis====== */
/* =====vis-mis====== */
/* =====vis-mis====== */
.vis-mis {
  position: relative;
}
.vis-left h3 {
  font-size: 2rem;
}
.vis-left p {
  font-size: 2rem;
  line-height: 3.5rem;
  padding-top: 3rem;
}
.mis-right h3 {
  font-size: 2rem;
}
.mis-right p {
  font-size: 2rem;
  line-height: 3.5rem;
}
.mis-right p span {
  color: var(--black);
}
/* =====services details========= */
/* =====services details========= */
/* =====services details========= */
/* =====services details========= */
/* =====services details========= */
/* =====services details========= */
/* =====services details========= */
.services-details {
  position: relative;
  width: 100%;
  border-bottom: 1px solid var(--gray);
}
.sd-status {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.sd-status-box {
  border: 1px solid var(--gray);
  border-radius: 1rem;
  padding: 2rem 4rem;
  text-wrap: nowrap;
}
.sd-status-box h4 {
  font-weight: 600;
  padding-bottom: 1rem;
  text-wrap: nowrap;
}
.services-details h3 {
  padding-top: 5rem;
  font-weight: 500;
}
.sd-review {
  margin-top: 5rem;
}
.sdrb-list {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}
.sdrb-list i {
  color: var(--yellow);
  font-size: 2rem;
}
.sd-slider {
  margin-top: 10rem;
  margin-bottom: 10rem;
}
.owl-theme .owl-dots .owl-dot span {
  width: 30px !important;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--blue) !important;
}
/*=======================================================
                gallery section css
=====================
================================== ***/

.gallery-data-box a img {
  width: 100% !important;
  height: auto !important;
  border-radius: 2rem;
}
.gallery-data-box a h4 {
  text-align: center;
  text-transform: uppercase;
  background-color: var(--blue);
  padding: 2rem;
  border-top-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
  color: var(--white);
}

/*=======================================================
                gallery details section css
======================================================= ***/

.gallery {
  position: relative;
}
.popup-gallery a img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  transition: all 0.3s ease-in-out;
}
/* =====contact======= */
/* =====contact======= */
/* =====contact======= */
/* =====contact======= */
/* =====contact======= */
/* =====contact======= */
/* =====contact======= */
/* =====contact======= */
/* =====contact======= */
.contact {
  position: relative;
  width: 100%;
}
.map {
  border-radius: 2rem;
}
.contact-data {
  margin-top: 10rem;
}
.cd-left-heading h5 {
  font-weight: 500;
  padding-bottom: 2rem;
}
.cd-left-heading h2 {
  font-weight: 500;
  padding-bottom: 2rem;
}
.cd-left-heading p {
  padding-bottom: 5rem;
}

.cd-timing {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: space-between;
}
.cd-timing-box {
  display: flex;
  align-items: start;
  gap: 1rem;
  padding: 2rem 0;
}
.cd-timing-box i {
  font-size: 2.5rem;
  color: var(--yellow);
}
.cd-timing-box-data h4 {
  font-weight: 500;
  padding-bottom: 1rem;
}
.contact-from {
  background-color: #f8f9fa;
  padding: 3rem;
  border-radius: 2rem;
}
.contact-from h2 {
  font-weight: 500;
  padding-bottom: 2rem;
}
.form-c input,
.form-c textarea {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 1rem;
  outline: none;
  border: 1px solid var(--gray);
}
.form-c button {
  display: inline-block;
  color: var(--black);
  background-color: var(--yellow);
  padding: 1.5rem 2.5rem;
  font-weight: 600;
  border-radius: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.form-c button:hover {
  background-color: var(--blue);
  color: var(--white);
}
/* ====login====== */
/* ====login====== */
/* ====login====== */
/* ====login====== */
/* ====login====== */
/* ====login====== */
.white-color strong {
  color: var(--white);
}

/* project page style */

.pp-header {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 30px 0 15px;
  position: relative;
  padding-left: 15px;
}

.pp-header::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 30px;
  background: linear-gradient(135deg, #3c7ee0, #163563);
  border-radius: 2px;
}

.pp-text {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

.pp-text a {
  color: #163563;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.pp-text a:hover {
  color: #e74c3c;
  text-decoration: underline;
}

.pp-list {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

.pp-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

.pp-list li::before {
  content: "✓";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #3c7ee0, #163563);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

.highlight-list li {
  background: #fff8e1;
  padding: 15px 15px 15px 45px;
  border-radius: 8px;
  border-left: 4px solid #163563;
  margin-bottom: 10px;
}

.note-box {
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
  border-left: 4px solid #163563;
  padding: 20px;
  border-radius: 8px;
  margin: 25px 0;
}

.note-label {
  font-weight: 700;
  color: #163563;
}

/* Solar Calculator Styles */
.solar-calculator-wrapper {
  position: sticky;
  top: 100px;
}

.calculator-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.calculator-header {
  background: linear-gradient(135deg, #3c7ee0, #163563);
  color: white;
  padding: 30px;
  text-align: center;
}

.calculator-header i {
  font-size: 48px;
  margin-bottom: 15px;
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.calculator-header h3 {
  font-size: 24px;
  margin: 10px 0;
  font-weight: 700;
  color: var(--white);
}

.calculator-header p {
  font-size: 14px;
  opacity: 0.9;
  margin: 0;
  color: var(--gray);
}

.calculator-form {
  padding: 30px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
  font-size: 14px;
}

.form-group label i {
  color: #163563;
  font-size: 18px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 15px;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #163563;
  box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.1);
}

.calculate-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #3c7ee0, #163563);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s;
}

.calculate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(243, 156, 18, 0.4);
}

.calculate-btn:active {
  transform: translateY(0);
}

.calculator-results {
  padding: 30px;
  background: #f8f9fa;
  border-top: 3px solid #163563;
}

.calculator-results h4 {
  text-align: center;
  font-size: 20px;
  color: #333;
  margin-bottom: 25px;
  font-weight: 700;
}

.result-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: white;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.result-item:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.result-item.highlight {
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
  border: 2px solid #163563;
}

.result-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #163563 0%, #e74c3c 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.result-icon i {
  color: white;
  font-size: 20px;
}

.result-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.result-label {
  font-size: 13px;
  color: #666;
  font-weight: 500;
}

.result-value {
  font-size: 18px;
  color: #333;
  font-weight: 700;
}

.contact-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  transition: all 0.3s;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(40, 167, 69, 0.4);
}

.calculator-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 20px;
}

.feature-item {
  background: white;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-item i {
  font-size: 28px;
  color: #163563;
  margin-bottom: 8px;
  display: block;
}

.feature-item span {
  font-size: 13px;
  color: #555;
  font-weight: 600;
  display: block;
}

/* Responsive Styles */
@media (max-width: 968px) {
  .grid-two-cols {
    grid-template-columns: 1fr;
  }

  .solar-calculator-wrapper {
    position: relative;
    top: 0;
    margin-top: 30px;
  }

  .calculator-features {
    grid-template-columns: 1fr;
  }

  .pp-header {
    font-size: 24px;
  }

  .pp-text {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .calculator-header h3 {
    font-size: 20px;
  }

  .calculator-form {
    padding: 20px;
  }

  .calculator-results {
    padding: 20px;
  }

  .result-value {
    font-size: 16px;
  }

  .pp-header {
    font-size: 22px;
  }
}
