body {
  background: #fff;
  color: pink;
  font-family: "Open Sans", sans-serif;
}

a {
  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: #51d8af;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  display: none;
  background: #50d8af;
  color: #fff;
  padding: 6px 12px 9px 12px;
  font-size: 16px;
  border-radius: 2px;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
}

.back-to-top:focus {
  background: #50d8af;
  color: #fff;
  outline: none;
}

.back-to-top:hover {
  background: #0c2e8a;
  color: #fff;
}

/*--------------------------------------------------------------
  # Top Bar
  --------------------------------------------------------------*/
#topbar {
  background: #fff;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

#topbar .contact-info a {
  line-height: 1;
  color: #555;
}

#topbar .contact-info a:hover {
  color: #50d8af;
}

#topbar .contact-info i {
  color: #50d8af;
  padding: 4px;
}

#topbar .contact-info .fa-phone {
  padding-left: 20px;
  margin-left: 20px;
  border-left: 1px solid #e9e9e9;
}

#topbar .social-links a {
  color: #555;
  padding: 4px 12px;
  display: inline-block;
  line-height: 1px;
  border-left: 1px solid #e9e9e9;
}

#topbar .social-links a:hover {
  color: #50d8af;
}

#topbar .social-links a:first-child {
  border-left: 0;
}

/*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
#header {
  padding: 14px 0;
  height: 84px;
  transition: all 0.5s;
  z-index: 997;
  background: #fff;
  box-shadow: 0px 6px 9px 0px rgba(0, 0, 0, 0.06);
}

#header #logo h1 {
  font-size: 42px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

#header #logo h1 a {
  color: #0c2e8a;
  line-height: 1;
  display: inline-block;
}

#header #logo h1 a span {
  color: #50d8af;
}

#header #logo img {
  padding: 0;
  margin: 0;
}

@media (max-width: 768px) {
  #header {
    padding: 20px 0;
    height: 74px;
  }

  .header-relative .nav-menu a {
    color: black !important;
  }


  #header #logo h1 {
    font-size: 34px;
  }

  #header #logo img {
    max-height: 40px;
  }
}

/*--------------------------------------------------------------
  # Intro Section
  --------------------------------------------------------------*/
#intro {
  width: 100%;
  height: 90vh;
  position: relative;
  overflow: hidden;
}

#intro video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ensures the video covers the area */
  z-index: -1;
  /* Places the video behind other content */
}

/* 
  .intro-content {
    position: relative;
    z-index: 1; 
  } */

#intro .intro-content {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

#intro .intro-content h2 {
  color: #0c2e8a;
  margin-bottom: 30px;
  font-size: 64px;
  font-weight: 700;
}

#intro .intro-content h2 span {
  color: #50d8af;
  text-decoration: underline;
}

@media (max-width: 767px) {
  #intro .intro-content h2 {
    font-size: 34px;
  }
}

#intro .intro-content .btn-get-started,
#intro .intro-content .btn-projects {
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px;
  border-radius: 2px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
}

#intro .intro-content .btn-get-started {
  background: #0c2e8a;
  border: 2px solid #0c2e8a;
}

#intro .intro-content .btn-get-started:hover {
  background: none;
  color: #0c2e8a;
}

#intro .intro-content .btn-projects {
  background: #50d8af;
  border: 2px solid #50d8af;
}

#intro .intro-content .btn-projects:hover {
  background: none;
  color: #50d8af;
}

#intro #intro-carousel {
  z-index: 8;
}

#intro #intro-carousel::before {
  content: "";
  background-color: rgba(255, 255, 255, 0.7);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 7;
}

#intro #intro-carousel .item {
  width: 100%;
  height: 60vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

/*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
/* Nav Menu Essentials */
.nav-menu,
.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
}

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

.nav-menu > li {
  float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
  display: block;
}

.nav-menu ul ul {
  top: 0;
  left: 100%;
}

.nav-menu ul li {
  min-width: 180px;
}

/* Nav Menu Arrows */
.sf-arrows .sf-with-ul {
  padding-right: 22px;
}

.sf-arrows .sf-with-ul:after {
  content: "\f107";
  position: absolute;
  right: 8px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
  content: "\f105";
}

/* Nav Meu Container */
#nav-menu-container {
  float: right;
  margin: 0;
}

@media (max-width: 768px) {
  #nav-menu-container {
    display: none;
  }
}

/* Nav Meu Styling */
.nav-menu a {
  padding: 10px 8px;
  text-decoration: none;
  display: inline-block;
  color: #0c2e8a;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 14px;
  outline: none;
}

.nav-menu li:hover > a,
.nav-menu > .menu-active > a {
  color: #50d8af;
}

.nav-menu > li {
  margin-left: 10px;
}

.nav-menu ul {
  padding: 10px;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  background: #fff;
}

.nav-menu ul li {
  transition: 0.3s;
}

.nav-menu ul li a {
  padding: 10px;
  color: #333;
  transition: 0.3s;
  display: block;
  font-size: 13px;
  text-transform: none;
}

.nav-menu ul li:hover > a {
  color: #50d8af;
}

.nav-menu ul ul {
  margin: 0;
}

/* Mobile Nav Toggle */
#mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  margin: 20px 20px 0 0;
  border: 0;
  background: none;
  font-size: 24px;
  display: none;
  transition: all 0.4s;
  outline: none;
  cursor: pointer;
}

#mobile-nav-toggle i {
  color: #555;
}

@media (max-width: 768px) {
  #mobile-nav-toggle {
    display: inline;
  }
}

/* Mobile Nav Styling */
#mobile-nav {
  position: fixed;
  top: 0;
  padding-top: 18px;
  bottom: 0;
  z-index: 998;
  background: rgba(52, 59, 64, 0.9);
  left: -260px;
  width: 260px;
  overflow-y: auto;
  transition: 0.4s;
}

#mobile-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#mobile-nav ul li {
  position: relative;
}

#mobile-nav ul li a {
  color: #fff;
  font-size: 16px;
  overflow: hidden;
  padding: 10px 22px 10px 15px;
  position: relative;
  text-decoration: none;
  width: 100%;
  display: block;
  outline: none;
}

#mobile-nav ul li a:hover {
  color: #fff;
}

#mobile-nav ul li li {
  padding-left: 30px;
}

#mobile-nav ul .menu-has-children i {
  position: absolute;
  right: 0;
  z-index: 99;
  padding: 15px;
  cursor: pointer;
  color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
  color: #50d8af;
}

#mobile-nav ul .menu-item-active {
  color: #50d8af;
}

