* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
}
header {
    background-color: #ededee;
    padding: 20px 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 120px;
    margin-top: 10px;
}

.navbar a {
    text-decoration: none;
    color: #f9f8f8;
    margin: 0 10px;
    font-weight: bold;
}
 /* Navigation Bar */
 .navbar {
    display: flex;
    background-color: #ffffff;
    padding: 10px 20px;
    border-bottom: 1px solid #fffcfc;
}

.navbar .flex {
    display: flex;
    align-items: center;
}
.navbar .flex a{
    flex-shrink: 0;
}
.navbar .flex .dropdown a:first-of-type{
    display: flex;
    align-items: center;
    gap: 0.5rem;
} 
.navbar a {
    text-decoration: none;
    color: #848484;
    margin-right: 20px;
    font-weight: bold;
}

.navbar h1{
    color: #1336d3;
}

.navbar a:hover {
     color: #18b8d1;
}
/* LOGO */
.logo img {
    width: 150px;
    height: 150px;
}

.hero {
    display: flex;
    background: linear-gradient(rgba(57, 115, 196, 0.816),rgba(215, 215, 215, 0.5)),url();
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
}
/* Toggle Button Styles */
.toggle-btn {
    display: none;
    background-color: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

/* Hide nav links by default on smaller screens */
@media (max-width: 768px) {
    .toggle-btn {
        display: block; /* Show toggle button */

    }

    nav.flex {
        flex-direction: column;
        align-items: center;
        background-color: #fff;
        width: 100%;
        position: absolute;
        left: 0;
        top: 100%;
        border: 1px solid #ddd;
        z-index: 1000;
        display: none; /* Hide navbar links */
    }

    #navlinks {
        display: none;
    }

    nav.flex a {
        margin: 10px 0;
        width: 100%;
        text-align: center;
        padding: 10px;
        border-bottom: 1px solid #f0f0f0;
    }

    nav.flex a:last-child {
        border-bottom: none;
    }
}

