/* Base Styles */
:root {
    --tazwat-purple: #7667CF;
    --tazwat-purple-dark: #6457b9;
    --tazwat-blue: #C4D3F2;
    --tazwat-yellow: #FFD966;
    --primary-color: #7667CF; /* Purple from the logo */
    --secondary-color: #6457b9; /* Slightly darker purple */
    --accent-color: #C4D3F2; /* Light blue from the logo */
    --highlight-color: #FFD966; /* Yellow triangle accent from logo */
    --text-color: #1f2937;
    --light-text: #f9fafb;
    --background: #f9fafb;
    --light-gray: #f3f4f6;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* Navbar */
.navbar-brand img {
    height: 40px;
}

.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 10px;
}

.navbar .btn-primary {
    background-color: var(--tazwat-purple);
    border-color: var(--tazwat-purple);
}

.navbar .btn-primary:hover {
    background-color: var(--tazwat-purple-dark);
    border-color: var(--tazwat-purple-dark);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(118, 103, 207, 0.1), rgba(196, 211, 242, 0.4));
    padding: 120px 0 80px;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    right: 5%;
    top: 20%;
    width: 80px;
    height: 80px;
    background-color: var(--tazwat-yellow);
    opacity: 0.4;
    transform: rotate(45deg);
    z-index: 0;
}

.hero h1 {
    font-weight: 700;
    color: var(--tazwat-purple);
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn-primary {
    background-color: var(--tazwat-purple);
    border-color: var(--tazwat-purple);
    padding: 10px 25px;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: var(--tazwat-purple-dark);
    border-color: var(--tazwat-purple-dark);
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #fff;
}

.section-title {
    margin-bottom: 50px;
}

.section-title h2 {
    color: var(--tazwat-purple);
    font-weight: 700;
    margin-bottom: 15px;
}

.card {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
}

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

.card-body {
    padding: 30px;
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--tazwat-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 30px;
    color: var(--tazwat-purple);
}

.card-title {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--tazwat-purple);
}

/* Process Section */
.process {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.process-step {
    text-align: center;
    margin-bottom: 30px;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--tazwat-purple);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    font-weight: bold;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--tazwat-purple), var(--tazwat-purple-dark));
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background-color: var(--tazwat-yellow);
    opacity: 0.5;
    transform: rotate(45deg);
    z-index: 1;
}

.btn-light {
    color: var(--tazwat-purple);
    font-weight: 600;
    padding: 10px 25px;
}

/* Footer */
footer {
    background-color: #212529;
    color: white;
    padding: 60px 0 20px;
}

footer h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
}

footer ul {
    list-style: none;
    padding-left: 0;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer ul li a:hover {
    color: white;
    text-decoration: none;
}

.social-icons a {
    color: white;
    font-size: 18px;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--tazwat-blue);
}

.contact-info i {
    width: 20px;
    margin-right: 10px;
}

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


/* Page Banner */
.page-banner {
    background: linear-gradient(135deg, rgba(118, 103, 207, 0.1), rgba(196, 211, 242, 0.4));
    padding: 120px 0 60px;
    position: relative;
}

.page-banner h1 {
    font-weight: 700;
    color: var(--tazwat-purple);
    margin-bottom: 20px;
}

.platform-badge {
    display: inline-flex;
    align-items: center;
    background-color: #f8f9fa;
    border-radius: 30px;
    padding: 8px 20px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-weight: 500;
}

.platform-badge i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.service-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-card .card-header {
    background-color: var(--tazwat-purple);
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    padding: 20px;
}

.service-card .card-body {
    padding: 30px;
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
}

.feature-list li i {
    color: var(--tazwat-purple);
    margin-right: 10px;
    margin-top: 5px;
}

.tech-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
}

.tech-logo {
    width: 100px;
    height: 100px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.tech-logo img {
    max-width: 100%;
    max-height: 100%;
}

.section-header {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
    color: var(--tazwat-purple);
}

.section-header:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--tazwat-purple);
}

.dev-approach {
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    background-color: #f8f9fa;
    border-left: 5px solid var(--tazwat-purple);
}

