body {
  background: #fff;
  color: #444;
  font-family: "Nunito",sans-serif;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
  height: 80px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  padding: 20px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.3);
}
#header.header-scrolled,
#header.header-pages {
  height: 60px;
  padding: 10px 0;
}
#header .logo h1 {
  font-size: 36px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}
#header .logo h1 a,
#header .logo h1 a:hover {
  color: #00366f;
  text-decoration: none;
}
#header .logo img {
  padding: 0;
  margin: -2px 0;
  max-height: 50px;
}
.main-pages {
  margin-top: 60px;
}


.main-nav,
.main-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}
.main-nav > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}
.main-nav a {
  display: block;
  position: relative;
  color: #004289;
  padding: 10px 15px;
  transition: 0.3s;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}
.main-nav a:hover, .main-nav .active > a, .main-nav li:hover > a {
  color: #007bff;
  text-decoration: none;
}
.main-nav .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}
.main-nav .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.main-nav .drop-down li {
  min-width: 180px;
  position: relative;
}
.main-nav .drop-down ul a {
  padding: 10px 20px;
  font-size: 13px;
  color: #004289;
}
.main-nav .drop-down ul a:hover,
.main-nav .drop-down ul .active > a,
.main-nav .drop-down ul li:hover > a {
  color: #007bff;
}
.main-nav .drop-down > a:after {
  content: "\f107";
  font-family: FontAwesome;
  padding-left: 10px;
}
.main-nav .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}
.main-nav .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}
.main-nav .drop-down .drop-down > a {
  padding-right: 35px;
}
.main-nav .drop-down .drop-down > a:after {
  content: "\f105";
  position: absolute;
  right: 15px;
}
/* ------------------Mobile Navigation--------------- */

.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  left: -260px;
  width: 260px;
  padding-top: 18px;
  background: rgba(19, 39, 57, 0.8);
  transition: 0.4s;
}
.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}
.mobile-nav a {
  display: block;
  position: relative;
  color: #fff;
  padding: 10px 20px;
  font-weight: 500;
}
.mobile-nav a:hover,
.mobile-nav .active > a,
.mobile-nav li:hover > a {
  color: #74b5fc;
  text-decoration: none;
}
.mobile-nav .drop-down > a:after {
  content: "\f078";
  font-family: FontAwesome;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}
.mobile-nav .active.drop-down > a:after {
  content: "\f077";
}
.mobile-nav .drop-down > a {
  padding-right: 35px;
}
.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}
.mobile-nav .drop-down li {
  padding-left: 20px;
}
.mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  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 {
  margin: 18px 18px 0 0;
  color: #004289;
}
.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(19, 39, 57, 0.8);
  overflow: hidden;
  display: none;
}
.mobile-nav-active {
  overflow: hidden;
}
.mobile-nav-active .mobile-nav {
  left: 0;
}
.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}
/*-------------------------------------------------------------- Intro Section --------------------------------------------------------------*/
#intro {
  width: 100%;
  position: relative;
  background: url("../img/intro-bg.jpg") center bottom no-repeat;
  background-size: cover;
  padding: 280px 0 120px 0;
  overflow: hidden;
}

/* Floating animation for background elements */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.intro-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#intro .intro-info h2 {
  color: #fff;
  margin-bottom: 40px;
  font-size: 48px;
  font-weight: 700;
}

#intro .intro-info h2 span {
  color: #74b5fc;
  text-decoration: underline;
}

#intro .intro-info .btn-get-started,
#intro .intro-info .btn-services {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 0 20px 20px 0;
  color: #fff;
}

#intro .intro-info .btn-get-started {
  background: #568be1;
  border: 2px solid #568be1;
  color: #fff;
}

#intro .intro-info .btn-get-started:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(86, 139, 225, 0.4);
}

#intro .intro-info .btn-services {
  border: 2px solid #fff;
}

#intro .intro-info .btn-services:hover {
  background: #568be1;
  border-color: #568be1;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(86, 139, 225, 0.3);
}
/* --------------------------------------------About Us Section--------------------------------*/

