* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}


.main-content {
  display: none;
  padding: 20px;
  text-align: center;
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1000;
  background: linear-gradient(135deg, #1d2671, #c33764);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 55px;
  width: auto;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.2));
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

.logo img {
  width: 140px;
  height: auto;
  filter: brightness(0) invert(1);
  
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
}

.nav-links li a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.5px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #ffde59;
}

.loginbtn {
  background: #ffffff;
  color: #c33764;
  border: none;
  outline: none;
  padding: 8px 18px;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.loginbtn:hover {
  background: #ffde59;
  color: #1d2671;
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.menu-icon {
  display: none;
  color: #fff;
  font-size: 25px;
  cursor: pointer;
}

@media (max-width: 900px) {
  .menu-icon {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: rgba(44, 62, 80, 0.95);
    flex-direction: column;
    align-items: center;
    width: 220px;
    height: 0;
    overflow: hidden;
    padding-left: 32px;
    border-radius: 0 0 0 12px;
    transition: height 0.4s ease;
    gap: 25px;
  }

  .nav-links.open {
    height: 510px;
    width: 100%;
    padding-top: 18px;
  }

  .nav-links li {
    margin-bottom: 16px;
  }

  .loginbtn {
    margin-bottom: 16px;
  }
}

/* section main */

.about {
  height: 100vh;
  background: linear-gradient(
      rgba(10, 20, 40, 0.75),
      rgba(10, 20, 40, 0.75)
    ),
    url('./image/background1.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.about-container {
  max-width: 900px;
  padding: 0 20px;
  text-align: center;
}

.about-text h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.about-text p {
  font-size: 18px;
  color: #e0e0e0;
  line-height: 1.7;
  margin-bottom: 35px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.about-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.08);
  padding: 10px 22px;
  border-radius: 30px;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}

.about-link:hover {
  background: rgba(255, 255, 255, 0.15);
}

.about-link a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.about-link a:hover {
  color: #00b3ff;
}

.about-link span {
  color: #cccccc;
}

@media (max-width: 768px) {
  .about-text h1 {
    font-size: 34px;
  }
  .about-text p {
    font-size: 16px;
  }
  .about-link {
    font-size: 16px;
    padding: 8px 18px;
  }
}

/* section who we are */

.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 100px 10%;
  background: url("./image/bg1.webp") no-repeat center center/cover fixed;
  min-height: 100vh;
  box-sizing: border-box;
}


.about-info {
  max-width: 600px;
  animation: fadeInLeft 1.2s ease forwards;
}

.about-info h2 {
  font-size: 40px;
  font-weight: 700;
  color: rgb(8, 0, 255);
  margin-bottom: 25px;
  position: relative;
}

.about-info h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 70px;
  height: 4px;
  background-color: #0078d7;
  border-radius: 2px;
}

.about-info p {
  font-size: 16px;
  line-height: 1.8;
  color: white;
  margin-bottom: 20px;
  text-align: justify;
}

.about-image {
  text-align: right;
  animation: fadeInRight 1.2s ease forwards;
}

.about-image img {
  width: 100%;
  max-width: 550px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.about-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 992px) {
  .about-section {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 80px 5%;
  }

  .about-info h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .about-image {
    text-align: center;
  }

  .about-image img {
    max-width: 90%;
  }
}


/* section team */

.team-section {
  background: linear-gradient(135deg, #f9fafc 0%, #eef2f6 100%);
  padding: 100px 120px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.team-header {
  margin-bottom: 70px;
}

.team-header h2 {
  font-size: 45px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 20px;
  position: relative;
}

.team-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #0078d7;
  border-radius: 2px;
}

.team-header p {
  font-size: 18px;
  color: #4a5568;
  max-width: 700px;
  margin: 0 auto;
  line-height: 30px;
}

.team-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto;
}

.team-member {
  background: linear-gradient(135deg, rgb(166, 244, 244), rgb(180, 203, 243), rgb(245, 149, 149));
  border-radius: 20px;
  width: 360px;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  padding: 20px;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.1);
}

.image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}