/* Show nav when active */
#navlinks.active {
    display: flex;
}
/* Style dropdown links */
nav.flex a {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

/* Ensure auth buttons stack */
.auth-buttons {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}



.ai {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-text {
    max-width: 600px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    margin-bottom: 20px;
}

.hero button {
    padding: 10px 20px;
    background-color: #1736e6;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 5px;
}

.hero button:hover {
    background-color: #1818a8;
}

.hero img {
    max-width: 500px;
    width: 100%;
    
}

.how-it-works {
    background-color: #fff;
    padding: 40px 0;
    text-align: center;
}

.how-it-works h2 {
    margin-bottom: 20px;
}

.steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.step {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    flex: 1 1 calc(25% - 20px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.step h3 {
    margin-bottom: 10px;
}

.step p {
    font-size: 0.9rem;
}

.services-section {
    padding: 40px 0;
    background-color: #f4f8ff;
}

.services-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.service {
    flex: 1 1 45%;
    background-color: #ccc2f2;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.service h2 {
    margin-bottom: 10px;
}

.service ul {
    list-style-type: disc;
    margin-left: 20px;
}

.service img {
    max-width: 100%;
    border-radius: 10px;
    margin-top: 20px;
}
.service-2{
    flex: 1 1 45%;
    background-color: #ebe7fb;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.service-2 img {
    max-width: 100%;
    border-radius: 10px;
    margin-top: 20px;
}

.service button {
  background-color: #2b57e6;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
/* Dropdown Container */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(5, 5, 5, 0.1);
    padding: 10px 0;
    border: 1px solid #070707;
    z-index: 1000;
    width: 300px;
}

.nested-dropdown-content {
    display: none;
    position: absolute;
    top: 0%;
    left: 100%;
    background-color: #cecece;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    border: 1px solid #f9f8f8;
    z-index: 1000;
}

.dropdown:hover .dropdown-content {
    display: flex;
}

.nested-dropdown {
    z-index: 10;
    width: 100%;
}

.nested-dropdown:hover .nested-dropdown-content {
    display: block;
}
.dropdown-content a {
    display: flex;
    justify-content: start;
    padding: 10px 20px;
    color: #000;
    text-decoration: none;
    white-space: nowrap;
    width: 50%;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #f0f0f0;
}


/* Login and Signup Buttons */
.auth-buttons {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.auth-buttons a {
    text-decoration: none;
    padding: 8px 15px;
    margin-left: 10px;
    border-radius: 4px;
    font-weight: bold;
}

.login {
    color: #000;
    border: 1px solid #000;
}

.signup {
    background-color: #0000ff;
    color: #fff;
}

.signup:hover {
    background-color: #0000cc;
}


.features {
    background-color: #f9fbff;
    padding: 40px 0;
}

.feature-card {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.feature-card img {
    max-width: 700px;
    margin-right: 20px;display: flex;
    align-items: center;
    margin-bottom: 30px;
    background: rgba(195, 199, 232, 0.5);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.feature-text h2 {
    color: #365b93;
    font-size: 2rem;
    margin-bottom: 10px;
}

.feature-text ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.feature-text button {
    padding: 10px 20px;
    background-color: #4a90e2;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 5px;
}

.feature-text button:hover {
    background-color: #417ebb;
}
.sol {

     padding: 20px;
     border-radius: 10px;
     margin-bottom: 20px;
 }

.sol {
      font-size: 2rem;
      font-weight: bold;
      color: #4e7599;
      margin-bottom: 5px;
      margin-top:350px;
   }


.sol p {
     font-size: 1rem;
      color: #000000;
      font-weight: lighter;
  }
.cover{}
 
.pricing {
    background-color: #f9fbff;
    padding: 40px 0;
    text-align: center;
}
.pricing h2{
    font-size: 40px;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 35px;
}

.pricing-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 300px;
    padding: 20px;
    margin: 10px;
    text-align: center;
}

.pricing-card.most-popular {
    background: rgba(57, 115, 196, 0.816);
    color: #fff;
    position: relative;
}

.pricing-card.most-popular .badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: #fff;
    padding: 5px 10px;
    font-size: 0.9rem;
    border-radius: 5px;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.pricing-card p {
    margin-bottom: 20px;
}

.pricing-card button {
    padding: 10px 20px;
    background-color: #fff;
    color: #4a90e2;
    border: 2px solid #4a90e2;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}

.pricing-card button:hover {
    background-color: #4a90e2;
    color: #fff;
}
.card-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
margin-top: 20px;
}
/* solution Styling */
.solution {
background-color: rgba(57, 115, 196, 0.816);
padding: 20px;
border-radius: 10px;
margin-bottom: 20px;
max-width:80rem;
margin: 0 auto;
}

.solution h1 {
font-size: 2.5rem;
font-weight: bold;
color: #deeafa;
margin-bottom: 10px;
}

.solution p {
font-size: 1rem;
color: #e2e0e0;
}

/* solutions Card Styling */
.card-container {
display: flex;
margin-bottom: -20%;

}

.card {
background-color: #b6ceee;
border: 1px solid #0a595d;
border-radius: 50px;
padding: 20px;
width: 300px;
box-shadow: 0 4px 6px rgba(211, 209, 209, 0.1);
text-align: center;

}

.card-number {
width: 40px;
height: 40px;
background-color: #e9f1ff;
color: #555;
font-size: 1.5rem;
font-weight: bold;
line-height: 40px;
margin: 0 auto 10px;
border-radius: 50%;
}

.card h3 {
font-size: 1.2rem;
color: #333;
margin-bottom: 10px;
}

.card p {
font-size: 0.9rem;
color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
.card-container {
flex-direction: column;
align-items: center;
}

.card {
width: 100%;
max-width: 300px;
}
}


.insights-container {
    display: flex;
    justify-content: space-between;
    gap: px;
    flex-wrap: wrap;
    margin-bottom: 10px;
    margin-top: 10px;
}

.insight {
    background-color: rgba(251, 247, 247, 0.5);
    padding:15px;
    border-radius: 15px;
    flex: 1 1 calc(33% - 25px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.insight img {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.insight h3 {
    margin-bottom: 10px;
}

.insight p {
    margin-bottom: 15px;
}
.sight{
    text-align: center;
}
.sight h2{
    font-size: 40px;
}

.cta-section {
    padding: 40px 0;
    text-align: center;
    background-color:rgba(57, 115, 196, 0.816);
}
.cta-section button{
    background-color: #111ac7;
}

.container {
    width: 100%;
}

.cta-container{
    /* background-color: red; */
    display: flex;
    width: 100%;
 }   
 .cta-container img {
    width: 50%;
 }

 .cta-container .ia {
    width: 50%;
 }
    
    

.cta-container {
    max-width: 600px;
    margin: 0 auto;
}
.testimonials-col img{
    height: 98px;
    width:95px;
    margin-left: 3px;
    margin-right: 25px;
    border-radius: 50%;
    
}

.testimonials-col {
    max-width: 1200px;
    margin: 0 auto;
    width: fit-content;
 
}

footer {
    background-color: #2f2f2f;
    color: #bab8b8;
    padding: 10px 0;
    text-align: center;
}
/* Responsive Design */

/* Mobile Devices (max-width: 600px) */
@media (max-width: 600px) {
.navbar {
flex-direction: column;
align-items: center;
}

/* .navbar nav {
display: flex;
flex-direction: column;
align-items: center;
} */
/* Nested Submenu */
  /* Nested Submenu */
.dropdown-content .nested-dropdown {
    position: relative;
}

.dropdown-content .nested-dropdown-content {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    border: 1px solid #ddd;
}

.nested-dropdown:hover .nested-dropdown-content:hover {
    display: block;
}

.hero {
flex-direction: column;
text-align: center;
}

.hero img {
max-width: 100%;
}

.steps {
flex-direction: column;
align-items: center;
}

.step {
width: 100%;
}

.services-container, .pricing-cards, .insights-container {
flex-direction: column;
}

.service, .service-2, .pricing-card, .insight {
width: 100%;
}

.feature-card {
flex-direction: column;
text-align: center;
}
}

/* Tablets (max-width: 900px) */
@media (max-width: 900px) {
.hero {
flex-direction: column;
text-align: center;
}

.hero img {
max-width: 80%;
}

.services-container {
flex-direction: column;
align-items: center;
}

.service, .service-2 {
width: 100%;
}

.pricing-cards {
flex-direction: column;
align-items: center;
}

.pricing-card {
width: 90%;
}
}

/* Laptops (max-width: 1200px) */
@media (max-width: 1200px) {
.container {
width: 95%;
}

.hero h1 {
font-size: 2rem;
}

.feature-card {
flex-direction: column;
text-align: center;
}

.feature-card img {
max-width: 70%;
margin: 0 auto;
}
}

