/* Hero Section */
.hero {
    padding: 110px 0 10px;
    background: #fff;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: auto;
    max-width: 1200px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    padding: 5px;
    padding-left: 10px;
}

.hero-content h4 {
    margin-bottom: 10px;
    padding: 5px 20px;
    background-color: #7b3dff;
    width: fit-content;
    border-radius: 100px;
    text-align: center;
    color: white;
    font-size: 16px;
    font-weight: 500;
}

.hero-content h1 {
    font-size: 4.8rem;
    margin-bottom: auto;
    color: var(--dark-color);
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #7b3dff;
    height: max-content;
    min-height: 70px;
}

.hero-content p {
    font-size: 1rem;
    color: var(--gray-color);
    margin-bottom: 10px;
}

.subscribe-form {
    width: 100%;
    height: auto;
    padding: 20px 0px;
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
}

.subscribe-form input {
    width: 100%;
    padding: 20px;
    border-radius: 50px 0px 0px 50px;
    outline: none;
    border: 2px solid #D9D9D9;
    background: whitesmoke;
}

.subscribe-form button {
    border-radius: 0px 50px 50px 0px;
    padding: 10px 30px;
    text-align: center;
    font-size: 16px;
    width: 200px;
}

.subscribe-form button:hover {
    transform: translateY(0);
    background-color: #632bdb;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
}

.typewriter {
    overflow: hidden;
    border-right: 3px solid #7b3dff;
    white-space: nowrap;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #7b3dff }
}

.social-links-1 {
    display: flex;
}

.social-links-1 a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgb(123 61 255);
    border-radius: 50%;
    margin-right: 10px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links-1 a:hover {
    background: rgb(99, 31, 246);
    transform: translateY(-3px);
}

.hero-getintouch {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
}

/* Clients Section */
.clients {
    padding: 10px 0;
    background-color: #7B3DFF;
}

.clients-slider {
    display: flex;
    overflow: hidden;
    position: relative;
    height: 70px;
    max-width: 1200px;
    margin: auto;
}

.client-logos {
    display: flex;
    animation: slide 20s linear infinite;
}

.client-logo {
    flex: 0 0 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 30px;
}

