/*! * Hover.css (http://ianlunn.github.io/Hover/) * Version: 2.0.2 * Author: Ian Lunn @IanLunn * Author URL: http://ianlunn.co.uk/ * Github: https://github.com/IanLunn/Hover * Made available under a MIT License: * http://www.opensource.org/licenses/mit-license.php * Hover.css Copyright Ian Lunn 2014. Generated with Sass. */ /* 2D TRANSITIONS */ /* Grow */ .elementor-animation-grow { transition-duration: 0.3s; transition-property: transform; } .elementor-animation-grow:hover { transform: scale(1.1); } /* Shrink */ .elementor-animation-shrink { transition-duration: 0.3s; transition-property: transform; } .elementor-animation-shrink:hover { transform: scale(0.9); } /* Pulse */ @keyframes elementor-animation-pulse { 25% { transform: scale(1.1); } 75% { transform: scale(0.9); } } .elementor-animation-pulse:hover { animation-name: elementor-animation-pulse; animation-duration: 1s; animation-timing-function: linear; animation-iteration-count: infinite; } /* Pulse Grow */ @keyframes elementor-animation-pulse-grow { to { transform: scale(1.1); } } .elementor-animation-pulse-grow:hover { animation-name: elementor-animation-pulse-grow; animation-duration: 0.3s; animation-timing-function: linear; animation-iteration-count: infinite; animation-direction: alternate; } /* Pulse Shrink */ @keyframes elementor-animation-pulse-shrink { to { transform: scale(0.9); } } .elementor-animation-pulse-shrink:hover { animation-name: elementor-animation-pulse-shrink; animation-duration: 0.3s; animation-timing-function: linear; animation-iteration-count: infinite; animation-direction: alternate; } /* Push */ @keyframes elementor-animation-push { 50% { transform: scale(0.8); } 100% { transform: scale(1); } } .elementor-animation-push:hover { animation-name: elementor-animation-push; animation-duration: 0.3s; animation-timing-function: linear; animation-iteration-count: 1; } /* Pop */ @keyframes elementor-animation-pop { 50% { transform: scale(1.2); } } .elementor-animation-pop:hover { animation-name: elementor-animation-pop; animation-duration: 0.3s; animation-timing-function: linear; animation-iteration-count: 1; } /* Bounce In */ .elementor-animation-bounce-in { transition-duration: 0.5s; } .elementor-animation-bounce-in:hover { transform: scale(1.2); transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36); } /* Bounce Out */ .elementor-animation-bounce-out { transition-duration: 0.5s; } .elementor-animation-bounce-out:hover { transform: scale(0.8); transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36); } /* Rotate */ .elementor-animation-rotate { transition-duration: 0.3s; transition-property: transform; } .elementor-animation-rotate:hover { transform: rotate(4deg); } /* Grow Rotate */ .elementor-animation-grow-rotate { transition-duration: 0.3s; transition-property: transform; } .elementor-animation-grow-rotate:hover { transform: scale(1.1) rotate(4deg); } /* Float */ .elementor-animation-float { transition-duration: 0.3s; transition-property: transform; transition-timing-function: ease-out; } .elementor-animation-float:hover { transform: translateY(-8px); } /* Sink */ .elementor-animation-sink { transition-duration: 0.3s; transition-property: transform; transition-timing-function: ease-out; } .elementor-animation-sink:hover { transform: translateY(8px); } /* Bob */ @keyframes elementor-animation-bob { 0% { transform: translateY(-8px); } 50% { transform: translateY(-4px); } 100% { transform: translateY(-8px); } } @keyframes elementor-animation-bob-float { 100% { transform: translateY(-8px); } } .elementor-animation-bob:hover { animation-name: elementor-animation-bob-float, elementor-animation-bob; animation-duration: .3s, 1.5s; animation-delay: 0s, .3s; animation-timing-function: ease-out, ease-in-out; animation-iteration-count: 1, infinite; animation-fill-mode: forwards; animation-direction: normal, alternate; } /* Hang */ @keyframes elementor-animation-hang { 0% { transform: translateY(8px); } 50% { transform: translateY(4px); } 100% { transform: translateY(8px); } } @keyframes elementor-animation-hang-sink { 100% { transform: translateY(8px); } } .elementor-animation-hang:hover { animation-name: elementor-animation-hang-sink, elementor-animation-hang; animation-duration: .3s, 1.5s; animation-delay: 0s, .3s; animation-timing-function: ease-out, ease-in-out; animation-iteration-count: 1, infinite; animation-fill-mode: forwards; animation-direction: normal, alternate; } /* Skew */ .elementor-animation-skew { transition-duration: 0.3s; transition-property: transform; } .elementor-animation-skew:hover { transform: skew(-10deg); } /* Skew Forward */ .elementor-animation-skew-forward { transition-duration: 0.3s; transition-property: transform; transform-origin: 0 100%; } .elementor-animation-skew-forward:hover { transform: skew(-10deg); } /* Skew Backward */ .elementor-animation-skew-backward { transition-duration: 0.3s; transition-property: transform; transform-origin: 0 100%; } .elementor-animation-skew-backward:hover { transform: skew(10deg); } /* Wobble Vertical */ @keyframes elementor-animation-wobble-vertical { 16.65% { transform: translateY(8px); } 33.3% { transform: translateY(-6px); } 49.95% { transform: translateY(4px); } 66.6% { transform: translateY(-2px); } 83.25% { transform: translateY(1px); } 100% { transform: translateY(0); } } .elementor-animation-wobble-vertical:hover { animation-name: elementor-animation-wobble-vertical; animation-duration: 1s; animation-timing-function: ease-in-out; animation-iteration-count: 1; } /* Wobble Horizontal */ @keyframes elementor-animation-wobble-horizontal { 16.65% { transform: translateX(8px); } 33.3% { transform: translateX(-6px); } 49.95% { transform: translateX(4px); } 66.6% { transform: translateX(-2px); } 83.25% { transform: translateX(1px); } 100% { transform: translateX(0); } } .elementor-animation-wobble-horizontal:hover { animation-name: elementor-animation-wobble-horizontal; animation-duration: 1s; animation-timing-function: ease-in-out; animation-iteration-count: 1; } /* Wobble To Bottom Right */ @keyframes elementor-animation-wobble-to-bottom-right { 16.65% { transform: translate(8px, 8px); } 33.3% { transform: translate(-6px, -6px); } 49.95% { transform: translate(4px, 4px); } 66.6% { transform: translate(-2px, -2px); } 83.25% { transform: translate(1px, 1px); } 100% { transform: translate(0, 0); } } .elementor-animation-wobble-to-bottom-right:hover { animation-name: elementor-animation-wobble-to-bottom-right; animation-duration: 1s; animation-timing-function: ease-in-out; animation-iteration-count: 1; } /* Wobble To Top Right */ @keyframes elementor-animation-wobble-to-top-right { 16.65% { transform: translate(8px, -8px); } 33.3% { transform: translate(-6px, 6px); } 49.95% { transform: translate(4px, -4px); } 66.6% { transform: translate(-2px, 2px); } 83.25% { transform: translate(1px, -1px); } 100% { transform: translate(0, 0); } } .elementor-animation-wobble-to-top-right:hover { animation-name: elementor-animation-wobble-to-top-right; animation-duration: 1s; animation-timing-function: ease-in-out; animation-iteration-count: 1; } /* Wobble Top */ @keyframes elementor-animation-wobble-top { 16.65% { transform: skew(-12deg); } 33.3% { transform: skew(10deg); } 49.95% { transform: skew(-6deg); } 66.6% { transform: skew(4deg); } 83.25% { transform: skew(-2deg); } 100% { transform: skew(0); } } .elementor-animation-wobble-top { transform-origin: 0 100%; } .elementor-animation-wobble-top:hover { animation-name: elementor-animation-wobble-top; animation-duration: 1s; animation-timing-function: ease-in-out; animation-iteration-count: 1; } /* Wobble Bottom */ @keyframes elementor-animation-wobble-bottom { 16.65% { transform: skew(-12deg); } 33.3% { transform: skew(10deg); } 49.95% { transform: skew(-6deg); } 66.6% { transform: skew(4deg); } 83.25% { transform: skew(-2deg); } 100% { transform: skew(0); } } .elementor-animation-wobble-bottom { transform-origin: 100% 0; } .elementor-animation-wobble-bottom:hover { animation-name: elementor-animation-wobble-bottom; animation-duration: 1s; animation-timing-function: ease-in-out; animation-iteration-count: 1; } /* Wobble Skew */ @keyframes elementor-animation-wobble-skew { 16.65% { transform: skew(-12deg); } 33.3% { transform: skew(10deg); } 49.95% { transform: skew(-6deg); } 66.6% { transform: skew(4deg); } 83.25% { transform: skew(-2deg); } 100% { transform: skew(0); } } .elementor-animation-wobble-skew:hover { animation-name: elementor-animation-wobble-skew; animation-duration: 1s; animation-timing-function: ease-in-out; animation-iteration-count: 1; } /* Buzz */ @keyframes elementor-animation-buzz { 50% { transform: translateX(3px) rotate(2deg); } 100% { transform: translateX(-3px) rotate(-2deg); } } .elementor-animation-buzz:hover { animation-name: elementor-animation-buzz; animation-duration: 0.15s; animation-timing-function: linear; animation-iteration-count: infinite; } /* Buzz Out */ @keyframes elementor-animation-buzz-out { 10% { transform: translateX(3px) rotate(2deg); } 20% { transform: translateX(-3px) rotate(-2deg); } 30% { transform: translateX(3px) rotate(2deg); } 40% { transform: translateX(-3px) rotate(-2deg); } 50% { transform: translateX(2px) rotate(1deg); } 60% { transform: translateX(-2px) rotate(-1deg); } 70% { transform: translateX(2px) rotate(1deg); } 80% { transform: translateX(-2px) rotate(-1deg); } 90% { transform: translateX(1px) rotate(0); } 100% { transform: translateX(-1px) rotate(0); } } .elementor-animation-buzz-out:hover { animation-name: elementor-animation-buzz-out; animation-duration: 0.75s; animation-timing-function: linear; animation-iteration-count: 1; } /*# sourceMappingURL=hover.css.map */ Service - CSM Techcorp
bg_image
Service Image

