* {
  font-family: Arial, Helvetica, sans-serif;
}

.logo-img {
  margin-left: 30px;
}

.bg-skyblue {
  background-color: #ffffff;
}
.top-bar {
  background-color: black;
  color: white;
  padding-bottom: 25px;
  padding: 10px 0;
}
.top-bar span {
  font-size: 14px;
}
.navbar-brand {
  font-size: 1.8rem;
  font-weight: bold;
}



.navbar-nav .nav-link {
  font-size: 18px;
  margin-right: 20px;
  color: #282828;
  font-weight: bold;
}

/* Change background and text color on hover for nav links */
.navbar-nav .nav-link:hover {
  color: #0db7fa !important; 
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}


 /*For dropdown items */
/*.dropdown-menu .dropdown-item:hover {*/
/*  background-color: #87ceeb;*/
/*  color: white;*/
/*  transition: all 0.3s ease-in-out;*/
/*}*/

/* hero section */

#hero {
  position: relative;
}

.carousel-caption {
  bottom: 20%;
}

.carousel-caption h1 {
  font-size: 3rem;
  font-weight: bold;
  text-shadow: 2px 2px 10px #000000b3;
}

.carousel-caption p {
  font-size: 1.2rem;
  text-shadow: 1px 1px 8px #00000099;
}

.carousel-item img {
  height: 100vh;
  object-fit: cover;
}

.carousel-item button {
  position: relative;
  overflow: hidden;
  border: 1px solid #2ea1cbfb;
  padding: 15px 40px;
  font-weight: bold;
  font-size: 17px;
  margin-top: 15px;
  background-color: transparent;
  color: white;
  transition: color 0.4s ease;
  z-index: 1;
}

.carousel-item button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background-color: #2ea1cbfb;
  z-index: -1;
  transition: height 0.4s ease;
}

.carousel-item button:hover::before {
  height: 100%;
}

.carousel-item button:hover {
  color: white;
  border: 1px solid transparent;
}

/* title section */

.title-img {
  margin-top: 100px;
  margin-bottom: 30px;
}
.title-section h6 {
  color: #0182b5;
  margin-top: 100px;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: bold;
}

.title-section h2 {
  font-weight: bold;
  margin-bottom: 10px;
}
.title-section p {
  color: #6e6e74;
  margin-bottom: 20px;
  font-size: 18px;
  margin-top: 20px;
}

.title-section button {
  position: relative;
  overflow: hidden;
  border: 1px solid #2ea1cbfb;
  padding: 15px 40px;
  font-weight: bold;
  font-size: 17px;
  margin-top: 15px;
  background-color: transparent;
  color: #000000;
  transition: color 0.4s ease;
  z-index: 1;
}

.title-section button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background-color: #2ea1cbfb;
  z-index: -1;
  transition: height 0.4s ease;
}

.title-section button:hover::before {
  height: 100%;
}

.title-section button:hover {
  color: white;
  border: 1px solid transparent;
}

/* Our product */

.our-pruduct h1 {
  font-weight: bold;
  margin-top: 70px;
  margin-bottom: 20px;
}
.our-pruduct p {
  margin-top: 20px;
  font-size: 20px;
  margin-bottom: 50px;
  color: #282828;
}

.product-info img {
  margin-top: 30px;
  margin-bottom: 40px;
}

.product-info p {
  font-size: 20px;
  margin-top: 10px;
  margin-left: 15px;
  color: #0182b5;
  font-weight: bold;
  position: relative;
  display: inline-block;
  cursor: pointer;
  text-transform: uppercase;
}

/* Underline effect on hover */
.product-info p::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0%;
  background-color: #0182b5;
  transition: width 0.3s ease;
}

.product-info p:hover::after {
  width: 100%;
}
/* year of expince */
.stats-section {
  background-color: #f4faff;
  padding: 60px 0;
}

