* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

/* ================= HEADER ================= */

/* ================= HEADER ================= */
.header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 80px;
}

.header-inner {
  width: 90%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  position: relative;
}

.logo {
  z-index: 1002;
}

.logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.4));
}

.navbar {
  width: fit-content;
  max-width: 900px;
  padding: 10px 38px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 40px;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.13);
}

.navbar a {
  text-decoration: none;
  color: #212121;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 25px;
  transition: all 0.3s;
  white-space: nowrap;
}

.navbar a:hover {
  background: #E5E7EB;
}

.lang-btn {
  padding: 10px 22px;
  background: transparent;
  color: #4B5563;
  border: none;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.lang-btn:hover {
  background: #E5E7EB;
}

/* Hamburger Menu */
.hamburger-menu {
  display: none;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  z-index: 1002;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.13);
}

.hamburger-menu i {
  font-size: 24px;
  color: #212121;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu {
  position: fixed;
  top: -10px;
  right: -300px;
  width: 280px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  z-index: 1001;
  padding: 100px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: right 0.4s ease;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.mobile-menu a {
  text-decoration: none;
  color: #212121;
  font-size: 18px;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: 12px;
  transition: all 0.3s;
}

.mobile-menu a:hover {
  background: #E5E7EB;
}

.mobile-menu .lang-btn {
  margin-top: 10px;
  width: 100%;
  text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
  .navbar {
    gap: 6px;
    padding: 10px 25px;
  }
  
  .navbar a {
    padding: 8px 14px;
    font-size: 14px;
  }
  
  .lang-btn {
    padding: 8px 14px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .header {
    top: 10px;
    height: 70px;
  }
  
  .header-inner {
    width: 95%;
    justify-content: space-between;
  }
  
  .logo img {
    height: 70px;
  }
  
  .navbar {
    display: none;
  }
  
  .hamburger-menu {
    display: flex;
  }
  
  .mobile-menu.active {
    right: 0;
  }
  
  .mobile-menu-overlay.active {
    display: block;
    opacity: 1;
  }
}

/* ================= END HEADER ================= */



/* ================= TRY SECTION ================= */

.white-section {
  background: linear-gradient(135deg, #ffffff 100%);
  padding: 55px 7%;
  margin: 0;
}

/* ================= HERO SECTION ================= */
.team-hero {
  background: white;
  padding: 100px 7% 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.team-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(99, 102, 241, 0.02) 0%, transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(37, 99, 235, 0.02) 0%, transparent 50%);
  z-index: 0;
}

.team-hero h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
  color: #1F2937;
  position: relative;
  z-index: 1;
  animation: fadeInDown 0.8s ease;
}

.team-hero p {
  font-size: 16px;
  color: #4B5563;
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= TEAM SECTION ================= */
.team-section {
  padding: 60px 7% 100px;
  background: white;
  position: relative;
  overflow: hidden;
}

.team-section::before {
  content: '';
  position: absolute;
  left: -120px;
  top: 20%;
  width: 250px;
  height: 320px;
  background: linear-gradient(135deg, #898bec57 0%, #684cc2d2 100%);
  border-radius: 50%;
  opacity: 0.04;
  filter: blur(80px);
  animation: floatLeft 20s ease-in-out infinite;
}

.team-section::after {
  content: '';
  position: absolute;
  right: -120px;
  bottom: 15%;
  width: 250px;
  height: 320px;
  background: linear-gradient(135deg, #4e46e549 0%, #2563EB 100%);
  border-radius: 50%;
  opacity: 0.04;
  filter: blur(80px);
  animation: floatRight 20s ease-in-out infinite;
}

@keyframes floatLeft {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -30px); }
}

@keyframes floatRight {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30px, 30px); }
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.team-card {
  text-align: center;
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  animation: fadeInUp 0.6s ease forwards;
  position: relative;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-card:nth-child(1) { animation-delay: 0.1s; }
.team-card:nth-child(2) { animation-delay: 0.15s; }
.team-card:nth-child(3) { animation-delay: 0.2s; }
.team-card:nth-child(4) { animation-delay: 0.25s; }
.team-card:nth-child(5) { animation-delay: 0.3s; }
.team-card:nth-child(6) { animation-delay: 0.35s; }
.team-card:nth-child(7) { animation-delay: 0.4s; }
.team-card:nth-child(8) { animation-delay: 0.45s; }
.team-card:nth-child(9) { animation-delay: 0.5s; }
.team-card:nth-child(10) { animation-delay: 0.55s; }
.team-card:nth-child(11) { animation-delay: 0.6s; }
.team-card:nth-child(12) { animation-delay: 0.65s; }
.team-card:nth-child(13) { animation-delay: 0.7s; }
.team-card:nth-child(14) { animation-delay: 0.75s; }
.team-card:nth-child(15) { animation-delay: 0.8s; }
.team-card:nth-child(16) { animation-delay: 0.85s; }

.team-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, #6366F1, #4F46E5, #2563EB);
  
  border-radius: 18px;
  opacity: 0;
  transition: opacity 0.5s ease;
  animation: gradientRotate 3s ease infinite;
  z-index: -1;
}


.team-card:hover::before {
  opacity: 0.3;
  filter: blur(25px);
}

.team-photo {
  width: 100%;
  aspect-ratio: 2/3;
  background: #ededed;
  
  
  border-radius: 18px;
  margin-bottom: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.099);
  transition: all 0.3s ease;
  cursor: pointer;
}


