* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "DM Sans", sans-serif;
}

.no-scroll {
  overflow: hidden;
}

/* Navbar */
.navbar {
  background-color: #020e1e;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.inside-navbar {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* Left Logo Section */
.navbar-logo-section {
  background-color: #fff;
  display: flex;
  align-items: center;
  padding: 0 1rem 0 6rem;
  width: 18%;
  clip-path: polygon(0 0, 95% 0, 100% 100%, 4% 100%);
}

.navbar-links {
  width: 45%;
}

.navbar-links ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* width: 60%; */
  list-style: none;
}

.navbar-links ul li a {
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.navbar-links ul li a.active {
  color: #f7ff00;
}

.logo {
  width: 6rem;
  padding: 10px;
  background: white;
  border-radius: 5px;
}

.logo img {
  width: 4rem;
}

.navbar-actions {
  width: 20%;
  display: flex;
  align-items: center;
}

.contact-btn {
  text-decoration: none;
  padding: 15px 30px;
  color: #1a2a3a;
  background: #f7ff00;
  font-weight: 600;
  font-size: 17px;
}
.contact-btn:hover {
  background: #496e94;
  color: #f7ff00;
  transition: 0.2s ease-in;
}

/* Hamburger Menu (for mobile) */
.hamburger-menu {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  padding: 5px;
  margin-left: 1.5rem;
}

.hamburger-menu span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile Navigation Menu (Sidebar) */
.mobile-nav-sidebar {
  list-style: none;
  margin: 0;
  padding: 30px 20px;
  background-color: #1a2a3a;
  color: #ffffff;
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  max-width: 85%;
  height: 100%;
  box-shadow: -4px 0 15px rgba(0, 0, 0, 0.25);
  z-index: 1001;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-sizing: border-box;
  overflow-y: auto;
}

.mobile-nav-sidebar.active {
  right: 0;
}

.mobile-nav-sidebar li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 1.15rem;
  padding: 12px 0;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.3s ease, background-color 0.3s ease;
}

.mobile-nav-sidebar li a:hover {
  color: #f7ff00;
  background-color: rgba(239, 247, 0, 0.1);
}

.mobile-nav-sidebar li:last-child a {
  border-bottom: none;
}

.mobile-menu-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2.2rem;
  color: #ffffff;
  cursor: pointer;
  z-index: 1002;
}

@media (max-width: 1440px) {
  .inside-navbar {
    padding: 0 1rem;
  }
}

