:root {
    --theme: #007bff;
}

::selection {
    background-color: #55a7ff;
    color: white;
}

* {
    margin: 0;
    padding: 0;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-weight: 500;
    box-sizing: border-box;
}

body {
    max-width: 1300px;
    margin: auto;
}

header {
    width: 100%;
    height: 85px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.11);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.082);
    position: relative;
    background-color: white;
    z-index: 450;
    position: sticky;
    top: 0;
}

.menu ul {
    display: flex;
    list-style: none;
}

.menu ul a {
    text-decoration: none;
    color: black;
}

.menu ul li {
    padding: 10px;
    font-weight: 600;
    transition: all 0.5s ease;
}

.menu ul li:hover {
    color: var(--theme);
}

.menu button {
    margin: auto;
}

.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

.close-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1001;
}

.hero {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0px 30px;
}

.herofirst {
    width: 50%;
    padding: 30px;
}

.herofirst h1 {
    font-weight: 600;
}

.herofirst p {
    margin-top: 15px;
}

.herosecond {
    display: flex;
    width: 50%;
}

.herosecond img {
    width: 100%;
    box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.356);
    border-radius: 30px;
}

.red {
    color: var(--theme);
    font-weight: 800;
    text-decoration: underline;
    text-decoration-color: var(--theme);
    text-decoration-style: dashed;
    text-underline-offset: 5px;
}

.yellow {
    color: rgb(255, 123, 0);
    font-weight: 800;
}

.green {
    color: red;
    font-weight: 800;
}

