@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap");

:root {
  --yellow: #ffa500;
  --black: #111;
  --white: #ffffffe0;
  --light-color: #666;
  --light-bg: #eee;
  --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  --border: 0.1rem solid rgba(0, 0, 0, 0.3);
}

* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
}

/* Customization Icons */
body {
  font-family: Arial, sans-serif;
  margin: 20px;
  line-height: 1.6;
}

.feature {
  display: flex;
  align-items: center;
  margin: 10px 0;
}

.feature-icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  color: #E31E61;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-text {
  font-size: 16px;
  color: #333;
}

/* Customization Icons end */
html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

html::-webkit-scrollbar {
  width: 1rem;
}

html::-webkit-scrollbar-tra/k {
  background: transparent;
}

html::-webkit-scrollbar-thumb {
  background: var(--yellow);
}

section {
  padding: 5rem 10%;
}

.heading {
  margin-bottom: 3rem;
  font-size: 3rem;
  color: var(--black);
  text-transform: capitalize;
  padding-left: 1rem;
  border-left: 1rem solid var(--yellow);
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 1rem 3rem;
  background: #f75d5d;
  color: var(--white);
  cursor: pointer;
  font-size: 1.7rem;
  text-transform: capitalize;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
  border-radius: 50px;

}

.btn:hover {
  background: var(--yellow);
  color: var(--black);
}

@-webkit-keyframes fadeIn {
  0% {
    top: 50%;
    opacity: 0;
  }
}

@keyframes fadeIn {
  0% {
    top: 50%;
    opacity: 0;
  }
}

.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  padding: 0.5rem 10%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  z-index: 1000;
  background: var(--white);
}

.header-logo img {
  display: flex;
  align-items: center;
  height: 120px;
  /* Increased size for better visibility */
  margin: 0px;
  /* Equal width for circle */
  padding: 1px;
  border-radius: 60px;
}

.header .logo {
  font-size: 101px;
  /* Bigger text for professional look */
  color: var(--black);
  text-transform: capitalize;
  font-weight: bold
}

.header .logo span {
  color: var(--yellow);
}

.header .navbar a {
  font-size: 2rem;
  color: var(--black);
  text-transform: capitalize;
  margin: 0 1rem;
}

.header .navbar a:hover {
  color: var(--yellow);
}

.header .icons div {
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  font-size: 2rem;
  background: var(--light-bg);
  color: #e6007e;
  cursor: pointer;
  text-align: center;
  margin-left: 0.3rem;
}

.header .icons div:hover {
  background: var(--black);
  color: var(--white);
}

.header #menu-btn {
  display: none;
}

.header .search-form {
  position: absolute;
  top: 120%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 70rem;
  background: var(--white);
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  padding: 1rem;
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  -webkit-animation: fadeIn 0.2s linear;
  animation: fadeIn 0.2s linear;
}

.header .search-form.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header .search-form input {
  width: 100%;
  padding: 1.2rem 1.4rem;
  background: var(--light-bg);
  font-size: 1.6rem;
  color: var(--light-color);
}

.header .search-form label {
  font-size: 2.5rem;
  color: var(--black);
  cursor: pointer;
  margin: 0 1rem;
}

.header .search-form label:hover {
  color: var(--yellow);
}

.header .login-form {
  position: absolute;
  top: 120%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 40rem;
  background: var(--white);
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  padding: 2rem;
  text-align: center;
  -webkit-animation: fadeIn 0.2s linear;
  animation: fadeIn 0.2s linear;
  display: none;
}

.header .login-form.active {
  display: block;
}

.header .login-form h3 {
  font-size: 2.5rem;
  color: var(--black);
  text-transform: capitalize;
  padding-bottom: 1rem;
  text-transform: uppercase;
}

.header .login-form .box {
  width: 100%;
  padding: 1.2rem 1.4rem;
  background: var(--light-bg);
  font-size: 1.6rem;
  color: var(--light-color);
  margin: 0.7rem 0;
}

.header .login-form .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  padding-top: 1.5rem;
  padding-bottom: 1rem;
}

.header .login-form .flex label {
  font-size: 1.5rem;
  color: var(--light-color);
  cursor: pointer;
}

.header .login-form .flex a {
  font-size: 1.5rem;
  color: var(--light-color);
  margin-left: auto;
}

