/* styles.css */

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
}

.header {
    background-color: #121212;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #00bcd4;
    /* Light cyan accent */
}

.nav-bar {
    display: flex;
}

.nav-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
}

.nav-list li {
    display: inline;
}

.nav-list a {
    text-decoration: none;
    color: #ffffff;
    transition: color 0.3s;
}

.nav-list a:hover {
    color: #bc0a0a;
    /* Light cyan accent */
}

.cta-button {
    background-color: #00bcd4;
    color: #121212;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #0097a7;
    /* Slightly darker shade */
}

/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background: url('a.jpg') no-repeat center center/cover;
    /* Replace with your hero image */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content {
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
    background-color: rgba(6, 16, 28, 0.6);
    /* Dark overlay */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(43, 12, 138, 0.3);
}

.hero h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    color: #cccccc;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background-color: #00bcd4;
    color: #121212;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #0097a7;
    /* Slightly darker shade */
}

/* Make sure the hero section looks good on mobile */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
}

/* Features Overview Section */
.features-overview {
    padding: 3rem 2rem;
    background-color: #1e1e1e;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #00bcd4;
    /* Light cyan accent */
}

.features-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.feature-card {
    background-color: #292929;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(10, 114, 217, 0.3);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #00bcd4;
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.feature-description {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: #cccccc;
}

.feature-link {
    text-decoration: none;
    color: #00bcd4;
    font-weight: bold;
    transition: color 0.3s;
}

.feature-link:hover {
    color: #3307e2;
    /* Slightly darker shade */
}

.features-section {
    background: url('b.jpg') no-repeat center center/cover;
}

/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
}

/* Solutions/Benefits Section */
.solutions-benefits {
    padding: 3rem 2rem;
    background-color: #1e1e1e;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #00bcd4;
    /* Light cyan accent */
}

.solutions-section {
    background: url('c.jpg') no-repeat center center/cover;
}

.solutions-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
}

.solutions-text {
    flex: 1 1 45%;
    max-width: 600px;
}

.solutions-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #00bcd4;
}

.solutions-text p {
    margin-bottom: 1rem;
    color: #cccccc;
}

.benefits-list {
    list-style-type: disc;
    padding-left: 1.5rem;
    color: #cccccc;
}

.benefits-list li {
    margin-bottom: 0.5rem;
}

.solutions-image {
    flex: 1 1 45%;
    max-width: 400px;
}

.solutions-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
}

/* Data Visualization & Testimonials Section */
.data-testimonials {
    padding: 3rem 2rem;
    background-color: #1e1e1e;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #00bcd4;
    /* Light cyan accent */
}

.content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: stretch;
}

/* Data Visualization Placeholder */
.data-visualization {
    flex: 1 1 50%;
    background-color: #292929;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.data-placeholder {
    color: #cccccc;
    font-style: italic;
}

/* Testimonials Carousel */
.testimonials-section {
    background: url('d.jpg') no-repeat center center/cover;
}

.testimonials-carousel {
    flex: 1 1 45%;
    position: relative;
    background-color: #292929;
    border-radius: 8px;
    padding: 2rem;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    text-align: center;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-text {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-size: 0.9rem;
    color: #00bcd4;
}

/* Carousel Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #00bcd4;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s;
}

.carousel-btn:hover {
    color: #0097a7;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
}

/* How It Works Section */
.how-it-works {
    padding: 3rem 2rem;
    background-color: #1e1e1e;
}

.how-it-works-section {
    background: url('e.jpg') no-repeat center center/cover;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #00bcd4;
    /* Light cyan accent */
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-around;
    align-items: stretch;
    box-shadow: 0 4px 15px rgba(43, 12, 138, 0.3);
}

.step-card {
    flex: 1 1 30%;
    background-color: #292929;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.step-number {
    font-size: 2rem;
    font-weight: bold;
    color: #00bcd4;
    margin-bottom: 1rem;
}

.step-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.step-description {
    font-size: 0.9rem;
    color: #cccccc;
}

/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(43, 12, 138, 0.3);
}

