body {
    margin: 0;
    font-family: Arial, sans-serif;
}
h1{
    font-size: 38px!important;
    font-weight: bold!important;
}
.topbar {
    background-color: #F7F7F7;
    padding: 10px 0;
}
.containers {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.social-icons a {
    text-decoration: none;
    color: #808080;
    margin-right: 15px;
    font-size: 18px;
}
.social-icons a:hover {
    color: #6754E9;
}
.topbar-text {
    font-size: 14px;
    color: #808080;
}
.left-section1 {
    display: flex;
    align-items: center;
}
.logo {
    font-size: 22px;
    font-weight: bold;
    margin-right: 30px;
    width: 30%;
}
.contact-info {
    display: flex;
    align-items: center;
}
.contact-item {
    display: flex;
    align-items: center;
    margin-right: 20px;
}
.contact-item i {
    font-size: 18px;
    color: #0073e6;
    margin-right: 8px;
}
.contact-text {
    font-size: 14px;
    color: #333;
    margin-left: 10px;
}
.search-icon i {
    font-size: 20px;
    color: #333;
    cursor: pointer;
}
.search-icon i:hover {
    color: #0073e6;
}
.header1 {
    background-color: #ffffff;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}
.navbar {
    background-color: #001831;
    padding: 0px 20px;
    
}
.menu {
    list-style: none;
    padding: 20px 0px;
    margin: 0;
    display: flex;
}
.menu li {
    margin-right: 20px;
}
.menu li a {
    text-decoration: none;
    color: white;
    font-size: 16px;
}
.menu li a:hover {
    color: #6754E9;
}
.quote-btn {
    background-color: #6754E9;
    color: white;
    padding: 20px 15px;
    border: none;
    cursor: pointer;
    border-radius: 0px;
    font-size: 16px;
}
.quote-btn:hover {
    background-color: #005bb5;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}
.container-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Hero Section */
.hero {
    background: linear-gradient(135deg, #172547, #6754E9);
    color: white;
    padding: 20px 0;
}


.hero-content {
    max-width: 50%;
}

.hero-content h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.hero-btn {
    background-color: #6754E9;
    color: #fff;
    padding: 12px 20px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-weight: bold;
}

.hero-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.hero-btn:hover i {
    transform: translateX(5px);
}

.hero-btn:hover {
    color: #fff;
}

.hero-image {
    max-width: 45%;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
/* Logo Carousel Section */
.logo-section {
    background-color: #dedddd; /* Gray Background */
    padding: 20px 0;
    overflow: hidden;
}


.carousel-wrapper {
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.carousel {
    display: flex;
    gap: 30px;
    animation: scroll 10s linear infinite;
}

.carousel img {
    width: 120px;
    height: auto;
    filter: grayscale(100%);
    transition: 0.3s;
}

.carousel img:hover {
    filter: grayscale(0%);
}

/* Animation */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.content-section {
    padding: 20px 0;
    background-color: #ffffff;
}

.content-left {
    max-width: 45%;
}

.content-left h1 {
    font-size: 38px;
    color: #000;
    margin-bottom: 10px;
}

.content-left h3 {
    font-size: 20px;
    color: #000;
    margin-bottom: 20px;
    line-height: 34px;
}

.content-right {
    max-width: 50%;
}

.content-right p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}
/* Tab Section */
.tab-section {
    padding: 0px 0;
    background-color: #fff; /* Light Gray BG */
}

.container-tab {
    max-width: 1160px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    background-color: #F7F7FA;
    border: 1px solid #C3C3C3;
    border-radius: 0px 0px 20px 20px;
    flex-wrap: wrap;
}

/* Full-Width Tabs */
.tabs {
    width: 100%;
    display: flex;
    background: #6754E9;
    border-radius: 20px 20px 0px 0px;
}

.tab-btn {
    flex: 1;
    background: #6754E9;
    border: 0px solid #ddd;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    border-radius: 20px 20px 0px 0px;
    transition: 0.3s;
    color: #fff;
    
}

.tab-btn.active {
    background: #000;
    color: white;
    border-color: #6754E9;
}

.tab-left {
    max-width: 50%;
}

.tab-left h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 10px;
}

.tab-left p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

/* Icon Box Grid (2x2 Layout) */
.icon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}

.icon-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.icon-box i {
    font-size: 24px;
    color: #6754E9;
}

.icon-box span {
    font-size: 16px;
    color: #000;
    font-weight: bold;
}

.learn-more {
    color: #6754E9;
    text-decoration: underline;
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
    margin-top: 15px;
}

.learn-more:hover {
    text-decoration: none;
    color: #6754E9;
}

.tab-right {
    max-width: 45%;
}

.tab-right img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: 0.3s ease-in-out;
}




.logo-section1 {
    position: relative;
    width: 200px;
    height: 200px;
}
.logo1 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #6b5bff, #875df7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.dot {
    width: 15px;
    height: 15px;
    background: black;
    border-radius: 50%;
    position: absolute;
}
.dot:nth-child(1) { top: -10px; left: 50%; transform: translateX(-50%); }
.dot:nth-child(2) { top: 30px; left: 120%; }
.dot:nth-child(3) { top: 80px; left: 130%; }
.dot:nth-child(4) { bottom: 30px; left: 120%; }
.dot:nth-child(5) { bottom: -10px; left: 50%; transform: translateX(-50%); }
.info-container {
    position: relative;
    margin-left: 80px;
    text-align: left;
    width: 70%;
}
.info-box {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    position: absolute;
    left: 50px;
}
.info-box:nth-child(1) { top: -60px; }
.info-box:nth-child(2) { top: 20px; }
.info-box:nth-child(3) { top: 90px; }
.info-box:nth-child(4) { top: 160px; }
.info-box:nth-child(5) { top: 230px; }
.arrow {
    width: 50px;
    height: 2px;
    background: black;
    position: absolute;
    animation: draw 1s infinite alternate;
}
@keyframes draw {
    from {
        width: 0;
    }
    to {
        width: 50px;
    }
}





 /* Responsive Styles */
 @media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
    }
    .left-section {
        flex-direction: column;
        align-items: left;
    }
    .logo {
        margin-bottom: 10px;
        width: 50%;
    }
    .contact-info {
        justify-content: left;
    }
    .contact-item {
        margin-right: 10px;
    }
    .contact-text{
        text-align: left;
    }
    .search-icon {
        margin-top: 10px;
        display: none;
    }
    .menu {
        display: none;
        flex-direction: column;
        background: #333;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }
    .menu li {
        margin: 10px 0;
    }
    .menu-toggle {
        display: block;
    }
    .menu.active {
        display: flex;
    }
    .container-menu{
        flex-direction: row;
        text-align: center;
    }
    .hero-content {
        max-width: 100%;
        margin-bottom: 20px;
    }
    .hero-image {
        max-width: 100%;
    }
    .carousel img {
        width: 80px;
    }
    .content-left, .content-right {
        max-width: 100%;
    }
    .tabs {
        flex-direction: column;
    }
    .tab-left, .tab-right {
        max-width: 100%;
    }
    .icon-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    .icon-box {
        justify-content: center;
    }
}
.bar-section {
    background: linear-gradient(to right, #f8f8f8, #f8f8f8);
    padding: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.bar-section h4 {
    font-size: 20px;
    font-weight: bold;
}
.bar-section p {
    max-width: 1000px;
    padding-bottom: 20px;
    margin: 0 auto;
    color: #000;
}
/* Right corner effect */
.corner-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px; /* Adjust size */
    height: 200px;
    background: url('../img/Vector.png') no-repeat center/contain;
    opacity: 0.5; /* Adjust transparency */
}
.bar-containers {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

canvas {
    max-width: 250px;
    max-height: 250px;
}
.progress-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
}

.progress-container {
    position: relative;
    width: 200px;
    height: 200px;
}

/* svg {
    transform: rotate(-90deg);
} */

.circle-bg {
    fill: none;
    stroke: #ede9fe;
    stroke-width: 24;
}

.circle-progress {
    fill: none;
    stroke: #5b42f3;
    stroke-width: 24;
    stroke-linecap: square;
    stroke-dasharray: 502; /* Full circle perimeter for r=80 */
    stroke-dashoffset: 502; /* Start at 0% */
    transition: stroke-dashoffset 1s ease-in-out;
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    font-weight: bold;
    text-align: center;
}

.arrow-up {
    display: block;
    font-size: 32px;
    color: #5b42f3;
}
.logo-boxs {

        background-image: url('your-image-path.jpg'); /* Replace with your actual image URL */
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;

    }
    .logo-container {
        max-width: 1200px;
        background: rgba(255, 255, 255, 0.9); /* White background with slight transparency */
        padding: 40px;
        border-radius: 16px;
        text-align: center;
    }
    .logo-boxs h2 {
        font-size: 2rem;
        font-weight: bold;
        color: #333;
    }
    .logo-boxs p {
        color: #666;
        max-width: 600px;
        margin: 0 auto 0px;
    }
    .logo-grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
        gap: 15px;
        margin-top: 20px;
    }
    .logo-box {
        display: flex;
        align-items: center;
        justify-content: center; /* Ensures icons stay on the left */
        background: #fff;
        padding: 15px;
        border-radius: 10px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        border: 1px solid #dddddd42;
        text-align: left; /* Aligns text properly */
    }
    .logo-icon {
        font-size: 24px;
        margin-right: 0px;
        flex-shrink: 0; /* Prevents icon from shrinking */
    }
    .logo-text {
        text-align: left;
    }
    .logo-text p {
        margin: 0;
        font-weight: bold;
        color: #333;
    }
    .logo-text span {
        font-size: 14px;
        color: #666;
    }

    .seo {
        background: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0;
    }
    
    .seo-container {
        padding: 30px;
        border-radius: 12px;
        max-width: 1200px;
        width: 90%;
        text-align: center;
    }
    
    .seo h2 {
        font-size: 24px;
        font-weight: bold;
    }
    
    .seo-highlight {
        color: #6754E9;
        ;
    }
    
    .seo-description {
        color: #fff;
        margin-bottom: 20px;
    }
    
    /* Content Layout */
    .seo-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
    }
    
    /* Left Section */
    .seo-left-section {
        flex: 1.5;
    }
    
    /* Service Boxes */
    .seo-box {
        background: white;
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease-in-out;
        margin-bottom: 10px;
        text-align: left;
        color: #000;
    }
    
    /* Zoom Out Effect on Hover */
    .seo-box:hover {
        transform: scale(1.05);
        background: #6754E9;
        color: #fff;
    }

    .seo-box:hover .seo-arrow,
    .seo-box:hover .seo-text,
    .seo-box:hover .seo-title{
        color: #fff;
    }
    
    .seo-lead {
        
        color: white;
    }
    
    .seo-title {
        display: flex;
        justify-content: space-between;
        font-size: 18px;
        font-weight: bold;
    }
    
    .seo-arrow {
        color: #000;
        font-size: 18px;
    }
    .seo-text  {
        font-size: 14px;
        color: #000;
        margin-top: 5px;
    }
    .seo-see-all {
        color: #6754E9;
        font-size: 14px;
        font-weight: 500;
        text-decoration: underline;
        display: inline-block;
        margin-top: 10px;
    }
    
    /* Right Section (Image) */
    .seo-right-section {
        flex: 1;
        position: relative;
    }
    
    .seo-image-box {
        padding: 0px;
        border-radius: 10px;
        text-align: center;
    }
    
    .seo-image-box img {
        max-width: 100%;
        height: auto;
    }

    .blog-section {
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 1200px;
        margin: 0px auto;
        padding: 20px;
    }

    .blog-content {
        max-width: 40%;
    }

    .blog-content h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .blog-content p {
        font-size: 16px;
        color: #666;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .blog-content a {
        color: #6754E9;
        text-decoration: underline;
        font-weight: 500;
    }

    .blog-content a:hover {
        text-decoration: underline;
    }

    .blog-images {
        display: flex;
        gap: 15px;
    }

    .blog-images img {
        width: 100%;
        padding: 20px;
        object-fit: cover;
        border-radius: 15px;
    }

    @media (max-width: 768px) {
        .blog-section {
            flex-direction: column;
            text-align: center;
        }

        .blog-content {
            max-width: 100%;
            margin-bottom: 20px;
        }

        .blog-images {
            justify-content: center;
        }

        .blog-images img {
            width: 100%;
            height: auto;
        }
    }

    /* Section Container */
    .plan-box{
        background-color: #0b0b0f;
        color: white;
        font-family: Arial, sans-serif;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
        text-align: center;
        margin: 0;
    }