.header .login-form .flex a:hover {
  color: var(--yellow);
  text-decoration: underline;
}

.header .login-form .btn {
  width: 100%;
}

.header .login-form p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
  padding-top: 1.5rem;
}

.header .login-form p a {
  color: var(--yellow);
}

.header .login-form p a:hover {
  text-decoration: underline;
}

.contact-info {
  position: fixed;
  top: 0;
  right: 0;
  width: 35rem;
  background: #fff;
  height: 100%;
  text-align: center;
  z-index: 1100;
  padding: 0 2rem;
  padding-top: 5rem;
  display: none;
}

.contact-info.active {
  -webkit-box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.7);
  box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.7);
  display: block;
}

.contact-info #close-contact-info {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  cursor: pointer;
  font-size: 4rem;
  color: var(--black);
}

.contact-info #close-contact-info:hover {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.contact-info .info {
  padding: 2rem 0;
}

.contact-info .info i {
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  font-size: 2rem;
  background: var(--light-bg);
  color: #e6007e;
  cursor: pointer;
  text-align: center;
  margin-bottom: 0.5rem;
}

.contact-info .info i:hover {
  background: var(--black);
  color: var(--white);
}

.contact-info .info h3 {
  font-size: 2rem;
  color: var(--black);
  text-transform: capitalize;
  padding: 1rem 0;
}

.contact-info .info p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
}

.contact-info .share {
  padding-top: 2rem;
  border-top: var(--border);
  margin-top: 1rem;
}

.contact-info .share a {
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  font-size: 2rem;
  background: var(--light-bg);
  color: #e6007e;
  cursor: pointer;
  text-align: center;
  margin: 0 0.3rem;
}

.contact-info .share a:hover {
  background: var(--black);
  color: var(--white);
}

.home {
  padding: 0;
}

.home .slide {
  min-height: 70rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  background-size: cover !important;
  background-position: center !important;
}

.home .slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, from(var(--white)), to(transparent));
  background: linear-gradient(90deg, var(--white), transparent);
}

.home .slide .content {
  width: 45rem;
  position: relative;
}

.home .slide .content h3 {
  font-size: 3rem;
  /* Increased size for more impact */
  font-weight: bold;
  color: #e27a1f;
  /* Warm, premium orange */
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 3px 3px 8px rgba(255, 161, 29, 0.4);
  font-family: 'Poppins', sans-serif;
}

.home .slide .content p {
  font-size: 1.6rem;
  color: #333;
  line-height: 2.2;
  padding: 10px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.511);
  border-radius: 12px;
  box-shadow: 0px 4px 15px rgba(100, 100, 100, 0.3);
  /* Matching box shadow with background tone */
  font-family: 'Poppins', sans-serif;
}

.home .swiper-button-next,
.home .swiper-button-prev {
  top: initial;
  bottom: 0;
  left: initial;
  right: 0;
  height: 7rem;
  width: 7rem;
  line-height: 7rem;
  background: var(--white);
}

.home .swiper-button-next:hover,
.home .swiper-button-prev:hover {
  background: var(--yellow);
}

.home .swiper-button-next::after,
.home .swiper-button-prev::after {
  font-size: 2rem;
  color: var(--black);
}

.home .swiper-button-prev {
  right: 7rem;
}

.about .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 3rem;
}

.about .row .video {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 41rem;
  flex: 1 1 41rem;
}

.about .row .video video {
  width: 50%;
}

.about .row .content {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 41rem;
  flex: 1 1 41rem;
}

.about .row .content h3 {
  font-size: 3.5rem;
  color: var(--black);
  text-transform: capitalize;
}

.about .row .content p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
  padding: 1rem 0;
}

.about .box-container {
  margin-top: 3rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(16rem, 1fr))[auto-fit];
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 2rem;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.about .box-container .box {
  text-align: center;
  background: var(--light-bg);
  padding: 3rem 3rem;
}

.about .box-container .box h3 {
  font-size: 4rem;
  color: var(--black);
  text-transform: capitalize;
}

.about .box-container .box p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
  padding-top: 0.5rem;
}

/* Arrow Start */
.container {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
  max-width: 400px;
  width: 100%;
}

ul {
  list-style: none;
  padding: 0;
}

li {
  margin: 12px 0;
  display: flex;
  align-items: center;
  font-size: 18px;
  color: #333;
}