.section-header h3 {
  font-size: 40px;
  color: #283d50;
  text-align: center;
  font-weight: 700;
  position: relative;
  margin-bottom: 40px;
}
.section-header p {
  text-align: center;
  margin: auto;
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 70px;
  color: #568be1;
  width: 50%;
}
.section-bg {
  background: #ecf5ff;
}
.sub-title img{
  margin-right: 5px;
  animation: rotateme 40s linear;
  animation-duration: 40s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.sub-title{
  position: relative;
  display: block;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #568be1;
  font-weight: 700;
  font-size: 15px;
}
@keyframes rotateme {
  0%{
     transform: rotate(0deg);
    }
 100%{
     transform: rotate(360deg);
    }
 }
#about {
  background: #fff;
  padding: 60px 0;
}
#about .about-container .background {
  margin: 20px 0;
}
#about .about-container .content {
  background: #fff;
}
#about h2{
  font-size: 30px;
  font-weight: 700;
}
#about .about-container p {
  line-height: 26px;
}
#about .about-container p:last-child {
  margin-bottom: 0;
}
#about .about-container .icon-box {
  background: #fff;
  background-size: cover;
  padding: 0 0 30px 0;
}
#about .about-container .icon-box .icon {
  float: left;
  background: #fff;
  width: 64px;
  height: 64px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #568be1;
  transition: all 0.3s ease-in-out;
}
#about .about-container .icon-box .icon i {
  color: #568be1;
  font-size: 24px;
}
#about .about-container .icon-box:hover .icon {
  background: #568be1;
}
#about .about-container .icon-box:hover .icon i {
  color: #fff;
}
#about .about-container .icon-box .title {
  margin-left: 80px;
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 18px;
}
#about .about-container .icon-box .title a {
  color: #283d50;
}
#about .about-container .icon-box .description {
  margin-left: 80px;
  line-height: 24px;
  font-size: 14px;
}
#about .about-extra {
  padding-top: 60px;
}
#about .about-extra h4 {
  font-weight: 600;
  font-size: 24px;
}

/* --------------------------------------------------Services Section--------------------------------*/

#services {
  padding: 60px 0 40px 0;
  box-shadow: inset 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

#services .box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin: 0 10px 40px 10px;
  background: #fff;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
}

#services .box:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

#services .icon {
  position: absolute;
  left: -10px;
  top: calc(50% - 32px);
}

#services .icon i {
  font-size: 64px;
  line-height: 1;
  transition: 0.5s;

}

#services .title {
  margin-left: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

#services .title a {
  color: #111;
}

#services .box:hover .title a {
  color: #007bff;
}

#services .description {
  font-size: 14px;
  margin-left: 40px;
  line-height: 24px;
  margin-bottom: 0;
}
/*---------------------------------------------our--expertise-------------------*/
.projects-section{
  max-width: 1100px;
  width: 100%;
  overflow: hidden;
  padding: 80px 0;
}
.support__box {
  padding: 20px 30px;
  text-align: center;
  border: 2px solid #568be1;
  background-color: #ecf5ff;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  height: 170px;
}
.support__box .icon {
  margin-bottom: 20px;
}
.support__box .title {
  font-size: 20px;
  color: #111;
  margin-bottom: 15px;
}
.support__box .content p {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #444;
}
.custom-row {
  margin-left: -10px;
  margin-right: -10px;
}
.mt-none-30 {
  margin-top: -30px;
}
.custom-row .col-xl-2 {
  flex: 0 0 20%;
  -ms-flex: 0 0 20%;
  max-width: 20%;

}
.mt-30 {
  margin-top: 30px;
}
/* Testimonials Section
--------------------------------*/

#testimonials {
  padding: 60px 0;
  box-shadow: inset 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

#testimonials .section-header {
  margin-bottom: 40px;
}

#testimonials .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 50%;
  border: 4px solid #fff;
  float: left;
}

#testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
  margin-left: 140px;
}

#testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 15px 0;
  margin-left: 140px;
}

#testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 140px;
}

#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;
}

#testimonials .owl-dot.active {
  background-color: #007bff;
}
/*------------------------------------------Modal---------------------------------*/
#header .btn-primary {
  color: #fff;
  background-color: #568be1;
  border-color: transparent;
}
.btn-primary:focus{
  background-color: #568be1;
  border: none;
}
.btn-primary:hover{
  background-color: #8b87a6;
  border: none;
}
.modal-dialog{
  max-width: 900px;
}
.modal-open {
  overflow: hidden;
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}
.modal-body {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
}
.modal-content .modal-body.color-1 {
  background: rgba(224, 223, 233, 0.7); }
.modal-content .modal-body.color-2 {
  background: #568be1; }
.modal-content .modal-header {
  padding: 0;
  border: none; }
.modal-content button.close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0;
  margin: 0;
  width: 40px;
  height: 40px;
  z-index: 1;
  text-shadow: none;
  background: rgba(0, 0, 0, 0.1);
  color: #fff;
}
.modal-content .modal-body {
  border: none;
  position: relative;
  z-index: 0;
  color: rgba(255, 255, 255, 0.8); }