.things-to-plan {
    max-width: 1200px;
    padding: 20px 20px 50px 20px;
}

/* Title and Description */
.plan-subtitle {
    color: #6754E9;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-title {
    font-size: 32px;
    font-weight: bold;
    margin-top: 5px;
}

.plan-description {
    color: #aaa;
    max-width: 600px;
    margin: 10px auto;
    font-size: 14px;
}

/* Grid Layout */
.plan-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

/* Card Styling */
.plan-card {
    background: radial-gradient(circle, rgba(98, 0, 234, 0.6), rgba(30, 30, 30, 1));
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(6, 6, 6, 0.6);
    position: relative;
    text-align: left;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    
    /* Bottom Left Cut */
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 30px 100%, 0% calc(100% - 30px));
}

/* Bottom-Left Glow Effect */
.plan-card::before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: -10px;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.8) 0%, rgba(30, 30, 30, 0) 80%);
    filter: blur(25px);
    opacity: 0.7;
}


.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgb(0, 0, 0);
}

/* Card Text */
.plan-card-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 10px;
}

.plan-card-text {
    font-size: 14px;
    color: #ddd;
    margin-bottom: 15px;
}

/* Card Link */
.plan-card-link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
}

.plan-card-link:hover {
    text-decoration: underline;
}

.overview {
    background-color: #f9f9f9;
    display: flex;
    justify-content: center;
    padding: 50px 20px;
}
.overview-container {
    padding: 30px;
    border-radius: 12px;
    max-width: 1200px;
    width: 100%;

}