/* Call-to-Action Section */
.cta-section {
    padding: 3rem 2rem;
    background-color: #1e1e1e;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(43, 12, 138, 0.3);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.cta-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #00bcd4;
    /* Light cyan accent */
}

.cta-text {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: #cccccc;
}

.cta-button {
    display: inline-block;
    background-color: #00bcd4;
    color: #121212;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #f5f0f5;
    transform: scale(0.5rem);
}

/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
}

/* About Us Section */
.about-us {
    padding: 3rem 2rem;
    background-color: #1e1e1e;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #00bcd4;
    /* Light cyan accent */
}

.about-section {
    background: url('f.jpg') no-repeat center center/cover;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
}

.about-text {
    flex: 1 1 48%;
    background-color: #292929;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(43, 12, 138, 0.3);
}

.about-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #00bcd4;
}

.about-text p {
    font-size: 1rem;
    color: #cccccc;
}

/* Partners Section */
.partners {
    flex: 1 1 48%;
    background-color: #292929;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(43, 12, 138, 0.3);
}

.partners h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #00bcd4;
}

.partners p {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 1.5rem;
}

.partner-logos {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: initial;
    gap: auto;
}

.partner-logos img {
    max-width: 95px;
    max-height: 500px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.partner-logos .cta-button {
    display: inline-block;
    background-color: #00bcd4;
    color: #121212;
    padding: 0.5rem 1.65rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: bold;
    transition: background-color 0.3s;
}

.partner-logos .cta-button:hover {
    background-color: #f5f0f5;
    transform: scale(0.5rem);
}

.partner-logos img:hover {
    opacity: 1;
}

/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
}

/* Contact Us Section */
.contact-section {
    background: url('g.jpg') no-repeat center center/cover;
}

.contact-us {
    padding: 3rem 2rem;
    background-color: #1e1e1e;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #00bcd4;
    /* Light cyan accent */
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
}

/* Contact Form */
.contact-form {
    flex: 1 1 48%;
    background-color: #292929;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(43, 12, 138, 0.3);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #00bcd4;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    font-size: 1rem;
    color: #cccccc;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    background-color: #333333;
    color: #ffffff;
    border: 1px solid #444444;
    border-radius: 5px;
    font-size: 1rem;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #00bcd4;
}

.contact-form button {
    display: inline-block;
    background-color: #00bcd4;
    color: #121212;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #f5f0f5;
    /* Slightly darker shade */
}

/* Location Map */
.location-map {
    flex: 1 1 48%;
    background-color: #292929;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(43, 12, 138, 0.3);
    text-align: center;
}

.location-map h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #00bcd4;
}

.map-container {
    margin-top: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

/* Make iframe responsive */
.map-container iframe {
    width: 100%;
    height: 100%;
}

.map-container iframe:hover{
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(10, 2, 0, 0.3);
}

/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
}

/* Footer Section */
.footer {
    background-color: #1e1e1e;
    padding: 3rem 2rem;
    color: #cccccc;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo h3 {
    color: #00bcd4;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    font-size: 1rem;
    color: #cccccc;
}

.footer-links h4,
.footer-social h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #00bcd4;
}

.footer-links ul {
    list-style-type: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 1rem;
}

.footer-links a:hover {
    color: #00bcd4;
}

.footer-social {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0rem;
}

.fa-facebook {
    font-size: 1.15rem;
    color: #1877F2;
}

.fa-twitter {
    font-size: 1.15rem;
    color: #000000;
}

.fa-instagram {
    font-size: 1.15rem;
    color: #E1306C;
}

.fa-linkedin {
    font-size: 1.15rem;
    color: #0A66C2;
}

.fa-github {
    font-size: 1.15rem;
    color: #181717;
}

.fa-whatsapp {
    font-size: 1.15rem;
    color: #25D366;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.875rem;
    color: #888888;
}

.footer-bottom p {
    margin: 0;
}

.footer-social .cta-button {
    display: inline-block;
    background-color: #121212;
    color: #5f4a4a;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s;
}

.footer-social .cta-button:hover {
    background-color: #f5f0f5;
    transform: scale(0.5rem);
}