/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #121212;
    color: #fff;
}

/* Navbar Styles */
.navbar {
    background-color: #130e0e;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Navbar Logo */
.navbar-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #f1d014; /* Green color */
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 2px;
}

.navbar-logo img {
    width: 40px; /* Adjust the logo size in the navbar */
    height: auto;
    margin-right: 10px;
}

.navbar-links {
    list-style: none;
    display: flex;
    /* font-family: 'Courier New', Courier, monospace; */
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.navbar-links li {
    margin-left: 20px;
}

.navbar-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
}

.navbar-links a:hover {
    color: #4CAF50; /* Green color on hover */
}

/* Header */
header {
    background: linear-gradient(135deg, #8fca91, #1f881f); /* Green gradient for header */
    color: #fff;
    padding: 15px 20px; /* Reduced padding for a smaller header */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 80px; /* Adjust margin for navbar */
    display: flex;
    justify-content: center;
    align-items: center;
}

header .header-content {
    display: flex;
    align-items: center;
    justify-content: center; /* Center the content horizontally */
    width: 100%;
}

header .logo {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center; /* Center the logo vertically */
}

header .logo-image {
    width: 80px;
    max-width: 100%;
    height: auto;
}

header .banner {
    flex: 2;
    text-align: center;
}

header .banner h1 {
    font-size: 28px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 1px;
}



/* Scrolling Text Section */
.scrolling-text {
    overflow: hidden;
    position: relative;
    background-color: #222;
    border-radius: 10pc;
    padding: 20px 0;
    text-align: center;
    font-size: 28px;
    color:skyblue;  /* Modern pink color */
    width: 80%;  /* Set the width to control how wide it is */
    margin: 0 auto;  /* This centers the scrolling text horizontally */
}

.scrolling-container {
    display: inline-block;
    white-space: nowrap;
    animation: scroll-text 15s linear infinite;
}

@keyframes scroll-text {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}








/* Software Info Section */
.software-info {
    background: #f1dada;
    color: #333;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    margin-top: 20px;
    text-align: center;
}

.software-info h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Image Slider */
.image-slider {
    position: relative;
    width: 80%;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slider-image {
    width: 100%;
    height: auto;
}

button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}




/* Business Use Cases Section */
.business-use-cases {
    background: #e9e1ea;
    padding: 40px 20px;
    color: #333;
    text-align: center;
}

.business-use-cases h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 40px;
    color: #4CAF50;
}

.business-case {
    background: #f4f4f4;
    border-radius: 10px;
    margin-bottom: 30px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.business-case h3 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.business-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    

}

.business-details p {
    font-size: 22px;
    margin-bottom: 20px;
    color: #555;
}

.business-image img {
    max-width: 100%;
    border-radius: 10px;
    height: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media screen and (min-width: 768px) {
    .business-details {
        flex-direction: row;
        justify-content: space-between;
    }

    .business-image {
        width: 45%;
    }

    .business-details p {
        width: 50%;
    }
}






/* Services Section */
.services {
    background: #121212;
    padding: 40px 20px;
    color: #fff;
    text-align: center;
}

.services h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #2ca2f0;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: #333;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #4998e2;
}

.service-card p {
    font-size: 16px;
    color: #ddd;
    line-height: 1.6;
}






/* Key Points Section */
.key-points {
    background: #333;
    padding: 40px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    justify-content: space-between;
}

.key-points h3 {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    color: #4CAF50;
    width: 100%;
}

.key-points .left-column,
.key-points .right-column {
    flex: 1;
    min-width: 45%;
}

.key-points ul {
    list-style-type: none;
    padding: 0;
}

.key-points li {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ddd;
}

.key-mark {
    color: #4CAF50;
    font-weight: bold;
    margin-right: 10px;
}

/* Compatibility Section */
.compatibility {
    padding: 40px 20px;
    background: #bdcfef;
    border-radius: 10px;
    text-align: center;
    color: #3115bf;
}

.compatibility p {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.platform-logos {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.platform-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: transform 0.3s;
}

.platform-logo:hover {
    transform: scale(1.1);
}

/* Team Section */
.team {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 40px 20px;
    flex-wrap: wrap;
}

.team-member {
    text-align: center;
    max-width: 250px;
}

.team-photo {
    border-radius: 20%;
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-bottom: 10px;
}

/* Footer */
/* Footer Styles */
footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
    font-weight: bold;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.contact-info {
    text-align: left;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info ul li {
    margin: 10px 0;
    font-size: 1rem;
}

.contact-info ul li i {
    margin-right: 10px;
    color: #1abc9c;
}

.contact-info ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info ul li a:hover {
    color: #1abc9c;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.whatsapp-link {
    text-decoration: none;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    background-color: #25d366;
    padding: 10px 20px;
    border-radius: 50px;
    transition: background-color 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #128c7e;
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.whatsapp-number {
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
}

.facebook-link img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.facebook-link:hover img {
    transform: scale(1.1);
}

.copyright {
    background-color: rgb(1, 1, 14);
    margin-top: 20px;
    font-size: 0.9rem;
    color: #bdc3c7;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .navbar-links {
        display: none; /* Hide links on mobile */
    }
    .navbar-logo {
        font-size: 24px;
    }
    header .header-content {
        flex-direction: column;
    }
    .banner h1 {
        font-size: 24px;
    }
    .key-points {
        flex-direction: column;
    }
    .key-points .left-column,
    .key-points .right-column {
        min-width: 100%;
    }
}