/* Header Section */
.hero-section1 {
    text-align: left;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;

}

.hero-title1 {
    font-size: 50px;
    font-weight: bold;
    line-height: 1.2;
}

.hero-description1 {
    font-size: 16px;
    color: #666;
    max-width: 500px;
    margin-top: 10px;
}

.btn-primary1{
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #6754E9;
    color: white;
    text-decoration: none;
    border-radius: 35px;
    font-size: 14px;
}

/* Steps Section */
.steps-container1 {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step-box1 {
    display: flex;
    align-items: center;
    gap: 20px;
}

.step-image1 {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 50px;
}

.step-content1 {
    max-width: 400px;
}

.step-title1 {
    font-size: 50px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
}

.arrow-icon1 {
    font-size: 20px;
    color: black;
}

.step-description1 {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .step-box1 {
        flex-direction: column;
        text-align: center;
    }
}

/* Section Title */
.testimonial-bg{
    background-color: #2C2C2C;
    padding: 100px 0px;
}
.testimonial-section {
    position: relative;
    max-width: 1200px;
    margin:  auto;
}

.testimonial-section h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #fff;
    text-align: center;
}

/* Swiper Styles */
.swiper {
    width: 100%;
    padding: 30px 0;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Testimonial Card */
.testimonial-card {
    background-color: #fff;
    color: #000;
    padding: 20px;
    border-radius: 15px;
    max-width: 320px;
    text-align: left;
    position: relative;
    z-index: 2;
}

/* Purple Background Shape */
.testimonial-wrapper {
    position: relative;
    display: inline-block;
    padding: 10px;
}

.testimonial-wrapper::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #6750f8;
    border-radius: 20px;
    top: 10px;
    left: 10px;
    z-index: -1;
    transform: rotate(-3deg);
}