.image-wrapper img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 18px;
  transition: transform 0.5s ease;
}

.team-member:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.team-member:hover .overlay {
  opacity: 1;
}

.plus {
  font-size: 60px;
  color: #ffffff;
  margin-bottom: 10px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.team-member:hover .plus {
  transform: scale(0);
  opacity: 0;
}

.social-icons {
  display: flex;
  gap: 15px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.team-member:hover .social-icons {
  opacity: 1;
  transform: translateY(0);
}

.social-icons a {
  color: #fff;
  font-size: 18px;
  background: #0078d7;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.social-icons a:hover {
  background: #005fa3;
}

.team-member h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1a202c;
  margin-top: 20px;
  margin-bottom: 5px;
}

.team-member .role {
  color: #0078d7;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}

@media (max-width: 1200px) {
  .team-container {
    gap: 40px;
  }

  .team-member {
    width: 320px;
  }
}

@media (max-width: 992px) {
  .team-container {
    justify-content: center;
  }

  .team-member {
    width: 300px;
  }
}

@media (max-width: 768px) {
  .team-section {
    padding: 80px 40px;
  }

  .team-container {
    flex-direction: column;
    align-items: center;
  }

  .team-member {
    width: 100%;
    max-width: 350px;
  }
}


/* section mission */

.aboutsection {
  background: url("./image/bg1.webp") no-repeat center center/cover fixed;
  padding: 100px 120px;
  font-family: 'Poppins', sans-serif;
}

.aboutcontainer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  max-width: 1300px;
  margin: 0 auto;
}

.aboutimage {
  flex: 1;
}

.aboutimage img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.08);
}

.abouttext {
  flex: 1.1;
  text-align: left;
}

.abouttext h2 {
  font-size: 44px;
  font-weight: 700;
  color: rgb(0, 255, 251);
  margin-bottom: 25px;
  position: relative;
}

.abouttext h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 90px;
  height: 4px;
  background-color: #0078d7;
  border-radius: 2px;
}

.abouttext p {
  font-size: 18px;
  color: white;
  line-height: 32px;
  margin-bottom: 25px;
}

.about-mission-vision {
  display: flex;
  gap: 40px;
  margin-top: 20px;
  margin-bottom: 40px;
}

.about-mission-vision .mission,
.about-mission-vision .vision {
  flex: 1;
}

.about-mission-vision h3 {
  font-size: 22px;
  font-weight: 600;
  color: #0078d7;
  margin-bottom: 10px;
}

.about-mission-vision p {
  font-size: 17px;
  color: white;
  line-height: 28px;
}

.aboutstats {
  display: flex;
  justify-content: flex-start;
  gap: 50px;
}

.aboutstats .stat {
  text-align: center;
}

.aboutstats .stat h4 {
  font-size: 42px;
  font-weight: 700;
  color: #0078d7;
  margin-bottom: 5px;
}

.aboutstats .stat p {
  font-size: 16px;
  color: white;
  font-weight: 500;
}

@media (max-width: 992px) {
  .aboutsection {
    padding: 80px 60px;
  }

  .aboutcontainer {
    flex-direction: column;
    text-align: center;
    gap: 60px;
  }

  .abouttext {
    text-align: center;
  }

  .abouttext h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .about-mission-vision {
    flex-direction: column;
    gap: 25px;
  }

  .aboutstats {
    justify-content: center;
    gap: 30px;
  }
}


