/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  font-display: swap;
  color: #272829;
}

a {
  color: #000000
}

a:hover {
  color: #37b3ed;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
}



/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top  {
  left: calc(100% - 55px);
  right: auto;
}

.back-to-top {
  position: fixed;
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  bottom: 15px;
  background: #0077B5;
  color: #fff;
  transition: display 0.5s ease-in-out;
  z-index: 99999;
}

.back-to-top i {
  font-size: 24px;
  position: absolute;
  top: 7px;
  left: 8px;
}

.back-to-top:hover {
  color: #fff;
  background: #149ddd;
  transform: scale(1.1);
  transition: background 0.3s ease-in-out;
 
}




/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 300px;
  transition: all ease-in-out 0.5s;
  z-index: 9997;
  transition: all 0.5s;
  padding: 0 15px;
  background:#000000;
  overflow-y: auto;
}

#header .profile img {
  margin: 15px auto;
  display: block;
  width: 120px;
  border: 1px solid #ffffff;
}

#header .profile h1 {
  font-size: 24px;
  margin: 0;
  padding: 0;
  font-weight: 600;
  -moz-text-align-last: center;
  text-align-last: center;
  font-family: "Poppins", sans-serif;
}

#header .profile h1 a, #header .profile h1 a:hover {
  color: #ffffff;
  text-decoration: none;
}

#header .profile .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #ffffff;
  color: 	#000000;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#header .profile .social-links a:hover {
  background: 	#0077B5;
  color: #ffffff;
  text-decoration: none;
}

#main {
  margin-left: 300px;
}

@media (max-width: 1199px) {
  #header {
    left: -300px;
  }
  #main {
    margin-left: 0;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu {
  padding-top: 30px;
}

.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
}

.nav-menu a {
  display: flex;
  align-items: center;
  color: #ffffff;
  padding: 12px 15px;
  margin-bottom: 8px;
  transition: 0.1s;
  font-size: 17px;
}

.nav-menu a i {
  font-size: 24px;
  padding-right: 8px;
  color: #ffffff;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  text-decoration: none;
  color: #0077B5
}

.nav-menu a:hover i, .nav-menu .active > a i, .nav-menu li:hover > a i {
  color: 		#0077B5
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #0077B5
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active #header {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Home Section
--------------------------------------------------------------*/

.home {
  position: relative;
  width: 100%;
  height: auto;
  display: -moz-inline-stack;
  align-items: center;
  padding: 10px 0;
  overflow: hidden;
  background: #1B1C1D;
  background-size: cover;
}

.home .content {
  position: relative;
  z-index: 2;
  text-align: left;
  margin-left: 1.5%; 
  color: #000000;
}

.home .content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: .4 rem;
  color: #ffffff;
 
}

.home .content h2  span { 
  color: 	#0077B5;
}

.home .content h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: .2rem;
  color: #ffffff;
}

.home .content h3 span {
  color: 	#0077B5;
}


.typing-text {
  color: #0077B5;
  font-weight: bold;
  font-size: 1.5rem;
}

.home .content .btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1rem;
  color: #fff;
  background: #00bcd4;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
  
}

.home .content .btn:hover {
  background: #008c9e;
}



/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background: #f5f8fd;
}