/* Star Rating */
.rating {
    color: #ffcc00;
    font-size: 18px;
    margin-bottom: 10px;
}

/* Profile Section */
.profile {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.profile img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
    border: 2px solid #6750f8;
}

.profile-info .name {
    font-weight: bold;
    font-size: 14px;
}

.profile-info .status {
    font-size: 12px;
    color: #555;
    display: flex;
    align-items: center;
}

.profile-info .status::before {
    content: "✔";
    color: blue;
    margin-right: 5px;
}

/* Swiper Pagination */
.swiper-pagination {
    position: relative;
    margin-top: 15px;
}

/* Hero Section */
.banner-section {
    position: relative;
    width: 100%;
    height: 300px; /* Adjust as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

/* Background Image */
.banner-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/winter-landscape.png') center/cover no-repeat;
    z-index: -2;
}

/* Dark Overlay */
.banner-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

/* Content Box */
.banner-content {
    max-width: 600px;
    padding: 20px;
}

.banner-content h1 {
    font-size: 24px;
    font-weight: bold;
}

.banner-content p {
    font-size: 14px;
    margin: 10px 0 20px;
    opacity: 0.8;
}

/* Button */
.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background: #6750f8;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .banner-section {
        height: 450px;
    }
    .banner-content h1 {
        font-size: 20px;
    }
    .banner-content p {
        font-size: 12px;
    }
    .cta-button {
        padding: 8px 16px;
        font-size: 12px;
    }
}