#mobile-body-overly {
  width: 100%;
  height: 100%;
  z-index: 997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(52, 59, 64, 0.9);
  display: none;
}

/* Mobile Nav body classes */
body.mobile-nav-active {
  overflow: hidden;
}

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

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

/*--------------------------------------------------------------
  # Sections
  --------------------------------------------------------------*/
/* Sections Header
  --------------------------------*/
.section-header {
  margin-bottom: 30px;
}

.section-header h2 {
  color: #0c2e8a;
  font-weight: 700;
  position: relative;
  padding-bottom: 20px;
}

.section-header h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  /* background: #50d8af; */
  bottom: 0;
  left: 0;
}

.section-header p {
  padding: 0;
  margin: 0;
}

/* About Section
  --------------------------------*/
#about {
  padding: 60px 0 30px 0;
}

#about .about-img {
  overflow: hidden;
}

#about .about-img img {
  margin-left: -15px;
  max-width: 100%;
}

@media (max-width: 768px) {
  #about .about-img {
    height: auto;
  }

  #about .about-img img {
    margin-left: 0;
    padding-bottom: 30px;
  }
}

#about .content h2 {
  color: #0c2e8a;
  font-weight: 700;
  font-size: 32px;
  font-family: "Raleway", sans-serif;
}

#about .content h3 {
  color: #555;
  font-weight: 300;
  font-size: 17px;
  line-height: 26px;
  /* font-style: italic; */
  font-family: "Open Sans", sans-serif;
}

#about .content p {
  line-height: 26px;
}

#about .content p:last-child {
  margin-bottom: 0;
}

#about .content i {
  font-size: 20px;
  padding-right: 4px;
  color: #50d8af;
}

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

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

/* Services Section
  --------------------------------*/
#services {
  padding: 0 0 0 0;
}

#services .box {
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 10px 10px 15px rgba(73, 78, 92, 0.1);
  background: #fff;
  transition: 0.4s;
}

#services .box:hover {
  box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
}

#services .box .icon {
  float: left;
}

#services .box .icon i {
  color: #444;
  font-size: 64px;
  transition: 0.5s;
  line-height: 0;
  margin-top: 34px;
}

#services .box .icon i:before {
  background: #0c2e8a;
  background: linear-gradient(45deg, #50d8af 0%, #a3ebd5 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#services .box h4 {
  margin-left: 100px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 22px;
}

#services .box h4 a {
  color: #444;
}

#services .box p {
  font-size: 14px;
  margin-left: 100px;
  margin-bottom: 0;
  line-height: 24px;
}

@media (max-width: 767px) {
  #services .box .box {
    margin-bottom: 20px;
  }

  #services .box .icon {
    float: none;
    text-align: center;
    padding-bottom: 15px;
  }

  #services .box h4,
  #services .box p {
    margin-left: 0;
    text-align: center;
  }
}

/* Clients Section
  --------------------------------*/
#clients {
  padding: 30px 0;
}

#clients img {
  max-width: 100%;
  transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
  padding: 20px 0;
}

/* #clients img:hover {
    transform: scale(1.05);
    opacity: 1;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.3);
} */

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

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

#clients .owl-dot.active {
  background-color: #50d8af;
}

/* Our Portfolio Section
  --------------------------------*/
#portfolio {
  background: #fff;
  padding: 30px 0;
}

#portfolio .portfolio-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}

#portfolio .portfolio-item {
  overflow: hidden;
  position: relative;
  padding: 0;
  vertical-align: middle;
  text-align: center;
}

#portfolio .portfolio-item h2 {
  color: #ffffff;
  font-size: 24px;
  margin: 0;
  text-transform: capitalize;
  font-weight: 700;
}

#portfolio .portfolio-item img {
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
  width: 100%;
}

#portfolio .portfolio-item:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

#portfolio .portfolio-item:hover .portfolio-overlay {
  opacity: 1;
  background: rgba(0, 0, 0, 0.7);
}

#portfolio .portfolio-info {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* Testimonials Section
  --------------------------------*/
/* General Section Styles */
#testimonials {
  background-color: #f9f9f9; /* Soft background */
  position: relative;
  overflow: hidden;
}

/* Section Header Styles */
#testimonials .section-header {
  margin-bottom: 60px;
}

#testimonials .section-header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

#testimonials .section-header p {
  font-size: 1.2rem;
  color: #777;
  line-height: 1.8;
  font-family: "Roboto", sans-serif;
  max-width: 750px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Swiper Styles */
.swiper-container {
  padding: 0 20px;
}

.swiper-slide {
  display: flex;
  justify-content: center;
}

/* Testimonial Item Styles */
.testimonial-item {
  background-color: #fff;
  border-radius: 15px;
  padding: 40px 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  text-align: center;
}

.testimonial-item:hover {
  transform: translateY(-10px); /* Hover effect for lift */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.testimonial-item p {
  font-style: italic;
  color: #555;
  font-size: 1.2rem;
  line-height: 1.8;
  position: relative;
  padding: 20px;
}

.testimonial-item p img {
  width: 35px;
  position: absolute;
  top: -30px;
}

.testimonial-item img.quote-sign-left {
  left: 10px;
}

.testimonial-item img.quote-sign-right {
  right: 10px;
}

.testimonial-item .testimonial-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.testimonial-item .testimonial-img:hover {
  transform: scale(1.1); /* Hover effect on image */
}

.testimonial-item h3 {
  font-size: 1.7rem;
  font-weight: 600;
  color: #333;
  margin-top: 20px;
}

.testimonial-item h4 {
  font-size: 1.2rem;
  color: #777;
  font-weight: 500;
  margin-top: 5px;
}

/* Pagination Style */
.swiper-pagination {
  text-align: center;
  margin-top: 30px;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 6px;
  background-color: #ccc;
  transition: background-color 0.3s ease;
}

.swiper-pagination-bullet:hover,
.swiper-pagination-bullet-active {
  background-color: #333; /* Active bullet color */
}

/* Responsive Design */
@media (max-width: 768px) {
  #testimonials .section-header h2 {
    font-size: 2.2rem;
  }
  .job-card {
    width: 100% !important;
  }

  #testimonials .section-header p {
    font-size: 1rem;
  }

  .testimonial-item {
    padding: 30px 20px;
  }

  .testimonial-item h3 {
    font-size: 1.5rem;
  }

  .testimonial-item h4 {
    font-size: 1rem;
  }
}

@media (min-width: 480px) {
}

