/* @import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap"); */


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}

body {
  font-family: 'Ubuntu', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
  scroll-behavior: smooth;

}

/* Style the custom scrollbar */
body::-webkit-scrollbar {
  width: 0;
  /* Set the width of the scrollbar */
}



header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s, width 0.3s, border-radius 0.3s;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: transparent;
  border: none;
  height: 90px;
  border-radius: 0;
  /* border: 2px solid #726f6f; */
  color: #ffffff;
  font-size: 1.2rem;
  transition: background-color 0.3s, border 0.3s, border-radius 0.3s height 0.3s ease;
}

.logo {
  width: 50px;
  height: auto;
  padding: 20px;
  margin-top: 10px;
}

.navbar-items {

  display: flex;
  align-items: center;
  margin-right: 0;
  cursor: pointer;
}

.nav-item {
  color: #ffffff !important;
  margin-right: 20px;
  list-style: none;
  transition: margin-right 0.3s;
}

/* Style for the dropdown container */
.dropdown {
  color: #ffffff;
  list-style: none;
  position: relative;
}

/* Style for the dropdown trigger (Services span) */
.dropdown .nav-item {
  cursor: pointer;
  color: #000000;
  /* Adjust color as needed */
}

/* Style for the dropdown content */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: transparent;
  /* Semi-transparent white background for glassmorphic effect */
  backdrop-filter: blur(10px);
  /* Add a blur effect to the background */
  z-index: 1;
  min-width: 160px;
  padding: 8px 0;
  transition: background-color 0.3s;
  /* Add a smooth transition effect */
}

/* Style for the individual dropdown items */
.dropdown-content a {
  color: #ffffff;
  /* Adjust color as needed */
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  transition: background-color 0.3s;
  /* Add a smooth transition effect */
}

/* Change the background color of the dropdown items on hover */
.dropdown-content a:hover {
  background-color: #c7c7c7;
  border-radius: 5px;

}

/* Show the dropdown content when hovering over the dropdown trigger */
.dropdown:hover .dropdown-content {
  display: block;
}


.cssbuttons-io-button {
  background: #4CAF50;
  color: white;
  font-family: inherit;
  padding: 0.35em;
  padding-left: 1.2em;
  font-size: 17px;
  font-weight: 500;
  border-radius: 0.9em;
  border: none;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  box-shadow: inset 0 0 1.6em -0.6em #4CAF50;
  overflow: hidden;
  position: relative;
  height: 2.8em;
  padding-right: 3.3em;
  cursor: pointer;
}

.cssbuttons-io-button .icon {
  background: white;
  margin-left: 1em;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.2em;
  width: 2.2em;
  border-radius: 0.7em;
  box-shadow: 0.1em 0.1em 0.6em 0.2em #4CAF50;
  right: 0.3em;
  transition: all 0.3s;
}

.cssbuttons-io-button:hover .icon {
  width: calc(100% - 0.6em);
}

.cssbuttons-io-button .icon svg {
  width: 1.1em;
  transition: transform 0.3s;
  color: #9271c3;
}

.cssbuttons-io-button:hover .icon svg {
  transform: translateX(0.1em);
}

.cssbuttons-io-button:active .icon {
  transform: scale(0.95);
}


/* Updated styling for the .scrolled class */
.navbar.scrolled {
  background: rgba(175, 167, 167, 0.6);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 10px;
  width: 70%;
  border-radius: 50px;
  height: 14vh;
  /* border: 2px solid ; */
  margin: auto;
  left: 50%;
  transition: background 0.3s, box-shadow 0.3s, width 0.3s, border-radius 0.3s;
}

/* Hamburger menu styles */
.hamburger-menu {
  display: none;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 6px 0;
  transition: 0.4s;
}

/* Add fade animation to bars */
.bar:nth-child(1) {
  transition-delay: 0.2s;
}

.bar:nth-child(2) {
  transition-delay: 0.4s;
}