li i {
  color: #E91E63;
  font-size: 18px;
  margin-right: 10px;
}

/* Arrow end */

/*  Product section starts */

.Product {
  background: #fff;
}

.Product .box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 2rem;
}

.Product .box-container .box {
  text-align: center;
  padding: 3rem;
  background: var(--white);
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  border: var(--border);
}

.Product .box-container .box:hover img {
  -webkit-transform: translateY(-1rem);
  transform: translateY(-1rem);
}

.Product .box-container .box img {
  height: 13rem;
  margin-bottom: 0.5rem;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}

.Product .box-container .box h3 {
  font-size: 1.7rem;
  color: var(--black);
  text-transform: capitalize;
  padding: 1rem 0;
}

.Product .box-container .box p {
  font-size: 1.4rem;
  color: var(--light-color);
  line-height: 2;
}

/* Product section ends */

/* Product Dropdown start */
.navbar .dropdown {
  position: relative;
  display: inline-block;
}

.navbar .dropbtn {
  background-color: transparent;
  border: none;
  font-size: 2rem;
  padding: 10px 15px;
  cursor: pointer;
  color: #333;
  font-weight: 500;
}

.navbar .dropbtn i {
  margin-left: 5px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 220px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  z-index: 1000;
  margin-top: 10px;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* With icon style */
.dropdown-content.with-icons a {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  gap: 12px;
  font-size: 15px;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #eee;
  transition: background 0.3s;
}

.dropdown-content.with-icons a:last-child {
  border-bottom: none;
}

.dropdown-content.with-icons a:hover {
  background-color: #f5f5f5;
}

.dropdown-content.with-icons img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* Contact Button */
.contact-btn {
  background-color: #495057;
  color: white;
  padding: 8px 14px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
}

.dropdown-content {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.dropdown-content.show {
  display: block;
  opacity: 1;
}

.dropbtn {
  background-color: white;
  /* default background */
  color: black;
  padding: 10px 16px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.dropbtn:hover {
  color: #ffa500;
}

/* Product Dropdown end */

/* Base dropdown styles mobile start*/
/* Fix for mobile dropdown cut issue */

@media (max-width: 768px) {
  .navbar .dropdown {
    position: static;
    /* so it stays inside navbar */
  }

  .navbar .dropdown-content {
    position: relative;
    /* not absolute */
    width: 100%;
    /* full width on mobile */
    margin-top: 5px;
    left: 0;
    right: 0;
  }

  .navbar .dropdown-content.with-icons a {
    font-size: 14px;
    padding: 12px;
  }
}

/* Base dropdown styles mobile end*/

/* services section starts */

.services {
  background: #fff;
}

.services .box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 2rem;
}

.services .box-container .box {
  text-align: center;
  padding: 3rem;
  background: var(--white);
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  border: var(--border);
}

.services .box-container .box:hover img {
  -webkit-transform: translateY(-1rem);
  transform: translateY(-1rem);
}

.services .box-container .box img {
  height: 13rem;
  margin-bottom: 0.5rem;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}

.services .box-container .box h3 {
  font-size: 1.7rem;
  color: var(--black);
  text-transform: capitalize;
  padding: 1rem 0;
}

.services .box-container .box p {
  font-size: 1.4rem;
  color: var(--light-color);
  line-height: 2;
}

/* services section ends */

.projects {
  background: #fff;
}

.projects .heading {
  color: #000000;
}

.video-container {
  width: 100%;
  height: 369px;
  overflow: hidden;
}

video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-bottom: 2px solid #ddd;
}

.projects .box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(30rem, 1fr))[auto-fit];
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 2rem;
}

.projects .box-container .box {
  cursor: initial;
}

.projects .box-container .box:hover .image img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.projects .box-container .box .image {
  height: 40rem;
  overflow: hidden;
}

.projects .box-container .box .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}

.projects .box-container .box .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: var(--white);
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.projects .box-container .box .content .info {
  padding: 1rem 2rem;
}

.projects .box-container .box .content .info h3 {
  font-size: 1.7rem;
  color: var(--black);
  text-transform: capitalize;
}

.projects .box-container .box .content .info p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
}

.projects .box-container .box .content i {
  width: 7.5rem;
  font-size: 3rem;
  background: var(--yellow);
  color: var(--white);
  cursor: pointer;
  text-align: center;
  line-height: 7.5rem;
}

