:root {
    --primary-color: #0d3e85;
    --secondary-color: #64b5f6;
    --accent-color: #bbdefb;
    --text-color: #37474f;
    --section-bg-1: #f8f9fa;
    --section-bg-2: #e9ecef;
    --section-bg-3: #dee2e6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'shabnam', Tahoma, Arial;
}

body {
    background-color: #f5f5f5;
    color: var(--text-color);
    line-height: 1.6;
    font-family: "shabnam";
    font-weight: 500;
}

a {
    text-decoration: none;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-nav {
    padding: 15px 0;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 1000;
    right: 0;
    display: flex;
    align-items: center;
}

.nav-content {
    display: flex;
    width: 100%;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    color: white
}

.nav-menu a:hover {
    color: var(--primary-color);
}

header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white !important;
}


.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.services {
    padding: 80px 0;
    background-color: var(--section-bg-1);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    color:#0d3e85;
    margin-bottom: 15px;
    font-size: 1.4em;
}

.service-card p {
    color: var(--text-color);
    font-size: 1em;
}

.service-icon {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: var(--secondary-color);
}

.login-button {
    background-color: var(--primary-color);
    color: white !important;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-right: 20px;
}

.login-button:hover {
    background-color: var(--secondary-color);
}
.ai-voip-info {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--section-bg-1) 0%, var(--section-bg-2) 100%);
}

section .container h2 {
    text-align: center;
    color: var(--text-color);
    margin-bottom: 50px;
    font-size: 2.2em;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4em;
}

.info-card p {
    color: var(--text-color);
    line-height: 1.8;
}

.hero {
    position: relative;
    padding: 24px 0;
    min-height: 400px;
    background: #284666 url(/public/images/hero-01.jpg) no-repeat center center;
    background-size: cover;
    color: #fff;
}
.hero-content, .top-nav {
    position: relative;
    z-index: 10;
}
.hero-content a {
    float: left;
}
.texture-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/public/images/grid.png);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.hero .top-nav .container {
    position: absolute;
    z-index: 1;
    width: 100%;
}
.hero h2 {
    margin: 40px 0 15px;
    font-weight: 300;
}
.use-btn {
    display: inline-block;
    margin: 0 10px 10px 0;
    padding: 20px 50px;
    border-radius: 3px;
    background-color: #fff;
    color: #4b98a9;
    font-size: 16px;
}
.learn-btn, .download-btn {
    display: inline-block;
    padding: 18px 46px;
    border: 2px solid #fff;
    border-radius: 3px;
    color: #fff;
    font-size: 16px;
}
.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-container h1 {
    font-size: 24px;
    font-weight: 300;
}
.ai-voip-diagram {
    text-align: center;
    margin-top: 40px;
}

.ai-voip-diagram img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.diagram-caption {
    margin-top: 15px;
    color: var(--text-color);
    font-style: italic;
}
.customers {
    padding: 80px 0;
    background-color: var(--section-bg-2);
}

.customers h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-size: 2em;
}

.customers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.customer-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.customer-card:hover {
    transform: translateY(-5px);
}

.customer-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
}

.customer-card h3 {
    color: #0d3e85;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.customer-card p {
    color: var(--text-color);
    font-style: italic;
    line-height: 1.6;
}
.about-ai-company {
    padding: 80px 0;
    background-color: var(--section-bg-1);
}

.about-ai-company h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-size: 2em;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1em;
    line-height: 1.8;
    color: var(--text-color);
}

.company-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.stat-number {
    display: block;
    font-size: 2.5em;
    font-weight: bold;
    color: #0d3e85;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1em;
    color: var(--text-color);
}
.online-support {
    padding: 80px 0;
    background-color: var(--section-bg-3);
}

.online-support h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 50px;
    font-size: 2em;
}

.support-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.support-info {
    flex: 1;
}

.support-info h3 {
    color: var(--text-color);
    margin-bottom: 20px;
    font-size: 1.5em;
}

.support-info p {
    color: var(--text-color);
    margin-bottom: 30px;
    line-height: 1.6;
}

.support-channels {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.channel {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.channel:hover {
    transform: translateX(-10px);
}

.channel-icon {
    font-size: 2em;
}

.channel-details h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.channel-details p {
    margin: 0;
    color: var(--text-color);
}

.support-image {
    flex: 1;
    text-align: center;
}

.support-image img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .support-content {
        flex-direction: column;
    }

    .support-image {
        order: -1;
    }
}
footer {
    background-color: #2c3e50;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 1.2em;
}

.footer-section p {
    margin-bottom: 10px;
    color: #ecf0f1;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
}

.footer-bottom p {
    color: #bdc3c7;
    font-size: 0.9em;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}



/* --------------bahar--------------------- */
.service-title{
    display: flex;
    justify-content: flex-start;
}

.service-title i {
    padding-top: 10px;
    padding-left: 7px;
    color: #0d3e85;
    
}



.service-card{
    position: relative;
}

.service-card-icon-one{
    position: absolute;
    top: 0px;
    left: 0px;

}
.service-card-icon-two{
    position: absolute;
    top: -10px;
    left: 10px;
}


.section-title {
    position: relative;
  }
  
  .section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color:#332baf;
    transition: width 0.3s ease;
  }
  
  .section-title:hover::after {
    width: 100%;
  }

  .ti{
    color:#0d3e85;
  }

  .post-content {
    background-color: #ffffff;  /* White background for content */
    border: 1px solid #e0e0e0;  /* Light border for the post content */
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.post-content h1 {
    color: #007bff;  /* Blue color for the title */
    font-size: 2.5rem;
    font-weight: 600;
}


  

