
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f0f2f5;
        }
        header {
            background-color: #F2F9FF;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #fff;
        }

        header .logo {
            margin-top: 20px;
            margin-left: 20px;
        }

        header .logo img {
            max-width: 100%;
            height: auto;
        }

        header nav a {
            margin: 0 10px;
            text-decoration: none;
            color: black;
        }
        header nav a.download {
            background-color: #007bff;
            color: #fff;
            padding: 10px 20px;
            border-radius: 5px;
        }
        header nav a.download:hover {
            background-color: #0056b3;
        }
        header nav a:hover {
            color: #007bff;
        }
        .hero {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 50px;
            background-color: #fff;
        }
        .hero img {
            width: 50%;
            border-radius: 10px;
        }
        .hero-content {
            width: 50%;
        }
        .hero-content h1 {
            color: #333;
            font-size: 48px;
            font-family: 'Montserrat', sans-serif;
        }
        .hero-content p {
            margin-top: 20px;
            font-size: 18px;
            color: #555;
        }
        .hero-content a {
            display: inline-block;
            margin-top: 20px;
            padding: 10px 20px;
            background-color: #007bff;
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
            position: relative;
            overflow: hidden;
        }
        .hero-content a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: #0056b3;
            transition: left 0.3s;
            z-index: 0;
        }
        .hero-content a:hover::before {
            left: 0;
        }
        .hero-content a:hover {
            color: #fff;
        }
        .hero-content a span {
            position: relative;
            z-index: 1;
        }
        .features {
            padding: 50px;
            background-color: #6491d6;
            color: #fff;
            text-align: center;
        }

        .feature p {
            color: #686464;
        }
        .features h2 {
            color: #fff;
            font-size: 36px;
            font-family: 'Montserrat', sans-serif;
        }
         .feature h2 {
            color: black;
            font-size: 36px;
            font-family: 'Montserrat', sans-serif;
        }

        .features .feature {
            display: inline-block;
            width: 30%;
            margin: 20px;
            padding: 20px;
            background-color: #ffff;
            border-radius: 10px;
        }
        .features .feature h2 {
            font-size: 24px;
            font-family: 'Montserrat', sans-serif;
        }
        .testimonials {
            padding: 50px;
            background-color: #fff;
            text-align: center;
        }
        .testimonials h2 {
            margin-bottom: 30px;
            font-size: 36px;
            font-family: 'Montserrat', sans-serif;
        }
        .slick-slider {
            margin: 20px 0;
        }
        .slick-slider .slick-slide {
            padding: 20px;
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            margin: 0px 30px;
        }
        .how-to-use {
            padding: 50px;
            background-color: #fff;
            text-align: center;
        }
        .how-to-use h2 {
            margin-bottom: 30px;
            font-size: 36px;
            font-family: 'Montserrat', sans-serif;
        }
        .how-to-use .slick-slider,.testimonials .slick-slider.slick-initialized.slick-dotted {
            width: 50%;
            margin: 20px auto;
        }
        .how-to-use .slick-slider div {
            padding: 20px 0px;
        }
        .how-to-use .slick-slider div img {
            max-width: 100%;
            border-radius: 10px;
            margin-bottom: 10px;
        }
        .how-to-use .slick-slider div p {
            font-size: 18px;
        }
        .how-to-use a {
            display: inline-block;
            margin-top: 20px;
            padding: 10px 20px;
            background-color: #007bff;
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
        }
        .how-to-use a:hover {
            background-color: #0056b3;
        }
        footer {
            background-color: #DFF2EB;
            color: white;
            font-size: 18px;
            font-family: Arial, sans-serif;
        }

        .footer-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            /* gap: 40px; */
            padding: 40px 0px;
            flex-direction: row;
        }
        .logo {
            flex: 1;
            margin-bottom: 20px;
        }

        .nav-links nav {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .nav-links a {
            color: black;
            text-decoration: none;
        }

        .nav-links a:hover {
            text-decoration: underline;
        }
        .footer-container .logo {
            width: 30%;
            display: block;
        }
        .footer-container .contact-details {
            margin-bottom: 20px;
            width:30%;
            display:block;
        }
        .footer-container .nav-links {
            width: 35%;
        }
        .contact-details p {
            margin: 20px 0;
            color: black;

        }
        .contact-details p:last-child{
            margin-bottom: 0;
        }
        .contact-details p:first-child{
            margin-top: 0;
        }
        .contact-details a {
            color: black;
            text-decoration: none;

        }

        .contact-details a:hover {
            text-decoration: underline;
        }

        .footer-bottom {
            background-color: #A6CDC6;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 5px 20px;
            font-size: 18px;
        }

        .copyright {
            color: black;
        }

        .social-icons {
            display: flex;
            gap: 20px;
        }

        .social-icons a {
            color: white;
            text-decoration: none;
            font-size: 18px;
            line-break: 26px;
        }

        .social-icons a:hover {
            color: #007bff;
        }

        .feature img {
            max-width: 25%;
            height: auto;
            margin: 10px 0;
        }
        .feature .images1 {
            margin-bottom: -8px;
        }

        .feature .images2 {
            margin-bottom: -10px;
        }
          .feature .images3 {
            margin-bottom: -8px;
        }

        .download-btn {
          background-color: #007bff; /* Green background */
          border: none;
          padding: 12px 16px;
          border-radius: 10px;
          cursor: pointer;
          transition: background-color 0.3s ease;
        }

        .download-btn a {
          text-decoration: none;
          color: #ffff;
          font-size: 16px;
          font-weight: bold;
          display: inline-block;
        }

        .download-btn:hover {
          background-color: #007bff; /* Darker green on hover */
        }
    