@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sansita:ital,wght@0,400;0,700;0,800;0,900;1,400;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caudex:ital,wght@0,400;0,700;1,400;1,700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
*{
    padding: 0;
    margin: 0;
    font-family: "Inter", sans-serif;
    
}
.primarysec{
    width: 100%;
    float: left;
}
.container-full{
    width: 100%;
    margin: 0 auto;
}
.container{
    width: 85%;
    margin: 0 auto;
}
.row{
    position: relative;
    width: 100%;
}
.row [class^="column-"]
{
    float: left;
}
.row::after{
    content: "";
    display: table;
    clear: both;
}
[class^="column-"]
{
    width: 100%;
}

a{
    text-decoration: none;
}
ul{
    list-style: none;
} 

.column-20{
    width: 20%;
}
.column-30{
    width: 30%;
}
.column-40{
    width: 40%;
}
.column-50{
    width: 50%;
}
.column-60{
    width: 60%;
}
.column-70{
    width: 70%;
}
html {
    scroll-behavior: smooth;
}
body{
  overflow-x: hidden;
}

/* scrolli arrow style  */

#scrollTopButton {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: none;
    border: 2px solid #1D78D5;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #1D78D5;
    cursor: pointer;
    display: none;
    z-index: 10;
  }

  #scrollTopButton .circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top: 4px solid #1D78D5;
    animation: circleProgress 5s linear infinite;
  }

  @keyframes circleProgress {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }


  /* Style for the scrollbar track */
  ::-webkit-scrollbar {
    width: 12px; /* Width of the scrollbar */
  }

  /* Style for the scrollbar track */
  ::-webkit-scrollbar-track {
    background: #000000; /* Light gray background */
  }

  /* Style for the scrollbar thumb (the draggable part) */
  ::-webkit-scrollbar-thumb {
    background: #000000; /* Purple color for the thumb */
    border-radius: 30px; /* Rounded corners */
  }

  
  ::-webkit-scrollbar-thumb:hover {
    background: #000000; /* Darker purple when hovered */
  }

  html {
    scrollbar-color: #1D78D5 #821ec962; /* Thumb color and track color */
    scrollbar-width: thin; /* Thinner scrollbar */
  }

 :root {
      --primary: #1D78D5;
      --secondary: #555555;
      --white: #ffffff;
      --black: #121212;
      --gray: #f5f5f5;
      --transition: all 0.3s ease;
      --shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    }
    
    /* Header Styles */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      background: var(--white);
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
      transition: var(--transition);
      padding: 12px 0;
    }
    
    .header.scrolled {
      padding: 8px 0;
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    }
    
    .container {
      width: 100%;
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 40px;
    }
    
    .header-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    
    /* Logo */
    .logo img {
      width: 90px;
      height: auto;
    }
    
    /* Mobile Menu Button */
    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      color: var(--black);
      font-size: 24px;
      cursor: pointer;
      z-index: 1001;
      padding: 25px;
    }
    
    /* Main Navigation */
    .main-nav {
      display: flex;
      align-items: center;
    }
    
    .nav-links {
      display: flex;
      list-style: none;
      margin-right: 30px;
    }
    
    .nav-item {
      position: relative;
      margin: 0 15px;
    }
    
    .nav-link {
      font-size: 15px;
      font-weight: 600;
      color: var(--black);
      text-decoration: none;
      padding: 15px 5px;
      display: flex;
      align-items: center;
    }
    
    .nav-link:hover {
      color: var(--primary);
    }
    
    .nav-link i {
      margin-left: 5px;
      font-size: 12px;
    }
   .nav-link.active{
     color: var(--primary);
   }
    
    /* Product Dropdown - Desktop */
    .products-dropdown {
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      width: 200px;
      background: var(--white);
      border-radius: 12px;
      box-shadow: var(--shadow);
      padding: 30px;
      display: none;
      /* grid-template-columns: repeat(3, 1fr);
      gap: 20px; */
      z-index: 999;
    }
    
    .nav-item:hover .products-dropdown {
      display: grid;
    }
    
    .dropdown-column h4 {
      font-size: 16px;
      margin-bottom: 15px;
      color: var(--primary);
      padding-bottom: 8px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .dropdown-links {
      list-style: none;
    }
    
    .dropdown-link {
      display: block;
      padding: 8px 0;
      color: var(--black);
      text-decoration: none;
      font-size: 14px;
    }
    
    .dropdown-link:hover {
      color: var(--primary);
    }
    
    /* CTA Button */
    .header-cta {
      display: inline-block;
      padding: 12px 28px;
      background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
      color: var(--white);
      border-radius: 50px;
      font-weight: 600;
      text-decoration: none;
    }
    
    /* Responsive Styles */
    @media (max-width: 1200px) {
      .products-dropdown {
        width: 700px;
        grid-template-columns: repeat(2, 1fr);
      }
           .secbg{
  display: none;
 }
    }
       @media (max-width: 1400px) {
   
    }
       @media (max-width: 1700px) {
           .secbg{
  display: none;
 }
    }
    @media (max-width: 992px) {
      .container {
        padding: 0 25px;
      }
      
      .mobile-menu-btn {
        display: block;
      }
      .secbg{
  display: none;
 }
      
      .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 30px 30px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
      }
      
      .main-nav.active {
        right: 0;
      }
      .nav-link.active{
        color: var(--primary);
      }
      
      .nav-links {
        flex-direction: column;
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
      }
      
      .nav-item {
        width: 100%;
        margin: 0;
      }
      
      .nav-link {
        padding: 12px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      }
      
      /* Mobile Dropdown - No Animation */
      .products-dropdown {
        position: static;
        left: auto;
        transform: none;
        width: 100%;
        display: none;
        box-shadow: none;
        padding: 15px 0 15px 20px;
        grid-template-columns: 1fr;
        margin-top: 10px;
        border-left: 2px solid var(--primary);
      }
      
      .nav-item.dropdown.active .products-dropdown {
        display: grid;
      }
      
      .header-cta {
        width: 100%;
        text-align: center;
        padding: 10px 0px;
      }
    }
    
    @media (max-width: 576px) {
      .container {
       padding: 0 0px;
      }
      
      .logo img {
        width: 80px;
      }
          .logo{
           padding: 5px 20px;
          }
      
      .main-nav {
        width: 280px;
        padding: 80px 20px 20px;
      }
      .logo {
    display: flex;
    align-items: center;
    margin-bottom: 5px !important;
}
      body {
        padding-top: 70px;
      }
    }





