

.rounded-4{
    transition: transform 0.2s ease-in-out;
}
.rounded-4:hover{
    transform: scale(1.05);
}


body {
    /* font-family: "Roboto", serif; */
    font-family: "Nunito Sans", serif;
    /* font-family: "Montserrat", sans-serif; */
    /* font-weight: 500; */
}

.heading {
    font-family: "Nunito Sans", serif;
}

a {
    text-decoration: none;
    color: white;
}

p {
    font-weight: 400 !important;
}

.navbar {
    position: fixed;
    top: 0;
    z-index: 101;
    width: 100vw;
    background-color: transparent !important;
    transition: background-color 0.3s ease;
    color: white;
}

.navbar.scrolled {
    /* background-color: rgba(255, 255, 255, 0.795) !important; */
    background-color: white !important;
    /* box-shadow: 0 0px 6px rgba(0, 0, 0, 0.1);  */
    color: black;
}
.navbar-collapse {
    flex-grow: unset;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nav-item a {
    font-size: 14px;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    padding-top: 20px;
    text-shadow: 0 0 5px black;
    margin-top: 20px;
}

.nav-item i {
    opacity: 0;
    transform: translateY(10px); /* Start 10px below */
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-item:hover.nav-item i {
    opacity: 1;
    transform: translateY(0); /* Move to original position */
}

/* .nav-item a:hover {
    color: #25abe0;
} */

.header {
    height: 100vh;
}

.header_base {
    height: 100%;
}

.header .carousel{
    height: 100vh;
    position: absolute;
    top: 0;
    width: 100%;
}

.header .carousel video {
    height: 100vh;
    object-fit: cover;
    position: relative;
}

.header .carousel .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Dark overlay */
    z-index: 2; /* Above video */
}

.carousel-indicators [data-bs-target] {
    background-color: #25abe0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.custom-caption {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    z-index: 10;
    width: 90%;
    opacity: 0;  /* Hide initially */
}

.custom-caption h1 {
    font-size: 3rem;
    margin: 0;
    font-weight: bold;
    text-transform: uppercase;
    transform: translateY(30px); /* Start lower */
    transition: opacity 1s ease, transform 1s ease;
}

@media (max-width: 576px) {
    .custom-caption h1 {
        font-size: 30px;
    }
}

.custom-caption p {
    font-size: 1.5rem;
    margin: 0;
    font-weight: 300;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 2s ease;
}

/* Animation Active */
.carousel-item.active .custom-caption {
    opacity: 1;
}

.carousel-item.active .custom-caption h1,
.carousel-item.active .custom-caption p {
    transform: translateY(0); /* Slide up to normal position */
}

.header_box {
    display: flex;
    padding: 20px 0 20px 0;
    width: 100%;
    /* position: absolute; */
    bottom: 0;
    z-index: 100;
    background-color: #0c0079;
    align-items: center;
}

.header_box_details {
    color: white;
}

.header_box_details span {
    font-size: 40px;
}

.sticky_icons {
    position: fixed;
    bottom: 30px;
    /* left: 10px; */
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 100;
}

.sticky_icon {
    background: #4c4c4c;
    height: 55px;
    width: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* border-bottom-right-radius: 30px;
    border-top-right-radius: 30px; */
    border-radius: 50%;
}

.sticky_icon i {
    font-size: 35px;
    color: white;
}

.parallax_base {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
}

.parallax_container1 {
    /* background-image: url('https://images.pexels.com/photos/30798185/pexels-photo-30798185/free-photo-of-green-postbox-casting-shadow-on-wall.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1'); */
    /* background-image: url('https://images.pexels.com/photos/1166644/pexels-photo-1166644.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1'); */
    background-image: url('https://images.pexels.com/photos/1090638/pexels-photo-1090638.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
    padding-top: 60px;
    padding-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 0 0 5px black;
}

.parallax_container1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 82%); /* Adjust the 0.5 to control darkness */
    z-index: 1;
}


/* To make sure your text/content stays above the overlay */
.parallax_container1 > * {
    /* position: relative; */
    z-index: 2;
}

/* .parallax_container1 .container {
    position: absolute;
    top: 100px;
} */