.section-title {
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #000000;
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #0077B5
  bottom: 0;
  left: 0;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about-me-row {
  align-items: center;
}

.about .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: #0077B5;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 20px;
  padding-right: 2px;
  color: #0077B5;
}
.about .content ul li i {
  color: #0077B5;;
}
.about .content p:last-child {
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# Facts
--------------------------------------------------------------*/
.facts {
  padding-bottom: 30px;
}

.facts .count-box {
  padding: 30px;
  width: 100%;
}

.facts .count-box i {
  display: block;
  font-size: 44px;
  color: #0077B5
  float: left;
}

.facts .count-box span {
  font-size: 48px;
  line-height: 40px;
  display: block;
  font-weight: 700;
  color: #050d18;
  margin-left: 60px;
}

.facts .count-box p {
  padding: 15px 0 0 0;
  margin: 0 0 0 60px;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  color: #021127;
}

.facts .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #122f57;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.facts .count-box a:hover {
  color: #1f5297;
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills .progress {
  height: 50px;
  display: block;
  background: none;
}

.skills .progress .skill {
  padding: 10px 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #050d18;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: #dce8f8;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: .9s;
  background-color: #0077B5
}
/*--------------------------------------------------------------
# Flex
--------------------------------------------------------------*/


.flex .px-4 {
  border-radius: 10px; /* Rounded square shape */
  padding: 10px 20px; /* Adjust padding for better button-like appearance */
  background: #ffffff; /* Add a background color */
  transition: all 0.3s ease-in-out;
  margin: 5px; /* Add spacing between items */
  display: inline-block; /* Ensure items are inline */
  text-align: center; /* Center align text */
}

.flex .px-4:hover {
  background: #0077B5; /* Change background color on hover */
  color: #fff; /* Change text color on hover */
  transform: scale(1.1); /* Add a slight zoom effect */
}

/*--------------------------------------------------------------
# Resume
--------------------------------------------------------------*/
.resume .resume-title {
  font-size: 26px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #050d18;
}

.resume .resume-item {
  padding: 0 0 20px 20px;
  margin-top: -2px;
  border-left: 2px solid #0077B5;
  position: relative;
}

.resume .resume-item h4 {
  line-height: 18px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #050d18;
  margin-bottom: 10px;
}

.resume .resume-item h5 {
  font-size: 16px;
  background: #e4edf9;
  padding: 5px 15px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 10px;
}

.resume .resume-item ul {
  padding-left: 20px;
}

.resume .resume-item ul li {
  padding-bottom: 10px;
}

.resume .resume-item:last-child {
  padding-bottom: 0;
}

.resume .resume-item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  left: -9px;
  top: 0;
  background: #fff;
  border: 2px solid #0077B5;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 35px auto;
  list-style: none;
  text-align: center;
  background: #fff;
  border-radius: 50px;
  padding: 2px 15px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px 8px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #272829;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: #0077B5;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(249, 249, 249, 0.5); /* 0.5 is 50% transparency */
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap .portfolio-links {
  opacity: 1;
  left: 0;
  right: 0;
  bottom: -60px;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
  display: flex;
  justify-content: center;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  font-size: 28px;
  text-align: center;
  background: #0077B5;
  transition: 0.3s;
  width: 50%;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  background: rgba(20, 157, 221, 0.95);
}

.portfolio .portfolio-wrap .portfolio-links a + a {
  border-left: 0.5px solid #fff;
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-links {
  opacity: 1;
  bottom: 0;
}

button.show-all {
  background: #0077B5; /* Default background color */
  border: 0;
  padding: 10px 24px;
  color: #fff; /* Text color */
  transition: 0.4s;
  border-radius: 4px;
}

button.show-all:hover {
  background: #37b3ed; /* Hover background color */
}


/*--------------------------------------------------------------
# Achievements
--------------------------------------------------------------*/


.achievements {
  padding: 60px 0;
  background: #fff;
}

.achievements .icon-box {
  text-align: center;
  padding: 30px;
  background: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  gap: 10px;
 
}
.achievements .row {
  display: flex; /* Use flexbox for horizontal alignment */
  flex-wrap: wrap; /* Allow wrapping for smaller screens */
  gap: 20px; /* Add horizontal and vertical gap between achievements */
}

.achievements .icon-box {
  flex: 1 1 calc(33.333% - 20px); /* Adjust width for 3 items per row with gap */
  margin-bottom: 20px; /* Add vertical spacing */
}

.achievements .icon-box:hover {
  transform: translateY(-10px);
}

.achievements .icon {
  font-size: 40px;
  color: #0077B5;
  margin-bottom: 15px;
}

.achievements .title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.achievements .description {
  font-size: 14px;
  color: #555;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  box-sizing: content-box;
  text-align: center;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: #c3e8fa;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 15px 15px;
  padding: 20px;
  background: #fff;
  position: relative;
  margin-bottom: 35px;
  border-radius: 6px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .testimonial-item p::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 20px solid #fff;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  position: absolute;
  bottom: -20px;
  left: calc(50% - 20px);
}

.testimonials .owl-nav, .testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.testimonials .owl-dot.active {
  background-color: #0073aa !important;
}

@media (max-width: 767px) {
  .testimonials {
    margin: 30px 10px;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  padding-bottom: 130px;
}

.contact .info {
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .info i {
  font-size: 20px;
  color: #fff;
  width: 44px;
  height: 44px;
  background: #0077B5;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}

.address, .email, .phone {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.address i, .email i, .phone i {
  font-size: 24px;
  color: #0077B5;
}

.address h3, .email h3, .phone h3 {
  margin: 0;
  font-size: 18px;
  color: #333;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: #0077B5;
  color: #fff;
}

.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
  background: #37b3ed;
  color: #fff;
}

/*--------------------------------------------------------------
# Contact Form
--------------------------------------------------------------*/
.contact .email-form {
  width: 100%;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .email-form .form-group {
  margin-bottom: 20px;
}

.contact .email-form input, .contact .email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border: 1px solid #0073aa;
}

.contact .email-form input {
  height: 44px;
}

.contact .email-form textarea {
  padding: 10px 12px;
  resize: none;
}

.contact .email-form input:focus, .contact .email-form textarea:focus {
  border-color: #005f8c;
  box-shadow: none;
}

/* Input Group */
.contact .input-group {
  display: flex;
  align-items: center;
}

.contact .input-group-prepend {
  background-color: #0073aa;
  border: 1px solid #0073aa;
  border-radius: 5px 0 0 5px;
  padding: 7px;
  color: #fff;
  display: flex;
  align-items: center;
}

.contact .input-group-text {
  background-color: transparent;
  border: none;
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Submit Button */
.contact .btn-primary {
  background-color: #0073aa;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.contact .btn-primary:hover {
  background-color: #005f8c;
  color: #fff;
}

/* Submit Button Animation */
.contact .email-form button[type="submit"] {
  background: #0077B5;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .email-form button[type="submit"]:hover {
  background: #37b3ed;
}

/* Loading Animation */
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Align the icon with the textarea */
.input-group-prepend {
  display: flex;
  align-items: center; /* Vertically center the icon */
}

.input-group-text {
  display: flex;
  align-items: center; /* Center the icon inside the span */
  justify-content: center;
  background-color: #0073aa; /* Optional: Add background color */
  color: #fff; /* Optional: Icon color */
  border: 1px solid #0073aa; /* Optional: Border color */
  border-radius: 5px 0 0 5px; /* Rounded corners on the left */
}

textarea.form-control {
  resize: none; /* Disable resizing if needed */
  border-radius: 0 5px 5px 0; /* Rounded corners on the right */
}
/* Center the hCaptcha widget */
.contact .form-group .h-captcha {
  display: flex;
  justify-content: center; /* Horizontally center the hCaptcha */
  align-items: center; /* Vertically align the hCaptcha */
  margin: 15px 0; /* Add spacing above and below the hCaptcha */
}





/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background: #030b14;
  color: #fff;
}

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 300;
}

.breadcrumbs a{
  color: #4fb6e6;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 15px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #fff;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-container {
  position: relative;
}

.portfolio-details .portfolio-details-carousel {
  position: relative;
  z-index: 1;
}

.portfolio-details .portfolio-details-carousel .owl-nav, .portfolio-details .portfolio-details-carousel .owl-dots {
  margin-top: 5px;
  text-align: left;
}

.portfolio-details .portfolio-details-carousel .owl-dot {
  display: inline-block;
  margin: 0 10px 0 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.portfolio-details .portfolio-details-carousel .owl-dot.active {
  background-color: #0073aa !important;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  position: absolute;
  right: 0;
  bottom: -70px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 50px;
}

.portfolio-details .portfolio-description h2 {
  width: 50%;
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

@media (max-width: 768px) {
  .portfolio-details .portfolio-description h2 {
    width: 100%;
  }
  .portfolio-details .portfolio-info {
    position: static;
    margin-top: 30px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  padding: 15px;
  color: #f4f6fd;
  font-size: 14px;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 300px;
  z-index: 9999;
  background: #040b14;
}

#footer .copyright {
  text-align: center;
}

#footer .credits {
  padding-top: 5px;
  text-align: center;
  font-size: 13px;
  color: #eaebf0;
}

@media (max-width: 1199px) {
  #footer {
    position: static;
    width: auto;
    padding-right: 20px 15px;
  }
}


/*portfolio page*/
.portfolio-page-title h2:after{
  display: none;
}


/*show all button*/
button.show-all {
  background: #0077B5
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}
button.show-all:hover {
background: #37b3ed;
}


/*fb messenger chat*/

.back-to-top{
  /* left: 15px; */
  right: auto;
}

/*--------------------------------------------------------------
# Button Group
--------------------------------------------------------------*/
.button-group {
  display: flex;
  gap: 15px;
  justify-content: left;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn i {
  margin-right: 8px;
}

.btn-primary {
  background-color: #0077B5;
  color: #fff;
  border: 2px solid #149ddd;
}

.btn-primary:hover {
  background-color: #37b3ed;
  border-color: #c3e8fa;
}

.btn-secondary {
  background-color: #f5f5f5;
  color: #333;
  border: 2px solid #ddd;
}

.btn-secondary:hover {
  background-color: #37b3ed
  border-color: #ccc;
}

/*--------------------------------------------------------------
# Heading of Sections
--------------------------------------------------------------*/
.heading {
  font-size: 2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
}

/*--------------------------------------------------------------
# Scroll bar Sections
--------------------------------------------------------------*/

.heading i {
  color: 	#0077B5; /* Adjust the color to match your theme */
}

/* Scrollbar for WebKit-based browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 10px; /* Width of the scrollbar */
}

::-webkit-scrollbar-track {
  background: #f1f1f1; /* Background of the scrollbar track */
}

::-webkit-scrollbar-thumb {
  background: #0077B5; /* Color of the scrollbar thumb */
  border-radius: 5px; /* Rounded corners for the thumb */
}

::-webkit-scrollbar-thumb:hover {
  background: #0056b3; /* Color when hovering over the scrollbar thumb */
}

/* Scrollbar for Firefox */
* {
  scrollbar-width: thin; /* Thin scrollbar */
  scrollbar-color: #0077B5 #f1f1f1; /* Thumb color and track color */
}

/* Contact Form Styles */
.contact .form-group {
  margin-bottom: 20px;
}

.contact .input-group {
  display: flex;
  align-items: center;
}

.contact .input-group-prepend {
  background-color: #0073aa;
  border: 1px solid #0073aa;
  border-radius: 5px 0 0 5px;
  padding: 7px;
  color: #fff;
}

.contact .input-group-text {
  background-color: transparent;
  border: none;
  color: #fff;
  font-size: 18px;
}

.contact .form-control {
  border: 1px solid #0073aa;
  border-radius: 0 5px 5px 0;
  padding: 10px;
  font-size: 16px;
}

.contact .form-control:focus {
  border-color: #005f8c;
  box-shadow: none;
}

.contact .btn-primary {
  background-color: #0073aa;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.contact .btn-primary:hover {
  background-color: #005f8c;
  color: #fff;
}

/* Align the icon with the textarea */
.input-group-prepend {
  display: flex;
  align-items: center; /* Vertically center the icon */
}

.input-group-text {
  display: flex;
  align-items: center; /* Center the icon inside the span */
  justify-content: center;
  background-color: #0073aa; /* Optional: Add background color */
  color: #fff; /* Optional: Icon color */
  border: 1px solid #0073aa; /* Optional: Border color */
  border-radius: 5px 0 0 5px; /* Rounded corners on the left */
}

textarea.form-control {
  resize: none; /* Disable resizing if needed */
  border-radius: 0 5px 5px 0; /* Rounded corners on the right */
}



