* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  overflow-x: hidden;
}

/* .hero-section {
  overflow: hidden;

  background-color: #f8f9faed;
  background: linear-gradient(120deg, #fffbe9, #fff6e3, #ffffff);
} */
.hero-section {
  position: relative;
  background-image: url("../images/14.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100vw;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #000;
  filter: brightness(1) contrast(1) saturate(1.8);
  overflow: hidden;
}

/* Overlay layer */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.3); /* Adjust opacity here */

  z-index: 1; /* Keep below text */
}

/* Text container */
.hero-text-section {
  position: relative; /* makes it appear above overlay */
  z-index: 2;
  height: 300px;
}

/* Headings and text styling */
.hero-section .section-title {
  font-size: 3.9rem;
  font-weight: 600;
  color: #1e1e1e;
  position: relative;
  display: inline-block;
}

.hero-section p {
  font-size: 1.5rem;
  margin-top: 10px;
}

.hero-section .section-title::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 4px;
  background-color: maroon;
  bottom: -6px;
  left: 0;
  border-radius: 2px;
}

.hero-section .section-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
}

.hero-section .btn-primary {
  background: linear-gradient(135deg, #800000, #b30000); /* Maroon gradient */
  border: none;
  padding: 10px 25px;
  border-radius: 30px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.hero-section .btn-primary:hover {
  transform: translateY(-3px);
  background: linear-gradient(
    135deg,
    #b30000,
    #cc0000
  ); /* Brighter maroon on hover */
  box-shadow: 0 8px 20px rgba(0, 91, 187, 0.3);
}

/* Image hover zoom effect */
.hero-section .img-wrapper {
  overflow: hidden;
  border-radius: 20px;
}

.hero-section .img-wrapper img {
  transition: transform 0.6s ease;
}

.hero-section .img-wrapper:hover img {
  transform: scale(1.08);
}

@keyframes fadeRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* # Filter Code Start  */
/* Parent (no background now) */
.filteryear {
  display: flex;
  justify-content: flex-end;
  padding: 20px 30px;
}

/* Highlighted box 🔥 */
.filter-box {
  display: flex;
  align-items: center;
  gap: 1rem;

  padding: 12px 18px;

  background: linear-gradient(135deg, #f9fafb, #ffffff);
  border-radius: 10px;

  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);

  transition: all 0.3s ease;
}

/* Hover effect */
.filter-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* Label */
.form-label {
  font-weight: 600;
  margin: 0;
}

/* Select */
/* Remove default arrow */
.select-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  width: 100%;
  padding: 10px 40px 10px 12px; /* space for arrow */

  border-radius: 8px;
  border: 1px solid #ccc;

  background: #fff;
  cursor: pointer;
}

/* Wrapper */
.select-wrapper {
  position: relative;
  width: 200px;
}

/* 🔽 Custom Arrow */
.select-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;

  width: 8px;
  height: 8px;

  border: solid #555;
  border-width: 0 2px 2px 0;

  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;

  transition: 0.3s ease;
}

/* 🔥 Rotate arrow on focus */
.select-wrapper select:focus + * {
  transform: rotate(225deg);
}
/* Hide column properly */
.hide {
  display: none !important;
}

/* # Filter Code End  */
/* ================================
   Partner Highlight Section Styling
=================================== */

.partner-highlight-section {
  position: relative;
  overflow: hidden;
  color: #000;
  /* background: 
    url("../images/polygon.png")
    center/cover no-repeat; */
  padding: 80px 0;
}

.partner-highlight-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.1),
    transparent 60%
  );
  animation: glowMove 6s infinite linear;
  opacity: 0.4;
}

@keyframes glowMove {
  0% {
    transform: translateX(-20%);
  }
  100% {
    transform: translateX(20%);
  }
}

/* Title */
.partner-highlight-section .section-title {
  font-size: 2.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}

.partner-highlight-section .section-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background-color: maroon; /* Gold accent */
  margin: 10px auto 0;
  border-radius: 2px;
}

.partner-card {
  background: rgba(255, 221, 0, 0.268);
  border-radius: 20px;

  backdrop-filter: blur(8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}
.partner-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* Partner Logo */
.partner-logo {
  width: 150px !important;
  transition:
    transform 0.5s ease,
    filter 0.5s ease;
  filter: drop-shadow(0 0 15px #ffd700);
}
#aws-logo {
  width: 70px !important;
  /* height: 30px !important; */
}
.partner-card:hover .partner-logo {
  transform: scale(1.1);
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
}

/* Text */
.partner-name {
  font-size: 1.6rem;
  font-weight: 700;
  /* color: #fff; */
  color: #000;
}

.partner-description {
  font-size: 1.05rem;
  /* color: #f5f5f5; */

  color: #000;
  line-height: 1.8;
}

/* Button */
.partner-highlight-section .btn-primary {
  background: linear-gradient(135deg, #ffd700, #ffae00);
  color: #800000;
  border: none;
  padding: 8px 20px;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.partner-highlight-section .btn-primary:hover {
  background: linear-gradient(135deg, #ffae00, #ffd700);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}
/* Responsive Adjustments */
@media (max-width: 1200px) {
  .hero-our-partners {
    height: 80vh;
  }
  .animated-text-our-partners {
    font-size: 3vw !important;
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
  .hero-our-partners {
    height: 70vh !important;
    width: 100%;
    border-radius: 0;
  }
  .hero-section .section-title {
    font-size: 2.5rem;
  }
  .animated-text-our-partners {
    font-size: 5vw !important;
    margin-bottom: 10px;
  }
  .partner-logo {
    width: 200px;
  }
}
