body {
    font-family: 'Arial', sans-serif;
    background-color: white;
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    color: #333;
}

a {
    color: #ff0000;
}

.our-work {
    margin-bottom: 20px;
    background-color: #ffffff;
}

.gray-bg {
    background-color: #f8f7f7;
}

p {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

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

.navbar {
    background-color: #ffffff;
    color: #333;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;

}

.label {
    font-weight: normal;
    color: #333;
}

.logo img {
    height: 40px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.hero {
    padding: 60px 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 800px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 850px;
    margin: 0 auto;
    z-index: 10;
}

.hero h1 {
    margin-bottom: 20px;
    color: white;
    font-weight: normal;
}

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

.hero a {
    background-color: #ff0000;
    color: #ffffff;
    padding: 17px 27px;
    text-decoration: none;
    font-size: 1.2rem;
}

.hero a:hover {
    background-color: #cc0000;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #0000007d;
    z-index: 5;
}

.hero-image {
    position: absolute;
    margin-top: 150px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    left: 0;
    z-index: 3;
}

.services {
    padding: 60px;
    background-color: #ffffff;
}

.services h2 {
    text-align: center;
    margin-bottom: 40px;
}

.service-card {
    background-color: #f5f3f3;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    flex: 1;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    font-size: 16px;
}

.service-card .service-icon {
    margin-bottom: 20px;
    color: #ff0000;
}

.container-wide {
    background-color: white;
    width: 100%;
}

.conversion-optimized h1 {
    margin-bottom: 20px;
    text-align: left;
}

.conversion-optimized p {
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
    text-align: left;
}

.conversion-optimized .btn {
    background-color: #ff0000;
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
}

.conversion-optimized .btn:hover {
    background-color: #cc0000;
}

.conversion-optimized ul {
    list-style: disc;
    padding-left: 20px;
    color: #666;
    font-size: 16px;
}

.conversion-optimized ul li {
    margin-bottom: 10px;
}

.contact {
    padding: 60px;
    background-color: #ffffff;
    text-align: center;
}

.contact h2 {
    margin-bottom: 20px;
}

.contact p {
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
}

.contact a {
    background-color: #ff0000;
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
}

.contact a:hover {
    background-color: #cc0000;
}

.contact-form {
    padding-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-us {
    padding: 120px 0;
    background-color: #ffffff;
    text-align: center;
}

.contact-us h2 {
    margin-bottom: 20px;
}

.contact-us p {
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
}

.form-container {
    display: flex;
    justify-content: stretch;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    width: 100%;
}

.contact-form-container {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 10px;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 60px;
}

label {
    margin-bottom: 10px;
    font-weight: bold;
}

.contact-form-container input,
.contact-form-container textarea {
    padding: 10px;
    border: 1px solid #ccc;
    width: 100%;
    font-family: Arial, sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-container input:focus,
.contact-form-container textarea:focus {
    outline: none;
    border: 1px solid #ff0000;
    box-shadow: #ff000049 0px 0px 0px 3px;
}

.work-page {
    margin-top: 120px;
}

.about-us {
    padding: 60px 0;
    margin-top: 100px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
}

.about-us h2 {
    margin-bottom: 20px;
}

.about-us p {
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
}

.about-us ul {
    list-style: disc;
    color: #666;
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 40px;
}
.about-us ul li {
    margin-bottom: 10px;
}
footer {
    background-color: black;
    color: white;
    text-align: center;
    width: 100%;
    padding: 20px 0;
}

footer p {
    margin: 0;
    color: white;
}

footer a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #b9b7b7;
}

.footer-social-wrap,
.footer-policy-wrap {
  margin-bottom: 1rem;
}

.footer-social-wrap {
  display: flex;
  justify-content: center;
  gap: 1rem;

}

.social {
  display: inline-block;
  width: auto;
  height: 30px;
}

.btn {
    background-color: #ff0000;
    color: #ffffff !important;
    padding: 10px 20px;
    text-decoration: none;
    border: none;
    border-radius: 999px;
    transition: background-color 0.3s ease !important;
}

.btn:hover {
    background-color: #cc0000;
}

.faq {
    padding: 60px;
    background-color: #ffffff;
}

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

.faq-question {
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-answer {
    color: #666;
    font-size: 16px;
    display: none;
    margin-top: 10px;
}

.faq-question[aria-expanded="true"] + .faq-answer {
    display: block;
}

.work-card {
    background-color: #f5f3f3;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.1);
    max-width: 500px;
}

.work-card h3 {
    margin-bottom: 15px;
}

.work-card p {
    color: #666;
    font-size: 16px;
}

.work-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

@media (min-width: 1025px) {
    .service-cards {
        display: grid;
        grid-template-columns: repeat(3, minmax(250px, 1fr));
        justify-content: space-between;
        gap: 20px;
    }

    .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    
}

.hero h1 {
    font-size: 4.5rem;

}

.work-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(250px, 1fr));
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin: 40px 0px;
}


.why-us {
    padding: 60px 20px;
    display: grid;
    place-items: center;
    grid-template-columns: 1fr 1fr;
    margin: 0 auto;
    background-color: #f8f7f7;
}

.why-us h2 {
    margin-bottom: 20px;
}

.why-us p {
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
}

.why-us ul {
    list-style: disc;
    padding-left: 20px;
    color: #666;
    font-size: 16px;
}

.why-us ul li {
    margin-bottom: 10px;
}

.why-us img {
    max-width: 400px;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.1);
}

.nav-links a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ff0000;
}
.mobile-menu {
    display: none;
    cursor: pointer;
}

.mobile-nav-links {
    display: none;
    flex-direction: column;
    gap: 10px;
}

.conversion-optimized {
    padding-top: 160px;
    padding-bottom: 130px;
    padding-left: 20px;
    padding-right: 20px;
    text-align: left;
    background-color: #ffffff;
    display: grid;
    place-items: center;
    grid-template-columns: 2fr 1fr;
    margin: 0 auto;
    max-width: 1200px;
}

.conversion-image {
    max-width: 500px;
}



}
@media (max-width: 1024px) {
    .service-cards {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .nav-links {
    display: none;
    }
.mobile-menu {
    display: block;
    position: relative;
}
.mobile-nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.mobile-link {
    text-decoration: none;
    color: #333;
    font-size: 18px;
}

.mobile-link:hover {
    color: #ff0000;
}

.mobile-menu[aria-expanded="true"] + .mobile-nav-links {
    display: flex;
}

.conversion-optimized {
    padding: 160px 20px;
    text-align: left;
    background-color: #ffffff;
    display: grid;
    place-items: center;
    grid-template-columns: 1fr;
    margin: 0 auto;
    max-width: 1200px;
}

.conversion-image {
    max-width: 400px;
    height: auto;
    margin-top: 20px;
}

.why-us {
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
}

.why-us h2 {
    margin-bottom: 20px;
}

.why-us p {
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
}

.why-us ul {
    list-style: disc;
    padding-left: 20px;
    color: #666;
    font-size: 16px;
}
.why-us ul li {
    margin-bottom: 10px;
}
.why-us img {
    max-width: 400px;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

}