diff --git a/assets/affiliate.webp b/assets/affiliate.webp new file mode 100644 index 0000000..9988638 Binary files /dev/null and b/assets/affiliate.webp differ diff --git a/assets/analytics.jpg b/assets/analytics.jpg new file mode 100644 index 0000000..e39c905 Binary files /dev/null and b/assets/analytics.jpg differ diff --git a/assets/content.png b/assets/content.png new file mode 100644 index 0000000..6274fe1 Binary files /dev/null and b/assets/content.png differ diff --git a/assets/dm.jpg b/assets/dm.jpg new file mode 100644 index 0000000..e6bbfaa Binary files /dev/null and b/assets/dm.jpg differ diff --git a/assets/email.png b/assets/email.png new file mode 100644 index 0000000..7576028 Binary files /dev/null and b/assets/email.png differ diff --git a/assets/features/collaborate.webp b/assets/features/collaborate.webp new file mode 100644 index 0000000..b01de49 Binary files /dev/null and b/assets/features/collaborate.webp differ diff --git a/assets/features/collaborativeInnovativeSolutions.webp b/assets/features/collaborativeInnovativeSolutions.webp new file mode 100644 index 0000000..bb4443d Binary files /dev/null and b/assets/features/collaborativeInnovativeSolutions.webp differ diff --git a/assets/features/dataDrivenInsights.webp b/assets/features/dataDrivenInsights.webp new file mode 100644 index 0000000..2f507bc Binary files /dev/null and b/assets/features/dataDrivenInsights.webp differ diff --git a/assets/features/elink.webp b/assets/features/elink.webp new file mode 100644 index 0000000..2c1812c Binary files /dev/null and b/assets/features/elink.webp differ diff --git a/assets/features/evil.webp b/assets/features/evil.webp new file mode 100644 index 0000000..ddd0739 Binary files /dev/null and b/assets/features/evil.webp differ diff --git a/assets/features/futureProofTech.webp b/assets/features/futureProofTech.webp new file mode 100644 index 0000000..b33c0df Binary files /dev/null and b/assets/features/futureProofTech.webp differ diff --git a/assets/features/involv.webp b/assets/features/involv.webp new file mode 100644 index 0000000..d4d526c Binary files /dev/null and b/assets/features/involv.webp differ diff --git a/assets/influencer.png b/assets/influencer.png new file mode 100644 index 0000000..3795dde Binary files /dev/null and b/assets/influencer.png differ diff --git a/assets/payperclick.webp b/assets/payperclick.webp new file mode 100644 index 0000000..8742f8a Binary files /dev/null and b/assets/payperclick.webp differ diff --git a/assets/social-media.jpg b/assets/social-media.jpg new file mode 100644 index 0000000..9fe39c9 Binary files /dev/null and b/assets/social-media.jpg differ diff --git a/assets/team1.jpg b/assets/team1.jpg new file mode 100644 index 0000000..5cbb1c3 Binary files /dev/null and b/assets/team1.jpg differ diff --git a/assets/team2.png b/assets/team2.png new file mode 100644 index 0000000..b5f6cef Binary files /dev/null and b/assets/team2.png differ diff --git a/assets/team3.jpg b/assets/team3.jpg new file mode 100644 index 0000000..59361f7 Binary files /dev/null and b/assets/team3.jpg differ diff --git a/assets/team4.jpeg b/assets/team4.jpeg new file mode 100644 index 0000000..572cccd Binary files /dev/null and b/assets/team4.jpeg differ diff --git a/assets/web.jpeg b/assets/web.jpeg new file mode 100644 index 0000000..27ff2cb Binary files /dev/null and b/assets/web.jpeg differ diff --git a/contact.html b/contact.html new file mode 100644 index 0000000..3c28543 --- /dev/null +++ b/contact.html @@ -0,0 +1,337 @@ + + +
+ + +Your data has been submitted successfully.
+ +We provide top-notch digital marketing solutions to elevate your brand.
+ +Our full-service digital marketing agency offers affordable and effective digital marketing plans.
+We work to deliver improved rankings, increased traffic and, in turn, more business.
+ + +We help you improve your Google ranking and increase your organic (non-paid) website traffic. SEO is more than just incorporating keywords and we can help to optimize all elements.
+Search engine advertising, also known as pay-per-click advertising or Google Ads, helps you reach new customers and guarantees a consistent traffic flow to your website.
+Websites are the essence of your online presence. We will create a functional website that is customized for your business and drives results. All of our websites include SEO, and lead generation tools.
+We help you with social media advertising to help you grow your business and reach new clients.
+We help you with social media advertising to help you grow your business and reach new clients.
+Boost your business with our expert PPC campaigns! Our AdWords-certified specialists craft targeted ads, optimize bids, leverage device strategies, and track ROI. We maximize seasonal trends to drive leads and high-quality traffic.
+Unlock a custom digital marketing strategy designed for your business. From SEO to paid ads, we create a plan that drives results. Schedule a free consultation today and start reaching your goals.
+Stand out with expert email marketing! We craft personalized newsletters, grow your subscriber list, and optimize campaigns to drive action. From testing to creating curiosity, we ensure your emails make an impact.
+Our Featured Services
+Our Cost Effective Service Pricing
+$49/month
+Ideal for small businesses starting out.
+$99/month
+Perfect for growing businesses.
+$199/month
+For established businesses scaling up.
+Alice Johnson
+Michael Smith
+Sophia Lee
+James Brown
+Full Name: ${fullName}
+Email: ${email}
+Phone: ${phone}
+Gender: ${gender}
+Age: ${age}
+Education: ${education}
+Skills: ${skills}
+Experience: ${experience} years
+Current Role: ${currentRole}
+ `; + } + + function submitForm() { + const data = { + fullName: document.getElementById('fullName').value, + email: document.getElementById('email').value, + phone: document.getElementById('phone').value, + gender: document.querySelector('input[name="gender"]:checked').value, + age: document.getElementById('age').value, + education: document.getElementById('education').value, + skills: Array.from(document.querySelectorAll('input[name="skills"]:checked')).map(el => el.value), + experience: document.getElementById('experience').value, + currentRole: document.getElementById('currentRole').value + }; + + localStorage.setItem('formData', JSON.stringify(data)); + document.getElementById('multiStepForm').style.display = 'none'; + document.getElementById('successMessage').style.display = 'block'; + } + +function exportData() { + const data = localStorage.getItem('formData'); + const blob = new Blob([data], { type: 'application/json' }); + const url = URL.createObjectURL(blob); + const a = document.createElement('a'); + a.href = url; + a.download = 'formData.json'; + document.body.appendChild(a); + a.click(); + document.body.removeChild(a); +} + + function clearForm() { + document.getElementById('multiStepForm').reset(); + localStorage.removeItem('formData'); + currentStep = 0; + showStep(currentStep); + document.getElementById('successMessage').style.display = 'none'; + } + + // Initialize the form + showStep(currentStep); + + + + + + diff --git a/js/slider.js b/js/slider.js new file mode 100644 index 0000000..0ce63d5 --- /dev/null +++ b/js/slider.js @@ -0,0 +1,30 @@ +const swipecontainer = document.querySelector(".swipecontainer"); +const likeBtns = document.querySelector(".like-btns"); + +var swiper = new Swiper(".swiper", { + spaceBetween: 30, + slidesPerView: "auto", + loop: true, + speed: 5000, + freeMode: true, + allowTouchMove: false, + autoplay: { + delay: 0, + disableOnInteraction: false, + }, +}); + + +function stopAutoPlay() { + const swiperTranslate = swiper.getTranslate(); + swiper.setTranslate(swiperTranslate); + swiper.autoplay.stop(); +} + +function startAutoPlay() { + swiper.slideTo(swiper.activeIndex, 5000, false); + swiper.autoplay.start() +} + +swipecontainer.addEventListener("mouseenter", () => stopAutoPlay()); +swipecontainer.addEventListener("mouseleave", () => startAutoPlay()); \ No newline at end of file diff --git a/js/swiper.js b/js/swiper.js new file mode 100644 index 0000000..bbe5b71 --- /dev/null +++ b/js/swiper.js @@ -0,0 +1,104 @@ +const swipecontainer = document.querySelector(".swipecontainer"); +const likeBtns = document.querySelector(".like-btns"); +var swiper = new Swiper(".swiper", { + spaceBetween: 60, + slidesPerView: "auto", + loop: true, + speed: 5000, + freeMode: true, + allowTouchMove: true, + autoplay: { + delay: 0, + disableOnInteraction: false, + }, + + + }); +function stopAutoPlay() { + const swiperTranslate = swiper.getTranslate(); + swiper.setTranslate(swiperTranslate); + swiper.autoplay.stop(); +} +function startAutoPlay() { + swiper.slideTo(swiper.activeIndex, 5000, true); + swiper.autoplay.start(); +} +swipecontainer.addEventListener("mouseenter", () => stopAutoPlay()); +swipecontainer.addEventListener("mouseleave", () => startAutoPlay()); + + + +// featured projects slider +$(document).ready(function () { + var imageSlider = $(".slick-images").slick({ + centerMode: true, + centerPadding: '60px', + slidesToShow: 3, + arrows: false, + dots: true, + asNavFor: ".slick-content", + infinite: true, + speed: 500, + responsive: [ + { + breakpoint: 768, + settings: { + arrows: false, + centerMode: true, + centerPadding: '40px', + slidesToShow: 3 + } + }, + { + breakpoint: 480, + settings: { + arrows: false, + centerMode: true, + centerPadding: '40px', + slidesToShow: 1 + } + } + ] + }); + + // Initialize Slick Slider for Content Slider with Center Mode + var contentSlider = $(".slick-content").slick({ + centerMode: true, + centerPadding: '60px', + slidesToShow: 1, + asNavFor: ".slick-images", + infinite: true, + arrows: false, + dots: true, + speed: 500, + responsive: [ + { + breakpoint: 768, + settings: { + arrows: false, + centerMode: true, + centerPadding: '40px', + slidesToShow: 3 + } + }, + { + breakpoint: 480, + settings: { + arrows: false, + centerMode: true, + centerPadding: '40px', + slidesToShow: 1 + } + } + ] + }); + + // Sync swipe direction of both sliders + $('.content-slider').on('swipe', function (event, slick, direction) { + if (direction === 'left') { + imageSlider.slick('slickNext'); + } else if (direction === 'right') { + imageSlider.slick('slickPrev'); + } + }); +}); \ No newline at end of file diff --git a/swiper.html b/swiper.html new file mode 100644 index 0000000..27db85d --- /dev/null +++ b/swiper.html @@ -0,0 +1,180 @@ + + + + + + +Our Featured Services
+Learn how we are delivering cutting-edge solutions and transforming businesses.
+