.bar:nth-child(3) {
  transition-delay: 0.6s;
}

/* Responsive styles */
@media only screen and (max-width: 768px) {
  .navbar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    height: 13vh;
  }

  .navbar-items {
    display: none;
    flex-direction: row;
    align-items: center;
    margin-right: 0;
    width: 60vw;
  }

  .nav-item {
    margin-right: 20px;
    margin-bottom: 0;
  }

  .logo {
    margin-right: auto;
    /* Pushes the logo to the extreme left */
  }

  .hamburger-menu {
    display: block;

  }

  .bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 6px 0;
    transition: 0.4s;
    margin-right: 20px;
  }

  /* Adjust fade animation for mobile view */
  .bar:nth-child(1) {
    transition-delay: 0.2s;
  }

  .bar:nth-child(2) {
    transition-delay: 0.4s;
  }

  .bar:nth-child(3) {
    transition-delay: 0.6s;
  }
}

/* Abt Cards */

.container-abt {
  width: 84%;
  /* max-width: 700px; Adjust the max-width as needed */
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: 105px;
  background: rgba(222, 210, 101, 0.3);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(5.5px);
  -webkit-backdrop-filter: blur(5.5px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  gap: 35px;
  padding: 35px;
}

.container-abt fa{
  font-size: 20px;
}

.container-abt .card-abt {
  position: relative;
  border-radius: 10px;
  margin-bottom: 20px;
  /* Add margin between cards */
}

.container-abt .card-abt .icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f00;
  transition: 0.7s;
  z-index: 1;
}

.container-abt .card-abt .icon .fa {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 80px;
  transition: 0.7s;
  color: #fff;
}

.container-abt .card-abt .face {
  width: 300px;
  height: 200px;
  transition: 0.5s;
}

.container-abt .card-abt .face.face1 {
  position: relative;
  background: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  transform: translateY(100px);
}

.container-abt .card-abt:hover .face.face1 {
  background: #ff0057;
  transform: translateY(0px);
}

.container-abt .card-abt .face.face1 .content {
  opacity: 1;
  transition: 0.5s;
}

.container-abt .card-abt:hover .face.face1 .content {
  opacity: 1;
}

.container-abt .card-abt .face.face1 .content i {
  max-width: 100px;
}

.container-abt .card-abt .face.face2 {
  position: relative;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  transform: translateY(-100px);
}

.container-abt .card-abt:hover .face.face2 {
  transform: translateY(0);
}

.container-abt .card-abt .face.face2 .content p {
  margin: 0;
  padding: 0;
  text-align: center;
  color: #414141;
}

.container-abt .card-abt .face.face2 .content h3 {
  margin: 0 0 10px 0;
  padding: 0;
  color: #fff;
  font-size: 24px;
  text-align: center;
  color: #414141;
}

.container-abt a {
  text-decoration: none;
  color: #414141;
}

/* Media Query for Small Screens */
@media screen and (max-width: 600px) {
  .container-abt {
    flex-direction: column;
    /* Change flex-direction to column on small screens */
    /* Center the cards on small screens */
    column-gap: 20px;

  }
}

/* Marquee Strip */
.marquee-container {
  overflow: hidden;
  width: 100%;
  gap: 25px;
}

.marquee-abt {
  display: flex;
  /* gap: inherit; */
  padding: 25px;
}

.img-marquee {
  width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: 25px;
  /* gap: 10px; */
  transition: all ease 0.5s;
  margin: 15px;
}

.img-marquee:hover{
  cursor: pointer;
  transform: scale(1.1);
  transition: all ease 0.4s;
  border-radius: 10px;
  gap: 1em;
  margin: 25px;
}

@keyframes marquee-scroll {
  0% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(calc(25px * 9)); /* Adjust the number based on the number of images */
  }
}

/* Profile card */
#profileCard {
  position: relative;
  width: 600px;
  height: 400px;
  transform-style: preserve-3d;
  transition: transform 0.5s;
  left: 410px;
}