.client-logo img {
    max-width: 150px;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo img:hover {
    filter: brightness(0) invert(1) grayscale(0);
    opacity: 1;
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* About Section */
.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
}

.about-image {
    flex: 1;
    padding: 30px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

.about-content {
    flex: 1;
}

.about-content h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    margin-right: 35px;
    background-color: #7b3dff;
    padding: 5px 20px;
    width: fit-content;
    border-radius: 50px 100px 100px;
    color: white;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.stars {
    color: #ffc107;
    font-size: 14px;
    margin-right: 5px;
}

.about-content h1 {
    font-size: 3.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.clientcount, .worldwide {
    font-style: italic;
    font-weight: 900;
    color: #7B3DFF;
    font-size: 3.5rem;
}

.about-content p {
    margin-bottom: 20px;
    color: var(--gray-color);
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    color: white;
    margin-top: 30px;
}

.about-feature-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #e3d6ff;
    width: 30%;
    border-radius: 10px;
    padding: 15px 0px;
    outline: solid 2px #7b3dff;
    color: #7b3dff;
}

.about-features h1 {
    font-size: 2.0rem;
    margin: auto;
}

/* Services Section */
.services-container {
    display: flex;
    gap: 20px;
    max-width: 1200px;
    margin: auto;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.heading-title {
    padding: 6px 35px;
    background-color: #7b3dff;
    width: fit-content;
    margin: auto;
    border-radius: 100px;
    color: white;
    margin-bottom: 15px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    width: 360;
    height: 300;
    background-color: #fff;
    text-align: left;
}

.service-card:hover {
    background-color: #7b3dff;
    color: #fff;
}

.service-card:hover h3,
.service-card:hover p,
.service-card:hover a,
.service-card:hover .service-icon {
    color: #fff;
}

.service-card:first-child {
    background-color: #7b3dff;
    color: #fff;
}

.service-card:first-child h3,
.service-card:first-child p,
.service-card:first-child a,
.service-card:first-child .service-icon {
    color: #fff;
}

.service-icon {
    font-size: 2.5rem;
    color: #7b3dff;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #7B3DFF;
    font-weight: 600;
}

.service-card p {
    color: var(--gray-color);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.service-card a {
    text-decoration: none;
    color: #7b3dff;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Blogs Section */
.blogs-container {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
    justify-content: center;
    align-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}

.blog-category {
    color: #7B3DFF;
    font-size: 16px;
    font-weight: 500;
}

.blog-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    width: 350;
    height: 420;
    background: #fff;
    outline: solid #e9ecef 2px;
}

.blog-img {
    width: 90%;
    height: fit-content;
    margin: auto;
    border-radius: 14px;
    overflow: hidden;
    margin-top: 16px;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-content {
    padding: 20px;
}

.blog-meta {
    display: flex;
    margin-bottom: 10px;
    font-size: 0.8rem;
    color: var(--gray-color);
}

.blog-meta span {
    margin-right: 15px;
}

.blog-content h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #3B3B3B;
    font-weight: 600;
}

.blog-content p {
    color: var(--gray-color);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.blog-link {
    color: #fff;
    background-color: #7B3DFF;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 10px;
}

.postfoot {
    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    flex-direction: row;
}

.createdat {
    font-size: 14px;
    color: #606062;
}

.stars-comments {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.comment-count span {
    font-size: 14px;
    color: #606062;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-rating {
    margin: 10px 0;
    color: #ffc107;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.testimonial-rating .fas.fa-star {
    color: #ffc107;
    font-size: 14px;
}

.testimonial-rating h5 {
    color: #606062;
    margin-right: 10px;
    font-size: 15px;
}

.google {
    text-align: left;
    margin-bottom: -10px;
}

.testimonial-rating .far.fa-star {
    color: #e0e0e0;
}

.testimonial-slider {
    overflow: hidden;
    height: 350px;
    padding: 10px;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 20px;
}

.testimonial-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    outline: solid 4px #7B3DFF;
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 20px;
    margin-right: 30px;
}

.testimonial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--gray-color);
    text-align: left;
    margin-top: 10px;
    margin-left: 20px;
    width: 90%;
}

.testimonial-author h4 {
    color: var(--dark-color);
    margin-bottom: 5px;
    text-align: left;
    margin-left: 20px;
}

.testimonial-author p {
    color: var(--gray-color);
    font-size: 0.9rem;
    text-align: left;
    margin-left: 20px;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e9ecef;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: #7b3dff;
    transform: scale(1.2);
}

.testimonialheader {
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    align-content: flex-start;
    flex-wrap: wrap;
    align-items: center;
}

.getintouchform {
    background-color: rgba(123, 61, 255, 0.4);
    padding: 80px 0;
}

.getintouchform-container {
    max-width: 1200px;
    height: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: stretch;
    width: 90%;
    margin: auto;
    padding: 60px 50px;
    background-color: #7b3dff;
    border-radius: 20px;
    gap: 30px;
}

.contacttextholdercontainer {
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
    width: 35%;
    flex-wrap: wrap;
    color: white;
}

.contactformheading-1 h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: white;
}

.contactformheading-1 h4 {
    font-size: 1.0rem;
    font-weight: 400;
    margin: 0 0 40px 0;
    color: rgba(255, 255, 255, 0.8);
}

.contactformheading-2 h3 {
    font-size: 2.0rem;
    font-weight: 500;
    margin: 0 0 20px 0;
    line-height: 1.3;
    color: white;
}

.contactformheading-2 h3 span {
    color: #fff;
    font-style: italic;
    font-size: 2.2rem;
    font-weight: 800;
}

.contactformheading-2 p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 50px 0;
    color: rgba(255, 255, 255, 0.9);
}

.contactdetailsholder {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
    text-align: center;
    gap: 5px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.contact-icon i {
    color: #fff;
    font-size: 1.2rem;
}

.contact-details h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: rgba(255, 255, 255, 0.9);
}

.contact-details p {
    font-size: 1rem;
    margin: 0;
    color: white;
    font-weight: 500;
}

.followiconsholder {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
}

.followiconsholder .contact-icon {
    transition: all 0.3s ease;
    cursor: pointer;
}

.followiconsholder .contact-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.contactformholdercontainer {
    width: 55%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: stretch;
    gap: 25px;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.form-row {
    display: flex;
    gap: 20px;
    width: 100%;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
}

.contactformholdercontainer input,
.contactformholdercontainer textarea {
    width: 100%;
    padding: 18px 25px;
    border-radius: 50px;
    outline: none;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.contactformholdercontainer textarea {
    border-radius: 25px;
    min-height: 150px;
    resize: vertical;
}

.contactformholdercontainer input:focus,
.contactformholdercontainer textarea:focus {
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

.contactformholdercontainer input::placeholder,
.contactformholdercontainer textarea::placeholder {
    color: #666;
    font-weight: 400;
}

.submit-btn {
    width: 100%;
    padding: 18px 25px;
    border-radius: 50px;
    background: #7b3dff;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    margin-top: 10px;
}

.form-message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
    display: block;
}

.form-message.error {
    background: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
    display: block;
}

/* Contact Section */
.contact {
    background-color: var(--light-color);
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: auto;
}

.contact-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-around;
}

.contact-item {
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
}

.contact-container i {
    font-size: 1.5rem;
    color: #7b3dff;
}

.contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.contact-details p {
    color: var(--gray-color);
}

.contact-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e9ecef;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #7b3dff;
    box-shadow: 0 0 0 3px rgba(58, 134, 255, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .getintouchform-container {
        flex-direction: column;
        padding: 40px 30px;
        gap: 30px;
    }
    
    .contacttextholdercontainer {
        width: 100%;
        text-align: center;
        align-items: center;
    }
    
    .contactformholdercontainer {
        width: 100%;
    }
    
    .contactdetailsholder {
        align-items: center;
    }
}

@media (max-width: 992px) {
    .hero-container, .about-container {
        flex-direction: column;
    }
    
    .hero-content, .about-content {
        text-align: center;
        margin-bottom: 50px;
    }
    

    
    .section-title h2 {
        font-size: 2.5rem;
    }

    .about-content h3 {
        margin: auto;
        margin-bottom: 10px;
    }
        .hero-content h4 {
        margin: auto;
        margin-bottom: 10px;
    }

    .hero-image {
    display:none;
}
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 25px;
    }
    
    .contactformheading-1 h3 {
        font-size: 2rem;
    }
    
    .contactformheading-2 h3 {
        font-size: 1.7rem;
    }
    
    .getintouchform {
        padding: 60px 0;
    }
    
    .getintouchform-container {
        padding: 30px 20px;
    }
    
    .contactformholdercontainer {
        padding: 30px 20px;
    }
    
    .hero-content h1 {
        font-size: 3.4rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content h4 {
        margin: auto;
    }
    
    .hero-getintouch {
        justify-content: center;
    }
    
    .hero-image {
        display: none;
    }
    
    .about-content h3 {
        margin: auto;
        margin-bottom: 10px;
    }
    
    .blog-img {
    width: 90%;
    }
}

@media (max-width: 576px) {
    section {
        padding: 20px 0;
    }
    
    .hero {
        padding: 120px 0 0px;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .section-title h2 {
        font-size: 2.1rem;
        margin-bottom: 20px;
    }
    
    .hero-content h4 {
        margin: auto;
        margin-bottom: 15px;
    }
    
    .hero-content p {
    font-size: 1rem;
    color: var(--gray-color);
    margin-bottom: 10px;
    margin-top: -30px;
}

    .contact-info {
        display: flex;
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        align-content: center;
        justify-content: flex-start;
        gap: 30px;
        margin-left: 30px;
    }

    .hero-getintouch {
        justify-content: center;
    }
    
    .about-content h3 {
        margin: auto;
        margin-bottom: 10px;
    }

    .about-content h1 {
    font-size: 2.0rem;
    margin-bottom: 10px;
    font-weight: 600;
    }
    .clientcount, .worldwide {
    font-style: italic;
    font-weight: 900;
    color: #7B3DFF;
    font-size: 3.0rem;
    }

    .testimonial-slider {
    overflow: hidden;
    height: fit-content;
    padding: 10px;
}

.testimonial-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0px;
    margin-right: 10px;
}
.testimonial-rating h5 {
    color: #606062;
    margin-right: 10px;
    font-size: 12px;
}
.testimonial-rating .fas.fa-star {
    color: #ffc107;
    font-size: 12px;
}

.testimonial-author h4 {
    margin-left: 0px;
    margin-top: 30px;
}



.testimonial-author p {
    margin-left: 0px;
}


.contactformheading-1 h4 {
    font-size: 0.9rem;
    font-weight: 400;
    margin: 0 0 20px 0;
    color: rgba(255, 255, 255, 0.8);
}

.form-row {
    flex-direction: column;
    gap: 0px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    gap: 20px;
    margin-left: 0px;
}
    .blog-img {
    width: 90%;
    }

}

@media (max-width: 480px) {
    .contactformheading-1 h3 {
        font-size: 1.8rem;
    }
    
    .contactformheading-2 h3 {
        font-size: 1.5rem;
    }
        .hero-content h1 {
        font-size: 3.4rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}