/* Global Styles */
:root {
    --primary-color: #303788;
    --secondary-color: #6c757d;
    --accent-color: #ff9800;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --success-color: #28a745;
    --border-color: #dee2e6;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #fff;
}

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

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: #2a47c7;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
}

section {
    padding: 80px 0;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: #2a47c7;
    color: white;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: rgba(58, 92, 215, 0.1);
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0;
}

.logo-img {
    max-height: 40px;
    width: auto;
    display: block;
}

nav ul {
    display: flex;
    align-items: center;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--dark-color);
    font-weight: 500;
}

nav ul li a:hover {
    color: var(--primary-color);
}

.language-switch {
    padding: 3px 8px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    background-color: #f8f9ff;
    padding: 100px 0;
}

.hero-accent-dot {
    color: #ff9800;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    padding-right: 40px;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.hero-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    font-weight: 500;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.cta-buttons {
    justify-content: center;
    display: flex;
    gap: 15px;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image video {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

/* Features Section */
.features {
    background-color: white;
    text-align: center;
}

.features h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
}

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

.feature-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-icon img {
    width: 60px;
    height: 60px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* Solutions Section */
.solutions {
    background-color: #f8f9ff;
}

.solutions h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.solution-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.solution-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.solution-card p {
    margin-bottom: 20px;
}

.solution-card ul {
    padding-left: 20px;
}

.solution-card ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.solution-card ul li:before {
    content: "-";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.solution-card.highlight {
    border: 2px solid var(--primary-color);
}

.badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background-color: var(--accent-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* About Section */
.about {
    background-color: white;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--secondary-color);
}

/* Screenshots Section */
.screenshots {
    background-color: white;
    text-align: center;
}

.screenshots h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.screenshots-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.screenshots-intro p {
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-bottom: 2rem;
}

.screenshot-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.screenshot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.screenshot-img {
    width: 100%;
    height: auto;
    border-bottom: 1px solid var(--border-color);
}

.screenshot-content {
    padding: 20px;
    text-align: left;
}

.screenshot-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.screenshot-content p {
    color: var(--secondary-color);
    margin-bottom: 0;
}

.screenshot-list {
    padding-left: 20px;
    margin-bottom: 0;
}

.screenshot-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
    color: var(--secondary-color);
}

.screenshot-list li:before {
    content: "-";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.screenshot-list li:last-child {
    margin-bottom: 0;
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.5s ease, opacity 0.5s ease;
    display: none;
}

.carousel-slide.active {
    position: relative;
    opacity: 1;
    transform: translateX(0);
    z-index: 1;
    display: block;
}

.carousel-slide.prev {
    transform: translateX(-100%);
}

.carousel-slide.next {
    transform: translateX(100%);
}

/* Animation for slide transitions */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes slideOutLeft {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(-100%);
        opacity: 0;
    }
}

.carousel-slide.slide-in-right {
    animation: slideInRight 0.5s forwards;
    display: block;
}

.carousel-slide.slide-in-left {
    animation: slideInLeft 0.5s forwards;
    display: block;
}

.carousel-slide.slide-out-right {
    animation: slideOutRight 0.5s forwards;
    display: block;
}

.carousel-slide.slide-out-left {
    animation: slideOutLeft 0.5s forwards;
    display: block;
}

.carousel-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid var(--border-color);
}

.carousel-prev, .carousel-next {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.carousel-prev:hover, .carousel-next:hover {
    background-color: #2a47c7;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dot.active {
    background-color: var(--primary-color);
}

/* Custom slide for messaging icons */
.custom-slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f8f9ff;
    padding: 40px 20px;
    height: 100%;
    min-height: 300px;
}

.messaging-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
}

.messaging-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    font-weight: bold;
}

.messaging-icon.whatsapp .icon-circle {
    background-color: #25D366;
    color: white;
}

.messaging-icon.email .icon-circle {
    background-color: #4285F4;
    color: white;
}

.slide-caption {
    font-size: 1.2rem;
    color: var(--dark-color);
    text-align: center;
    margin-top: 20px;
}

/* FAQ Section */
.faq {
    background-color: #f8f9ff;
    text-align: center;
}

.faq h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
    text-align: left;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: rgba(58, 92, 215, 0.05);
}

.faq-question h3 {
    font-size: 1.2rem;
    margin-bottom: 0;
    color: var(--dark-color);
    flex: 1;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 20px 20px;
}

/* Contact Section */
.contact {
    background-color: #f8f9ff;
    text-align: center;
}

.contact h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.contact > p {
    max-width: 600px;
    margin: 0 auto 3rem;
    color: var(--secondary-color);
}

.call-to-action {
    font-size: 24px;
}

.contact-form {
    max-width: 600px;
    margin: 32px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    margin-bottom: 4px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    transition: var(--transition);
}

.form-group select {
    appearance: none;
    background-color: #f8f9ff;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23303788' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
    cursor: pointer;
    font-weight: 500;
    color: var(--dark-color);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.form-group select:hover {
    border-color: var(--primary-color);
    background-color: #eef0ff;
    transform: translateY(-1px);
}

/* Styling for dropdown options in webkit browsers */
.form-group select option {
    padding: 10px;
    background-color: white;
    color: var(--dark-color);
}

.form-group select option:hover,
.form-group select option:focus,
.form-group select option:active {
    background-color: var(--primary-color);
    color: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(58, 92, 215, 0.2);
}

.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(58, 92, 215, 0.2);
    background-color: #eef0ff;
    animation: selectPulse 1.5s infinite alternate ease-in-out;
}

@keyframes selectPulse {
    0% {
        box-shadow: 0 0 0 3px rgba(58, 92, 215, 0.1);
    }
    100% {
        box-shadow: 0 0 0 3px rgba(58, 92, 215, 0.3);
    }
}

.contact-form .btn-primary {
    grid-column: span 2;
    justify-self: center;
    min-width: 200px;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo h2 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.footer-logo .logo-img {
    max-height: 40px;
    width: auto;
    display: block;
    margin-bottom: 10px;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.link-group h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.link-group ul li {
    margin-bottom: 10px;
}

.link-group ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.link-group ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
        order: 2;
    }

    .hero-image {
        order: 1;
        margin-bottom: 30px;
    }

    .cta-buttons {
        justify-content: center;
    }

    .features-grid,
    .solutions-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }

    .logo {
        margin-bottom: 15px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul li {
        margin: 5px 15px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .screenshots-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-logo {
        margin-bottom: 30px;
        text-align: center;
    }

    .footer-links {
        justify-content: space-around;
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }

    .hero {
        padding: 80px 0;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content h2 {
        font-size: 1.3rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

    .contact-form .btn-primary {
        grid-column: span 1;
    }

    .footer-links {
        flex-direction: column;
        gap: 30px;
    }

    .link-group {
        text-align: center;
    }

    .screenshots-grid {
        grid-template-columns: 1fr;
    }
}