@media (max-width: 1024px) {
  .inside-navbar {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .navbar-logo-section {
    padding: 10px 3rem;
  }
  .logo {
    width: 4rem;
    padding: 0 0 0 0;
  }
  .logo img {
    width: 3.5rem;
  }
  .contact-btn {
    padding: 15px;
  }
}

@media (max-width: 900px) {
  .inside-navbar {
    padding-left: 1.8rem;
    padding-right: 1.8rem;
  }
  .navbar-logo-section {
    padding: 5px 5.5rem 5px 1.5rem;
  }
  .logo {
    width: 5rem;
  }
  .navbar-links {
    display: none;
  }
  .navbar-actions {
    display: none;
  }
  .hamburger-menu {
    display: flex;
  }
  .hamburger-menu {
    width: 10%;
    gap: 5px;
  }
  .hamburger-menu span {
    width: 25px;
    height: 2.5px;
  }
  .mobile-nav-sidebar {
    width: 280px;
  }
}

@media (max-width: 768px) {
}

@media (max-width: 480px) {
  .navbar-logo-section {
    padding: 5px 4rem 5px 2rem;
  }
  .logo {
    width: 4rem;
  }
  .logo img {
    width: 3rem;
  }
  .hamburger-menu {
    gap: 4px;
    margin-left: 0.8rem;
  }
  .hamburger-menu span {
    width: 22px;
    height: 2px;
  }
  .mobile-nav-sidebar {
    width: 240px;
  }
  .mobile-menu-close {
    font-size: 1.8rem;
  }
}

/* hero-section */
.hero-section {
  width: 100%;
  position: relative;
}

.banner-container {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.banner-container img {
  width: 100%;
  display: block;
}

.banner-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  padding: 0 15px;
  width: 100%;
  z-index: 2;
}

.banner-text h5 {
  color: #f1f1f1;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  animation: slide-up 1.4s ease;
}

.banner-text h5 i {
  color: #f7ff00;
}

.banner-text h1 {
  font-size: 60px;
  font-weight: bold;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
  animation: slide-up 1.4s ease;
}

.banner-text p {
  font-size: 20px;
  margin-bottom: 2.5rem;
  margin-top: 5px;
  animation: slide-up 1.4s ease;
}

@keyframes slide-up {
  0% {
    transform: translateY(250px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* about-section */
.about-section {
  width: 100%;
  padding: 4rem 8rem;
  background: #020e1e;
  display: flex;
  justify-content: center;
  align-items: center;
}

.inside-about {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.icon1 {
  position: absolute;
  width: 80px;
  animation: hover1 1s infinite alternate linear;
  filter: invert(83%) sepia(42%) saturate(1500%) hue-rotate(1deg)
    brightness(105%) contrast(105%) blur(1px);
}

@keyframes hover1 {
  0% {
    top: 35%;
    left: -10%;
    rotate: 45deg;
  }
  100% {
    top: 40%;
    left: -8%;
    rotate: 0deg;
  }
}

.left-about {
  width: 50%;
}

.left-about h5 {
  color: #f1f1f1;
  font-size: 18px;
  font-weight: 600;
}

.left-about h5 i {
  color: #f7ff00;
}

.left-about h2 {
  font-size: 45px;
  color: #f1f1f1;
  margin: 1rem 0;
}

.left-about p {
  color: #f1f1f1;
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: justify;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 1rem;
  font-size: 19px;
  font-weight: 600;
  list-style: none;
  color: #f1f1f1;
  margin-bottom: 3rem;
}

.features li {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.features li:hover img {
  transform: rotateY(180deg);
  background: antiquewhite;
  padding: 5px;
  border-radius: 50%;
}

.features li img {
  background: antiquewhite;
  padding: 5px;
  border-radius: 50%;
  width: 60px;
  filter: invert(83%) sepia(42%) saturate(1500%) hue-rotate(1deg)
    brightness(105%) contrast(105%);
  transition: all 0.4s ease-in;
}

.right-about {
  width: 50%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}

.right-about img {
  object-fit: cover;
  max-width: 85%;
}

.icon2 {
  position: absolute;
  width: 70px;
  left: 25%;
  animation: hover2 1s infinite alternate linear;
  filter: brightness(0) saturate(100%) invert(100%) blur(1px);
}

@keyframes hover2 {
  0% {
    top: -10%;
  }

  100% {
    top: -7%;
  }
}

.icon3 {
  position: absolute;
  width: 70px;
  animation: hover3 1s infinite alternate linear;
  filter: brightness(0) saturate(100%) invert(100%) blur(1px);
  transform: rotateZ(90deg);
}

@keyframes hover3 {
  0% {
    right: 2%;
  }

  100% {
    right: -5%;
  }
}

.icon4 {
  position: absolute;
  width: 80px;
  animation: hover4 1s infinite alternate linear;
  filter: blur(1px);
}

@keyframes hover4 {
  0% {
    right: -7%;
    bottom: -5%;
    rotate: 45deg;
  }

  100% {
    right: 1%;
    bottom: -12%;
    rotate: 0deg;
  }
}

.about-btn a {
  text-decoration: none;
  background: #f7ff00;
  color: #00131d;
  padding: 15px 30px;
  font-size: 17px;
  font-weight: 600;
  margin-top: 1rem;
  transition: all 0.2s ease;
}

.about-btn a:hover {
  background-color: #496e94;
  color: #f7ff00;
}

/* choose-section */
.choose-section {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url(/assets/img/all-images/background.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.inside-section {
  padding: 6rem;
}

.section-header h2 {
  font-size: 3rem;
  color: #f1f1f1;
  margin-bottom: 20px;
  text-align: center;
}

.section-header h5 {
  color: #f1f1f1;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

.section-header h5 i {
  color: #f7ff00;
}

.section-header p {
  color: #f1f1f1;
  font-size: 18px;
  line-height: 1.6;
}

.section-about {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cards {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 1.5rem;
  gap: 20px;
}

.card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 32%;
  background: #f2f2f2;
  padding: 2rem;
  margin-top: 2rem;
  cursor: pointer;
  border-radius: 2rem;
}

.card h3 {
  font-size: 20px;
  color: #1a2a3a;
}

.card p {
  margin-top: 1rem;
  font-size: 16px;
  color: #00131d;
  text-align: center;
}

.card img {
  width: 60px;
  margin-bottom: 12px;
  filter: invert(23%) sepia(96%) saturate(745%) hue-rotate(179deg)
    brightness(93%) contrast(101%);
}

.card:hover {
  background: #f7ff00;
}

/* product-section */
.product-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 5rem 6rem;
  background: #020e1e;
}

.product-section h1 {
  font-size: 3rem;
  color: #f1f1f1;
  margin-bottom: 25px;
  text-align: center;
}

.product-section h5 {
  color: #f1f1f1;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

.product-section h5 i {
  color: #f7ff00;
}

.product-container {
  width: 100%;
  margin: 0 auto;
  padding: 20px 0;
}

.product-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 5px;
  padding: 20px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
  transition: 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  transition: 0.4s ease;
}

.card-image {
  position: relative;
  text-align: center;
  background: #f4f7f8;
}

.card-image img {
  width: 90%;
  border-radius: 12px;
  transition: 0.4s ease;
}

.product-card:hover .card-image img {
  transform: scale(1.05);
}

.product-card .card-image i {
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 5px;
  font-size: 16px;
  color: #f7ae04;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.04);
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.card-content h3 {
  color: #00131d;
  font-size: 22px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.card-content a {
  text-decoration: none;
  padding: 5px 10px;
  color: #1a2a3a;
  border: 1px solid #1a2a3a;
  border-radius: 10px;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.2s ease-in;
}

.card-content:hover a {
  color: #f1f1f1;
  background: #1a2a3a;
}

/* testimonials */
.testimonial-section {
  width: 100%;
  padding: 3rem 6rem;
  background: #020e1e;
  text-align: center;
}

.testimonial-section h5 {
  color: #f1f1f1;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

.testimonial-section h5 i {
  color: #f7ff00;
}

.testimonial-section h2 {
  font-size: 3rem;
  color: #f1f1f1;
  margin-bottom: 25px;
  text-align: center;
}

.testimonial-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* background-color: #f1f1f1; */
}

.testimonials {
  position: relative;
  max-width: 900px;
  width: 100%;
  padding: 2rem;
}

.testimonials img {
  width: 70px;
  height: auto;
  object-fit: cover;
  border-radius: 50%;
}

.testimonials .slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 15px;
}

.slide p {
  padding: 0 120px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: #f2f2f2;
}

.slide .quote-icon {
  font-size: 30px;
  color: #f2f2f2;
}

.slide .details {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.details .name {
  font-size: 15px;
  font-weight: 600;
  color: #f2f2f2;
}

.details .job {
  font-size: 14px;
  font-weight: 400;
  color: #f2f2f2;
}

.swipe-btn {
  width: 40px;
  border-radius: 50%;
  transform: translateY(20px);
  background-color: #f2f2f2;
  transition: 0.2s ease;
}

.swipe-btn::before,
.swipe-btn::after {
  font-size: 20px;
  color: #00131d;
}

/* footer */
.custom-footer {
  background: #020e1e;
  color: #ffffff;
  padding: 3.5rem 2rem 0;
}

.inside-footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.upper-footer {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #fff;
  border-radius: 20px 20px 0 0;
  padding: 20px;
  width: 90%;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  /* max-width: 1100px; */
  width: 90%;
  margin: auto;
  padding: 2rem 0;
}

.footer-logo {
  width: 6rem;
}

.footer-logo img {
  width: 4.5rem;
  background: #f2f2f2;
  padding: 5px;
  border-radius: 5px;
}

.upper-left-footer {
  width: 30%;
}

.upper-left-footer img {
  width: 95%;
  height: auto;
}

.upper-right-footer p {
  font-size: 35px;
  font-weight: 600;
  color: #1a2a3a;
  margin-bottom: 1rem;
}

.upper-right-footer a {
  text-decoration: none;
  padding: 10px 15px;
  color: #1a2a3a;
  border: 1px solid #1a2a3a;
  border-radius: 5px;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.2s ease-in;
}

.upper-right-footer a:hover {
  background: #1a2a3a;
  color: #ffffff;
}

.footer-section {
  flex: 1 1 220px;
}

.footer-section h3 {
  margin-bottom: 1rem;
  font-size: 25px;
  font-weight: 700;
}

.footer-section p,
.footer-section a {
  color: #f1f1f1;
  font-size: 17px;
  margin-top: 1rem;
}

.footer-section p i {
  font-size: 20px;
}

.footer-section ul li {
  list-style: none;
}

.footer-section a {
  line-height: 28px;
  text-decoration: none;
  display: block;
  margin: 0.3rem 0;
  transition: all 0.3s ease-out;
}

.footer-section a:hover {
  color: #f77f00;
  transform: translateY(-2px);
}

.social-icons {
  margin-top: 5px;
}

.social-icons a {
  display: inline-flex;
  margin-right: 8px;
  color: #1a2a3a;
  background: #ffffff;
  font-size: 1.5rem;
  transition: 0.3s ease-in;
  padding: 8px;
  border-radius: 100%;
  transition: all 0.3s ease-out;
}

.social-icons a:hover {
  background-color: #496e94;
  color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 1280px) {
  .banner-text h1 {
    font-size: 50px;
  }
  .banner-text p {
    font-size: 18px;
  }
  .about-section {
    padding: 3rem 7rem;
  }
  .left-about h2 {
    font-size: 40px;
  }
  .product-section {
    height: unset;
    padding: 4rem 3rem;
  }
  .product-container {
    flex-wrap: wrap;
    justify-content: center;
  }
  .product-card {
    margin: 10px;
  }
  .cards {
    flex-direction: column;
  }
  .card {
    width: 100%;
  }
  .footer-container {
    gap: 1rem;
  }
}

@media (max-width: 1130px) {
  .about-section {
    padding: 3rem 6rem;
  }
  .banner-text p {
    font-size: 17px;
  }
}

@media (max-width: 1097px) {
  .banner-text h1 {
    font-size: 45px;
  }
  .about-section {
    padding: 4rem 5rem;
  }
  .inside-about {
    flex-direction: column-reverse;
    gap: 2rem;
  }
  .left-about {
    width: 100%;
  }
  .left-about p {
    line-height: 1.4;
  }
  .features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .right-about {
    max-width: 100%;
  }
  .right-about img {
    max-width: 100%;
  }
  .section-header p {
    font-size: 17px;
    line-height: 1.5;
  }
}

@media (max-width: 900px) {
  .banner-text h1 {
    font-size: 40px;
  }
  .left-about h2 {
    font-size: 38px;
  }
  .right-about {
    width: 90%;
    height: auto;
  }
  .icon1,
  .icon2,
  .icon3,
  .icon4 {
    max-width: 60%;
  }
  .footer-section p,
  .footer-section a {
    font-size: 16px;
  }
  .upper-right-footer p {
    font-size: 30px;
  }
  .upper-right-footer a {
    padding: 8px 10px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .banner-text h5 {
    font-size: 16px;
  }
  .banner-text h1 {
    font-size: 35px;
  }
  .banner-text p {
    font-size: 16px;
  }
  .about-section {
    padding: 4rem 3rem;
  }
  .about-btn a {
    padding: 12px 20px;
  }
  .product-section {
    padding: 4rem 1rem;
  }
  .inside-section {
    padding: 3rem;
  }
  .left-about h2 {
    font-size: 29px;
  }
  .testimonial-section {
    padding: 1rem;
  }
  .icon1,
  .icon2,
  .icon3,
  .icon4 {
    width: 60px;
  }
  .slide p {
    padding: 0 90px;
  }
  .social-icons a {
    font-size: 22px;
  }
}

@media (max-width: 600px) {
  .mobile-nav-sidebar li a {
    font-size: 1rem;
  }
  .banner-text h1 {
    font-size: 30px;
  }
  .banner-text p {
    margin-bottom: 5px;
  }
  .about-btn {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .about-btn a {
    padding: 10px 15px;
    font-size: 16px;
  }
  .features {
    margin-bottom: 1rem;
  }
  .section-header h2,
  .testimonial-section h2 {
    font-size: 2.5rem;
  }
  .product-section h1 {
    font-size: 2.5rem;
  }
  .slide p {
    padding: 0 40px;
  }
  .upper-footer {
    flex-direction: column;
  }
  .upper-left-footer {
    width: 50%;
  }
  .upper-left-footer img {
    width: 100%;
  }
  .upper-right-footer p {
    font-size: 25px;
  }
}

@media (max-width: 500px) {
  .banner-text h5 {
    font-size: 15px;
  }
  .banner-text h1 {
    font-size: 22px;
  }
  .about-btn a {
    margin-top: 5px;
  }
  .product-section {
    padding: 3rem 2rem;
  }
  .product-section h1 {
    margin-bottom: 0;
  }
  .features li {
    font-size: 16px;
  }
  .features li img {
    width: 55px;
  }
  .icon1 {
    display: none;
  }
  .upper-left-footer {
    width: 100%;
  }
  .upper-right-footer p {
    font-size: 22px;
  }
  .upper-right-footer a {
    font-size: 12px;
  }
  .custom-footer {
    background: #020e1e;
    color: #ffffff;
    padding: 2rem 10px 0;
  }
  .custom-footer {
    background: #020e1e;
    color: #ffffff;
    padding: 2rem 10px 0;
  }
}

@media (max-width: 425px) {
  .banner-text h5 {
    font-size: 13px;
  }
  .banner-text h1 {
    font-size: 20px;
  }
  .banner-text p {
    font-size: 15px;
  }
  .about-btn a {
    padding: 8px 12px;
    font-size: 14px;
  }
  .section-header h5 {
    font-size: 16px;
  }
  .icon1,
  .icon2,
  .icon3,
  .icon4 {
    width: 50px;
  }
  .left-about h2 {
    font-size: 27px;
    margin: 5px 0;
  }
  .left-about p {
    font-size: 16px;
  }
  .inside-section {
    padding: 3rem 1rem;
  }
  .features {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .card {
    padding: 17px;
    width: 80%;
    margin-top: 0;
  }
  .section-header p {
    font-size: 16px;
    text-align: center;
  }
  .card p {
    font-size: 15px;
  }
  .product-card {
    margin: 10px 20px;
  }
  .product-section h1 {
    font-size: 2rem;
  }
  .testimonials {
    padding: 1rem;
  }
  .section-header h2,
  .testimonial-section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}

@media (max-width: 375px) {
  .logo img {
    width: 40px;
  }
  .banner-text h1 {
    font-size: 17px;
  }
  .banner-text h1 {
    font-size: 17px;
  }
  .section-header p {
    font-size: 15px;
  }
  .left-about p {
    font-size: 15px;
  }
  .about-section {
    padding: 3rem 1rem;
  }
  .left-about h2 {
    font-size: 22px;
    margin: 10px 0;
  }
  .product-section {
    padding: 3rem 1rem;
  }
  .product-card {
    margin: 0 5px;
  }
  .card {
    width: 100%;
  }
  .card-image img {
    width: 80%;
  }
  .section-header h2,
  .testimonial-section h2 {
    font-size: 25px;
  }
  .slide p {
    padding: 0 21px;
  }
}

@media (max-width: 320px) {
  .banner-text h5 {
    font-size: 12px;
  }
  .banner-text h1 {
    font-size: 14px;
  }
  .banner-text p {
    font-size: 13px;
  }
  .about-btn a {
    padding: 8px 12px;
    font-size: 13px;
  }
  .slide p {
    padding: 0 10px;
  }
  .swipe-btn {
    width: 30px;
  }
}