@media (max-width: 480px) {
  .testimonial-item {
    padding: 25px 15px;
  }

  .team-home {
    display: none !important;
  }

  .benefit-card {
    width: 100% !important;
  }

  .buttons {
    flex-direction: column;
    gap: 10px !important;
  }

  .testimonial-title h1 {
    font-size: larger !important;
  }

  .testimonial-content {
    padding: 5px !important;
  }

  .testimonial-item {
    padding: 5px !important;
  }

  .testimonial-page-wrapper {
    max-width: 100% !important;
  }

  .job-card {
    width: 100% !important;
  }

  .testimonial-item .testimonial-img {
    width: 100px;
    height: 100px;
  }

  .testimonial-item h3 {
    font-size: 1.3rem;
  }

  .testimonial-item h4 {
    font-size: 0.9rem;
  }
}

/* Call To Action Section
  --------------------------------*/
#call-to-action {
  background: #081e5b;
  background-size: cover;
  padding: 40px 0;
}

#call-to-action .cta-title {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

#call-to-action .cta-text {
  color: #fff;
  text-align: justify;
}

@media (min-width: 769px) {
  #call-to-action .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

#call-to-action .cta-btn {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 26px;
  border-radius: 3px;
  transition: 0.5s;
  margin: 10px;
  border: 3px solid #fff;
  color: #fff;
  text-decoration: none;
}

#call-to-action .cta-btn:hover {
  background: #50d8af;
  border: 3px solid #50d8af;
}

/* Our Team Section
  --------------------------------*/
#team {
  background: #fff;
  padding: 30px 0 0 0;
}

#team .member {
  text-align: center;
  margin-bottom: 20px;
}

#team .member .pic {
  overflow: hidden;
  text-align: center;
}

#team .member .pic img {
  max-width: 100%;
  max-height: 250px;
}

#team .member .details {
  background: #50d8af;
  color: #fff;
  padding: 15px;
  border-radius: 0 0 3px 3px;
}

#team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

#team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

#team .member .social {
  margin-top: 5px;
}

#team .member .social a {
  color: #fff;
}

#team .member .social i {
  font-size: 16px;
  margin: 0 2px;
}

/* Contact Section
  --------------------------------*/
#contact {
  padding: 30px 0;
}

#contact .contact-info {
  margin-bottom: 20px;
  text-align: center;
}

#contact .contact-info i {
  font-size: 48px;
  display: inline-block;
  margin-bottom: 10px;
  color: #50d8af;
}

#contact .contact-info address,
#contact .contact-info p {
  margin-bottom: 0;
  color: #000;
}

#contact .contact-info h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: #50d8af;
}

#contact .contact-info a {
  color: #000;
  text-decoration: none;
}

#contact .contact-info a:hover {
  color: #50d8af;
}

#contact .contact-address,
#contact .contact-phone,
#contact .contact-email {
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  #contact .contact-address,
  #contact .contact-phone,
  #contact .contact-email {
    padding: 20px 0;
  }
}

@media (min-width: 768px) {
  #contact .contact-phone {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
  }
}

#contact #google-map {
  height: 100%;
  margin-bottom: 20px;
}

@media (max-width: 576px) {
  #contact #google-map {
    margin-top: 20px;
  }
}

#contact .form #sendmessage {
  color: #50d8af;
  border: 1px solid #50d8af;
  display: none;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #errormessage {
  color: red;
  display: none;
  border: 1px solid red;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #sendmessage.show,
#contact .form #errormessage.show,
#contact .form .show {
  display: block;
}

#contact .form .validation {
  color: red;
  display: none;
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 13px;
}

#contact .form input,
#contact .form textarea {
  padding: 10px 14px;
  border-radius: 0;
  box-shadow: none;
  font-size: 15px;
}

#contact .form button[type="submit"] {
  background: #50d8af;
  border: 0;
  border-radius: 3px;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  cursor: pointer;
}

#contact .form button[type="submit"]:hover {
  background: #2dc899;
}

/*--------------------------------------------------------------
  # Footer
  --------------------------------------------------------------*/
#footer {
  background: #f2f5f8;
  padding: 0 0 30px 0;
  font-size: 14px;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  text-align: center;
  font-size: 13px;
  color: #555;
}

#footer .credits a {
  color: #0c2e8a;
}

/* PrimaryHeader.css */
#topbar {
  background-color: #f8f9fa; /* Light background for the top bar */
  padding: 5px 0 5px;
}

/* .contact-info {
    font-size: 14px;
    color: #333;
  }
  
  .contact-info i {
    margin-right: 8px;
  }
  
  .contact-info a {
    color: #007bff;
    text-decoration: none;
  }
  
  .contact-info a:hover {
    text-decoration: underline;
  }
  
  .social-links a {
    margin-left: 15px;
    font-size: 16px;
    color: #333;
    transition: color 0.3s ease;
  } */

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

/* Responsive layout adjustments */
@media (max-width: 767px) {
  .contact-info {
    font-size: 12px;
  }

  .social-links a {
    font-size: 14px;
  }

  .nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column !important;
  }
}

/* General header styles */

#nav-menu-container {
  display: flex;
  justify-content: center;
}

.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
}

.nav-menu li {
  margin: 0 10px;
}

.nav-menu a {
  text-decoration: none;
  color: #0c2e8a;
  font-size: 16px;
  padding: 10px;
}

/* Toggle button (hamburger menu) for mobile screens */
.menu-toggle {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.menu-toggle .bar {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 4px 0;
}

/* Media Queries */
@media (max-width: 768px) {
  #nav-menu-container {
    display: none; /* Hide the navigation on small screens */
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  }

  #nav-menu-container.open {
    display: flex; /* Show the navigation when open */
  }

  .menu-toggle {
    display: block; /* Show hamburger button */
  }
}

/* Initially, the header is static and sits on top of the content */
#header {
  position: relative; /* Default state */
  z-index: 10; /* Ensure it's above other content */
  transition: top 0.3s ease; /* Smooth transition when it becomes fixed */
}

/* The fixed class applies when the header should become fixed at the top */
#header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff; /* Optional: Change background when fixed */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Optional: Add shadow for visibility */
  z-index: 1000; /* Make sure the header stays on top */
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  margin: 20px 0;
}

.form-container {
  background-color: #f8f9fa; /* Light background for the form */
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  flex: 1;
  margin-right: 15px; /* Space between form and map */
}

.form-title {
  margin-bottom: 20px;
  text-align: center;
  color: #343a40; /* Darker text for better readability */
}

