@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap");

body {
  font-family: "Poppins", sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "poppins";
}
body {
  background: #f8f8f8;
  color: #333;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
}
.logo {
  height: 80px;
}
header {
  background: #ffffff;
  padding: 20px 40px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
header h1 {
  font-size: 28px;
}

.section {
  width: 90%;
  margin: 40px auto;
  line-height: 1.7;
}
.section h2 {
  margin-bottom: 15px;
  font-size: 30px;
}

.advantages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.adv-box {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.dept-carousel {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.dept-track {
  display: flex;
  transition: transform 0.6s ease;
}
.dept-slide {
  min-width: 100%;
  text-align: center;
  background: #fff;
}
.dept-slide img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-bottom: 1px solid #ddd;
}
.dept-slide h3 {
  padding: 15px;
  font-size: 24px;
}
.drop-animation {
  opacity: 0;
  transform: translateY(-40px);
  animation: dropIn 0.8s ease-out forwards;
}

@keyframes dropIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* carousel styles */
.carousel-item {
  /* display: flex !important; */
  height: 500px;

  .left-section {
    width: 50%;
  }
  .right-section {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    img {
      height: 49%;
      border-radius: 5px;
    }
  }
}

.carousel-btns {
  text-align: center;
  margin: 10px;
}
.carousel-btns button {
  padding: 10px 16px;
  margin: 0 5px;
  border: none;
  background: #333;
  color: white;
  cursor: pointer;
  border-radius: 5px;
}

.clients {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.client-box {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  width: 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.stats-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.stat-card {
  padding: 25px;
  border-radius: 12px;
  background: #f5f5f5;
  text-align: center;
  transition: 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  background: #eaeaea;
}

.stat-card h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.stat-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.stat-card p {
  font-size: 1rem;
  margin: 0;
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays */
.delay-1 {
  transition-delay: 0.2s;
}
.delay-2 {
  transition-delay: 0.5s;
}
.delay-3 {
  transition-delay: 0.8s;
}

.culture-section {
  text-align: center;
  padding: 20px;
}

.culture-points p {
  font-size: 1.1rem;
  margin: 12px 0;
}
/* .culture-bg {
  background: linear-gradient(135deg, #f3f3f3, #e6e6e6, #ffffff);
  background-size: 400% 400%;
  animation: gradientMove 12s ease infinite;
  padding: 60px 0;
  border-radius: 12px;
}

/* Smooth gradient sliding animation */
/* @keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
} */
/* */

/* Outer container */
.culture-floating-bg {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  border-radius: 16px;
  background: #ffffff;
}

/* Blurred floating blobs */
.culture-floating-bg::before,
.culture-floating-bg::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: #ffb3b3;
  filter: blur(120px);
  opacity: 0.65;
  animation: floatBlob 15s ease-in-out infinite alternate;
}

/* Blob 1 */
.culture-floating-bg::before {
  top: -50px;
  left: -50px;
  background: #ffcd9e;
}

/* Blob 2 */
.culture-floating-bg::after {
  bottom: -50px;
  right: -60px;
  background: #ffb3a44a;
}

/* Animation */
@keyframes floatBlob {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(80px, -50px) scale(1.2);
  }
  100% {
    transform: translate(-40px, 40px) scale(1);
  }
}
.map-container {
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.navbar-parent {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #eaeaea;
  margin-bottom: 10px;
  border-top: 1px solid #eaeaea;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  border-bottom: 1px solid #eaeaea;
}

.logo {
  font-size: 22px;
  font-weight: bold;
  color: #333;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  transition: 0.3s ease;
}

.nav-links a:hover {
  color: #5e5e5eb0;
}
.department-image {
  width: 300px;
  margin: 20px;
  border-radius: 10px;
}
.department-section {
  display: flex;
  flex-wrap: wrap;
}
.rounded-base {
  /* margin: 1rem; */
  border-radius: 5px;
}
/* .img-container {
  width: 300px;
  height: 200px;
  overflow: hidden;
  border-radius: 10px;
} */

.img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.img-container:hover img {
  transform: scale(1.02);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.logo-link {
  display: block;
  width: 100%;
}
.hero-wrapper {
  position: relative;
  height: 80vh; /* adjust to your liking */
  width: 100%;
  overflow: hidden;
}

.bg-img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  filter: brightness(75%); /* darkens image for better text visibility */
}

.carousel,
.carousel-inner,
.carousel-item {
  height: 100%;
}

.carousel-item {
  position: absolute;
  top: 0;
  left: 0;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
}

.hero-content h3 {
  font-size: 2rem;
  font-weight: 500;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
  margin-top: 15em;
  color: #eaded8;
  font-family: Playfair Display, serif;
}