/* BANNER STYLE  */

.banner{
    padding-top: 230px;
    padding-bottom: 160px;
}
.banner .cnt .hashim{
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
}
.banner .cnt h1{
    margin-bottom: 20px;
    font-size: 52px;
    font-weight: 800;
    background: linear-gradient(to right, #1D78D5 , #555555);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
}
  /* Other styles remain the same */

    /* Gradient Animation for H1 */
    @keyframes gradientText {
        0% {
            background-position: 0% 50%;
        }
        50% {
            background-position: 100% 50%;
        }
        100% {
            background-position: 0% 50%;
        }
    }

    .banner .cnt h1 {
        font-size: 50px;
        font-weight: bold;
        margin-bottom: 10px;
        background: linear-gradient(90deg, #555555, #1D78D5, #fff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-size: 200% 200%;
        animation: gradientText 9s ease infinite;
    }
.banner .cnt p{
    margin-bottom: 30px;
    text-align: justify;
    color: black;
}
.banner .cnt .button img{
    margin: -3px -30px;
    width: 14px;
}
.banner .cnt .button{
    display: flex;
    justify-content: end;
}
.banner .cnt .button a{
    border: 1px solid #1D78D5 ;
    color: #1D78D5;
    padding: 12px 30px;
    font-size: 12px; 
    border-radius: 30px; 
}
.banner .cnt .nav ul{
    list-style: none;
    padding: 0px 160px;
    margin: -41px 25px;
    display: flex;
    justify-content: flex-start;
    gap: 15px;
}
.banner .cnt .nav{
    text-align: center;
}
.banner .cnt .nav ul li {
    display: inline-block;
}
.banner .cnt .nav ul li img{
      border-radius: 50%; /* Makes it a circle */
      border: 1px solid #1D78D5; /* Border color and thickness */
      padding: 5px; /* Space inside the border */
      transition: transform 0.9s ease, background-color 0.9s ease; /* Smooth hover effects */
}

.banner .cnt .nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.banner .cnt .nav li {
    display: inline-block;
}

.banner .cnt .nav a {
    display: inline-block;
}

/* Image Styling */
.banner .cnt .nav img {
    width: 20px; /* Adjust as needed */
    height: 20px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

/* Twisting Hover Effect */
.banner .cnt .nav img:hover {
    transform: rotate(360deg) scale(1.1); /* Full twist and slight zoom */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3); /* Optional shadow effect */
}
.banner .image{
       display: flex;
    justify-content: end;
    padding: 12px 0px;
    width: 516px;
    margin: 50px 0px;
    position: absolute;
    z-index: -10;
}





/* Download Button */
.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: #1D78D5; /* Purple text */
    border: 2px solid #1D78D5; /* Purple border */
    border-radius: 50px;
    padding: 10px 20px;
    transition: all 0.3s ease; /* Smooth transition */
    position: relative;
}

/* Icon Styling */
.download-btn .icon {
    margin-left: 0px;
    font-size: 18px;
    transition: transform 0.3s ease; /* Smooth transition for icon */
}

/* Hover Effect */
.download-btn:hover {
    background-color: #1D78D5; /* Purple background on hover */
    color: #fff; /* White text on hover */
}

.download-btn:hover .icon {
    transform: translateY(3px); /* Icon moves down slightly */
    color: #fff; /* Icon color changes to white */
}


/* LOOP style */
.loop{
    overflow: hidden;
    padding-bottom: 100px;
}
.loop .slide{
 width: 137%;
    overflow: hidden;
    background-color: #000;
    padding: 36px 0px;
    margin-left: -260px;
    margin-top: 60px;
}
.loop .slide2{
    width: 118%;
    overflow: hidden;
    background: linear-gradient(90deg, #4C4C4C 0%, #4C4C4C 100%);
    padding: 45px 0px;
    margin-left: -116px;
    margin-top: -90px;
    
}
.loop .slide ul{
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
    animation: slideAnimation 30s linear infinite; /* Infinite scrolling animation */
}
.loop .slide ul li {
    display: flex;
    align-items: center;
    margin-right: 70px; /* Spacing between items */
    white-space: nowrap; /* Prevents line breaks */
    color: #fff;
    font-size: 25px;
}
.loop .slide ul li a {
    text-decoration: none;
    color: #4C4C4C;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px; /* Space between icon and text */
}
.loop .cnts h2{
    font-size: 40px;
    color: #555555;
}
@keyframes slideAnimation {
    0% {
      transform: translateX(100%); /* Start from off-screen to the right */
    }
    100% {
      transform: translateX(-100%); /* Move off-screen to the left */
    }
  }

  @keyframes gradientText {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.loop .slide ul li a {
    font-size: 30px;
    font-weight: bold;
    background: linear-gradient(90deg, #4C4C4C, #4C4C4C, #4C4C4C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientText 6s ease infinite;
}

/* Apply spin animation to all images */
.loop .slide img {
    width: 20px; /* Adjust size as needed */
    height: 20px;
    animation: spin 6s linear infinite; /* Animation properties */
    transition: transform 0.9s ease; /* Smooth scaling effect */
    margin-right: 30px;
}

.loop .cnts .loop-title{
    margin-bottom: 15px;
    color: #1195FF;
    font-weight: 400;
}

/* Define the spin animation */
@keyframes spin {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(0deg);
    }
}

/* Optional: Add hover effect */
.slide img:hover {
    transform: scale(1.2) rotate(360deg); /* Slight zoom on hover */
}



  .section {
    opacity: 0;
    transform: translateY(20px);
    animation: openSection 5s forwards;
}

@keyframes openSection {
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 



/* 
about section  */




.about-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
padding: 0 0px 40px 0;
  gap: 60px;
  flex-wrap: wrap;
}

.left-images {
  position: relative;
  width: max-content;
}

.handwash-img {
  width: 300px;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  margin-bottom: 100px;
}

.dishwash-img {
  width: 300px;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  margin-left: 60px; /* shift to the right to align like your image */
}


.handwash-img {
  margin-top: 30px;
}

.about-content {
  max-width: 500px;
  margin-top: 42px;
  margin-left: 30px;
}

.brand-label {
  font-size: 13px;
  letter-spacing: 6px;
  color: #1D78D5;
  margin-bottom: 10px;
}

.about-content h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
  
}

.description {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 30px;
}

.explore-btn {
  display: inline-block;
  background-color: #1D78D5;
  color: #fff;
  text-decoration: none;
  padding: 18px 32px;
  border-radius: 10px;
  font-weight: bold;
  box-shadow: 0 12px 24px rgba(30, 99, 242, 0.25);
  transition: background-color 0.3s;
}

.explore-btn:hover {
  background-color: #1D78D5;
}



/* platform  */


.platform-section {
  /* padding: 60px 40px; */
  margin: 0 auto;
}

.platform-content
 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    padding: 20px 75px 9px 75px;
}

.platform-text {
  max-width: 600px;
}

.platform-text h1 {
  font-size: 59px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 20px;
}

.platform-text p {
  font-size: 20px;
  color: #333;
}

.platform-image img {
  max-width: 500px;
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.platforms-scroll {
  overflow: hidden;
  position: relative;
   max-width: 2440px;
}

.platforms-row {
  display: flex;
  gap: 40px;
  animation: scroll-left 25s linear infinite;
  width: max-content;
  padding: 20px 0;
}

.platform-logo {
  flex-shrink: 0;
  background: #fff;
  padding: 50px 40px;
  border-radius: 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.platform-logo img {
  height: 30px;
  width: auto;
}

.platform-logo:hover {
  transform: translateY(-5px);
}

/* Keyframe animation */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}




/* foooooooooooooooooooooooter */


  .footer {
            background-color: #000000;
            color: white;
            padding: 2rem 2rem;
            /* width: 100%; */
        }


        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        .logo-section {
            animation: fadeInLeft 1s ease-out 0.2s both;
        }

        .logo {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .logo-icon {
            margin-right: 0.75rem;
            animation: rotate 2s ease-in-out infinite alternate;
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(5deg);
            }
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: bold;
            color: #4A90E2;
            transition: color 0.3s ease;
        }

        .logo:hover .logo-text {
            color: #5BA0F2;
        }

        .description {
            color: #cfcfcf;
            line-height: 1.6;
            margin-bottom: 2rem;
            animation: fadeIn 1s ease-out 0.4s both;
        }

        .social-iconss {
            display: flex;
            gap: 1rem;
            animation: fadeIn 1s ease-out 0.6s both;
        }

        .social-icon {
            color: #cfcfcf;
            transition: all 0.3s ease;
            cursor: pointer;
            padding: 0.5rem;
            border-radius: 50%;
            background: transparent;
            border: 1px solid transparent;
        }

        .social-icon:hover {
            color: #ffffff;
            background: rgba(74, 144, 226, 0.1);
            border-color: #4A90E2;
            transform: translateY(-3px) scale(1.1);
        }

        .footer-column {
            animation: fadeInUp 1s ease-out both;
        }

        .footer-column:nth-child(2) {
            animation-delay: 0.3s;
        }

        .footer-column:nth-child(3) {
            animation-delay: 0.4s;
        }

        .footer-column:nth-child(4) {
            animation-delay: 0.5s;
        }

        @keyframes fadeInUp {
            from {
                transform: translateY(30px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        @keyframes fadeInLeft {
            from {
                transform: translateX(-30px);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        .column-title {
            color: #ffffff;
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            position: relative;
        }

        .column-title::after {
            content: '';
            position: absolute;
            bottom: -0.5rem;
            left: 0;
            width: 0;
            height: 2px;
            background: #4A90E2;
            transition: width 0.3s ease;
        }

        .footer-column:hover .column-title::after {
            width: 30px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 1rem;
            transform: translateX(-10px);
            opacity: 0;
            animation: slideInLeft 0.6s ease-out both;
        }

        .footer-links li:nth-child(1) { animation-delay: 0.1s; }
        .footer-links li:nth-child(2) { animation-delay: 0.2s; }
        .footer-links li:nth-child(3) { animation-delay: 0.3s; }
        .footer-links li:nth-child(4) { animation-delay: 0.4s; }
        .footer-links li:nth-child(5) { animation-delay: 0.5s; }
        .footer-links li:nth-child(6) { animation-delay: 0.6s; }

        @keyframes slideInLeft {
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        .footer-link {
            color: #cfcfcf;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            display: inline-block;
        }

        .footer-link::before {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: #4A90E2;
            transition: width 0.3s ease;
        }

        .footer-link:hover {
            color: #ffffff;
            transform: translateX(5px);
        }

        .footer-link:hover::before {
            width: 100%;
        }

        .copyright {
            border-top: 1px solid #333;
            padding-top: 2rem;
            animation: fadeIn 1s ease-out 0.8s both;
        }

        .copyright-text {
            color: #cfcfcf;
            font-size: 0.875rem;
        }

        /* Pulse animation for logo icon */
        .logo-icon svg {
            animation: pulse 3s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.7;
            }
        }

        /* Floating animation for social icons */
        .social-icons {
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-5px);
            }
        }




        /* side social  */


         /* Include FontAwesome for icons */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

.social-sidebar {
  position: fixed;
  top: 30%;
  left: 0;
  background-color: #000;
  color: #fff;
  width: 60px;
  height: 220px;
  display: flex;
  align-items: center;
  transition: transform 0.4s ease;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  z-index: 1000;
}
/* .social-sidebar .bgs{
  position: absolute;
  top: 30%;
  left: 0;
  z-index: -1;

} */




.social-icons {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 10px 0;
  gap: 10px;
}

.social-icons a {
  color: white;
  font-size: 20px;
  transition: transform 0.3s;
}

.social-icons a:hover {
  transform: scale(1.2);
}

.social-icons hr {
  width: 30px;
  border: 0.5px solid #fff;
  margin: 5px 0;
}

.toggle-btn {
  position: absolute;
  right: -18px;
  background-color: #ddd;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.secbg{
     position: absolute;
    top: 109px;
    left: 470px;
    z-index: -999;
}