.blue {
    color: rgb(71, 196, 21);
    font-weight: 800;
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

.stat-box {
    background-color: #cff4ff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    flex: 1 1 200px;
    max-width: 250px;
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-box img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.stat-text {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.khero {
    background-color: var(--theme);
    padding: 20px;
    color: white;
}


.kfirst {
    display: block;
    margin: auto;
}

.kfirst h1,
p {
    padding: auto;
}

.ksecond ul {
    list-style-type: "✔ ";
    margin: auto;
}


.video {
    width: 100%;
    border-radius: 10px;
}

.container {
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header {
    text-align: center;
    padding: 20px 0;
}

.header h1 {
    margin: 0;
    font-size: 24px;
    color: var(--theme);
}

.header p {
    margin: 5px 0 0;
    font-size: 16px;
    color: #666;
}

.content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
}

.steps {
    flex: 1 1 40%;
    padding-right: 20px;
}

.step {
    margin-bottom: 15px;
    padding: 10px;
    background-color: #f9f9f9;
    border-left: 4px solid var(--theme);
    border-radius: 4px;
}

.step h3 {
    margin: 0;
    font-size: 18px;
    color: var(--theme);
}

.step p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #494949;
}

.image-section {
    flex: 1 1 55%;
    text-align: center;
}

.image-section img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}





.container1 {
    height: 100%;
    padding: 20px;
    background-color: var(--theme);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.left-content {
    flex: 1 1 50%;
    padding: 0px 25px;
}

.header1 h1 {
    font-size: 28px;
    color: #ffffff;
    margin: 0;
}

.description {
    font-size: 18px;
    color: #ffffff;
    margin: 20px 0;
}

.description p {
    margin: 10px 0;
}

.ma {
    width: 130px !important;
    position: relative;
}
.lo {
    position: relative;
    top: 8px;
}

.cta-button {
    background-color: #ffffff;
    color: var(--theme);
    padding: 5px 20px;
    font-size: 14px;
    border: none;
    width: 200px ;
    border-radius: 25px;
    width: 200px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #e4e4e4;
}

.right-content {
    flex: 1 1 50%;
    text-align: center;
}

.right-content img {
    width: 300px;
    height: auto;
    border-radius: 8px;
}

.container2 {
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    /* Space between testimonials */
}

.testimonial {
    flex: 1 1 calc(33.333% - 20px);
    /* 3 testimonials per row on larger screens */
    padding: 20px;
    background-color: #f9f9f9;
    border-left: 4px solid var(--theme);
    border-radius: 4px;
    box-sizing: border-box;
}

.testimonial h2 {
    margin: 0;
    font-size: 24px;
    color: var(--theme);
}

.testimonial h3 {
    margin: 5px 0;
    font-size: 18px;
    color: #666;
}

.testimonial p {
    margin: 10px 0 0;
    font-size: 16px;
    color: #333;
}

.rating {
    color: #ffa600;
    font-size: 20px;
    margin: 10px 0;
}

.rating span {
    color: #ffa600;
}

.visi {
    background-color: var(--theme);
    color: white;
    padding: 5px 20px;
    font-size: 14px;
}

.visi:hover {
    background-color: #27c200;
    color: white;
}

.container3 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header3 {
    text-align: center;
    margin-bottom: 30px;
}

.header h2 {
    font-size: 28px;
    color: var(--theme);
    margin: 0;
}

.header p {
    font-size: 16px;
    color: #666;
    margin: 10px 0 0;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    /* Space between services */
}

.service {
    flex: 1 1 calc(33.333% - 20px);
    /* 3 services per row on larger screens */
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.507);
    text-align: center;
}

.service h3 {
    font-size: 22px;
    color: var(--theme);
    margin: 0 0 10px;
}

.service p {
    font-size: 16px;
    color: #666;
    margin: 10px 0;
}

.service .price {
    font-size: 20px;
    color: #333;
    font-weight: bold;
    margin: 15px 0;
}

.see-more {
    text-align: center;
    margin-top: 20px;
}

.see-more a {
    color: var(--theme);
    text-decoration: none;
    font-size: 18px;
}

.see-more a:hover {
    text-decoration: underline;
}

.container4 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.image-section {
    flex: 1;
    min-width: 300px;
}

.image-section img {
    width: 100%;
    border-radius: 10px;
}

.text-section {
    flex: 2;
    padding: 20px;
}

.text-section h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

.text-section p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.services {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.service {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.service img {
    width: 50px;
    height: 50px;
}

.faq-container {
    max-width: 800px;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.faq-title {
    text-align: center;
    font-size: 24px;
    margin-bottom: 10px;
}

.faq-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.faq-question {
    font-size: 18px;
    color: var(--theme);
    cursor: pointer;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out;
    opacity: 0;
    font-size: 16px;
    color: #333;
    padding-top: 0;
}

.faq-answer.show {
    max-height: 200px;
    /* jitna content ho uske hisaab se adjust ho jayega */
    opacity: 1;
    padding-top: 10px;
}


.addons-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.addons-header h1 {
    font-size: 32px;
    color: #333;
}

.addons-header p {
    font-size: 16px;
    color: #777;
    margin-bottom: 20px;
}

.addon-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.addon-card-icon {
    background-color: var(--theme);
    padding: 10px;
    border-radius: 8px;
    color: #fff;
    font-size: 24px;
}

.addon-card-content h3 {
    color: #333;
    margin-bottom: 8px;
}

.addon-card-content p {
    color: #666;
}

.addons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}


.news-section {
    text-align: center;
    margin-bottom: 20px;
    padding: 10px;
}

.news-section h1 {
    font-size: 28px;
}

.news-section p {
    color: #555;
}

.news-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.news-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.news-content {
    padding: 15px;
}

.news-title {
    font-size: 18px;
    font-weight: bold;
}

.news-description {
    margin-top: 5px;
    font-size: 14px;
    color: #555;
}

.see-more-btn {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.see-more-btn a {
    background-color: var(--theme);
    color: white;
    padding: 5px 20px;
    border-radius: 25px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.see-more-btn a:hover {
    background-color: rgb(45, 155, 23);
}


.why-choose {
    text-align: center;
    padding: 20px;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.card {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-width: 300px;
}

footer {
    background-color: var(--theme);
    color: white;
    padding: 20px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}
.footer-links a,
footer a {
    color: rgba(255, 255, 255, 0.685);
    text-decoration: none;
}

.social-icons a {
    margin-right: 10px;
    color: white;
    text-decoration: none;
}

.copyright {
    text-align: center;
    margin-top: 10px;
    background-color: #33a307;
    border-radius: 20px;
}

.container5 {
    margin: auto;
    overflow: hidden;
}

.about-section,
.choose-section,
.offer-section,
.contact-section {
    background: white;
    margin: 20px 0;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.h2 {
    color: #333;
}

.ul {
    margin-top: 10px;
    list-style: none;
}

.li {
    margin-bottom: 8px;
}

.flex-container {
    display: flex;
    flex-direction: column;
}

.image-section img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}


.contact-section {
    text-align: center;
    padding: 20px;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.contact-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 15px;
    width: 300px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.contact-card h3 {
    margin: 0;
    font-size: 1.2em;
}

.contact-card a {
    text-decoration: none;
    color: #007bff;
}

.container11 {
    margin: auto;
    max-width: 600px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.container11 input, textarea, button {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: none;
}
.container11 button {
    background-color: var(--theme);
    color: white;
    border: none;
    cursor: pointer;
}
.container11 button:hover {
    background-color: #0057b4;
}


.faq-container {
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-item {
    border-bottom: 1px solid #ddd;
}

.faq-question {
    cursor: pointer;
    padding: 15px;
    background-color: #f1f1f1;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #e0e0e0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out;
    background-color: #fafafa;
    padding: 0 15px;
}

.faq-answer.open {
    max-height: 300px;
    padding: 15px;
}

.form-group input::placeholder {
    color: #919191;
}

.container10 {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}
.header10 {
    text-align: center;
    margin-bottom: 20px;
}
.header10 h2 {
    color: var(--theme);
    font-weight: bold;
    font-size: 14px;
    margin: 0;
}
.header10 h1 {
    font-size: 36px;
    font-weight: bold;
    margin: 10px 0;
}
.header10 p {
    color: #718096;
    margin: 0;
}
.card2 {
    background-color: #ffffff;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.527);
    border-radius: 8px;
    padding: 20px;
}
.card2 h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}
.card2 p {
    color: #4a5568;
    margin-bottom: 20px;
}
.details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.pricing, .timeline {
    background-color: #e9e9e9;
    padding: 10px;
    border-radius: 8px;
}
.pricing h3, .timeline h3, .requirements h3 {
    font-weight: bold;
    color: #2d3748;
    margin-bottom: 10px;
}
.pricing p, .timeline p {
    color: #4a5568;
    margin: 5px 0;
}
.pricing .price {
    color: var(--theme);
    font-size: 24px;
    font-weight: bold;
}
.requirements {
    margin-bottom: 20px;
}
.requirements ul {
    list-style: none;
    padding: 0;
}
.requirements li {
    color: #38a169;
    margin: 5px 0;
}
.requirements li i {
    margin-right: 5px;
}
.request-call {
    color: var(--theme);
    font-weight: bold;
    text-decoration: none;
}

.container13 {
    max-width: 900px;
    margin: auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.container13 h1, .container13 h2 {
    color: var(--theme);
}
.container13 ul {
    padding-left: 20px;
}

.container55 {
    max-width: 900px;
    margin: 20px auto;
    background: white;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}
.container h1, .container h2 {
    text-align: center;
    color: var(--theme);
}
.container p {
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
}

.container66 {
    max-width: 900px;
    margin: 20px auto;
    background: white;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}
.container66 h1, .container66 h2 {
    text-align: center;
    color: var(--theme);
}
.container66 p {
    line-height: 1.6;
    color: #555;
}
.container66 ul {
    padding-left: 20px;
}

.container77 {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.container77 h1, .container77 h2 {
    color: var(--theme);
    text-align: center;
}
.container77 p, .container77 li {
    line-height: 1.6;
}
.container77 ul {
    padding-left: 20px;
}
.contact {
    margin-top: 20px;
    text-align: center;
}
.contact a {
    color: var(--theme);
    text-decoration: none;
    font-weight: bold;
}
.contact a:hover {
    text-decoration: underline;
}

.container100 {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.container100 h1,.container100  h2 {
    text-align: center;
    color: var(--theme);
}
.container100 p {
    line-height: 1.6;
}
.container1200 {
    text-align: center;
    padding: 20px;
  }
  .container1200  h1 {
    font-size: 2rem;
  }
  .container1200  p {
    color: #555;
  }
  .container1200  .blog-posts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
  }
  .container1200  .post {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
    width: 300px;
    flex: 1 1 300px;
    max-width: 100%;
  }
  .container1200  .post:hover {
    transform: scale(1.03);
  }
  .container1200  .post img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  .container1200  .post-content {
    padding: 15px;
  }
  .container1200  .post h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  .container1200  .post p {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }
  .container1200 a {
    text-decoration: none;
    color: #007BFF;
  }
  .container7700 {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.container7700 main {
    padding: 20px 0;
}

.container7700 article h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

.container7700 article .meta {
    font-style: italic;
    color: #777;
    margin-bottom: 20px;
}

.container7700 article img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.container7700 article p {
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .container7700 article h2 {
        font-size: 1.5em;
    }
}




@media (max-width: 600px) {
    .container100 {
        width: 90%;
        padding: 15px;
    }
}
@media (max-width: 600px) {
    .container77 {
        padding: 15px;
    }
}


@media (max-width: 600px) {
    .container66 {
        padding: 15px;
    }
}

@media (min-width: 600px) {
    .details {
        flex-direction: row;
        justify-content: space-between;
    }
    .pricing, .timeline {
        width: 48%;
    }
}



@media (max-width: 600px) {
    .faq-container {
        padding: 10px;
    }
}



@media (max-width: 600px) {
    .contact-card {
        width: 90%;
    }
    
.vvv {
    position: relative;
    left: -25px;
}
}

@media (max-width: 600px) {

    .cards,
    .footer-container {
        flex-direction: column;
        align-items: center;
    }
}




@media (max-width: 600px) {

    input,
    textarea,
    button {
        font-size: 14px;
    }
}





@media (min-width: 768px) {
    .flex-container {
        flex-direction: row;
        align-items: center;
    }

    .text-section {
        margin-left: 20px;
    }

    .image-section {
        flex: 1;
    }

    .text-section {
        flex: 2;
    }
}









@media (max-width: 768px) {
    .news-container {
        flex-direction: column;
        align-items: center;
    }
}

@media (min-width: 768px) {
    .addons-grid {
        grid-template-columns: 1fr 1fr;
    }
}


@media (max-width: 768px) {
    .faq-container {
        padding: 15px;
    }

    .faq-question {
        font-size: 16px;
    }

    .faq-answer {
        font-size: 14px;
    }
}


@media (max-width: 768px) {
    .container4 {
        flex-direction: column;
    }
}



/* For tablets: 2 services per row */
@media (max-width: 1024px) {
    .service {
        flex: 1 1 calc(50% - 20px);
        /* 2 services per row */
    }
}

/* For mobile: Single column */
@media (max-width: 768px) {
    .service {
        flex: 1 1 100%;
        /* 1 service per row */
    }
}


/* For tablets: 2 testimonials per row */
@media (max-width: 1024px) {
    .testimonial {
        flex: 1 1 calc(50% - 20px);
        /* 2 testimonials per row */
    }
}

/* For mobile: Single column with horizontal scrolling */
@media (max-width: 768px) {
    .testimonials-grid {
        flex-wrap: nowrap;
        overflow-x: auto;
        /* Enable horizontal scrolling */
        scroll-snap-type: x mandatory;
        /* Smooth scrolling */
        padding-bottom: 10px;
        /* Space for scrollbar */
    }

    .testimonial {
        flex: 0 0 70%;
        /* Each testimonial takes 90% of the screen width */
        scroll-snap-align: start;
        /* Align testimonials to the start */
        margin-right: 20px;
        /* Space between testimonials */
        width: 100px;
    }
}


@media (max-width: 768px) {
    .content {
        flex-direction: column;
    }

    .left-content {
        padding: 10px;
        text-align: center;
    }

    .right-content {
        margin-top: 20px;
    }

    .content {
        flex-direction: column;
    }

    .steps {
        padding-right: 0;
    }

    .image-section {
        margin-top: 20px;
    }

    .right-content img {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }



}






@media (max-width: 650px) {
    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: white;
        box-shadow: -2px 0 4px rgba(0, 0, 0, 0.082);
        transition: all 0.5s ease;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        padding-top: 60px;
    }

    .menu.active {
        right: 0;
    }

    .menu ul {
        flex-direction: column;
        padding-top: 20px;
    }

    .menu ul a {
        padding: 15px;
        display: block;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        /* Separation line */
    }

    .menu ul a:last-child {
        border-bottom: none;
        /* Remove border from last item */
    }

    .hamburger {
        display: block;
    }

    .close-btn {
        display: block;
    }

    .close-btn i {
        color: black;
    }

    .close-btn:hover i {
        color: rgb(255, 0, 0);
    }
}

@media (max-width:960px) {
    .hero {
        flex-direction: column;
    }

    .herofirst {
        width: 100%;
        padding: 18px;
    }

    .herosecond {
        width: 100%;
    }

    .herofirst h1 {
        font-size: 25px;
        padding: 0px;
    }

    .hero {
        padding: 20px;
    }

    .khero {
        flex-direction: row;
    }
}


@media (max-width:570px) {
    .khero {
        flex-direction: column;
    }

    .ksecond ul {
        position: relative;
        left: 10px;
    }
}

@media (max-width: 600px) {
    .stat-box {
        max-width: 100%;
    }
}