.approach-step {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}

.approach-step i {
    font-size: 2rem;
    color: var(--tazwat-purple);
    margin-bottom: 15px;
}

.approach-step h5 {
    margin-bottom: 15px;
    color: var(--tazwat-purple);
}
/* Testimonials */
.testimonial-card {
    padding: 30px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.testimonial-card .quote {
    font-size: 2rem;
    color: var(--tazwat-blue);
    margin-bottom: 15px;
}

.client-info {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.client-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.client-details h6 {
    margin-bottom: 0;
    font-weight: 600;
}

.client-details span {
    font-size: 0.9rem;
    color: #6c757d;
}
.comparison-table {
    margin-top: 40px;
}

.comparison-table th {
    background-color: var(--tazwat-purple);
    color: white;
    font-weight: 500;
}

.comparison-table .feature-available {
    color: var(--tazwat-purple);
    font-size: 1.2rem;
}

.comparison-table .feature-partial {
    color: #ffc107;
    font-size: 1.2rem;
}

.comparison-table .feature-unavailable {
    color: #dc3545;
    font-size: 1.2rem;
}




.tech-badge {
    display: inline-flex;
    align-items: center;
    background-color: #f8f9fa;
    border-radius: 30px;
    padding: 8px 20px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-weight: 500;
}

.tech-badge i {
    margin-right: 8px;
    font-size: 1.2rem;
}


.text-center .section-header:after {
    left: 50%;
    transform: translateX(-50%);
}

.benefit-card {
    padding: 30px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--tazwat-purple);
    margin-bottom: 20px;
}

/* Industry section */
.industry-icon {
    width: 80px;
    height: 80px;
    background-color: var(--tazwat-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--tazwat-purple);
    font-size: 2rem;
}



/* Process steps */
.process-card {
    border-left: 4px solid var(--tazwat-purple);
    padding: 20px;
    margin-bottom: 30px;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-radius: 5px;
}

.process-card h5 {
    color: var(--tazwat-purple);
    margin-bottom: 15px;
}

/* Case study box */
.case-study-box {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    background: white;
}

.case-content {
    padding: 25px;
}

.case-study-box h4 {
    color: var(--tazwat-purple);
    margin-bottom: 15px;
}

.stat-box {
    background-color: var(--tazwat-blue);
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    margin-top: 15px;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: var(--tazwat-purple);
}



/* IoT ecosystem diagram */
.iot-ecosystem {
    position: relative;
    max-width: 100%;
    margin: 30px auto;
}

.iot-center {
    width: 150px;
    height: 150px;
    background-color: var(--tazwat-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    position: relative;
    margin: 0 auto;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.iot-item {
    width: 100px;
    height: 100px;
    background-color: var(--tazwat-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    color: var(--tazwat-purple);
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.faq-question {
    font-weight: 600;
    color: var(--tazwat-purple);
    margin-bottom: 10px;
}


.step-content h5 {
    margin-bottom: 10px;
    color: var(--tazwat-purple);
}

.stack-architecture {
    margin: 40px 0;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.architecture-title {
    text-align: center;
    font-weight: 600;
    color: var(--tazwat-purple);
    margin-bottom: 20px;
}

.layer {
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    text-align: center;
    color: white;
    font-weight: 600;
}

.frontend-layer {
    background-color: var(--tazwat-purple);
}

.backend-layer {
    background-color: var(--tazwat-purple-dark);
}

.data-layer {
    background-color: #5a4fad;
}

.infra-layer {
    background-color: #513fa0;
}

.layer-description {
    font-size: 0.9rem;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: normal;
}

.comparison-table {
    margin-top: 40px;
}

.comparison-table th {
    background-color: var(--tazwat-purple);
    color: white;
}

.stack-benefits {
    margin-top: 40px;
}

.vaadin-features, .spring-features {
    position: relative;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.vaadin-features::before, .spring-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--tazwat-purple);
    border-radius: 5px 0 0 5px;
}

.tech-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.screenshot {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}