Digital Marketing

Our digital marketing services are designed to help businesses establish a strong online presence, engage their target audience, and drive measurable results. With a deep understanding of the digital landscape, we provide a comprehensive range of services, including :

  • Search Engine Optimization (SEO)
  • Pay-Per-Click (PPC) Advertising
  • Social Media Marketing
  • Content Marketing
  • Email Marketing
  • Analytics and Reporting

Digital Marketing

Our digital marketing services are designed to help businesses establish a strong online presence, engage their target audience, and drive measurable results. With a deep understanding of the digital landscape, we provide a comprehensive range of services, including :

Service Image

Mobile Application Development

In the mobile-centric world we live in, having a powerful and user-friendly mobile application is essential for business success. Our skilled mobile app development team specializes in creating innovative and intuitive mobile apps for various platforms, including iOS and Android. Our services include:

  • Mobile App Strategy
  • UI/UX Design
  • Native and Hybrid App Development
  • Quality Assurance and Testing
  • App Maintenance and Support

Mobile Application Development

In the mobile-centric world we live in, having a powerful and user-friendly mobile application is essential for business success. Our skilled mobile app development team specializes in creating innovative and intuitive mobile apps for various platforms, including iOS and Android. Our services include:

Service Image

ERP Services

Efficiently managing your core business processes is critical for success. Our ERP (Enterprise Resource Planning) services help streamline your operations, improve productivity, and enhance decision-making. We offer:

  • ERP Consultation and Planning
  • Customization and Integration
  • Implementation and Training
  • Ongoing Support and Maintenance

