* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}


body {
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}


.header-top {
  background: #f8f8f8;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;

}

.header-top .social-icons a {
  color: #666;
  margin-right: 10px;
  text-decoration: none;
}

.header-top .contact-info a {
  color: #666;
  text-decoration: none;
  margin-left: 10px;
}

.header-main {
  background: #fff;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 40px;
  z-index: 1000;
}

.header-main .logo {
  font-size: 24px;
  font-weight: bold;
  color: #333;
}

.header-main .logo span {
  color: #00aaff;
}

.header-main .nav-menu-container {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

.header-main .nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-main .nav-menu li {
  position: relative;
  margin: 0 15px;
}

.header-main .nav-menu li a {
  color: #666;
  text-decoration: none;
  padding: 10px 15px;
  transition: color 0.3s;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.header-main .nav-menu li a:hover {
  color: #00aaff;
  background: rgba(255, 255, 255, 1);
}

.header-main .nav-menu li a.active {
  color: #00cc00;
}

.header-main .nav-menu li a i {
  margin-left: 5px;
  transition: transform 0.3s;
}

.header-main .nav-menu li:hover a i {
  transform: rotate(180deg);
}

.header-main .nav-menu .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: none;
  min-width: 200px;
  padding: 10px;
  border-radius: 5px;
  border: 2px solid #ddd;
  backdrop-filter: blur(10px);
  z-index: 1001;
}

.header-main .nav-menu .mega-dropdown {
  width: 600px;
  left: -200px;
  padding: 20px;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  border: 2px solid #ddd;
  backdrop-filter: blur(10px);
  position: absolute;
  top: 100%;
  z-index: 1001;
}

.header-main .nav-menu .dropdown li,
.header-main .nav-menu .mega-dropdown li {
  margin: 5px 0;
}

.header-main .nav-menu .mega-dropdown li a {
  background: none;
  backdrop-filter: none;
  padding: 5px 0;
  color: #666;
}

.header-main .nav-menu .mega-dropdown li a:hover {
  color: #00aaff;
}

.header-main .nav-menu li:hover .dropdown,
.header-main .nav-menu li:hover .mega-dropdown {
  display: block;
}

.header-main .nav-menu .dropdown .title,
.header-main .nav-menu .mega-dropdown .title {
  font-weight: bold;
  margin-bottom: 10px;
  color: #666;
  border-left: 5px solid #ddd;
  padding-left: 10px;
}

.header-main .nav-menu .mega-dropdown img {
  position: absolute;
  top: 80%;
  left: 57%;
  width: 25%;
  height: auto;
  border-radius: 5px;
  display: none;
}

.header-main .nav-menu li:hover .mega-dropdown img {
  display: block;
}

.header-main .nav-icons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-main .nav-icons a {
  color: #666;
  text-decoration: none;
  font-size: 18px;
}

.header-main .nav-icons a:hover {
  color: #00aaff;
}

.header-main .nav-icons .cart {
  background: #00aaff;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
}

.main-content {
  position: relative;
  padding-top: 120px; 
  background: #ffffff; 
  height: 1
  00px;
}

.swiper-container {
  width: 100%;
  height: 100vh;
  position: relative;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  background: #d4d4d4; 
  
}

.swiper-slide .content-box {
  max-width: 800px;
  padding: 0 20px;
}

.swiper-slide .content-box img {
  max-width: 800px;
  padding: 0 20px;
}
.swiper-slide h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.swiper-slide p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.swiper-slide .buttons a {
  display: inline-block;
  padding: 12px 25px;
  margin: 0 10px;
  text-decoration: none;
  border-radius: 25px;
  color: #fff;
  font-weight: 600;
  transition: background 0.3s;
}

.swiper-slide .buttons .view-more {
  background: #00aaff;
}

.swiper-slide .buttons .view-more:hover {
  background: #0099e6;
}

.swiper-slide .buttons .purchase {
  background: #00cc00;
}

.swiper-slide .buttons .purchase:hover {
  background: #00b300;
}


.swiper-pagination {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  opacity: 0.7;
  cursor: pointer;
  transition: all 0.3s;
}

.swiper-pagination-bullet-active {
  background: #fff;
  width: 12px;
  height: 12px;
  opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  top: 40%;
  transform: translateY(-50%);
}

.swiper-button-prev {
  left: 50px;
}

.swiper-button-next {
  right: 50px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(255, 255, 255, 0.4);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px;
}

.side-buttons-left,
.side-buttons-right {
  position: absolute;
  top: 20%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 10;
}

.side-buttons-left {
  left: 50px;
}

.side-buttons-right {
  right: 50px;
}

.side-button {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s;
}

.side-button:hover {
  background: rgba(255, 255, 255, 0.4);
}

.side-button.red {
  background: #ff0000;
}

.side-button.red:hover {
  background: #e60000;
}

.features-section {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
  background: #f8f8f8;
}

.features-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.features-section p {
  font-size: 16px;
  color: #666;
  margin-bottom: 60px;
}

.features-container {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 200px;
}

.feature-circle {
  width: 190px;
  height: 120px;
  background: #a3a0a0;
  border: 1px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: bold;
  color: #333;
  text-align: center;
  position: relative;
}

.feature-circle img {
  width:200px;
  height: 190px;
  margin: 2px;
}

.feature-circle .flag {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
}

.feature-item p {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

.feature-item a {
  color: #00aaff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.feature-item a:hover {
  text-decoration: underline;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  min-width: 100px;

}
.w-25 {
  width: 25%;
  min-width: 100px;
  display: flex;
  flex-wrap: wrap;
}
.section5 {
  background-color: #ffffff;
  padding: 0px 0;
}

.section5 .service-box {
  background-color: #ffffff;
  text-align: center;
  color: #000000;
  border-radius: 10px;
  padding: 30px;
  margin-top: 30px;
  transition: border;
}

.section5 .service-box:hover {
  border: 2px solid #000000;
}
.section5 .service-box p {
  opacity: 0.8;
  font-weight: 300;
  margin-bottom: 4px;
  margin-top: 20px;
}

.section5 .service-box h1 {
  margin-bottom: 30px;
  font-size: 30px;
}
k

.section5 .service-box p span {
  max-width: 80%;
  display: inline-block;
  padding-bottom: 25px;
}
.section5 .sentence {
  display: inline-block;
  max-width: 100%;
  text-align: center;
}

.section5 .service-box img {
  margin-bottom: 15px;
  width: 50px;
  
}

.explaination {
  background-color: #ffffff;
  align-items: center;
  text-align: center;
}
.explaination-box img{
 max-width: 270px;
}
.explaination-box {
  display: inline-block;
  align-items: center;
  text-align: center;
  color: #000000;
  border-radius: 10px;
  margin-top: 30px;
}

.w-8 {
  width: 240px;
  background-color: #fff;
  padding-bottom: 19px;
 max-width: 100%;
  padding-right: 7px;
}

@media (max-width: 768px) {
  .header-main {
      top: 0;
  }

  .header-top {
      display: none;
  }

  .header-main .nav-menu-container {
      display: none;
  }

  .main-content {
      padding-top: 80px;
  }

  .swiper-container {
      height: 80vh;
  }

  .swiper-slide h1 {
      font-size: 36px;
  }

  .swiper-slide p {
      font-size: 16px;
  }

  .side-buttons-left,
  .side-buttons-right {
      display: none;
  }

  .swiper-button-prev {
      left: 10px;
  }

  .swiper-button-next {
      right: 10px;
  }

  .features-container {
      flex-direction: column;
      align-items: center;
  }

  .feature-item {
      max-width: 100%;
      margin-bottom: 20px;
  }

  .footer {
      flex-direction: column;
      text-align: center;
  }
}