#profileCard.flip {
  transform: rotateY(180deg);
}

.card-face {
  position: absolute;
  width: 100%;
  height: 98%;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
background: #b2f5b3;
box-shadow:  20px 20px 60px #97d098,
         -20px -20px 60px #cdffce;

}

.card-face.back {
  transform: rotateY(180deg);
}

.profile-image {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.profile-info {
  text-align: center;
  margin-bottom: 20px;
}

.profile-info p{
  /* text-decoration: none; */
  color: #333333;
}

.social-icons {
  display: flex;
  gap: 40px;
  
  border-radius: 150px;
}

.social-icon {
  font-size: 36px;
  color: #3498db;
  cursor: pointer;
  padding: 8px;
  transition: background-color 0.3s;
  position: relative;
  border-radius: 150px;
background: #b2f5b3;
box-shadow:  10px 10px 19px #97d098,
         -10px -10px 19px #bef7bf;
}

.social-icon:hover {
  background-color: #3498db;
  color: #fff;
}

.social-icon img {
  width: 80%;
  height: 80%;
  border-radius: 50%;
  object-fit: cover;
}

.flip-button {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 10px;
  cursor: pointer;
  width: 75px;
  color: #000000;
  border: none;
  border-radius: 20px;
background: #b2f5b3;
box-shadow:  10px 10px 19px #97d098,
         -10px -10px 19px #cdffce;
}

.flip-button-back {
  display: none;
}

video {
  width: 100%;
  transition: all ease-in-out 0.2s;
}

video:hover{
  border-radius: 20px;
  width: 620px;
}


/* FOOTER */
.footer {
  margin-top: 80px;
  background-color: #D5DBE2;
  padding: 20px 0;
  font-family: 'Ubuntu', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 15px auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-col {
  flex-basis: 20%;
  padding: 20px 0;
}

.footer-col h4 {
  font-size: 20px;
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-col p {
  font-size: 16px;
  color: #000000;
  line-height: 1.8;
}

.quick-links-footer {
  font-size: 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col a {
  text-decoration: none;
  color: #777;
}

.company-logo-footer {
  max-width: 100%;
  height: 30%;
  margin-bottom: 10px;
}

.gallery-footer {
  margin-left: -100px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.gallery-footer img {
  width: 80px;
  height: 100px;
  border-radius: 10px;
  aspect-ratio: 1/3;
  object-fit: cover;
  cursor: pointer;
  transition: all ease 0.2s;
  border: 2px solid black;
}

.gallery-footer img:hover {
  width: 50%;
  border-radius: 0;
  border: none;
  /* margin: 5px; */
  transition: all ease 0.2s;
}

.social-links-footer {
  display: flex;
  gap: 10px;
}

.social-links-footer a {
  text-decoration: none;
  color: #000000;
  font-size: 18px;
  transition: color 0.3s ease-in-out;
  margin-right: -50px;
  background-color: #ff4500;
}

.social-links-footer a:hover {
  color: #ff4500;
}

/* Existing styles above this comment remain unchanged */

.footer-col .social-links-footer a {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: rgba(255, 0, 0, 0.251);
  margin: 0 0 0 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.5s ease;
}

.footer-col .social-links-footer a:hover {
  color: #24262b;
  background-color: #ffffff;
}


.footer-strip {
  background-color: #e2d1d1;
  height: 35px;
  width: 100%;
  margin-top: -70px;
  color: #000000;
  /* display: inline-block; */

}

.footer-strip p {
  font-size: medium;
  text-align: center;
  padding: 5px;
}

.footer-wave {
  margin-bottom: -90px;
  padding: 0;
  /* margin-top: -50px; */
}

.custom-shape-divider-bottom-1705669438 {
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-bottom-1705669438 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 119px;
}

.custom-shape-divider-bottom-1705669438 .shape-fill {
  fill: #D5DBE2;
}