.modal-content .modal-body.color-1 {
  background: #fff; }
.modal-content .modal-body.color-2 {
  background: #568be1; }
.modal-content .modal-body .icon span {
  font-size: 10vw;
  line-height: 1; }
.modal-content .label {
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px; }
  .option-color option{
    color: #080505!important;
  }
.modal-content .form-control {
  background: transparent;
  /* border: none; */
  border-radius: 0;
  color: #fff!important;
  padding: 0;
  height: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1); }

.modal-content .form-control::-webkit-input-placeholder {
/* Chrome/Opera/Safari */
color: rgb(188, 191, 191) !important; }
.modal-content .form-control::-moz-placeholder {
/* Firefox 19+ */
color: rgb(188, 191, 191) !important; }
.modal-content .form-control:-ms-input-placeholder {
/* IE 10+ */
color: rgb(188, 191, 191) !important; }
.modal-content .form-control:-moz-placeholder {
/* Firefox 18- */
color: rgb(188, 191, 191)!important; }
.modal-content .btn-primary {
  background: #444 !important;
  height: 52px;
  font-size: 18px;
  font-weight: 400 }
.btn-primary:hover{
  background: #568be1;
}
.modal-content button.close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0;
  margin: 0;
  width: 40px;
  height: 40px;
  z-index: 1;
  text-shadow: none;
  color: #fff; }
.arrow {
  border: solid white;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;

}
.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.contact-page__social-list {
  position: relative;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  justify-content: center;
}
.contact-page__social-list a {
  position: relative;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
  color: var(--thm-black);
  background-color: #568be1;
  border-radius: 50%;
  font-size: 13px;
  height: 45px;
  width: 45px;
  transform: rotate(0);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}
.contact-page__social-list a+a {
  margin-left: 10px;
}

/*--------------------------------------------------------------Footer--------------------------------------------------------------*/

#footer {
  background: #568be1;
  padding: 0 0 30px 0;
  color: #eee;
  font-size: 14px;
}

#footer .footer-top {
  background: #fff;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 34px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  color: #568be1;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#footer .footer-top .footer-info p {
  font-size: 13px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
  color: #444;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #007bff;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #0067d5;
  color: #fff;
}

#footer .footer-top h4 {
  font-size: 14px;
  font-weight: bold;
  color: #444;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul li {
  padding: 8px 0;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #444;
}

#footer .footer-top .footer-links ul a:hover {
  color: #74b5fc;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
  color: #444;
}

#footer .footer-top .footer-newsletter {
  margin-bottom: 30px;
}

#footer .footer-top .footer-newsletter form {
  display: flex;
  gap: 0;
  margin-bottom: 0;
}

#footer .footer-top .footer-newsletter input[type="email"] {
  border: 0;
  padding: 10px 12px;
  width: 65%;
  background-color: #bfddfe;
  border-radius: 4px 0 0 4px;
  font-size: 14px;
  outline: none;
}

#footer .footer-top .footer-newsletter input[type="email"]:focus {
  background-color: #a8d0fc;
}

#footer .footer-top .footer-newsletter input[type="submit"] {
  background: linear-gradient(135deg, #568be1 0%, #3a5fa0 100%);
  border-radius: 0 4px 4px 0;
  border: 0;
  width: 35%;
  padding: 10px 0;
  text-align: center;
  color: #fff;
  transition: all 0.3s;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
}

#footer .footer-top .footer-newsletter input[type="submit"]:hover {
  background: linear-gradient(135deg, #3a5fa0 0%, #2d4a7c 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(86, 139, 225, 0.3);
}

#footer .footer-top .footer-newsletter input[type="submit"]:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  text-align: center;
  font-size: 13px;
  color: #f1f7ff;
}

#footer .credits a {
  color: #bfddfe;
}

#footer .credits a:hover {
  color: #f1f7ff;
}
.back-to-top {
  position: fixed;
  display: none;
  background: #568be1;
  color: #fff;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  border-radius: 50%;
  right: 15px;
  bottom: 15px;
  transition: 0.5s;
  z-index: 11;
}

.back-to-top i {
  padding-top: 12px;
  color: #fff;
}



/*--------------Projects--------------------------*/
.banner-bg-1{
background: url('../img/inner-bg.jpg');
padding: 120px 0;
background-clip: initial;
background-color: rgba(0, 0, 0, 0);
background-origin: initial;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
position: relative;
z-index: 0;
}

.banner-bg-1::before{
content: "";
display: inline-block;
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%;
z-index: -1;
background: rgba(34, 34, 34, 0.4);
}

.banner{
position: relative;
}

