* {
  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 ================= */


/* ================= PORTFOLIO STYLES ================= */

.portfolio-card {
  transform: translateY(0);
}

.portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12) !important;
}

/* ================= END PORTFOLIO STYLES ================= */


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

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

.square-section {
  background: linear-gradient(180deg,#2159E6 0%, #4E338D 100%);
  padding: 50px 7%;
  text-align: center;
  color: #ffffff;
  margin: 0;
}

.square-section p {
  color: rgb(233, 233, 233);
  font-size: 15px;
  line-height: 1.85;
  font-weight:300;
  max-width: 900px;
  margin: 0 auto;
}

       
/* ================= 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: 1600px) {
  .team-grid {
    max-width: 1400px;
  }
}

@media (max-width: 1400px) {
 .team-grid {
    max-width: 1200px;
  }
}

@media (max-width: 1200px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .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;
  }

  .portfolio-grid {
    grid-template-columns: 1fr !important;
  }

  .portfolio-links-container {
    flex-direction: column !important;
  }

  .portfolio-links-container a {
    width: 100% !important;
  }
}

@media (max-width: 576px) {
  .square-section {
    padding: 40px 15px;
  }
  
  
  .square-section p {
    font-size: 15px;
  }
  
  footer {
    padding: 50px 20px 30px;
  }
  
  .social-icon {
    width: 38px;
    height: 38px;
  }

  .portfolio-links-section {
    padding: 40px 20px !important;
  }

  .portfolio-links-section h2 {
    font-size: 28px !important;
  }

  .portfolio-links-section p {
    font-size: 16px !important;
  }
}
