html,
body {
    font-family: 'outfit', sans-serif;
}

/* Hero Section Layout */
.hero-banner {

    background: linear-gradient(90deg, rgba(3, 15, 39, 0.9) 0%, rgba(13, 110, 253, 0.7) 100%),
        url('../images/06c8a30f5a64bbf6973c1cdc4eefc15f97dab7bc.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;


    padding: 80px 10%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    align-items: center;
}

/* Left Text */
.hero-left h1 {
    font-size: 30px;
    margin-bottom: 15px;
}

.hero-left p {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.btn-dir {
    display: inline-block !important;
    background: white !important;
    color: rgba(11, 94, 215, 1) !important;
    padding: 12px 25px !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    font-weight: bold !important;
}

/* Tabs */
.tabs-header {
    display: flex;
    gap: 2px;
    margin-bottom: -1px;
}

.tab-btn {
    background: #0d6efd;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px 8px 0 0;
    cursor: pointer;
}

.tab-btn.active {
    background: white;
    color: #0d6efd;
    font-weight: bold;
}

/* Form Card */
.search-card {
    background: white;
    padding: 30px;
    border-radius: 0 10px 10px 10px;
    color: #333;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.search-form {
    display: none;
}

.search-form.active {
    display: block;
}

input,
select {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 6px;
}

/* Button */
button.btn-submit {
    background-color: #0d6efd !important;
    color: white !important;
    border: none !important;
    padding: 12px 24px !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    width: 100% !important;
    margin-top: 15px;
}

button.btn-submit:hover {
    background-color: #0b5ed7 !important;
}

.legal-info-section {
    padding: 50px 10%;
    background: #ffffff;
}

.header-text {
    margin-bottom: 30px;
}

.header-text h2 {
    font-size: 28px;
    color: #000;
}

/* Tabs - Exact Blue Background & White Active Tab */
.info-tabs {
    display: flex;
    background: #0d6efd;
    border-radius: 8px;
    margin-bottom: -1px;
    padding: 6px;
}

.info-tab {
    flex: 1;
    padding: 15px;
    border: none;
    background: transparent;
    color: white;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    text-align: center;
}

.info-tab.active {
    background: white;
    color: #0d6efd;
    border-radius: 6px;
}

/* Card - Exact White Background & Border */
.info-card {
    display: flex;
    background: white;
    padding: 40px;
    border: 1px solid #e0e0e0;
    border-radius: 0 0 8px 8px;
    gap: 40px;
    align-items: flex-start;
}

@media screen and (max-width: 996px) {
    .info-card {
        flex-direction: column;
        text-align: center;
    }

    .card-image {
        text-align: center;
        width: 100%;
    }

    .info-tabs {
        overflow-x: auto;
        white-space: nowrap;
    }
}

.card-content {
    flex: 1;
}
.card-content h3{
    margin-bottom: 10px;
    font-weight: 700;
}
.card-content p{
    color:rgba(106, 114, 130, 1);
    margin-bottom: 10px;
}

.card-image {
    flex: 1;
    text-align: right;
}

.card-image img {
    max-width: 100%;
    border-radius: 8px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Bullet List */
.bullet-list {
    list-style: none;
    padding: 0;
}

.bullet-list li {
    margin-bottom: 10px;
    color: #555;
    display: flex;
    align-items: center;
}
.bullet-list li img{
    margin-right: 10px;
}



/* Resources Section Layout */
.resources-section {
    padding:60px 20px;
    background: rgb(245, 245, 245);
}
.resources-section .container{
    max-width: 1200px;
    margin: 0 auto;
}

.resources-section h2 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-weight: 800;
}

.section-desc {
    color: #666;
    margin-bottom: 40px;
}

/* Wrapper Fix for Wrapping */
.cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: flex-start;
    /* Cards left se start honge */
}

.resource-card {
    /* 100% / 3 cards - 20px (gap ka hissa) */
    flex: 0 0 calc(33.333% - 20px);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.3s ease;
}

/* Images and Content */
.resource-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card-body {
    padding: 20px;
}

.card-body h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #1a1a1a;
   
}

.card-body a {
    display: block;
    color: #0d6efd;
    text-decoration: none;
    font-size: 13px;
    margin-bottom: 8px;
    font-weight: 500;
}


.card-body a:hover {
    text-decoration: underline;
}

/* RESPONSIVE DESIGN */
/* Tablet: 2 cards per row */
@media (max-width: 992px) {
    .resource-card {
        flex: 0 0 calc(50% - 15px);
    }
}

/* Mobile: 1 card per row */
@media (max-width: 600px) {
    .resource-card {
        flex: 0 0 100%;
    }
}

.container-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    background: #ffffff;
}
.container-wrapper h2{
    margin-bottom: 6px;
}
.container-wrapper p{
color:rgba(106, 114, 130, 1);
}
/* Marketing Section Grid (3 Cards per row) */
.marketing-cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 30px;
}

.mkt-card {
    /* 3 cards per row ke liye calculation: 100% / 3 cards - gap */
    flex: 0 0 calc(33.333% - 17px);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.mkt-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.mkt-card-body {
    padding: 20px;
}
.mkt-card-body h3{
    margin-bottom: 10px;
    color: rgba(16, 24, 40, 1);
}
.mkt-card-body p{
    margin-bottom: 10px;
    color: rgba(106, 114, 130, 1);
    width:100%;
}

.mkt-btn {
    width: 100%;
    padding: 12px;
    background: rgba(239, 246, 255, 1);
    border: 1px solid #0d6efd;
    color: #0d6efd;
    border-radius: 6px;
    cursor: pointer;
}

.mkt-btn:hover {
    background: #0d6efd;
    color: #fff;
}

/* Tablet ke liye (2 cards per row) */
@media (max-width: 992px) {
    .mkt-card {
        flex: 0 0 calc(50% - 13px);
    }
}

/* Mobile ke liye (1 card per row) */
@media (max-width: 600px) {
    .mkt-card {
        flex: 0 0 100%;
    }
}

/* Blog Section */
.blog-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.blog-card-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    background: #fff;
}

.blog-card-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 4px;
}

.blog-tag {
    color: #0d6efd;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.blog-card-item h3 {
    font-size: 16px;
    margin: 10px 0;
}

.blog-card-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #999;
    margin-top: 15px;
}

/* Responsive */
@media (max-width: 992px) {

    .marketing-cards-grid,
    .blog-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .marketing-cards-grid,
    .blog-cards-grid {
        grid-template-columns: 1fr;
    }
}

.blog-updates-section {
    background-color: #fff;

}

.marketing-solutions-section {
    background-color: #fff;

}