.team-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(15, 12, 17, 0.085) 50%,
    transparent 100%
  );
  transform: translateX(-100%);
  animation: shimmer 2.5s infinite;
}


.team-card:hover .team-photo {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  
}


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

.team-card:hover .team-photo img {
  transform: scale(1.05);
  
}

.team-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, 
    rgba(79, 70, 229, 0) 0%, 
    rgba(78, 70, 229, 0) 100%
  );
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover .team-photo::after {
  opacity: 1;
}

.team-info {
  transition: all 0.3s ease;
}

.team-card:hover .team-info {
  transform: translateY(-5px);
}

.team-name {
  font-size: 16px;
  font-weight: 700;
  color: #1F2937;
  margin-bottom: 6px;
  letter-spacing: -0.2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.team-card:hover .team-name {
  color: #7153f6;
  transform: scale(1.05);
  text-shadow: 0 2px 8px rgb(99, 101, 241);
}

.team-title {
  font-size: 13px;
  font-weight: 600;
  color: #20213fb9;
  margin-bottom: 4px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.05s;
  display: inline-block;
}

.team-card:hover .team-title {
  color: #090217;
  transform: translateX(3px);
}

.team-role {
  font-size: 12px;
  font-weight: 400;
  color: #26282c;
  line-height: 1.5;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
  opacity: 0.8;
}

.team-card:hover .team-role {
  opacity: 1;
  color: #4B5563;
  transform: translateY(2px);
}

@media (max-width: 1400px) {
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
}


@media (max-width: 1024px) {
  header {
    flex-direction: column;
    gap: 15px;
    padding: 15px 5%;
  }

  
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .team-hero {
    padding: 80px 7% 60px;
  }
  
  .team-hero h1 {
    font-size: 34px;
  }
  
  .team-hero p {
    font-size: 15px;
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .team-name {
    font-size: 15px;
  }
  
  .team-title {
    font-size: 12px;
  }
  
  .team-role {
    font-size: 11px;
  }

}

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .team-section {
    padding: 40px 5% 70px;
  }
  
}
       
/* ================= END TRY SECTION ================= */


/* ================= FOOTER ================= */
footer {
  padding: 80px 7% 30px;
  background: #4532C8;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-brand-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 12px;
}

.footer-logo {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-brand-text h3 {
  font-size: 21.2px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.footer-brand-text p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.8;
}

.footer-brand > p {
  font-size: 14.2px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 28px;
  margin-top: 8px;
}

.social-links {
  display: flex;
  gap: 14px;
}

.social-icon {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
  background: #6366F1;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.footer-section h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 22px;
  letter-spacing: -0.3px;
}

.footer-section p {
  font-size: 14px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #6366F1;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .square-section {
    padding: 60px 5%;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
}

@media (max-width: 768px) {

  .dci-logo img {
    height: 90px;
  }
 
  .square-section p {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-brand-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

@media (max-width: 576px) {
  .square-section {
    padding: 40px 15px;
  }
  
  .dci-logo img {
    height: 80px;
  }
  
  footer {
    padding: 50px 20px 30px;
  }
  
  .social-icon {
    width: 38px;
    height: 38px;
  }
}