ERP Services

Efficiently managing your core business processes is critical for success. Our ERP (Enterprise Resource Planning) services help streamline your operations, improve productivity, and enhance decision-making. We offer:

Service Image

Website Design and Development

Your website serves as the digital face of your business, and we understand the importance of making a strong first impression. Our web design and development services combine aesthetics, functionality. Our offerings include:

  • Custom Web Design
  • Responsive Web Development
  • Content Management Systems (CMS)
  • E-commerce Development
  • Website Maintenance and Support

Website Design and Development

Your website serves as the digital face of your business, and we understand the importance of making a strong first impression. Our web design and development services combine aesthetics, functionality. Our offerings include:

image
image
Services
Digital Marketing
01

Search Engine Optimization (SEO)

Enhance your website's visibility in search engine rankings, driving organic traffic and attracting qualified leads.

SEO Services In Nizamabad
02

Pay-Per-Click (PPC) Advertising

Leverage targeted advertising campaigns to drive immediate traffic and achieve specific marketing goals.

PPC Services In Nizamabad
03

Email Marketing

Nurture customer relationships and drive conversions through personalized and effective email marketing campaigns.

Email Marketing Services In Nizamabad
04

Analytics and Reporting

Gain valuable insights into your digital marketing performance through comprehensive analytics and detailed reports.