.about_img {
    height: 550px;
    padding-right: 130px;
}

@media (max-width: 576px) {
    .about_img {
        height: 40vh;
        padding-right: calc(var(--bs-gutter-x)* .5);
        margin-bottom: 10px;
    }
}

.about_img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.read {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2F408F;
    color: white;
    padding: 5px 0 5px 0;
    transition:  background-color 0.4s ease, color 0.4s ease ;
}

.read span {
    font-weight: bold;
}

.read:hover {
    background-color: white;
    color: black;
}

.read:hover span {
    color: black;
}

.parallax_container2 {
    /* background-image: url('https://images.pexels.com/photos/1405773/pexels-photo-1405773.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1'); */
    background-image: url('https://images.pexels.com/photos/30871314/pexels-photo-30871314/free-photo-of-modern-kitchen-and-dining-interior-design.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 60px;
    padding-bottom: 60px;
}

.parallax_container2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 32%); /* Adjust the 0.5 to control darkness */
    z-index: 1;
}


/* To make sure your text/content stays above the overlay */
.parallax_container2 > * {
    /* position: relative; */
    z-index: 2;
}

.parallax_container2 .heading {
    color: white;
}

/* .parallax_container2 .container {
    position: absolute;
    top: 100px;
} */

.line {
    width: 100%;
    background-color: #2F408F;
    height: 2px;
}

.loader {
    display: block;
    --height-of-loader: 2px;
    --loader-color: #2F408F;
    width: 100%;
    height: var(--height-of-loader);
    border-radius: 30px;
    background-color: rgba(0,0,0,0.2);
    position: relative;
  }
  
  .loader::before {
    content: "";
    position: absolute;
    background: var(--loader-color);
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    border-radius: 30px;
    animation: moving 1s ease-in-out infinite;
    ;
  }
  
  @keyframes moving {
    50% {
      width: 100%;
    }
  
    100% {
      width: 0;
      right: 0;
      left: unset;
    }
  }

.line h4,h6 {
    text-shadow: 0 0 5px black;
}

.home_service {
    padding: 20px;
    /* background-color: rgba(255, 255, 255, 0.397); */
    background-color: #fff;
    /* border-radius: 10px; */
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2px);
    height: 550px;
}

@media (max-width: 576px) {
    .home_service {
        height: unset;
    }
}

.home_service h6 {
    font-size: 18px;
    color: #2F408F;
    font-weight: bold;
}

.home_service p {
    font-family: 17px;
    color: #2d465e;
    font-weight: 500;
}

.home_service .btn {
    border: 1px solid;
    width: 60px;
    font-size: 16px;
    padding: 0;
}

.home_service .btn:hover {
    background-color: #4c4c4c;
    color: white;
}

.home_service_img {
    height: 300px;
    width: 100%;
    border-radius: 10px;
}

.home_service_img img {
    height: 100%;
    width: 100%;
    /* border-radius: 10px; */
    transition: transform 0.3s ease-in-out;
}

.home_service_img:hover img {
    transform: scale(1.02);
}

.home_service_details {
    text-align: justify;
}

.home_service_details p {
    color: black;
}

.contact-container {
    display: flex;
    height: 100px;
    background-color: #4c4c4c;
    color: white;
    justify-content: space-between;
    padding-left: 40px;
    padding-right: 40px;
    align-items: center;
}

.want span {
    font-size: 20px;
    font-weight: bold;
}

.con {
    border: 1px solid;
    padding: 5px 40px 5px 40px;
    /* border-radius: 50px; */
    transition: background-color 0.4s ease, color 0.4s ease;
}

.con span {
    font-size: 20px;
    font-weight: bold;
}

.con:hover {
    background-color: white;
    color: black;
}

@media (max-width: 576px) {
    .want span {
        font-size: 13px;
    }

    .con span {
        font-size: 13px;
    }

    .con {
        padding: 5px 20px 5px 20px;
    }
    
    .contact-container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.parallax_container3 {
    /* background-image: url('https://images.pexels.com/photos/17102549/pexels-photo-17102549/free-photo-of-tiles-on-roofs.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1'); */

    background-image: url('https://images.pexels.com/photos/12498613/pexels-photo-12498613.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
    /* min-height: 100vh; */
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 60px;
    padding-bottom: 60px;

}

.parallax_container3::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 70%); /* Adjust the 0.5 to control darkness */
    z-index: 1;
}


