/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3 {
    margin-bottom: 1rem;
}

/* Color Gradient Background */
.blue-gradient {
    background: linear-gradient(135deg, #0070b6 0%, #00bfff 100%);
    color: white;
}

/* .blue-gradient h1, 
.blue-gradient h2, 
.blue-gradient h3,
.blue-gradient h4,
.blue-gradient p {
    color: white;
}
 */
/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Header Section */
header {
    padding: 2rem 0;
    text-align: center;
}

.logo {
    max-width: 300px;
    margin-bottom: 2rem;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    margin-bottom: 2rem;
}

@media (min-width: 992px) {
    .header-content {
        flex-direction: row;
    }
}

.header-text {
    flex: 1;
    max-width: 600px;
    text-align: center;
}

.header-text h1 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.header-image {
    flex: 1;
    text-align: center;
}

.header-image img {
    max-width: 100%;
    height: auto;
}

.app-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;

    align-items: center;
    text-align: center;
}

.app-button {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background-color: white;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
}

.app-button img {
    height: 24px;
    margin-right: 0.5rem;
}

.partner-logo {
    align-items: center;
    margin-top: 2rem;
}

.partner-logo img {
    height: 200px;
    margin-right: 1rem;
}

.partner-logo span {
    font-size: 3rem;
    font-weight: bold;
    color: white;
}

/* What Is Section */
.what-is {
    padding: 4rem 0;
}

.what-is-heading {
    font-size: 3.5rem;
    color: #0070b6;
    text-align: center;
    margin-bottom: 2rem;
}

.what-is-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 992px) {
    .what-is-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.what-is-text {
    flex: 1;
    padding-right: 2rem;
}

.what-is-text p {
    color: #333;
}

.what-is-image {
    flex: 1;
    text-align: center;
    margin-top: 2rem;
}

@media (min-width: 992px) {
    .what-is-image {
        margin-top: 0;
    }
}

.what-is-image img {
    max-width: 100%;
    height: auto;
}

/* How To Use Section */
.how-to-use {
    padding: 4rem 0;
    text-align: center;
}

.how-to-use-heading {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.how-to-use-desc {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.user-roles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.role-card {
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    width: 100%;
    max-width: 350px;
    text-align: center;
}

.role-icon {
    width: 250px;
    height: 250px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.role-icon img {
    max-width: 100%;
}

.role-title {
    font-size: 1.25rem;
    color: #0070b6;
    margin-bottom: 1.5rem;
}

.role-tasks {
    list-style: none;
    text-align: left;
    color: #333;
}

.role-tasks li {
    margin-bottom: 0.5rem;
}

.role-note {
    font-size: 0.875rem;
    color: #666;
    margin-top: 1rem;
    font-style: italic;
}

/* Process Section */
.process {
    padding: 4rem 0;
}

.process-heading {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.process-diagram {
    text-align: center;
    margin-bottom: 3rem;
}

.process-diagram img {
    max-width: 100%;
    height: auto;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.feature {
    width: 100%;
    max-width: 350px;
    text-align: center;
    margin: 0 auto;
}

.feature-icon {
    color: #0070b6;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-icon img {
    height: 150px;
}

.feature-title {
    color: #0070b6;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    min-height:64px;
}

/* Partner Section */
.partner {
    padding: 4rem 0;
    text-align: center;
}

.partner-heading {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.values {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 2rem;
    margin-bottom: 3rem;
}

.value {
    width: 150px;
    text-align: center;
}

.value-icon {
    color: #0070b6;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.value-icon img {
    height: 150px;
}

.value-title {
    color: #0070b6;
}

.services {
    width:100%;
  /*   display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem; */
    margin-top: 3rem;
}

.service {
    width: 100%;
   /*  max-width: 500px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .service {
        flex-direction: row;
        align-items: center;
    }
    
    .service:nth-child(even) {
        flex-direction: row-reverse;
    }
    .footer-partner{
        display: flex;
    }
    .partner-logo{
        display: flex;
    }
    .header-text {
        flex: 1;
        max-width: 600px;
        text-align: left;
        padding-right: 2rem;
    }
    
}

.service-text {
    flex: 1;
    text-align: left;
}
.service-text h3{
    font-size: 2.2rem;
}

.service-text p {
    font-size: 1.5rem;
    color: black;
}

.service-title {
    color: #0070b6;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-image {
    flex: 1;
    margin: 1rem 0;
}

@media (min-width: 768px) {
    .service-image {
        margin: 0 1rem;
    }
}

.service-image img {
    width: 100%;
   
    height: auto;
    border-radius: 16px;
}

/* Contact Section */
.contact {
    display: flex;
    flex-direction: column;
}

@media (min-width: 992px) {
    .contact {
        flex-direction: row;
    }
}

.contact-info {
    flex: 1;
    background-color: #001f3f;
    color: white;
    padding: 3rem;
}

.contact-heading {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.contact-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-section:last-child {
    border-bottom: none;
}

.contact-section-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.contact-list {
    list-style: none;
}

.contact-list li {
    margin-bottom: 0.5rem;
}

.contact-social {
    display: flex;
    gap: 1.5rem;
}

.contact-social a {
    color: white;
    font-size: 1.5rem;
}

.contact-right {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    width:80%;
    margin-bottom: 2rem;
}

.footer-app-buttons {
    margin-bottom: 2rem;
    align-items: center;
    text-align: center;
}

.footer-partner {
    text-align: center;
    align-items: center;
}

.footer-partner img {
    height: 250px;
    margin-right: 1rem;
}

.footer-partner span {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    text-align: center;
}