/* Main Section */
.faq-section {
    background-color: #000;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px 10%;
    /* min-height: 100vh; */
    position: relative;
    overflow: hidden;
}

/* Right Corner Halftone Effect */
.corner-effect {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background-image: url('../img/Vector1.png'); /* Replace with your actual shape image */
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.9;
}

/* Left Side - FAQ Intro */
.faq-left {
    width: 40%;
    z-index: 2;
}

.faq-left h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.faq-left p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 15px;
}

.faq-left .ask-btn {
    background: #fff;
    color: #000;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
}

.faq-image {
    margin-top: 20px;
    width: 100%;
    max-width: 300px;
}

/* Right Side - Accordion */
.faq-right {
    width: 55%;
    z-index: 2;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.886);
    padding: 15px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    cursor: pointer;
}

.faq-question span {
    font-size: 20px;
    transition: 0.3s;
}

.faq-answer {
    font-size: 14px;
    margin-top: 10px;
    display: none;
    opacity: 0.8;
}

/* Rotating Icon on Expand */
.faq-item.active .faq-question span {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-section {
        flex-direction: column;
        text-align: center;
        padding: 40px 5%;
    }

    .faq-left, .faq-right {
        width: 100%;
    }

    .faq-right {
        margin-top: 20px;
    }

    .corner-effect {
        width: 100px;
        height: 100px;
    }
}

 /* Main Section */
 .contact-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0px;
    background-color: #D2D4FF; /* Light purple */
    position: relative;
    overflow: hidden;
}