.banner h2{
color: #f1f1f1;
font-size: 45px;
font-weight: 700;
letter-spacing: 1px;
margin-left: 20px;
position: relative;
}
.banner h2::after {
  background: #568be1;
  content: "";
  height: 35px;
  left: -15px;
  position: absolute;
  top: 8px;
  width: 6px;
}
.banner{
position: relative;
}
.page-title-link li {
display: inline-block;
position: relative;
}
.page-title-link li a {
color: #fff;
font-size: 14px;
letter-spacing: 1px;
margin: 0 15px;
text-transform: uppercase;
font-weight: 500;
}
.page-title-link li::after {
background: #568be1;
bottom: 8px;
content: "";
height: 2px;
margin-left: -1px;
position: absolute;
width: 10px;
}
.page-title-link li:last-child::after {
content: "";
width: 0;
height: 0;
}
.message-box h4 {
text-transform: uppercase;
padding: 0;
margin: 0 0 5px;
font-weight: 600;
letter-spacing: 0.5px;
font-size: 15px;
color: #999;
}
.message-box h2 {
font-size: 28px;
font-weight: 500;
padding: 0 0 10px;
margin: 0;
line-height: 62px;
margin-top: 0;
text-transform: none;
}
.post-media img{
width: 100%;
}
hr {
margin-top: 3rem;
margin-bottom: 4rem;
border: 0;
border-top: 1px solid rgba(0,0,0,.1);
}
/*--------------------------------------------------------------
# Responsive Media Queries
--------------------------------------------------------------*/

@media (min-width: 992px) {
  #testimonials .testimonial-item p {
    width: 80%;
  }
}

@media (max-width: 991px) {
  #header {
    height: 60px;
    padding: 10px 0;
  }
  #header .logo h1 {
    font-size: 28px;
    padding: 8px 0;
  }
  #intro {
    padding: 140px 0 60px 0;
  }
  #intro .intro-img {
    width: 80%;
    float: none;
    margin: 0 auto 25px auto;
  }
  #intro .intro-info {
    width: 80%;
    float: none;
    margin: auto;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
  #intro h1 {
    font-size: 32px !important;
  }
  #intro p {
    font-size: 16px !important;
  }
  #intro .btn-get-started,
  #intro .btn-services {
    padding: 12px 25px !important;
    font-size: 14px !important;
    display: block !important;
    margin: 10px auto !important;
    max-width: 250px;
  }
}

@media (max-width: 767px) {
  #intro .intro-info {
    width: 100%;
  }
  #intro .intro-info h2 {
    font-size: 34px;
    margin-bottom: 30px;
  }
  .section-header p {
    width: 100%;
  }
  #testimonials .testimonial-item {
    text-align: center;
  }
  #testimonials .testimonial-item .testimonial-img {
    float: none;
    margin: auto;
  }
  #testimonials .testimonial-item h3,
  #testimonials .testimonial-item h4,
  #testimonials .testimonial-item p {
    margin-left: 0;
  }
}
@media (max-width: 574px) {
  #intro {
    padding: 100px 0 20px 0;
  }
  .custom-row{
      display: flex;
      flex-direction: column;
      align-items: center;
  }
  .custom-row .col-xl-2{
      flex: 0 0 30%;
      max-width: 75%;

  }
  .support__box{
      height: 270px;
  }
  .support__box .big-commerce-img{
      width: 80%;
  }
}
.fade-in , .projects {
  visibility: hidden;
  animation-name: fadeInUp;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes fadeInUp {
  0% {
    visibility: visible;
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
}

/* Enhanced Technologies Section - Modern Circular Design */
#Technologies .support__box {
  border: none !important;
  border-radius: 50% !important;
  background: #fff !important;
  box-shadow: 0 10px 30px rgba(86, 139, 225, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: visible;
  width: 150px;
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 10px auto;
  padding: 25px !important;
}

#Technologies .support__box:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  background: #fff !important;
}

#Technologies .support__box .icon {
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  height: 80px;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#Technologies .support__box .icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(0%);
}

#Technologies .support__box .content {
  position: relative;
  z-index: 1;
}

#Technologies .support__box .title {
  font-weight: 600;
  font-size: 14px !important;
  margin-bottom: 0;
  color: #333;
  text-align: center;
}

/* Category badges styling */
#Technologies .section-header h3::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #568be1 0%, #3a5fa0 100%);
  margin: 15px auto;
  border-radius: 2px;
}

#Technologies .row span {
  transition: all 0.3s ease;
  cursor: default;
}

#Technologies .row span:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(86, 139, 225, 0.3);
  background: linear-gradient(135deg, #568be1 0%, #3a5fa0 100%);
  color: #fff !important;
}

/* Grid adjustments for circular layout */
#Technologies .custom-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 30px;
  padding: 10px 0;
}

#Technologies .col-xl-2 {
  flex: 0 0 auto;
  max-width: 150px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #Technologies .support__box {
    width: 120px;
    height: 120px;
  }

  #Technologies .support__box .icon {
    height: 50px;
    width: 50px;
  }

  #Technologies .support__box .title {
    font-size: 12px !important;
  }

  #Technologies .row span {
    font-size: 12px;
    padding: 6px 15px;
  }
}