@media (max-width: 768px) {
  .aboutsection {
    padding: 60px 30px;
   
  }

  .abouttext h2 {
    font-size: 32px;
  }

  .abouttext p {
    font-size: 16px;
    line-height: 28px;
  }

  .aboutimage img {
    height: 380px;
  }

  .aboutstats .stat h4 {
    font-size: 32px;
  }

  .aboutstats .stat p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .aboutsection {
    padding: 50px 20px;
  }

  .abouttext h2 {
    font-size: 26px;
  }

  .aboutimage img {
    height: 300px;
  }

  .aboutstats {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

/* section privacy */

.privacy-section {
  background: url('./image/back1.webp') center center / cover no-repeat fixed;
  padding: 80px 0;
  font-family: "Poppins", sans-serif;
}

.privacy-wrapper {
  width: 960px;
  margin: 0 auto;
  background: #0f172a;
  border-radius: 16px;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
  padding: 60px;
  transition: all 0.3s ease;
}

.privacy-header {
  text-align: center;
  margin-bottom: 50px;
}

.privacy-header h1 {
  font-size: 40px;
  color: white;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
}

.privacy-header h1::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #0073e6;
  margin: 15px auto 0;
  border-radius: 2px;
}

.privacy-header p {
  font-size: 18px;
  color: white;
  line-height: 28px;
}

.privacy-content {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.policy-box {
  padding: 30px;
  border-left: 5px solid #0073e6;
  background: #fafbff;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}

.policy-box:hover {
  background: #eef5ff;
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 115, 230, 0.1);
}

.policy-box h2 {
  font-size: 22px;
  color: #0f1c3f;
  margin-bottom: 12px;
  font-weight: 600;
}

.policy-box p {
  font-size: 16px;
  color: #444;
  line-height: 28px;
  text-align: justify;
}

.policy-box strong {
  color: #000;
}

@media (max-width: 992px) {
  .privacy-wrapper {
    width: 90%;
    padding: 40px;
  }

  .privacy-header h1 {
    font-size: 32px;
  }

  .policy-box h2 {
    font-size: 20px;
  }

  .policy-box p {
    font-size: 15px;
  }
}


/* section shipping */

.shipping-returns {
  background: #ffffff;
  padding: 100px 20px;
  text-align: center;
}

.shipping-returns h1 {
  color: #1d2671;
  font-size: 32px;
  margin-bottom: 10px;
}

.ship-subtext {
  color: #555;
  font-size: 18px;
  margin-bottom: 50px;
}

.ship-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.ship-box {
  background: #f8f9ff;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 30px 20px;
  transition: transform 0.3s ease;
}

.ship-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.ship-box i {
  font-size: 100px;
  color: #f05108;
  object-fit: contain;
  margin-bottom: 15px;
}

.ship-box h3 {
  color: #0d47a1;
  font-size: 20px;
  margin-bottom: 10px;
}

.ship-box p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}


@media (max-width: 992px) {
  .ship-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .ship-container {
    grid-template-columns: 1fr;
  }

  .ship-box {
    padding: 20px;
  }

  .shipping-returns h1 {
    font-size: 26px;
  }
}




/* sectiion footer */

.footer {
  background: url('./image/footer.avif') center center / cover no-repeat fixed;
  color: #f1f5f9;
  padding: 80px 20px 30px;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.comlogo {
  width: 160px;        
  height: auto;        
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease, filter 0.3s ease;
}



.comlogo:hover {
  transform: scale(1.05);
  filter: brightness(0) saturate(100%) invert(29%) sepia(90%) saturate(3000%) hue-rotate(210deg) brightness(100%) contrast(100%);
}


.footer-about h3 {
  color: white;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-about p {
  color: white;
  font-size: 15px;
  line-height: 1.8;
}


.footer-links h4,
.footer-support h4,
.footer-contact h4 {
  font-size: 18px;
  color: white;
  margin-bottom: 15px;
  position: relative;
}

.footer-links h4::after,
.footer-support h4::after,
.footer-contact h4::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #0f62fe, #2563eb);
  margin-top: 6px;
  border-radius: 2px;
}

.footer-links ul,
.footer-support ul {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-support li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-support a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 16 px;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-support a:hover {
  color: #00ff44;
}


.footer-contact p {
  color: white;
  font-size: 16px;
  margin-bottom: 8px;
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #1e293b;
  text-decoration: none;
  color: #ffffff;
  margin-right: 10px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #0f62fe;
  transform: translateY(-3px);
}


.footer-bottom {
  text-align: center;
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.footer-bottom p {
  color: #94a3b8;
  font-size: 13px;
}


@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .social-icons a {
    margin: 8px;
  }

  .footer-links h4::after,
  .footer-support h4::after,
  .footer-contact h4::after {
  display: none;
}
}