/* Background Abstract Shapes */
.background-shapes {
    position: absolute;
    width: 100%;
    height: 700px;
    top: 0;
    left: 0;
    background-image: url('../img/contact-page.png'); /* Replace with your actual shape image */
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Contact Container */
.contact-container {
    width: 90%;
    max-width: 1100px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

/* Left Side - Text */
.contact-left {
    width: 45%;
}

.contact-left h2 {
    font-size: 38px;
    font-weight: bold;
    margin-bottom: 10px;
}

.contact-left h2 span {
    color: #6754E9; /* Purple for "Touch!" */
}

.contact-left p {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Right Side - Form */
.contact-right {
    width: 50%;
    padding: 0px 20px;
    border-radius: 10px;
}

.contact-right label {
    font-size: 14px;
    font-weight: 400;
    display: block;
    margin: 10px 0 5px;
}

.contact-right input {
    width: 100%;
    padding: 10px 20px;
    border: 1px solid #656ED3!important;
    border-radius: 35px!important;
    font-size: 14px;
    height: 40px;
    background-color: #EBEFFF;
}
.contact-right textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #656ED3;
    border-radius: 5px;
    background-color: #EBEFFF;
    font-size: 14px;
}

.contact-right textarea {
    height: 100px;
    resize: none;
}

.contact-right button {
    width: 100%;
    background: #6754E9;
    color: white;
    border: none;
    padding: 10px;
    margin-top: 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.contact-right button:hover {
    background: #6754E9;
}

/* Woman with Binoculars Image */
.contact-image {
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 250px;
    height: auto;
    z-index: 3;
}

/* Responsive Design */
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
        text-align: center;
    }

    .contact-left, .contact-right {
        width: 100%;
    }

    .contact-image {
        width: 200px;
        left: 50%;
        transform: translateX(-50%);
        bottom: 20px;
    }
}

/* Wrapper */
.seo-consultation-wrapper {
    background: #6C4EE8;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0px;
    max-width: 1200px;
    margin: auto;
    border-radius: 10px;
}

/* Left Section - SEO Info */
.seo-info-section {
    flex: 1;
    padding-right: 40px;
    color: white;
}

.seo-title {
    font-size: 26px;
    margin-bottom: 15px;
}

.seo-description {
    font-size: 16px;
    margin-bottom: 15px;
}

.seo-benefits-list {
    list-style: none;
}

.seo-benefit-item {
    margin-bottom: 10px;
}

/* Right Section - Form */
.seo-form-section {
    background: white;
    padding: 20px;
    border-radius: 8px;
    width: 350px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.seo-contact-form {
    display: flex;
    flex-direction: column;
}

.seo-input-field,
.seo-textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.seo-textarea {
    resize: none;
    height: 80px;
}

.seo-submit-btn {
    width: 100%;
    background: black;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.seo-submit-btn:hover {
    background: #333;
}

/* Contact Section */
.custom-contact-wrapper {
    background: #6C4EE8;
    display: flex;
    justify-items: center;
    justify-content: space-evenly;
    align-items: center;
    padding: 40px;
    border-radius: 10px;
    color: white;
    width: 100%;
}

.custom-contact-box {
    text-align: left;
    width: 200px;
}

.custom-icon-circle {
    background: black;
    color: white;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 20px;
}

.custom-contact-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.custom-contact-info {
    font-size: 14px;
}

.custom-social-icons {
    display: flex;
    gap: 10px;
    font-size: 18px;
    margin-top: 5px;
}

.custom-social-icons i {
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .custom-contact-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 0px;
    }

    .custom-contact-box {
        width: 100%;
        display: contents;
        
    }
    .custom-icon-circle{
        margin-top: 20px;
    }
}

/* Footer Section */
.unique-footer-section {
    background: #6C4EE8;
    padding: 0px;
}

.unique-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    color: white;
}

/* Footer Logo */
.unique-footer-logo h2 {
    font-size: 24px;
    font-weight: bold;
}

/* Footer Columns */
.unique-footer-column {
    text-align: center;
}

.unique-footer-title h3 {
    font-size: 16px!important;
    font-weight: bold;
    margin-bottom: 10px;
}

.unique-footer-list {
    list-style: none;
    font-size: 14px;
    text-align: left;
}

.unique-footer-list li {
    margin-bottom: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .unique-footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}


/* Footer Styling */
.unique-bottom-bar {
    background: #ffffff;
    padding: 15px 20px;
    border-top: 1px solid #ccc;
}

.unique-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

/* Copyright Text */
.unique-copyright-text {
    font-size: 14px;
    color: #444;
}

/* Footer Navigation */
.unique-footer-navigation .unique-footer-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.unique-footer-links li {
    display: inline;
}

.unique-footer-links li a {
    text-decoration: none;
    color: #444;
    font-size: 14px;
    transition: color 0.3s ease-in-out;
}

.unique-footer-links li a:hover {
    color: #0056b3;
}
.bar-display{
    display: flex;gap: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .unique-bottom-container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

.overall-footer{
    background-color: #6754E9;
    padding: 50px 0px;
}
/* Responsive Styles */
@media (max-width: 768px) {
    .contact-info{
        display: block;
    }
    .containers{
        display: block;
    }
    .hero-content h1{
        text-align: center;
    }
    .hero-content p{
        text-align: center;
    }
    .hero-btn{
        display: flex
;
    align-items: center;
    }
    .logo-section h3{
text-align: center;
line-height: 24px;
font-size: 18px;
margin-bottom: 20px;
    }
    .card--features::before {
        display: none;
    }
    .card--features .card-title{
        text-align: center;
        margin-right: 0px;
    }
    .learn-more{
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }
    .tab-left p{
        text-align: center;
    }
    .tab-left h2{
        text-align: center;
    }
    .card--features .card-title{
        margin-right: 0px!important;
    }
    .content-left h1{
        text-align: center;
    }
    .content-left h3{
        text-align: center;
    }
    .content-right p{
        text-align: center;
    }
    .block--whyventure7 .rounded-circle{
        width: 320px;
        height: 320px;
    }
    .bar-containers{
        display: block;
    }
    .progress-wrapper{
        display: block;
    }
    .bar-display{
        display: block;
    }
    .logo-boxs{
        display: block;
    }
    .logo-grid{
        grid-template-columns: 1fr;

    }
    .seo-content{
        display: block;
    }
    .seo-see-all{
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }
    .plan-grid{
        grid-template-columns: 1fr;
    }
    .hero-section1{
        display: block;
        text-align: center;
    }
    .step-title1{
        justify-content: center;
    }
    .testimonial-bg{
        padding: 100px 20px;
    }
    .faq-image{
        max-width: 100%;
    }
    .rounded-circle--0 {
        --size: 502px!important;
        z-index: 1;
      }
      .seo-consultation-wrapper{
        display: block;
        text-align: center;
      }
      .seo-info-section{
        padding: 0px 20px!important;
      }
      .seo-form-section{
        margin-left: 20px;
      }
      .custom-contact-box{
        text-align: center;
      }
      .unique-footer-list{
        text-align: center;
      }
      .unique-footer-title h3{
        font-size: 10px!important;
      }
      .topbar-text{
        display: none;
      }
}