05

Social Media Marketing

Engage and expand your audience through strategic social media campaigns on platforms like Facebook, Instagram, Twitter, and LinkedIn.

Social Media Marketing Services In Nizamabad
06

Content Marketing

Develop compelling content that resonates with your audience, driving brand awareness, customer engagement, and conversions.

Services
Mobile Application Development
01

Mobile App Strategy

We work closely with you to understand your goals and objectives, helping to define a mobile app strategy that aligns with your business vision.

Know More
02

Social Media Integration

Engage and expand your audience through strategic social media campaigns on platforms like Facebook, Instagram, Twitter, and LinkedIn.

Know More
03

Native and Hybrid App Development

We have expertise in both native and hybrid app development, allowing us to choose the most suitable approach for your specific needs.

Know More
04

App Maintenance and Support

Our services extend beyond the development phase, as we offer ongoing support and maintenance to keep your app running smoothly and up-to-date.

Know More
05

UI/UX Design

Our designers create visually appealing and intuitive user interfaces, ensuring a seamless and engaging user experience.

Know More
Services
Website Design and Development
01

Custom Web Design

We create unique and visually appealing designs that capture your brand identity and engage your target audience.

Know More
02

Responsive Web Development

Our websites are built to be fully responsive, ensuring optimal performance across various devices and screen sizes.

Know More
03

Content Management Systems (CMS)

We provide CMS solutions, such as WordPress, that enable you to easily manage and update your website content.

Know More
04

E-commerce Development

If you're looking to sell products or services online, we specialize in developing secure and feature-rich e-commerce websites.

Ecommerce Website Services in Nizamabad
05

Website Maintenance and Support

We offer ongoing maintenance and support services to ensure that your website remains secure, up-to-date, and functioning at its best.

Know More
Services
ERP Services
01

ERP Consultation and Planning

We assess your business needs and goals, helping you choose the right ERP system and develop a comprehensive implementation plan.

Know More
02

Customization and Integration

We customize the ERP system to align with your specific business requirements and integrate it seamlessly with your existing systems.

Know More
03

Implementation and Training

Our experts manage the implementation process, providing training and support to ensure a smooth transition and user adoption.

Know More
04

Ongoing Support and Maintenance

We provide continuous support, system monitoring, and maintenance to keep your ERP system running efficiently.

Know More
CSM Techcorp
You Matters To Us

Customers don't expect you to be perfect. They do expect you to fix things when they go wrong

Innovation 99%

Optimization 95%

Acceleration 99%

Customers At The Heart

Fueling Your Triumphs, Igniting Innovation

"At CSM TECHCORP, we believe in igniting innovation and fueling your business triumphs. Our cutting-edge solutions are designed to propel your success to new heights, making your journey exhilarating and rewarding."

  • Cost-Effective Services
  • Helps Reduce Business Risks
  • Management of Employee Performance
  • Increasing Company’s Agility
We Care
Unleashing creativity

Beyond Expectations, Above and Beyond

Unleashing creativity and going above and beyond, we redefine excellence in our services. CSM TECH CORP strives to exceed your expectations, crafting solutions that set new standards and leave a lasting impact

  • Cost-Effective Services
  • Helps Reduce Business Risks
  • Management of Employee Performance
  • Increasing Company’s Agility
We Excel
Boundless Future

Our Vision, Our Creation, Limitless Horizons

Must explain too you how all this mistaken idea of denouncing pleasures praising pain was born and we will give you complete account of the system the actual teachings of the great explorer.

  • Cost-Effective Services
  • Helps Reduce Business Risks
  • Management of Employee Performance
  • Increasing Company’s Agility
We Create
image
image
List of Our
Valuable Clients

Our clients' trust is the most valuable asset we possess, and we work tirelessly to maintain it.