/* Import Manrope Font */
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;600&display=swap");

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scroll */
    width: 100%;
    box-sizing: border-box;
}

/* Header Styling */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px; /* Reduced height */
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 200px;
    border-bottom: 1px solid #e5e5e5;
    box-sizing: border-box;
    z-index: 1000; /* Ensures header is on top */
}

/* Logo */
.logo-container {
    display: flex;
    align-items: center;
}

.logo-container img {
    height: 60px; /* Adjust logo size */
}

/* Navigation */
.nav-menu {
    display: flex;
    gap: 40px;
    flex-grow: 1; /* Ensures the menu stays centered */
    justify-content: center;
}

/* Nav Items */
.nav-item {
    text-decoration: none;
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #525252;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

/* Arrow Icon */
.arrow {
    margin-left: 5px;
    display: flex;
    align-items: center;
}

.arrow img {
    width: 16px;
    height: 16px;
}

/* Active Menu Item */
.nav-item.active {
    color: #007bda;
}
/* Base button styles */
.register-btn,
.login-btn {
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    border-radius: 8px;
    width: auto;
    height: auto;
}

.register-btn {
    background-color: transparent;
    color: #525252;
    border: 2px solid #e5e5e5;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 14px;
}

/* Responsive styles for 0px to 768px */
@media (max-width: 768px) {

    .login-btn,
    .register-btn {
        width: 100%;
        /* max-width: max-content; /* Optional safeguard */
    }

 
}

/* Right Arrow Icon Styling */
.arrow img {
    width: 16px;
    height: 16px;
}

/* Hover Effects */
.login-btn:hover {
    background-color: #005a9e;
}

.register-btn:hover {
    background-color: #a6afb6;
    color: white;
}
/* =========================================================over header style-=================================== */
/* =========================================================start welcome page  style-=================================== */
/* /* ------------------ hero section style-------------------- */
.layout {
    padding-left: 200px;
    padding-right: 200px;
    padding-top: 0px;
    padding-bottom: 0px;
}

/* Responsive styles for 0px to 768px */
@media (max-width: 768px) {
    .layout {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.parent-div {
    width: 100%;
    display: flex;
    gap: 24px;
}

.child-div {
    width: 50%;
}
.right-div {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hide the div on screens 768px or less */
@media (max-width: 768px) {
    .right-div {
        display: none;
    }
}

/* Responsive styles for 0px to 768px */
@media (max-width: 768px) {
    .parent-div {
        flex-direction: column;
    }

    .child-div {
        width: 100%;
    }
}

.content-wrapper {
    width: 100%;
    overflow-x: hidden;
}
.content-wrapper p {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 400;
    color: #0a0a0a;
}

/* Responsive styles for 0px to 768px */
@media (max-width: 768px) {
    .content-wrapper p {
        justify-content: center;
        text-align: center;
    }
}

.content-wrapper p img {
    vertical-align: middle;
    width: 20px;
    height: 20px;
}
.invoice-heading {
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    font-size: 72px;
    color: #0a0a0a;
    line-height: 1.2;
    margin-top: 0px;
    margin-bottom: 6px;
}

/* Responsive styles for 0px to 768px */
@media (max-width: 768px) {
    .invoice-heading {
        font-size: 40px;
        text-align: center;
    }
}

.invoice-heading span {
    position: relative; /* ✅ Image ke liye relative position */
    display: inline-block;
}
.invoice-word {
    position: relative; /* ✅ Text upar rahega */
    z-index: 1; /* ✅ Text ko top layer pe rakhega */
}
.invoice-bg {
    position: absolute; /* ✅ Image ko "Invoice" ke piche rakhega */
    top: 50%; /* ✅ Center karega */
    left: 50%;
    transform: translate(-50%, -50%); /* ✅ Perfect center alignment */
    width: 120%; /* ✅ Image ka size adjust karo */
    z-index: -1; /* ✅ Image ko piche rakhega */
}
.description-box {
    width: 100%;
    padding: 0;
}
.description-box p {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.5;
    word-wrap: break-word;
    color: #525252;
}

/* Responsive styles for 0px to 768px */
@media (max-width: 768px) {
    .description-box p {
        text-align: center;
    }
}

.features-container {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 15px;
    flex-wrap: wrap; /* Allows items to wrap to next line if needed */
}

/* Center items for screen size 768px or smaller */
@media (max-width: 768px) {
    .features-container {
        justify-content: center;
        text-align: center; /* If you want text inside items to be centered */
    }
}

.features-text {
    font-size: 16px;
    font-weight: 400;
    color: rgba(79, 79, 79, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0px;
}
/* /* ------------------ hero section style  over -------------------- */
/* /* ------------------ trust text section style -------------------- */
.trusted-container {
    padding: 0 15px;
    text-align: center;
}
.trusted-container h2 {
    font-size: 32px;
    font-weight: 600;
    color: rgba(10, 10, 10, 1);
    margin: 0px;
}

/* Apply side padding on small screens */
@media (max-width: 768px) {
    .trusted-container h2 {
        font-size: 30px;
        text-align: center; /* Optional: center the text */
    }
}
.hero-image {
    width: 100%; /* ✅ Pura Div Cover Karega */
    height: auto; /* ✅ Aspect Ratio Maintain Rahega */
    display: block;
    /* margin-top: 100px; */
    position: relative;
    z-index: 2; /* Hero image ko background ke upar rakhne ke liye */
}
/* ------------------------------- services section style ---------------------- */
.services-container {
    width: 100%;
    min-height: auto;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.services-container h2 {
    font-weight: 700;
    font-size: 54px;
    color: #000000;
    margin: 0;
}

.services-container h2 span {
    color: #3b82f6;
}

/* ✅ Responsive heading font size for small screens */

.services-description {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.5;
    word-wrap: break-word;
    color: #525252;
}

/* Responsive styles for 0px to 768px */
@media (max-width: 768px) {
    .description-box p {
        text-align: center;
    }
}
@media (max-width: 768px) {
    .services-section {
        flex-direction: column;
    }

    .services-section .child-div {
        width: 100%;
    }

    .services-section .child-div:first-child {
        order: 2; /* Text comes second */
    }

    .services-section .child-div:last-child {
        order: 1; /* Image comes first */
    }
}
/* -------------------------------------over services style---------------------------------- */
/* -------------------------------------accounting software hanle style---------------------------------- */
.container-div {
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.child-div {
    border-radius: 32px;
    box-sizing: border-box;
}

.first-div {
    width: calc((100% * 2 / 3) - 16px);
    padding: 48px;
    background-color: #0a0a0a;
    border-radius: 32px;
    box-sizing: border-box;
}

/* Media query for screen width 768px or less */
@media (max-width: 768px) {
    .first-div {
        padding: 24px;
    }
}

.styled-text {
    font-weight: 600;
    font-size: 48px;
    line-height: 64px;
    color: #ffffff; /* Text color */
    margin: 0px;
}
@media (max-width: 768px) {
    .styled-text {
        font-size: 34px;
        line-height: 44px; /* Optional: line-height ko bhi adjust kar sakte ho */
    }
}

.custom-button {
    width: 210px;
    height: 60px;
    border-radius: 8px;
    background-color: #34d399;
    color: #0a0a0a;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* Button text aur arrow ke beech space */
    margin-top: 8px;
}

.second-div {
    width: calc((100% / 3) - 16px); /* 1/3 width minus 1 gap share */
    padding: 24px;
    background-color: #f8f8f8;
}

/* For the rest of the 3 items */
.other-div {
    width: calc((100% / 3) - 16px);
    padding: 24px;
    background-color: #f8f8f8;
}
.data-security-text-style {
    font-weight: 600;
    font-size: 24px;
    color: #000000;
    white-space: normal;
    word-break: break-word;
    margin-bottom: 8px;
}
.data-security-text-style-detail {
    font-weight: 400;
    font-size: 18px;
    /* line-height: 26px; */
    white-space: normal;
    word-break: break-word;
}
@media (max-width: 768px) {
    .child-div {
        width: 100% !important; /* All child divs take full width */
    }

    .first-div {
        order: 5; /* Show last */
        padding: 24px; /* Already added, just keeping it here for clarity */
    }

    .second-div {
        order: 1;
    }

    .other-div:nth-of-type(3) {
        order: 2;
    }

    .other-div:nth-of-type(4) {
        order: 3;
    }

    .other-div:nth-of-type(5) {
        order: 4;
    }
}
/* -------------------------------------over accounting software hanle---------------------------------- */
/* -------------------------------------Customer is Hero section style---------------------------------- */
.Customer-Hero {
    background-color: #f8f8f8;
    padding: 0px 200px;
    display: flex;
    justify-content: left;
    align-items: center;
    margin-top: 60px;
    gap: 24px;
}

@media (max-width: 768px) {
    .Customer-Hero {
        padding-left: 20px;
        padding-right: 20px;
        flex-direction: column;
    }
}

.Customer-Hero-heading {
    font-weight: 700;
    font-size: 72px;
    color: #000000;
    font-family: "Manrope", sans-serif;
    display: flex;
    justify-content: space-between; /* Left text & right circles */
    align-items: center;
    width: 100%;
    margin-top: 60px;
    margin-bottom: 60px;
}
.hero-text {
    text-align: left;
    flex: 1;
    margin: 0; /* remove default h2 margin */
    font-size: 72px; /* maintain size from parent */
    font-weight: 700;
    font-family: "Manrope", sans-serif;
    color: #000000;
}
@media (max-width: 768px) {
    .hero-text {
        font-size: 32px;
        text-align: center;
    }
}
.highlight {
    color: #1668e8;
}
.circle-container {
    display: flex;
    gap: 10px;
    margin-bottom: 85px;
}

@media (max-width: 768px) {
    .circle-container {
        display: none;
    }
}

.circle {
    width: 60px;
    height: 60px;
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.circle img {
    width: 25px;
    height: 25px;
    transition: all 0.3s ease-in-out;
}
/* Active (Clicked) Circle */
.circle.active {
    background-color: #3b82f6;
}
.circle.active img {
    filter: brightness(0) invert(1);
}
.box-container {
    display: flex;
    gap: 24px;
    width: 100%;
    margin-bottom: 60px;
}
@media (max-width: 768px) {
    .box-container {
        flex-direction: column;
    }
}

.box {
    flex: 1; /* Sabhi boxes same width lenge */
    background-color: #ffffff;
    padding: 24px;
    border-radius: 16px;
    display: flex;
    flex-direction: column; /* Isse text upar aur image neeche aayegi */
    align-items: flex-start; /* Content left align */
    justify-content: space-between;
    text-align: left;
    min-height: 100%; /* Sabhi boxes same height honge */
    gap: 15px;

    /* Text styling */
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 36px;
    color: #525252;
}
/* -------------------------------------over Customer is Hero section---------------------------------- */

.info-section {
    position: relative;
    display: flex;
    flex-direction: column; /* This will stack children vertically */
    justify-content: flex-start;
    background-color: #000000;
    border-radius: 40px;
    overflow: hidden; /* Ensures images don't overflow the rounded corners */
}

.info-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 3;
    padding-top: 80px;
    padding-left: 80px;
    padding-right: 80px;
    width: 100%;
}
.info-content p {
    font-weight: 600;
    font-size: 48px;
    line-height: 64px;
    color: #ffffff; /* Text color */
    margin: 0px;
}
@media (max-width: 768px) {
    .info-content p {
        font-size: 16px;
        line-height: 34px;
    }
}
.mobile-break {
    display: none;
}

/* Media query for screens up to 768px */
@media (max-width: 768px) {
    .info-content {
        padding: 24px 24px 0 24px !important; /* Applies 24px padding on all sides for small screens */
    }
}

.bg-gradint {
    position: absolute;
    right: 15%;
    top: 0;
    height: 300px;
    width: auto;
    z-index: 1;
}
@media (max-width: 768px) {
    .bg-gradint {
        height: 150px;
    }
}

.bg-gridintline {
    position: absolute;
    right: 20%;
    top: 2;
    height: 150px;
    width: auto;
    z-index: 2;
    opacity: 0.8;
}
@media (max-width: 768px) {
    .bg-gridintline {
        height: 80px;
    }
}

.custom-button {
    margin-top: 16px;
    padding: 12px 24px;
    background-color: #34d399;
    color: #000;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    z-index: 3; /* Ensure button stays above background images */
}
.black-arrow {
    filter: brightness(0);
    /* OR if you need more control: */
    /* filter: invert(1) brightness(0) saturate(100%); */
}
.feature-container {
    display: flex;
    margin-top: 40px; /* Increased spacing from button */
    margin-bottom: 40px;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.feature-container-inner {
    display: flex;
    gap: 25px;
    animation: scrollFeatures 20s linear infinite;
}
@keyframes scrollFeatures {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* Move by half of the total width */
    }
}
.feature-box {
    padding: 0 20px;
    background: #212121;
    border-radius: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    color: white;
    font-family: "Manrope", sans-serif;
    font-size: 20px;
    font-weight: 400;
    gap: 10px;
    white-space: nowrap;
    flex-shrink: 0;
}

.feature-box img {
    height: 24px;
    width: 24px;
}
/* ---------------------------------------- start Blog section style----------------- */
.blog-post {
    flex: 0 0 calc(33.33% - 16px);
    box-sizing: border-box;
    cursor: pointer;
    border: 1px solid #e8e8ea;
    padding: 12px;
    border-radius: 12px;
}

.blog-heading-container {
    margin-top: 60px;
    margin-bottom: 60px;
}

.latest-blogs-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.view-all-btn {
    background-color: #ffffff;
    color: #919ba7;
    border-radius: 8px;
    border: 1px solid #919ba7;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.view-all-btn i {
    color: #919ba7;
}

.blog-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .blog-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-container {
        grid-template-columns: 1fr;
    }
}
.blog-button:hover {
    background-color: #f0f0f0;
}
.blog-title {
    font-weight: 600;
    font-size: 36px;
    color: #0a0a0a;
    line-height: 36px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}
.paragraph {
    font-weight: 400;
    font-size: 20px;
    color: #201f1f;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

.content-wrapper {
    margin-bottom: 10px;
}
.content-wrapper h3 {
    font-weight: 700;
    font-size: 54px;
    margin: 0; /* optional */
    color: #000000; /* optional */
}

/* ✅ For screen sizes 0 to 768px */
@media (max-width: 768px) {
    .content-wrapper h3 {
        font-size: 20px;
    }
}

/* Main container styling */

/* Individual blog post styling */

/* Text wrapping improvements */
.blog-title {
    font-weight: 600;
    font-size: 20px;
    color: #0a0a0a;
    line-height: 30px;
    margin: 15px 0 10px 0;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Image container */
.blog-image-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
}

/* Author info */
.author-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

/* Responsive adjustments */
/* ------------------------------------------------ start FAQ question section style----------------------------------------- */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.questionBox {
    border-radius: 20px;
    border: 1px solid #e5e5e5;
    padding: 32px;
    cursor: pointer;
    background-color: #fff;
    transition: all 0.3s ease;
}

.questionHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.questionText {
    font-weight: 600;
    font-size: 34px;
    color: #0a0a0a;
    font-family: "Manrope", sans-serif;
}

@media (max-width: 768px) {
    .questionText {
        font-size: 20px;
    }
}

.Description {
    font-weight: 400;
    font-size: 18px;
    color: #0a0a0a;
    font-family: "Manrope", sans-serif;
    display: none;
    margin-top: 16px;
}

/* ======================================================== */
/* Footer Section style */
/* Footer Main Container */
.footer-container {
    background-color: #172554;
    padding: 50px 200px;
    margin-top: 120px;
}
@media (max-width: 768px) {
    .footer-container {
        padding: 20px;
    }
}

/* Flexbox for Footer Items */
.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 48px;
}

/* Common Styling for All Child Divs */
.footer-item {
    width: 25%; /* Default width (can adjust as needed) */
}
@media (max-width: 768px) {
    .footer-item {
        width: 100%;
    }
}
/* First Child (Logo) - 35% Width */
.footer-logo {
    width: 35%; /* Logo takes 35% on desktop */
}

/* Other Child Divs Adjusted to 21% Width */
.footer-item:not(.footer-logo) {
    width: 21%;
}

/* Logo Span Styling */
.footer-logo span {
    display: block;
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #b4bbc5;
    margin-top: 8px;
}

/* h3 Text Styling */
.footer-item h3 {
    font-family: "Manrope", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: white;
}
.footer-logo span {
    display: block; /* Ensures new lines are respected */
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #b4bbc5;
    white-space: pre-line; /* Ensures line breaks work */
}
.footer-item span {
    display: block; /* Moves each span to a new line */ 
    font-family: "Manrope", sans-serif; /* Sets font to Manrope */
    font-weight: 500; /* Sets weight to 500 */
    font-size: 16px; /* Sets font size to 16px */
    color: #FFFFFF; /* Sets text color */
    margin: 0px;
}
.footer-divider {
    border: 1px solid #525252;
    margin-top: 20px;
    margin-top: 50px;
}
/* Footer Text Container */
.footer-text {
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Centers vertically */
    text-align: center; /* Ensures text alignment */
    margin-top: 20px;
}
.social-icons {
    display: flex;
    gap: 10px; /* 10px space between icons */
    margin-top: 10px; /* Space from description */
}

.social-icons img {
    width: 44px; /* Adjust icon size */
    height: 44px;
    cursor: pointer;
}
.blog-button {
    height: 48px;
    border-radius: 6px;
    border: 1px solid #000; /* Change border color as needed */
    padding: 12px 20px;
    background-color: #ffffff; /* Optional: set background color */
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    font-family: "Manrope", sans-serif;
    transition: all 0.3s ease;
}
/* Mobile styles (0-768px) */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column; /* Stack vertically */
        gap: 24px; /* Reduce gap for mobile */
    }

    .footer-item,
    .footer-logo {
        width: 100% !important; /* Force 100% width for all child divs */
    }
}
/* -------------------------------------- over footer style------------------------ */
/* ------------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------------- */
/* ========================================== about us page design====================================== */
/* -----------------------why us section style------------------------- */
.main-div {
    width: 100%;
    min-height: auto;
    box-sizing: border-box;
    display: flex;
    gap: 24px !important;
    flex-direction: row; /* default */
    flex-wrap: wrap;
}
.our-team {
    width: 100%;
    min-height: auto;
    box-sizing: border-box;
    display: flex;
    gap: 24px !important;
    flex-direction: row; /* default */
    flex-wrap: none;
}
@media (max-width: 768px) {
    .main-div {
        flex-direction: column; /* Stack vertically */
        gap: 24px;
    }
}
.WhyUs1,
.WhyUs2 {
    flex: 1;
    padding: 16px;
    border-radius: 16px;
    min-width: 0;
    width: 100%; /* Ensures full width when stacked */
    box-sizing: border-box;
}

.WhyUs1 {
    background-color: #ffffff;
    border: 1px solid #f2f2f2;
}

.WhyUs2 {
    background-color: #eff6ff;
    border: 1px solid #dbeafe;
}

/* ✅ Add this media query */
@media (max-width: 768px) {
    .main-div {
        flex-direction: column; /* Stack vertically */
        gap: 24px;
    }

    .WhyUs1,
    .WhyUs2 {
        width: 100%; /* Full width */
    }
}
.about-child-div {
    width: 50%; /* Set width to 50% */
    box-sizing: border-box;
    margin-top: 60px;
    margin-bottom: 60px;
}
.about-child-div img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
@media (max-width: 768px) {
    .half-div,
    .single-div {
        width: 100%;
    }

    .about-child-div img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
    }
}
@media (max-width: 768px) {
    .Customer-Hero .about-child-div:nth-child(1) {
        order: 2;
        margin-top: 0px;
    }

    .Customer-Hero .about-child-div:nth-child(2) {
        order: 1;
        margin-bottom: 0px;
    }
}

.content-wrapper {
    width: 100%;
    overflow-x: hidden;
}
@media (max-width: 768px) {
    .content-wrapper {
        text-align: center;
    }
}


.content-wrapper h3 {
    font-size: 32px;
    word-wrap: break-word;
}

.content-wrapper p {
    font-size: 16px;
    line-height: 1.5;
    word-wrap: break-word;
}
.about-child-div {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.row {
    display: flex;
    gap: 24px;
}

.single-div {
    width: 100%;
}

.half-div {
    width: 50%;
}
/* ----------------------------our team section style-------------------------------- */