.success-alert {
  margin-bottom: 15px; /* Space below success alert */
}

.form-input {
  border-radius: 5px; /* Rounded corners for inputs */
}

.submit-button {
  margin-top: 10px; /* Space above the button */
}

.map-container {
  border-radius: 8px;
  overflow: hidden; /* To ensure the iframe fits well */
  flex: 1; /* Make the map section flexible */
}

.map-iframe {
  border: none; /* Remove default border */
  width: 100%; /* Make the iframe responsive */
  height: 100%; /* Make the iframe responsive */
}

/* Custom styles for the form */
.team-form {
  margin: 0 auto;
  padding: 2rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.team-form label {
  font-weight: bold;
}

.team-form input,
.team-form textarea {
  border-radius: 5px;
  box-shadow: none;
}

.team-form button {
  border-radius: 5px;
}

.team-form textarea {
  resize: vertical;
}

/* Add some spacing to the form fields */
.form-group-x {
  margin-bottom: 1.5rem;
}

.btn-x {
  padding: 0.75rem;
  font-size: 1.1rem;
}

/* ClientPage.css */

/* Styling for the Clients Section */
#clients {
  padding: 60px 0;
  background-color: #f8f8f8;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: bold;
  color: #333;
}

.section-header p {
  color: #777;
  font-size: 16px;
  line-height: 1.6;
  max-width: 85%;
  margin: 0 auto;
  text-align: center;
}

/* Carousel and Client Cards */
.clients-carousel {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.client-card {
  width: 150px;
  height: 150px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease-in-out;
}

.client-card:hover {
  transform: translateY(-10px);
}

.client-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

.owl-carousel .owl-nav,
.owl-carousel .owl-dots {
  display: none; /* Hide navigation and dots for carousel */
}

/* Responsive Design */
@media (max-width: 768px) {
  .clients-carousel {
    justify-content: space-evenly;
  }

  .client-card {
    width: 120px;
    height: 120px;
  }
}

/* careers  */

/* Hero Section */
.hero-section {
  background: linear-gradient(
      45deg,
      rgba(6, 69, 173, 0.8),
      rgba(4, 132, 130, 0.8)
    ),
    url("../img/bg-sub.jpg") no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 70px 0;
  position: relative;
  animation: fadeInUp 1s ease-out;
}
.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
  /* color: #379dbf;  */
  animation: slideUp 1s ease-out;

  /* Adding multiple light color effects */
  /* text-shadow: 0 0 8px rgba(255, 182, 193, 0.7),
   0 0 20px rgba(173, 216, 230, 0.6),
     0 0 30px rgba(255, 255, 224, 0.5),
     0 0 40px rgba(255, 228, 225, 0.4); */
}

.hero-description {
  font-size: 1.3rem;
  margin-top: 20px;
  animation: fadeIn 1.2s ease-out;
}