.stats-box {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 40px 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.stats-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.stats-box i {
  font-size: 40px;
  color: #0182b5;
  margin-bottom: 15px;
}

.stats-box h3 {
  font-size: 32px;
  color: #222;
  margin-bottom: 10px;
  font-weight: bold;
}

.stats-box p {
  font-size: 18px;
  color: #666;
  margin: 0;
}

/* service sction */

.services-section {
  background-color: #f4faff;
  padding: 60px 0;
}

.carousel-item {
  min-height: 200px;
}

.service-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-card i {
  font-size: 40px;
  color: #0182b5;
  margin-bottom: 15px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.carousel-control-prev,
.carousel-control-next {
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
}

/* client section  */

.client-box img {
  max-height: 80px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.client-box img:hover {
  transform: scale(1.1);
}

.client-box p {
  margin-top: 10px;
  color: #333;
}

/* contact section */



.heading-edit {
  margin-top: 50px;
}


.heading-edit h1 {
  color: #5f687b;
  margin-bottom: 20px;
  font-size: 34px;
}

.heading-edit p {
  font-weight: 450;
  margin-bottom: 50px;
}

.contact-form{
  margin-bottom: 100px !important;
}


.my-info h3 {
  color: #4f4e4e;
  font-size: 26px;
  padding-top: 30px;
  padding-left: 0px;
}

.my-info p {
  margin-left: 50px;
  margin-top: -10px;
  font-size: 16px;
}

.my-info i {
  border: 0px solid #ececec;
  background-color: #95bccb;
  padding: 13px 15px 13px 15px;
  border-radius: 50px;
  font-size: 20px;
  transition: backgound-color 0.5s;
  transition: color 0.5s;
}

.my-info i:hover {
  background-color: #0182b5;
  color: #fff;
}

.edit-it {
  border: 0px solid rgb(247, 243, 243);
  box-shadow: 1px 1px 5px #dcd4d4;
  margin-bottom: 50px;
  padding: 10px 10px 10px 10px;
}

.my-info iframe {
  margin-top: 30px;
  margin-bottom: 10px;
}

.form-edit {
  border: 0px solid rgb(247, 243, 243);
  padding: 20px 20px 20px 20px;
  margin-bottom: 10px;
  box-shadow: 1px 1px 5px #dbcccc;
}

.name-edit {
  height: 50px;
  margin-top: 20px;
}

.name-edit:focus {
  outline: none;
  border: 1.5px solid #0182b5;
}

.subject-edit {
  height: 50px;
  margin-bottom: 20px;
  margin-top: 20px;
}

.subject-edit:focus {
  outline: none;
  border: 1.5px solid #0182b5;
}

.e-mail-edit {
  height: 50px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.e-mail-edit:focus {
  outline: 0px;
  border: 1.5px solid #0182b5;
}

.message-edit {
  height: 334px !important;
  /* margin-top: 20px; */
  margin-bottom: 18px;
}

.message-edit:focus {
  outline: none;
  border: 1.5px solid#0182b5;
}

.btn2 {
  position: relative;
  overflow: hidden;
  border: 1px solid #2ea1cbfb;
  padding: 15px 40px;
  font-weight: bold;
  font-size: 17px;
  margin-top: 15px;
  background-color: transparent;
  color: black;
  transition: color 0.4s ease;
  z-index: 1;
}

.btn2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background-color: #2ea1cbfb;
  z-index: -1;
  transition: height 0.4s ease;
}

.btn2:hover::before {
  height: 100%;
}

.btn2:hover {
  color: white;
  border: 1px solid transparent;
}

.form-sub {
  color: #5f687b;
  font-size: 34px;
  padding-bottom: 0;
}


/* footer */

.footer-btn {
  position: relative;
  overflow: hidden;
  border: 1px solid #2ea1cbfb;
  padding: 15px 40px;
  font-weight: bold;
  text-decoration: none;
  font-size: 17px;
  margin-top: 20px;
  background-color: transparent;
  color: #ffffff;
  transition: color 0.4s ease;
  z-index: 1;
}

.footer-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background-color: #2ea1cbfb;
  z-index: -1;
  transition: height 0.4s ease;
}

.footer-btn:hover::before {
  height: 100%;
}

.footer-btn:hover {
  color: white;
  border: 1px solid transparent;
}
