

.hero-section {
    position: relative;
    text-align: center;
    padding: 50px;
    background: linear-gradient(229deg, #002B5B 0%, #274A65 100%);
    /* border-radius: 15px; */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    width: 90%;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: -1;
    border-radius: 15px;
}

.hero-title {
    font-size: 64px;
    font-weight: bold;
    color: white;
}

.hero-text {
    font-size: 24px;
    color: white;
    margin-top: 10px;
}

.button-container {
    margin-top: 20px;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    margin: 5px;
}

.demo-button {
    background-color: white;
    border: 2px solid #274A65;
    color: #274A65;
    border-radius: 5px;
}
.demo-button:hover {
    transform: scale(1.05);
    transition: 0.3s;
}

.request-button {
    background: linear-gradient(to right, #274A65, #8FE3CF);
    color: white;
    border: 2px solid #274A65;
    border-radius: 5px;
}

.request-button:hover {
    transform: scale(1.05);
    transition: 0.3s;
}

.square-block {
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transform: rotate(45deg);
}

.block-1 {
    top: 120px;
    left: 30px;
}

.block-2 {
    top: 180px;
    left: 150px;
}

.block-3 {
    top: 240px;
    left: 70px;
}

.vendor-section {
    background: white;
    color: white;
    /* padding: 3rem 2rem; */
    text-align: center;
    position: relative;
}
.dashboard-title{
    color: #274A65;
    font-size: 36px;
    margin: 1rem 1rem;
}
.overlay-pattern {
    position: absolute;
    inset: 0;
    color:#274A65;
    font-size: 36px;
    /* background: url('/pattern.png') center/cover; */
    /* opacity: 0.1; */
}
.dashboard-mockup {
    position: center;
    width: 100%;
    max-width: 72rem;
    background: linear-gradient(229deg, #002B5B 0%, #274A65 100%);
    /* border-radius: 1rem; */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    padding: 2rem;
    margin-bottom: 4rem;
}
.dashboard-content {
    height: 24rem;
    background: white;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #06b6d4;
    font-size: 1.5rem;
    font-weight: 600;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    max-width: 72rem;
    margin: auto;
}
@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.feature-box {
    /* background: white; */
    padding: 1.5rem;
    border-radius: 0.5rem;
    text-align: left;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #002B5B;
    background:linear-gradient(269deg, #002B5B 0%, #274A65 100%);
}

.feature-icon {
    padding-bottom: 2.5rem;
    color: #8FE3CF;
    
}
.feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
    /* background-color: #002B5B; */
}
.feature-description {
    color: white;
    font-size: 0.875rem;
    /* background-color: #002B5B; */
}

.blog-section {
    background: linear-gradient(269deg, #002B5B 0%, #274A65 100%);
    color:white;
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
    position: relative;
}

.blog {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
    margin-top: 32px;
}
.blog-content {
    /* background: rgba(255, 255, 255, 0.1); */
    /* backdrop-filter: blur(10px); */
    padding: 20px;
    border-radius: 10px;
    max-width: 400px;
    min-height: 350px;
    margin-top: 20px;
}
.blog-content h3 {
    color: #B6E5D8;
    font-size: 28px;
    margin-bottom: 10px;
    
}
.blog-content p {
    color: white;
    font-size: 20px;
    margin-bottom: 15px;
}
.blog-content li {
    color: white;
    font-size: 18px;
    margin-bottom: 15px;
}
.blog-content a {
    display: inline-block;
    background: linear-gradient(to right, #274A65, #8FE3CF);
    padding: 10px 20px;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
}
.blog-content a:hover {
    color: white;
    text-decoration: underline;
    transform: scale(1.05);
    transition: 0.3s;
}
/* .image-holder{
    width: 396px;
    height: 96px;
} */
.blog img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.4);
}

.button-container button:hover {
    transform: scale(1.05);
    transition: 0.3s;
}

.feature-box:hover{
    transform:scale(1.05);
    transition: all 0.3s;
}

@media (min-width: 992px) {  /* Targets screens larger than lg */
    .collaboration-header-div {
        /* padding-left: 160px; Custom padding */
        margin-left: 180px;  /* Custom margin */
        display: flex;
    }
}