.btn-cta {
  background-color: #2eb2ac; /* Dark Green */
  color: white;
  padding: 15px 35px;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 30px;
  margin-top: 30px;
  display: inline-block;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.btn-cta:hover {
  background-color: #50bb92; /* Light Green */
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* Job Listings Section */
.job-listings-section {
  background-color: #f9f9f9;
  padding: 80px 0;
  animation: fadeIn 2s ease-out;
}

.job-listings-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #379dbf; /* Light Blue */
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.job-cards {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

/* Hover Effects and Transitions */
.job-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 30%;
  padding: 30px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
  transform: scale(0.98);
  height: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-card:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.job-card:hover .job-card-title {
  color: #2eb2ac; /* Dark Green */
}

.job-card-title {
  color: #446ca4; /* Dark Blue */
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.job-card-location {
  font-size: 1.1rem;
  color: #777;
  margin-bottom: 15px;
}

.job-card-description {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.5;
}

.btn-apply {
  background-color: #2eb2ac; /* Dark Green */
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  position: absolute;
  bottom: 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-apply:hover {
  background-color: #2eb2ac; /* Light Green */
  transform: scale(1.05);
  color: white;
}

/* Benefits Section */
.benefits-section {
  padding: 80px 0;
  background-color: #f5f5f5;
  animation: fadeIn 2s ease-out;
}

.benefits-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #379dbf; /* Light Blue */
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.benefits-cards {
  display: flex;
  justify-content: space-between;
  /* gap: 30px; */
  flex-wrap: wrap;
}

.benefit-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 23%;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
  font-size: 4rem;
  color: #379dbf; /* Light Blue */
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  color: #2eb2ac; /* Dark Green */
}

.benefit-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #379dbf; /* Light Blue */
  margin-bottom: 15px;
}

.benefit-description {
  font-size: 1.1rem;
  color: #555;
}

/* Call to Action Section */
.apply-section {
  background-color: #379dbf; /* Light Blue */
  color: white;
  text-align: center;
  padding: 60px 0;
  animation: fadeIn 2s ease-out;
}

.apply-title {
  font-size: 2.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: white;
}

.apply-description {
  font-size: 1.25rem;
  margin-top: 20px;
}

.btn-cta {
  background-color: #2eb2ac; /* Dark Green */
  color: white;
  padding: 15px 35px;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 30px;
  margin-top: 30px;
  display: inline-block;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-cta:hover {
  background-color: #2eb2ac; /* Light Green */
  transform: scale(1.05);
  color: white;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #379dbf; /* Light Blue */
  padding: 15px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

.navbar a {
  color: white;
  font-weight: 600;
  transition: color 0.3s ease;
}

.navbar a:hover {
  color: #2eb2ac; /* Dark Green */
}

/* Scroll Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* portfolio  */

/* Global Styles */

.custom-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Portfolio Section */
.portfolio-wrapper {
  background: rgba(255, 255, 255, 0.8); /* Light background */
  border-radius: 15px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px); /* Glassmorphism effect */
  padding: 50px 40px;
  margin-top: 40px;
  animation: fadeIn 1s ease-in-out;
}

/* Header Section */
.custom-text-center {
  text-align: center;
  margin-bottom: 40px;
}

.custom-title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.custom-subtitle {
  font-size: 1.5rem;
  color: #777;
  margin-top: 10px;
}

/* Logo Styling */
.custom-icon-circle {
  border-radius: 50%;
  border: 4px solid #0099cc;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.custom-icon-circle:hover {
  transform: scale(1.1);
}

/* Swipe.js Carousel Styles */
.custom-carousel {
  width: 100%;
  overflow: hidden;
}

.swipe-wrap {
  display: flex;
  transition: transform 0.3s ease;
}

.custom-card {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  margin-right: 20px; /* Space between cards */
  min-width: 300px; /* Set minimum width for each card */
}

.custom-card:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
}

.custom-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.custom-card-body {
  text-align: center;
}

.custom-card-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.custom-card-text {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 15px;
}

/* Animations */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .custom-title {
    font-size: 2.5rem;
  }

  .custom-subtitle {
    font-size: 1.25rem;
  }

  .custom-card-img {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .custom-title {
    font-size: 2rem;
  }

  .custom-subtitle {
    font-size: 1rem;
  }

  .custom-card-img {
    height: 160px;
  }

  .custom-card-title {
    font-size: 1.4rem;
  }

  .custom-card-text {
    font-size: 1rem;
  }
}

/* OurTeams.css */
.team-section {
  padding: 25px 0;
  background: linear-gradient(135deg, #f5f9fd, #e0efff);
  position: relative;
}
.flex-container {
  display: flex;
  justify-content: left;
}

.section-header h2 {
  
  font-weight: 800;
  text-align: center;
  margin-bottom: 10px;
  color: #0c2e8a;
  /* font-family: 'auto'; */
  letter-spacing: 3px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

/* The grid layout for team members */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
  padding: 0 15px;
}

/* Individual team member card */
.team-member {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
  cursor: pointer;
}

/* Image section of the team member */
.member-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.team-member:hover .member-image {
  transform: scale(1.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.member-image img {
  width: 100%;
  height: 70%;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 15px;
  max-width: 200px;
}

/* Details section of the team member */
.member-details {
  padding: 30px 20px;
  text-align: center;
  color: #333;
  background-color: #fff;
}

.member-details h4 {
  font-size: 30px;
  font-weight: 600;
  color: #333;
  margin: 10px 0;
  font-family: "Poppins", sans-serif;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
}

.member-details span {
  font-size: 16px;
  font-weight: 400;
  color: #555;
  margin-bottom: 15px;
  display: block;
}

.member-details p {
  font-size: 14px;
  color: #777;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Social media icons styling */
.social-links {
  margin-top: 15px;
}

.social-links a {
  color: #333;
  font-size: 24px;
  margin: 0 15px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
  color: #007bff;
  transform: translateY(-5px);
}

/* Hover effects */
.team-member:hover {
  transform: translateY(-15px);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
  border: 2px solid #50d8af;
}

/* Card Flip Effect */
.team-member .member-details {
  transition: transform 0.5s ease;
}

/* Parallax effect for background */
@media (max-width: 768px) {
  .team-section {
    padding: 60px 0;
  }

  .team-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  }

  .member-details h4 {
    font-size: 22px;
  }

  .member-details p {
    font-size: 13px;
  }
}

/* service */

/* Header & Intro Section */
.intro-section {
  background: linear-gradient(
      45deg,
      rgba(6, 69, 173, 0.8),
      rgba(4, 132, 130, 0.8)
    ),
    url("../img/bg-sub.jpg") no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 50px 20px;
  height: 250px;
}

.intro-section .heading {
  font-size: 3rem;
  margin-bottom: 10px;
}

.intro-section .subheading {
  font-size: 1.25rem;
  font-weight: 300;
  margin-top: 20px;
}

/* Services Section */
.services-section {
  padding: 60px 20px;
  background-color: #ffffff;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  color: #2eb2ac; /* Dark Green */
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.service-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 5px solid #50bb92; /* Light Green */
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #379dbf; /* Light Blue */
}

.service-title {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #446ca4; /* Dark Blue */
}

.service-description {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}
.servies-para{
  text-align: center;
}

/* Contact Section */
.contact-section {
  background-color: #f8f9fa;
  padding: 50px 20px;
}

.contact-title {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #379dbf; /* Light Blue */
}

.contact-info {
  font-size: 1.25rem;
  color: #555;
}

/* portfolio */

.portfolio-container {
  font-family: "Arial", sans-serif;
  padding: 40px;
  max-width: 1200px;
  margin: auto;
  background-color: #f4f4f4;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Buttons section */
.buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}

/* Styling for each button */
.portfolio-btn {
  background-color: #379dbf;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease,
    box-shadow 0.3s ease;
}

.portfolio-btn:hover {
  background-color: #127191; /* Background color on hover */
  color: #ffffff; /* Text color on hover */
  /* Border color change */
  transform: scale(1.07); /* Slightly increase size */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add shadow on hover */
}

/* Portfolio grid layout */
.portfolio {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  justify-items: center;
}

/* Individual portfolio item styling */
.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.portfolio-item:hover {
  transform: scale(1.05);
}

/* Portfolio images */
.portfolio-item img {
  width: 100%;
  height: 400px;
  object-fit: inherit;
  transition: transform 0.3s ease;
}

/* Hover effect for images */
.portfolio-item:hover img {
  transform: scale(1.1);
}

/* Description styling */
.portfolio-description {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 10px;
  border-radius: 5px;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-size: 14px;
}

.portfolio-description p{
  color: white !important;
}

.portfolio-item:hover .portfolio-description {
  opacity: 1;
}

/* Online button styling */
.online-button {
  display: inline-block;
  padding: 12px 20px;
  background-color: #28a745;
  color: white;
  font-size: 16px;
  border-radius: 5px;
  text-align: center;
  cursor: pointer;
  margin-top: 30px;
  transition: background-color 0.3s ease, transform 0.3s ease,
    box-shadow 0.3s ease;
}

.online-button:hover {
  background-color: #218838; /* Hover color */
  transform: scale(1.05); /* Slightly enlarge the button */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add shadow effect */
}

/* portfolio page  */

/* TestimonialPage.css */

/* General Styles for the Container */

/* Main Content Wrapper */
.testimonial-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 30px;
  background: linear-gradient(135deg, #f4f7fc, #d1e1f2);
}

/* The Wrapper for Title, Button, and Testimonials */
.testimonial-page-wrapper {
  max-width: 1200px;
  width: 100%;
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  padding: 50px 40px;
  margin-top: 30px;
  transition: transform 0.3s ease;
}

.testimonial-page-wrapper:hover {
  transform: translateY(-10px);
}

/* Title Section */
.testimonial-title {
  text-align: center;
  margin-bottom: 40px;
}

.testimonial-title h1 {
  font-size: 42px;
  color: white;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0;
  background-color: #50d9b0;
  text-transform: uppercase;
  padding: 25px;
  border-radius: 10px;
}

/* Browse Button Styling */
.browse-button-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.browse-all-btn {
  background-color: #4caf50;
  color: white;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
  transition: background-color 0.3s, transform 0.3s;
}

.browse-all-btn:hover {
  background-color: #45a049;
  transform: scale(1.05);
}

/* Testimonials Wrapper */
.testimonials-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

/* Individual Testimonial Styling */
.testimonial-item {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Testimonial Text Styling */
.testimonial-item p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Author Styling */
.testimonial-item .author {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  text-align: right;
  margin-top: 20px;
}

/* Styling for the Author's Title */
.testimonial-item .author-title {
  font-size: 16px;
  color: #888;
  font-weight: 400;
  text-align: right;
}

.fixed-img1 {
  width: 400px;
  height: 250px !important;
  object-fit: cover;
}
.fixed-img2 {
  height: 250px !important;
}

.username10 {
  font-family: "auto";
}

.technology {
  color: #198754;
}

.paragraph1 {
  color: #6c757d;
  text-align: justify;
}

.para2 {
  color: #6c757d;
}
.testmonial22 {
  width: 250px;
  height: auto;
  object-fit: cover;
  border: 1px solid darkgray;
}

.client-title {
  font-weight: 800;
  text-align: center;
  margin-bottom: 10px;
  color: #0c2e8a;
  /* font-family: 'auto'; */
  letter-spacing: 3px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
 
}

.client-para {
  color: #777;
  font-size: 16px;
  line-height: 1.6;
  max-width: 80%; 
  text-align: center;
  margin: 0 auto;
  padding: 20px;
}

/* portfolio for home page */

.box-left {
  background-color: #f8f9fa; /* Light background */
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.icon-team {
  font-size: 48px;
  color: #4caf50; /* Green color for the icon */
  background-color: #e8f5e9; /* Light green background */
  border-radius: 50%;
  padding: 20px;
  margin-bottom: 15px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.title-y {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.team-link {
  text-decoration: none;
  color: #007bff;
  transition: color 0.3s ease;
}

.team-link:hover {
  color: #0056b3;
}

.description {
  font-size: 16px;
  color: #777;
  margin-top: 10px;
}

/* Hover effect on box-left */
.box-left:hover {
  transform: translateY(-10px);
}

/* Hover effect on icon-team */
.icon-team:hover {
  background-color: #c8e6c9;
  transform: scale(1.1);
}

.title-z {
  font-size: 4em;
  font-weight: bold;
  color: #ffffff;
  margin: 0;
  text-align: center;
}
.button-z {
  margin-top: 20px;
}
.button-z a {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(to right, #0044cc, #0b59c8);
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1em;
  transition: all 0.3s ease;
}
.button-z a:hover {
  background: linear-gradient(to right, #0066ff, #003399);
  color: white;
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.navigation {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.navigation i {
  font-size: 2em;
  color: #fff;
  margin: 0 10px;
  padding: 10px;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: background-color 0.3s, color 0.3s;
}
.navigation i:hover {
  background-color: #0c2e8a;
  color: #fff;
}
.navigation1 i {
  font-size: 2em;
  color: #100f0f;
  margin: 0 10px;
  padding: 10px;
  border: 2px solid #1e1c1c;
  border-radius: 50%;
  transition: background-color 0.3s, color 0.3s;
}
.navigation1 i:hover {
  background-color: #0c2e8a;
  color: #fff;
}

.team-home {
  background: linear-gradient(to right, #0044cc, #50d8af);
  border-radius: 15px;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  height: 600px;
}

.team-member a :hover {
  color: #50d8af !important;
  transform: scale(1.1); /* Slight zoom effect */
}

.e-mail10 {
  color: #379dbf !important;
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.scrollto {
  font-family: "Garamond", serif;
  font-size: 48px;
  font-weight: normal;
  text-align: center;
  text-decoration: none;
}

.contact-para10 {
  text-align: justify;
}

.client-name10 {
  color: #0c2e8a;
  font-weight: 800;
}

.client-box1 {
  border-radius: 40px;
}

.client-card11 {
  transition: all 0.3s ease; /* Smooth transition for hover effects */
}

.client-card11:hover {
  transform: scale(1.03); /* Slightly enlarge the card */
}

.menu-active {
  color: #ff5733; /* Example active color */
  font-weight: bold; /* Optional for emphasis */
  border-bottom: 2px solid#50d9b0; /* Optional underline */
}
/* .flex-container {
  display: flex;
  align-items: stretch;
  background-color: #f1f1f1;
}

.flex-container > div {
  background-color: DodgerBlue;
  color: white;
  margin: 10px;
  text-align: center;
  line-height: 75px;
  font-size: 30px;
} */

.testimonials-border {
  border-radius: 10px;
  padding: 0%;
}
/* 
.testimonial-leftside{
  justify-content: left;
  display: flex;
} */
.testimonial-box {
  width: 100%;
}
/* Phone Section Styles */
.phone-section {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Aligns items to the left */
  padding: 5px 0; /* Adds padding to the section */
}

.phone-icon {
  font-size: 18px; /* Sets the font size for the icon */
  color: #007bff; /* Blue color for the phone icon */
  margin-right: 8px; /* Adds spacing between the icon and the text */
}

.phone-text {
  font-size: 14px; /* Adjusts the font size for the phone number */
  color: #333; /* Dark text color */
  font-weight: 500; /* Makes the text a bit bolder for emphasis */
}

.phone-text:hover {
  color: #007bff; /* Hover effect to change text color on mouseover */
}

@media (max-width: 992px) {
  /* Adjusts phone number display for smaller screens */
  .phone-text {
    font-size: 12px; /* Smaller font size for smaller devices */
  }

  .phone-icon {
    font-size: 16px; /* Smaller icon size for smaller screens */
  }
}
/* Phone Section Styles */
.phone-section {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Aligns items to the left */
  padding: 5px 0; /* Adds padding to the section */
}

.phone-icon {
  font-size: 16px; /* Sets the font size for the icon */
  color: #50d9b0; /* Blue color for the phone icon */
  margin-right: 8px; /* Adds spacing between the icon and the text */
}

.phone-text {
  font-size: 14px; /* Adjusts the font size for the phone number */
  color: #333; /* Dark text color */
  font-weight: 500; /* Makes the text a bit bolder for emphasis */
}

.phone-text:hover {
  color: #50d9b0; /* Hover effect to change text color on mouseover */
}

@media (max-width: 992px) {
  /* Adjusts phone number display for smaller screens */
  .phone-text {
    font-size: 12px; /* Smaller font size for smaller devices */
  }

  .phone-icon {
    font-size: 16px; /* Smaller icon size for smaller screens */
  }
}
.envelop-icon {
  font-size: 20px; /* Sets the font size for the icon */
  color: #50d9b0; /* Blue color for the phone icon */
  margin-right: 0px;
}
.email-text {
  font-size: 14px; /* Adjusts the font size for the phone number */
  color: #333; /* Dark text color */
  font-weight: 500; /* Makes the text a bit bolder for emphasis */
}

/* Transparent Header */
#header {
  position: relative; /* Or fixed if you want it to stay on top while scrolling */
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s ease;
}

#header.fixed {
  background-color: rgba(0, 0, 0, 0.7); 
  color:#000;/* Semi-transparent dark background when fixed */
  box-shadow: 1px 1px 2px;
}
#header.fixed a {
  color: #000;
}

.header-relative {
  background-color: transparent !important;
}
#logo h1 a {
  color: #fff;
  font-size: 30px;
  font-weight: bold;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-menu li {
  margin-left: 20px;
}

.nav-menu a {
  color: rgb(0, 0, 0);
  font-size: 18px;
  text-decoration: none;
}

.nav-menu a:hover,
.nav-menu .menu-active {
  color:#50d9b0; /* Add hover color or active state color */
}

/* For the mobile menu toggle button */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: white;
  font-size: 30px;
}

/* When the screen size is small, hide the menu and show the toggle button */
@media (max-width: 767px) {
  #nav-menu-container {
    display: none;
    width: 100%;
    text-align: center;
    position: absolute;
    top: 60px;
    left: 0;
    background-color: rgba(0, 0, 0, 0.9); /* Dark background for mobile menu */
    padding: 10px 0;
  }

  #nav-menu-container.open {
    display: block;
  }

  .nav-menu {
    display: flex;
  }

  .nav-menu li {
    margin: 15px 0;
  }

  .menu-toggle {
    display: block;
  }
}

/* Adjustments for larger screens */
@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  #nav-menu-container {
    display: block !important;
  }
}

.slider-center10 {
  position: relative;
  width: 100%;
  justify-content: space-around;
  overflow: hidden;
  display: flex;
}

/* .carousel-control-next, .carousel-control-prev{
  color: #000 !important;
  background-color: #000 !important;
  width: 50px !important;
  height: 50px !important;
  justify-content: center !important;
  display: flex !important;
} */

/* Change color of the previous control icon */
.carousel-control-prev-icon {
  background-color: black; /* Set your desired color */
}

/* Change color of the next control icon */
.carousel-control-next-icon {
  background-color: black; /* Set your desired color */
}

.submit10 {
  background-color: #37b4a4;
  color: white; /* Ensures text is visible */
  border: none; /* Clean button styling */
  padding: 10px 20px; /* Adds some spacing */
  border-radius: 5px; /* Rounded corners */
  transition: all 0.3s ease-in-out; /* Smooth hover transition */
}

.submit10:hover {
  background-color: #37b4a4; /* Deeper green shade on hover */
  color: #f8f9fa; /* Lighten text color for contrast */
  transform: scale(1.05); /* Slightly enlarges the button */
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2); /* Adds a subtle shadow */
  cursor: pointer; /* Pointer cursor on hover */
}

.para100 {
  color: #1c3c92 !important;
}

.footer-top {
  background-color: #0d2735;
}

.footer-links ul li i {
  margin-right: 10px;
}

.footer-links a:hover {
  color: #f39c12;
}

.footer-contact address strong {
  color: #f39c12;
}

.social-links a i {
  font-size: 20px;
  transition: color 0.3s;
}

.head10 {
  color: #a2cce3;
  transition: all 0.3s ease; /* Smooth transition for all properties */
}

.head10:hover {
  color: #a2cce3; /* New color on hover */
  transform: scale(0.9); /* Slightly enlarges the element */
  cursor: pointer; /* Changes the cursor to a pointer */
}
.link10 {
  color: white;
  border: 1px solid #68a4c4;
  border-radius: 6px;
  background-color: #607b89;
}

.useful-link1 li {
  transition: all 0.3s ease; /* Smooth transition for all properties */
}

.useful-link1 li:hover {
  transform: scale(1.05); /* Slightly enlarges the element */
  cursor: pointer; /* Changes the cursor to a pointer */
}
/* General Styles */
.main-container {
  font-family: Arial, sans-serif;
  color: #333;
}

.heading {
  font-size: 2.5rem;
  font-weight: bold;
}

.subheading {
  font-size: 1.2rem;
  margin-top: 10px;
}

/* Left Section Styles */
.testimonial-title {
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 3px;
}

.testimonial-img {
  width: 200px;
  margin-top: 20px;
}

.arrow-container {
  display: flex;
  gap: 20px;
}

.arrow {
  width: 50px;
  height: 50px;
  border: 2px solid #333;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 1.5rem;
  transition: background-color 0.3s;
}

.arrow:hover {
  background-color: #007bff;
  color: white;
}

/* Right Section Styles */
.testimonials-border {
  border: 1px solid #ddd;
  border-radius: 10px;
}
/* Call-to-Action Section */
.call-to-action-section {
  background: linear-gradient(135deg, #0062cc, #0056b3);
  padding: 60px 0;
  color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  margin: 20px 0;
}

.call-to-action-section .cta-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.call-to-action-section .cta-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.call-to-action-section .cta-btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.call-to-action-section .cta-btn {
  background: #081e5b;
  color: #000;
  padding: 12px 25px;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 5px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.call-to-action-section .cta-btn:hover {
  background: #e0a800;
  transform: translateY(-3px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
}

.card-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 20vh; /* Center the card vertically and horizontally */
  background-color: #f4f4f4;
  width:200px;
}

.card-technology {
  width: 250px;
  padding: 20px;
  border-radius: 15px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease; /* Smooth scaling transition */
}


.card-image {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.card-description {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

.card-container {
  margin: 10px; /* Adds spacing between cards */
}

.card-technology {
  padding: 20px;
  border-radius: 10px;
  background-color: #fff;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.card-technology:hover {
  transform: scale(1.1); /* Enlarges the card on hover */
  background-color: white; /* Highlights the card with a light background */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Enhances the shadow on hover */
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
}

.card-description {
  font-size: 1rem;
  color: #555;
}

.card-container {
  margin: 5px; /* Adjust if you want minimal spacing between cards */
}



.card-image {
  width: 100%;
  display: block;
}

.d-flex {
  gap: 0; /* Remove additional space between cards */
}

.d-flex.px-4 {
  padding-left: 1.5rem; /* Add space to the left */
  padding-right: 1.5rem; /* Add space to the right */
}
.email-text1 {
  text-decoration: none;
  color: white;
  transition: transform 0.3s ease, color 0.3s ease;
}

.email-text1:hover {
  transform: scale(1.5); /* Slightly increases size on hover */
  color: #a2cce3; /* Optional color change */
}

.headertop {
  align-items: center;
}

.card:hover {
  transition: none;
  box-shadow: initial;
}
/* CSS for "Why Choose Us" Component */

/* General Styling */
.container {
  max-width: 1200px;
  margin: auto;
}

h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
}

p {
  color: #555;
  font-size: 1rem;
}

/* Image Styling */

/* Feature Cards */
.feature-card {
  background-color: #f9f9f9;
  padding: 1.5rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-card h5 {
  font-size: 1.25rem;
  color: #0991ba;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: #555;
  font-size: 0.9rem;
}

/* Contact Info */
.contact-info {
  font-size: 1.1rem;
  color: #0991ba;
  /* font-weight: bold; */
}

.img-fluid {
  height: 50vh;
}
.feature-card {
  display: flex;
  align-items: center;
  gap: 10px;
}
.feature-card img {
  width: 30px;
  height: auto;
}

.card:hover {
  transition: none;
  box-shadow: initial;
}
/* CSS for "Why Choose Us" Component */

/* General Styling */
.container {
  max-width: 1200px;
  margin: auto;
}

h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
}

p {
  color: #555;
  font-size: 1rem;
}

/* Image Styling */

/* Feature Cards */
.feature-card {
  background-color: #f9f9f9;
  padding: 1.5rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-card h5 {
  font-size: 1.25rem;
  color: #0991ba;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: #555;
  font-size: 0.9rem;
}

/* Contact Info */
.contact-info {
  font-size: 1.1rem;
  color: #0991ba;
  /* font-weight: bold; */
}

.img-fluid {
  height: 50vh;
}
.feature-card {
  display: flex;
  align-items: center;
  gap: 10px;
}
.feature-card img {
  width: 30px;
  height: auto;
}

.blur-background{
  filter: blur(8px);
  position: absolute;
  width: 100%;
  padding: 50px;
  background-color: #0000007a;
}
.formbackground {
  background-color: rgb(55 107 177) !important;
}

.formbutton {
  transition: all 0.3s ease; /* Smooth transition for all properties */
  background-color: rgb(55 107 177) !important;
  color: white !important;
  transition: transform 0.3s ease, color 0.3s ease !important;
}

.formbutton:hover {
  transform: scale(1.05); /* Slightly increase size */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add shadow effect */
}

.clientpadding {
  padding: 74px 0 !important;
}

.portfolio-button3 {
  background-color: #4273a8 !important;
  color: white !important;

  transition: background-color 0.6s ease, transform 0.6s ease,
    box-shadow 0.6s ease; /* Slower transition */
}

.portfolio-button3:hover {
  background-color: #2e5a87 !important; /* Slightly darker shade */
  color: #ffffff !important; /* Ensure text stays white */
  transform: scale(1.05); /* Slightly enlarge the button */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add shadow effect */
}

.color-glass-button {
  background: rgb(12, 46, 138);
  border: 1px solid rgb(12, 46, 138);
  backdrop-filter: blur(10px);
  color: white;
  padding: 7px 30px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center; 
  overflow: hidden;
  box-shadow: 0 4px 4px rgb(12, 46, 138);
 
}

.color-glass-button i {
  margin-right: 10px;
  transition: transform 0.3s ease;
}

.color-glass-button:hover {
  background: rgb(3, 28, 97);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  color: white;
  text-decoration: none; /* This removes the underline */
}

.color-glass-button:hover i {
  transform: rotate(360deg);
}

.portfolio-anchor a{
  text-decoration: none !important;
}

.form-experience
{
  height: 20px !important;
}
.loader-image{
  animation:bounce 1s infinite;
  transition: all 0.3s ease;
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.paratext
{
  color: white !important;
}
.icon1
{
  width: 48px !important;
}

@keyframes rotatePop {
  0% { transform: scale(1) rotate(0deg); }
  60% { transform: scale(1.08) rotate(-2deg); }
  100% { transform: scale(1.04) rotate(-2deg); }
}
.box {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: background 0.4s cubic-bezier(.4,2,.6,1),
              color 0.4s cubic-bezier(.4,2,.6,1),
              transform 0.3s cubic-bezier(.4,2,.6,1),
              box-shadow 0.3s cubic-bezier(.4,2,.6,1);
}
.box:hover {
  animation: rotatePop 0.5s;
  transform: scale(1.04) rotate(-2deg);
  box-shadow: 0 16px 40px rgba(41,72,255,0.18);
  background: #db9898;
  color: #181c2f;
}
.box:hover h4,
.box:hover p,
.box:hover .title,
.box:hover .description {
  color: #181c2f !important;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
.blink-heading {
  animation: blink 0.5s linear infinite;
}

.vertical-marquee-container {
  overflow: hidden;
  height: 350px;
  width: 500px;
  margin: 0 auto;
  position: relative;
}

.vertical-marquee-track {
  display: flex;
  flex-direction: column;
  gap: 32px;
  animation: vertical-marquee 3s linear infinite;
}

@keyframes vertical-marquee {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

.client-box {
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 8px 32px 0 rgba(80, 0, 255, 0.08), 0 1.5px 6px 0 rgba(80, 0, 255, 0.10);
  padding: 40px 30px;
  margin: 0 auto;
  width: 400px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.3s, transform 0.3s;
}
.client-box img {
  max-width: 120px;
  margin-bottom: 20px;
}

.horizontal-marquee-container {
  overflow: hidden;
  width: 100vw;
  height: 350px;
  margin: 0 auto;
  position: relative;
}

.horizontal-marquee-track {
  display: flex;
  flex-direction: row;
  gap: 32px;
  animation: horizontal-marquee 16s linear infinite;
  align-items: center;
}

@keyframes horizontal-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.client-box {
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 8px 32px 0 rgba(80, 0, 255, 0.08), 0 1.5px 6px 0 rgba(80, 0, 255, 0.10);
  padding: 40px 30px;
  margin: 0 16px;
  width: 320px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.3s, transform 0.3s;
  box-sizing: border-box;
}
.client-box img {
  max-width: 100%;
  height: 120px;
  margin-bottom: 20px;
  display: block;
}