* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #333;
}

.video-intelligence-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    background-color: #fff;
    max-width: 1200px;
    margin: 0 auto;
}

.text-content {
    max-width: 550px;
}

h1 {
    font-size: 2.5em;
    color: #333;
}

p {
    font-size: 1.2em;
    margin: 20px 0;
}

h3 {
    margin-top: 30px;
    font-size: 1.3em;
    color: #333;
}

.cta-buttons {
    margin-top: 20px;
}

.button {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-right: 10px;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #0056b3;
}

.learn-more {
    color: #007bff;
    font-size: 1.1em;
    text-decoration: none;
    transition: color 0.3s;
}

.learn-more:hover {
    color: #0056b3;
}

.video-content {
    max-width: 500px;
}

.video-content iframe {
    width: 100%;
    height: auto;
    border-radius: 10px;
}





* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #333;
    
}

.shift-section {
    background-color: #f1f3f5;
    padding: 80px 20px;
    text-align: center;
}

.shift-content {
    max-width: 800px;
    margin: 0 auto;
}

h1 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

p {
    font-size: 1.2em;
    color: #666;
    line-height: 1.6;
}








.image-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* This makes sure the image section takes up the full viewport height */
}

.image-section img {
    max-width: 100%;
    height: auto; /* This ensures the image scales proportionally */
    display: block;
}




.customer-review-section {
    text-align: center;
    padding: 60px 20px;
    background-color: #fff; /* You can adjust the background color as needed */
}

.customer-review-section h2 {
    font-size: 2.2em;
    font-weight: 500;
    color: #333;
    margin-bottom: 0;
}





body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
}

.customer-reviews {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    padding: 40px;
    background-color: #fff;
}

.review-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    width: 300px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.review-card:hover {
    transform: translateY(-10px);
}

.review-card p {
    font-size: 1.2em;
    font-weight: 400;
    color: #333;
    margin-bottom: 15px;
}

.stars {
    color: #f44336;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.review-card span {
    font-size: 1em;
    color: #666;
}








body {
    font-family: Arial, sans-serif;
}

.cta-section {
    background-color: #007bff; /* Blue background */
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.cta-section h2 {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.5em;
    margin-bottom: 30px;
}

.cta-button {
    background-color: white;
    color: #007bff;
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #f1f1f1;
}







* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.footer {
    background-color: #333;
    color: white;
    padding: 40px 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-subscribe {
    max-width: 400px;
}

.footer-subscribe h3 {
    color: #00aaff;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.footer-subscribe p {
    margin-bottom: 20px;
    font-size: 1em;
}

.subscribe-form {
    display: flex;
    align-items: center;
}

.subscribe-form input[type="email"] {
    padding: 10px;
    font-size: 1em;
    border: none;
    border-radius: 5px 0 0 5px;
    outline: none;
    width: 100%;
}

.subscribe-form button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    font-size: 1.2em;
    cursor: pointer;
    border-radius: 0 5px 5px 0;
    transition: background-color 0.3s ease;
}

.subscribe-form button:hover {
    background-color: #0056b3;
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-column h4 {
    font-size: 1.2em;
    margin-bottom: 15px;
    color: #ccc;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #00aaff;
}






.legal-footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.legal-footer hr {
    border: 0;
    height: 1px;
    background-color: #555;
    margin-bottom: 20px;
    width: 80%;
}

.legal-footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00aaff;
}

.copyright {
    font-size: 0.85em;
    color: #bbb;
}