.reviews .slide p {
  padding: 1.5rem;
  background: var(--light-bg);
  position: relative;
  margin-bottom: 3rem;
  font-size: 1.4rem;
  color: var(--light-color);
  line-height: 2;
}

.reviews .slide p::before {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 2rem;
  height: 2rem;
  width: 2rem;
  background: var(--light-bg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.reviews .slide .user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5rem;
}

.reviews .slide .user img {
  height: 7rem;
  width: 7rem;
}

.reviews .slide .user h3 {
  font-size: 2rem;
  color: var(--black);
  text-transform: capitalize;
}

.reviews .slide .user .stars {
  padding-top: 0.5rem;
}

.reviews .slide .user .stars i {
  font-size: 1.4rem;
  color: var(--yellow);
}

/* client review start */

/* costomer trust start */

.trust-section {
  text-align: center;
  padding: 50px 20px;
}

.trust-section .header {
  font-size: 2.5rem;
  color: #000000;
  margin-bottom: 40px;
  font-weight: bold;
}

.trust-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
}

/* Experience Box */
.experience-box {
  position: relative;
  width: 250px;
  height: 350px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.experience-box:hover {
  transform: scale(1.03);
}

.bg-img {
  width: 100%;
  height: 80%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.experience-box:hover .bg-img {
  transform: scale(1.1);
}

.experience-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: white;
  padding: 30px 20px;
  border-radius: 10px;
  text-align: center;
  width: 80%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.experience-text .years {
  font-size: 48px;
  color: red;
  font-weight: bold;
}

.experience-text .desc {
  font-size: 14px;
  margin-top: 10px;
  font-weight: bold;
}

/* Features Grid - Responsive */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  max-width: 800px;
  width: 100%;
}

.feature {
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

.feature img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.feature:hover img {
  transform: scale(1.1);
  opacity: 0.9;
}

.feature p {
  margin: 8px;
  font-size: 16px;
  font-weight: 500;
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
  .trust-section h2 {
    font-size: 24px;
  }

  .trust-content {
    flex-direction: column;
    align-items: center;
  }

  .experience-box {
    width: 90%;
    height: 300px;
  }

  .features {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
  }

  .feature p {
    font-size: 14px;
  }
}

/* costomer trust end */

/* 
 Application Areas Section */
.application-areas {
  background: #fff;
  padding: 50px 20px;
  text-align: center;
  font-size: 1.4rem;
}

.application-areas .heading {
  font-size: 2.5rem;
  color: #000000;
  margin-bottom: 40px;
  font-weight: bold;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.area-box {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.area-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.area-box img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 15px;
}

.area-box p {
  font-weight: 600;
  font-size: 1.1rem;
  color: #001f3f;
}


/* Application Areas Section End */


/* client review end */

.pricing {
  background: var(--light-bg);
}

.pricing .box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(30rem, 1fr))[auto-fit];
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 2rem;
}

.pricing .box-container .box {
  background: var(--white);
  text-align: center;
  padding: 2rem;
  border: var(--border);
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
}

.pricing .box-container .box i {
  font-size: 3rem;
  height: 7rem;
  width: 7rem;
  line-height: 7rem;
  border-radius: 50%;
  margin-bottom: 2rem;
  background: var(--yellow);
  color: var(--black);
}

.pricing .box-container .box h3 {
  font-size: 2rem;
  color: var(--black);
  text-transform: capitalize;
  font-weight: normal;
}

.pricing .box-container .box .price {
  padding: 1rem 0;
  font-size: 5rem;
  color: var(--black);
  text-transform: capitalize;
}

.pricing .box-container .box .price span {
  font-size: 2rem;
}

.pricing .box-container .box .list {
  padding: 1rem 0;
}

.pricing .box-container .box .list p {
  padding: 1rem 0;
  font-size: 1.4rem;
  color: var(--light-color);
  line-height: 2;
}

/* how to vidyut netting work start */
.steps-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 40px;
  position: relative;
  flex-wrap: nowrap;
  max-width: 80%;
  margin: auto;
  padding: 20px 0;
}

.steps-container::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, #f5a623, #ff7700);
  z-index: -1;
  border-radius: 5px;
  animation: pulseLine 2s infinite alternate;
}