/* To make sure your text/content stays above the overlay */
.parallax_container3 > * {
    /* position: relative; */
    z-index: 2;
}


.parallax_container3 h4,h6 {
    color: white;
}

.projects .projects_img {
    height: 400px;
    border-radius: 10px;
    transition: transform .3s ease-in-out;
    display: flex;
    flex-direction: column;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.projects .projects_img a {
    height: 100%;
}

@media (max-width: 576px) {
    .projects .projects_img {
        height: 300px;
    }
}

.projects .projects_img h6 {
    text-shadow: 0 0 5px black;
    font-weight: bolder;
    opacity: 0;
    transition: opacity 0.5s ease-in;
}

.projects .projects_img:hover {
    transform: scale(1.02);
}

.projects .projects_img:hover h6 {
    opacity: 1;
    z-index: 12;
    position: relative;
}

.projects_details {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.overlay {
    position: absolute;
    display: flex;
    height: 100%;
    width: 100%;
    transition: background-color 0.3s ease-in;
    top: 0;
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.projects .projects_img:hover .overlay {
    background-color: rgba(0, 0, 0, 0.527);
}


.faq {
    background-image: url('https://images.pexels.com/photos/5428830/pexels-photo-5428830.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
    /* min-height: 100vh; */
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer {
    background-color: black;
    color: white;
    padding: 20px 0 0 0;
}

.footer_logo {
    height: 150px;
}

.footer_logo img {
    height: 100%;
}

@media (max-width: 576px) {
    .footer p {
        font-size: 12px;
    }
    
    .footer_logo {
        height: 120px;
    }
}

.footer_links {
    /* border: 1px solid; */
    display: flex;
    /* align-items: center; */
    /* justify-content: center; */
    margin-bottom: 5px;
    border-radius: 5px;
}

.footer i {
    color: white;
    font-size: 30px;
}

/* .footer_links:hover {
    background-color: white;
    color: black;
}

.footer_links:hover p, .footer_links:hover i {
    color: black;
} */

.footer_links p {
    margin-bottom: 0;
    padding: 5px 0 5px 0;
    font-size: 14px;
    font-weight: 500;
}

.footer_line {
    margin-top: 20px;
    height: 0.9px;
    background-color: white;
    margin-bottom: 20px;
}

.copy a {
    text-shadow: 0 0 25px rgb(0,140,255);
}

.copy a:hover {
    text-shadow: 0 0 5px rgb(0,140,255),
    0 0 25px rgb(0,140,255),
    0 0 50px rgb(0,140,255),
    0 0 100px rgb(0,140,255);
}

.team_img {
    height: 330px;
}

.team_img img {
    height: 100%;
    width: 100%;
}

.team_contact {
    display: flex;
    background-color: #4c4c4c;
    color: white;
    justify-content: space-between;
    padding: 20px;
    align-items: center;
}

.join_btn {
    border: 1px solid white;
    padding: 5px 20px;
    /* border-radius: 20px; */
}

.join_btn:hover {
    background-color: white;
}

.join_btn:hover a {
    color: black;
    font-weight: bold;
}


.client_details {
    padding: 40px;
    background-color: #eee9e9;
}

.client_img {
    height: 300px;
}

.client_img img {
    height: 100%;
    width: 100%;
}

.portfolio {
    height: 250px;
}

.portfolio img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.contact_us {
    padding: 20px;
    background-color: #e1e1e1a3;
    border-radius: 10px;
}


.careers {
    padding: 40px;
    background-color: #e1e1e1a3;
   
}
@media (max-width: 768px) {
    .careers {
        padding: 20px;
    }
}

.career_line {
    background-color: black;
    height: 1px;
}

.position {
    padding: 10px;
    background-color: white;
    border-radius: 10px;
}

/* .position h3, span, i, p {
    font-weight: bold;
} */

.apply {
  font-size: 20px;
  margin-bottom: 10px;
  color: green;
}

.position_type, .position_time {
    border: 1px solid;
    border-radius: 20px;
    padding: 5px 10px 5px 10px;
    font-size: 12px;
}
.position_type p, .position_time p {
    margin: 0;
}

.p_fontweight {
    font-weight: unset;
}


.button {
    background-color: #ffffff00;
    color: #fff;
    width: 4.5em;
    height: 1.9em;
    border: #25abe0 1px solid;
    border-radius: 11px;
    text-align: right;
    transition: all 0.6sease;
    display: flex;
    justify-content: center;
    align-items: center;
}
  
  .button:hover {
    background-color: #25abe0;
    cursor: pointer;
  }
  
  .button svg {
    width: 1.1em;
    /* margin: -0.2em 0.8em 1em; */
    position: absolute;
    display: flex;
    transition: all 0.6s ease;
    color: black;
  }
  
  .button:hover svg {
    transform: translateX(5px);
    color: white;
  }
  
  .text {
    margin: 0 1.5em
  }


  .box {
    width: 140px;
    height: auto;
    float: left;
    transition: .5s linear;
    position: relative;
    display: block;
    overflow: hidden;
    padding: 15px;
    text-align: center;
    /* margin: 0 5px; */
    background: transparent;
    text-transform: uppercase;
    font-weight: 500;
  }
  
  .box:before {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    height: 4px;
    width: 100%;
    border-bottom: 1px solid transparent;
    border-left: 1px solid transparent;
    box-sizing: border-box;
    transform: translateX(100%);
  }
  
  .box:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    border-top: 1px solid transparent;
    border-right: 1px solid transparent;
    box-sizing: border-box;
    transform: translateX(-100%);
  }
  
  .box:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
  
  .box:hover:before {
    border-color: #25abe0;
    height: 100%;
    transform: translateX(0);
    transition: .3s transform linear, .3s height linear .3s;
  }
  
  .box:hover:after {
    border-color: white;
    height: 100%;
    transform: translateX(0);
    transition: .3s transform linear, .3s height linear .5s;
  }

  @media (max-width: 576px) {
    .box {
        font-size: 13px;
    }
  }
  
  .reads {
    color: white;
    text-decoration: none;
    cursor: pointer;
    outline: none;
    border: none;
    background: transparent;
    padding: 0;
  }


  .card {
    overflow: visible;
    width: 100%;
    height: 500px;
  }
  
  .content {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 300ms;
    box-shadow: 0px 0px 10px 1px #000000ee;
    border-radius: 5px;
  }
  
  .front, .back {
    background-color: #151515;
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 5px;
    overflow: hidden;
  }
  
  .back {
    width: 100%;
    height: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  
  .back::before {
    position: absolute;
    content: ' ';
    display: block;
    width: 160px;
    height: 160%;
    background: linear-gradient(90deg, transparent, #ff9966, #ff9966, #ff9966, #ff9966, transparent);
    animation: rotation_481 5000ms infinite linear;
  }
  
  .back-content {
    position: absolute;
    width: 99%;
    height: 99%;
    background-color: #151515;
    border-radius: 5px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }
  
  .card:hover .content {
    transform: rotateY(180deg);
  }
  
  @keyframes rotation_481 {
    0% {
      transform: rotateZ(0deg);
    }
  
    0% {
      transform: rotateZ(360deg);
    }
  }
  
  .front {
    transform: rotateY(180deg);
    color: white;
  }
  
  .front .front-content {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .front-content .badge {
    background-color: #00000055;
    padding: 2px 10px;
    border-radius: 10px;
    backdrop-filter: blur(2px);
    width: fit-content;
  }
  
  .description {
    box-shadow: 0px 0px 10px 5px #00000088;
    width: 100%;
    padding: 10px;
    background-color: #00000099;
    backdrop-filter: blur(5px);
    border-radius: 5px;
  }
  
  .title {
    font-size: 20px;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
  }
  
  /* .title p { */
    /* width: 50%; */
  /* } */
  
  .card-footer {
    color: #ffffff88;
    margin-top: 5px;
    font-size: 8px;
  }
  
  .front .img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  
  .circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: #ffbb66;
    position: relative;
    filter: blur(15px);
    animation: floating 2600ms infinite linear;
  }
  
  #bottom {
    background-color: #ff8866;
    left: 50px;
    top: 0px;
    width: 150px;
    height: 150px;
    animation-delay: -800ms;
  }
  
  #right {
    background-color: #ff2233;
    left: 160px;
    top: -80px;
    width: 30px;
    height: 30px;
    animation-delay: -1800ms;
  }
  
  @keyframes floating {
    0% {
      transform: translateY(0px);
    }
  
    50% {
      transform: translateY(10px);
    }
  
    100% {
      transform: translateY(0px);
    }
  }



  .cardss {
    display: flex;
    /* flex-direction: column; */
    gap: 15px;
  }

  @media (max-width: 576px) {
    .cardss {
        flex-direction: column;
    }
  }
  
  .cardss .red {
    background-color: #4c4c4c;
  }
  
  .cardss .blue {
    background-color: #25abe0;
  }
  
  .cardss .cards {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    height: 200px;
    width: 100%;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    transition: 400ms;
  }
  
  .cardss .cards p.tip {
    font-size: 1em;
    font-weight: 700;
  }
  
  .cardss .cards p.second-text {
    font-size: .7em;
  }
  
  .cardss .cards:hover {
    transform: scale(1.1, 1.1);
  }
  
  .cardss:hover > .cards:not(:hover) {
    filter: blur(10px);
    transform: scale(0.9, 0.9);
  }




  .btns {
    padding: .5em 1em;
    background: none;
    border: 2px solid #fff;
    font-size: 15px;
    color: #131313;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    border-radius: 12px;
    background-color: #25abe0;
    font-weight: bolder;
    box-shadow: 0 2px 0 2px #000;
   }
   
   .btns:before {
    content: "";
    position: absolute;
    width: 100px;
    height: 120%;
    /* background-color: #ff6700; */
    background-color: white;
    top: 50%;
    transform: skewX(30deg) translate(-150%, -50%);
    transition: all 0.5s;
   }
   
   .btns:hover {
    background-color: #4cc9f0;
    color: #fff;
    box-shadow: 0 2px 0 2px #0d3b66;
   }
   
   .btns:hover::before {
    transform: skewX(30deg) translate(150%, -50%);
    transition-delay: 0.1s;
   }
   
   .btns:active {
    transform: scale(0.9);
   }


/* .hover {
    position: relative;
    border: none;
    background: none;
    text-transform: uppercase;
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-duration: 400ms;
    transition-property: color;
}

.hover:focus,
.hover:hover {
  color: #fff;
}

.hover:focus:after,
.hover:hover:after {
  width: 100%;
  left: 0%;
}

.hover:after {
  content: "";
  pointer-events: none;
  bottom: -2px;
  left: 50%;
  position: absolute;
  width: 0%;
  height: 2px;
  background-color: #fff;
  transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
  transition-duration: 400ms;
  transition-property: width, left;
} */
  
.hover {
    transition: all 0.2s ease-in-out;
}

.hover:hover {
    scale: 1.2;
    /* font-weight: 900; */
}



/* ==========================================================================  */
/* Project Card Styles */
.project-card {
  display: block;
  height: 100%;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}



.projects_details {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.projects_details img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .projects_details img {
  transform: scale(1.1);
}

.projects_details .content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  z-index: 2;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.project-card:hover .content {
  transform: translateY(0);
}

.projects_details h6 {
  color: white;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 5px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.project-type {
  display: inline-block;
  color: white;
  font-size: 0.9rem;
  padding: 5px 10px;
  background: rgba(47, 64, 143, 0.85);
  border-radius: 20px;
  backdrop-filter: blur(5px);
}



.project-card:hover .overlay {
  opacity: 1;
}

@media (max-width: 768px) {
  .projects_details {
    height: 300px;
  }
  
  .projects_details .content {
    transform: translateY(0);
  }
}

/* messages=============================================== */
.alert-success {
    background-color: #28a745 !important;
    border-color: #28a745 !important;
    color: white !important;
    border-radius: 8px;
}