@keyframes pulseLine {
  0% {
    opacity: 0.7;
  }

  100% {
    opacity: 1;
  }
}

.step {
  background: #ff9800;
  color: white;
  padding: 30px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 220px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.step i {
  font-size: 32px;
  margin-bottom: 15px;
  background: rgba(255, 255, 255, 0.2);
  padding: 10px;
  border-radius: 50%;
  transition: transform 0.5s ease-in-out;
}

.step:hover i {
  transform: scale(1.3) rotate(360deg);
}

.step h3 {
  margin: 10px 0;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
}

.step p {
  font-size: 14px;
  opacity: 0.9;
}

@media (max-width: 1024px) {
  .steps-container {
    flex-wrap: wrap;
    justify-content: center;
  }
}


/* How to vidyut netting work end */

/* Contact form start */

.contact-section {
  padding: 40px 20px;
  text-align: center;
}

.contact-section h1 .header {
  font-size: 32px;
  color: #000000;
  margin-bottom: 30px;
  font-weight: bold;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: auto;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.map-box {
  flex: 1 1 400px;
  min-height: 300px;
}

.contact-form {
  flex: 1 1 400px;
  padding: 25px;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  margin: 10px 0;
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 25px;
  font-size: 15px;
  width: 100%;
}

.contact-form textarea {
  height: 120px;
  resize: none;
  border-radius: 15px;
}

.contact-form button {
  margin-top: 15px;
  padding: 12px;
  background-color: white;
  border: 2px solid #0e2f56;
  color: #0e2f56;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background-color: #0e2f56;
  color: white;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .map-box,
  .contact-form {
    width: 100%;
  }

  .contact-section h2 {
    font-size: 24px;
  }
}

/* Contact form end */


/* client logo start */
h3 {
  color: #333;
  font-size: 28px;
  margin: 20px 0;
}

.logo-container {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  padding: 20px 0;
  background: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  width: 100%;
  margin: auto;
  position: relative;
}

.logo-slide {
  display: flex;
  align-items: center;
  animation: scroll 20s linear infinite;
  width: max-content;
}

.logo-slide img {
  height: 100px;
  margin: 0 30px;
  transition: transform 0.3s, filter 0.3s;
  filter: grayscale(50%);
}

.logo-slide img:hover {
  transform: scale(1.2);
  filter: grayscale(0%);
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* client logo end */


.blogs {
  background: var(--light-bg);
}

.blogs .slide {
  text-align: center;
}

.blogs .slide:hover .image img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.blogs .slide .image {
  height: 25rem;
  width: 90%;
  overflow: hidden;
  margin: 0 auto;
  margin-bottom: -3rem;
}

.blogs .slide .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}

.blogs .slide .content {
  padding: 2rem;
  padding-top: 5rem;
  background: var(--white);
  -webkit-box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.2);
}

.blogs .slide .content h3 {
  font-size: 2rem;
  color: var(--black);
  text-transform: capitalize;
}

.blogs .slide .content p {
  padding: 1rem 0;
  font-size: 1.4rem;
  color: var(--light-color);
  line-height: 2;
}

.logo-container {
  text-align: center;
}

.logo-container img {
  height: 10rem;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* footer section start */
.footer {
  text-align: center;
  padding-bottom: 10rem;
}

.footer .links .btn {
  margin: 0.5rem;
}

.footer .credit {
  font-size: 2rem;
  color: var(--black);
  text-transform: capitalize;
  margin-top: 2rem;
  padding-top: 1rem;
}

.footer .credit span {
  color: var(--yellow);
}

@media (max-width: 1200px) {
  .header {
    padding: 1.5rem 2rem;
  }

  section {
    padding: 3rem 5%;
  }
}

@media (max-width: 991px) {
  html {
    font-size: 55%;
  }

  section {
    padding: 3rem 2rem;
  }

  .header #menu-btn {
    display: inline-block;
  }

  .header .navbar {
    position: absolute;
    top: 99%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: var(--border);
    border-bottom: var(--border);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
  }

  .header .navbar.active {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  .header .navbar a {
    display: block;
    margin: 2rem;
  }
}

@media (max-width: 768px) {
  .header .search-form {
    width: 90%;
  }

  .header .login-form {
    width: 90%;
  }

  .home .slide {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .home .slide .content {
    text-align: center;
  }

  .home .slide .content h3 {
    font-size: 3rem;
  }
}

@media (max-width: 450px) {
  html {
    font-size: 50%;
  }

  .about .row .content h3 {
    font-size: 2.5rem;
  }
}

.footer {
  background-color: #ffffff;
  color: #fff;
  padding: 4rem 2rem 1rem 2rem;
  width: 100%;
  position: relative;
  bottom: 0;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  color: #ff8800;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

/* Underline effect for section headers */
.footer-section h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: #000000;
  transition: width 0.3s ease;
}

.footer-section:hover h3::after {
  width: 75px;
}

.footer-section p {
  line-height: 1.6;
  color: #ccc;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section ul li a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
  display: inline-block;
}

.footer-section ul li a:hover {
  color: #fff;
  padding-left: 5px;
}

/* Contact Info Section Styling */
.contact-card {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  max-width: 350px;
  margin: auto;
  font-family: Arial, sans-serif;
}

.contact-card1 {
  background: #ffffff;
  border-radius: 14px;
  padding: 20px;
  max-width: 400px;
}

.contact-note {
  color: #555;
  font-size: 14px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.contact-list li {
  margin-bottom: 8px;
  font-size: 15px;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.btn-ws,
.btn-enquire {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 25px;
  border: none;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-ws {
  background-color: #25D366;
  color: white;
}

.btn-ws:hover {
  background-color: #1ebe5a;
}

.ws-icon {
  width: 20px;
  height: 20px;
}

.btn-enquire {
  background-color: #007bff;
  color: white;
  text-decoration: none;
}

.btn-enquire:hover {
  background-color: #0056b3;
}

/* WhatsApp options dropdown */
.ws-options {
  display: none;
  margin-top: 15px;
  background: #f7f7f7;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.ws-options p {
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.ws-options a {
  display: block;
  margin: 6px 0;
  text-decoration: none;
  color: #25D366;
  font-weight: 500;
}

.ws-options a:hover {
  text-decoration: underline;
}

/* Social Links */
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-link {
  color: #E91E63;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border: 1px solid #333;
  border-radius: 4px;
}

.social-link:hover {
  color: #E91E63;
  border-color: #ff8800;
  transform: translateY(-2px);
}

/* Footer address and logo start */

.footer-section.address {
  color: #ffffff;
  /* White text */
  max-width: 320px;
  line-height: 1.6;
}

.footer-section.address .footer-logo {
  width: 180px;
  /* Logo ka size adjust karna */
  margin-bottom: 10px;
  /* नीचे space */
}

.footer-section.address p {
  font-size: 14px;
  margin: 5px 0;
  color: #000;
}

/* Footer address and logo end */

/* Copyright Section */
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #333;
}

.social-links {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.social-links a {
  font-size: 22px;
  color: #e91e63;
  /* border: 1px solid #333; */
  padding: 10px;
  /* border-radius: 50%; */
  transition: 0.3s;
}

.social-links a:hover {
  background: #e91e63;
  color: #fff;
  border-color: #e91e63;
}

.footer-bottom hr {
  border: none;
  border-top: 1px solid #000;
  margin-bottom: 10px;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }

  .footer {
    padding: 3rem 1rem 1rem 1rem;
  }

  .social-links {
    gap: 0.5rem;
  }

  .social-link {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
  }
}


/* footer section end */



/* ---------- About Section ---------- */
.about-intro {
  display: flex;
  gap: 16px;
  align-items: center;
  background: #ecfeff;
  padding: 15px;
  border-radius: 10px;
  margin: 20px auto;
  max-width: 1000px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.about-intro h3 {
  margin: 0 0 8px 0;
  font-size: 20px;
  color: #0f766e;
}

.about-intro p {
  margin: 0;
  color: #444;
  line-height: 1.5;
  font-size: 15px;
}

/* ---------- Founders Cards Section ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 30px auto;
  padding: 10px;
}

.card {
  display: flex;
  gap: 15px;
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* ---------- Avatar (Photo) ---------- */
.avatar {
  flex: 0 0 90px;
  height: 90px;
  border-radius: 10px;
  overflow: hidden;
}

.avatar img {
  width: 100%;
  height: 135%;
  object-fit: cover;
}

/* ---------- Info Section ---------- */
.info h2 {
  margin: 0;
  font-size: 18px;
  color: #0f172a;
}

.badge {
  display: inline-block;
  background: #d1fae5;
  color: #065f46;
  padding: 3px 8px;
  border-radius: 8px;
  font-size: 13px;
  margin-left: 8px;
}

.meta {
  font-size: 14px;
  color: #0f766e;
  margin: 5px 0;
}

.desc {
  color: #555;
  font-size: 14px;
  line-height: 1.5;
}

/* ---------- Skills ---------- */
.skills {
  margin: 10px 0;
}

.skill {
  display: inline-block;
  background: #f1f5f9;
  color: #0f766e;
  font-size: 13px;
  padding: 5px 8px;
  border-radius: 6px;
  margin: 3px;
}

/* ---------- Buttons ---------- */
.actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.btn {
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.2s;
}

.btn-primary {
  background: #0f766e;
  color: #fff;
}

.btn-primary:hover {
  background: #0d5f59;
}

.btn-outline {
  background: transparent;
  border: 1px solid #0f766e;
  color: #0f766e;
}

.btn-outline:hover {
  background: #0f766e;
  color: #fff;
}

/* ---------- Repair Mesh Image Section start---------- */
.repair-mesh {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  font-size: 2.5rem;
}

/* ---------- Desktop View ---------- */
.repair-mesh img {
  width: 100%;
  height: 700px;
  /* 🖥️ Desktop ke liye bada image height */
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
}

/* ---------- Responsive Design for Mobile ---------- */
@media (max-width: 600px) {
  .repair-mesh {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 20px;
    text-align: center;
  }

  .repair-mesh img {
    width: 100%;
    height: 250px;
    /* Image full cover kare mobile view mai */
    object-fit: cover;
    /* No white gaps, image fit properly */
    border-radius: 12px;
    display: block;
  }

  .repair-mesh h3 {
    font-size: 1.6rem;
    margin-top: 10px;
    color: #222;
  }

  .repair-mesh p {
    font-size: 13px;
    padding: 0 10px;
    color: #444;
    line-height: 1.4;
  }
}

/* ---------- Repair Mesh Image Section end---------- */

/* ---------- Repair Services Section start---------- */

.repair-section {
  background-color: #fff;
  text-align: center;
  padding: 60px 20px;
  font-family: "Poppins", sans-serif;
}

.repair-section h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 50px;
  position: relative;
}

.repair-section h2::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #f39c12;
  display: block;
  margin: 10px auto;
  border-radius: 2px;
}

.repair-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.repair-box {
  background: #fafafa;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.repair-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.repair-box img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
}

.repair-box h3 {
  color: #333;
  font-size: 2.3rem;
  margin-bottom: 10px;
}

.repair-box p {
  color: #666;
  font-size: 1.4rem;
  line-height: 1.6;
}

/* ---------- Repair Services Section end---------- */


.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.footer-section {
  flex: 1;
  min-width: 250px;
  text-align: center;
}

.footer-logo {
  width: 100px;
  margin-bottom: 10px;
}

.tagline {
  font-weight: 500;
  color: #666;
  margin-bottom: 10px;
  font-size: 14px;
}

.contact-note {
  color: #555;
  font-size: 14px;
  margin-bottom: 10px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  margin-bottom: 6px;
  font-size: 15px;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.btn-ws,
.btn-enquire {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 25px;
  border: none;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-ws {
  background-color: #25D366;
  color: white;
}

.btn-ws:hover {
  background-color: #1ebe5a;
}

.ws-icon {
  width: 20px;
  height: 20px;
}

.btn-enquire {
  background-color: #007bff;
  color: white;
  text-decoration: none;
}

.btn-enquire:hover {
  background-color: #0056b3;
}

.ws-options {
  display: none;
  margin-top: 10px;
  background: #f7f7f7;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.ws-options p {
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  font-size: 15px;
}

.ws-options a {
  display: block;
  margin: 6px 0;
  text-decoration: none;
  color: #25D366;
   font-size: 15px;
}

.ws-options a:hover {
  text-decoration: underline;
}

/* Social Links */
.social-links a {
  color: #e6007e;
  margin: 0 8px;
  font-size: 20px;
  transition: 0.3s ease;
}

.social-links a:hover {
  color: #c30068;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  border-top: 1px solid #ddd;
  margin-top: 20px;
  padding-top: 10px;
  font-size: 14px;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
