/*
Theme Name: 	   Corpiva
Text Domain: 	   corpiva
Version:            1.1.22
Tested up to:       7.1
Requires at least:  4.7
Requires PHP:       5.6
Author:             DesertThemes
Author URI:         https://desertthemes.com/
Theme URI:          https://desertthemes.com/themes/corpiva-free/
Description:        Corpiva is lightweight, highly extendable and multi-purpose WordPress Theme. Corpiva is perfect for Startup, IT Solutions, IT Business, Agencies, Marketing, Consulting and Services Company related to any business websites. Corpiva based on in-depth research into IT Solutions, IT Services, IT Business, Consulting & Software, Digital Solution, Technical Engineering, Technology, and Services Company, to deliver all needed layouts and blocks. It will enable you to create almost any type of website with a beautiful & professional design. Corpiva supports popular WordPress plugins such as Elementor, WPML, Polylang, Yoast SEO, WooCommerce, Contact Form 7, Jetpack, and much more. Corpiva Pro demo https://preview.desertthemes.com/pro/corpiva/
Tags:               one-column, two-columns ,right-sidebar, flexible-header, custom-background, custom-header, custom-menu, editor-style, featured-images, footer-widgets, post-formats, theme-options, threaded-comments, translation-ready, full-width-template, custom-logo, blog, e-commerce, portfolio
License: GPLv3 or later
License URI:  https://www.gnu.org/licenses/gpl-3.0.html

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned
with others.
 */
/* Banner Section Fix */
    .hero-banner {
        position: relative;
        background-color: #f8f9fa;
        /* Dot Grid Pattern background fix */
        background-image: radial-gradient(#cbd5e1 1.5px, transparent 1.5px);
        background-size: 28px 28px;
        background-position: 0 0;
        padding: 70px 20px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .hero-container {
        max-width: 750px;
        width: 100%;
        margin: 0 auto;
    }

    /* Heading Styles */
    .hero-title {
        font-size: 2.4rem;
        color: #1a202c;
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 30px;
    }

    /* Search Box Wrapper */
    .search-box-wrapper {
        position: relative;
        max-width: 650px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        background: #ffffff;
        border: 1px solid #cbd5e1;
        border-radius: 6px;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
        overflow: hidden;
    }

    .search-box-wrapper:focus-within {
        border-color: #94a3b8;
        box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
    }

    /* Input Field */
    .search-input {
        width: 100%;
        padding: 16px 20px;
        font-size: 1rem;
        border: none;
        outline: none;
        color: #334155;
        background: transparent;
    }

    .search-input::placeholder {
        color: #94a3b8;
    }

    /* Search Button */
    .search-btn {
        background-color: #ef4444;
        color: #ffffff;
        border: none;
        padding: 16px 26px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background-color 0.2s ease;
    }

    .search-btn:hover {
        background-color: #dc2626;
    }

    .search-btn i {
        font-size: 1.1rem;
    }

    /* Responsive Media Queries */
    @media (max-width: 768px) {
        .hero-banner {
            padding: 50px 15px;
        }

        .hero-title {
            font-size: 1.75rem;
            margin-bottom: 20px;
        }

        .search-input {
            padding: 13px 15px;
            font-size: 0.95rem;
        }

        .search-btn {
            padding: 13px 20px;
        }
    } 
/* Top Airports Section */
    .top-airports-section {
        padding: 60px 20px;
        background-color: #ffffff;
        font-family: Arial, sans-serif;
    }

    .airports-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Section Title */
    .section-title {
        text-align: center;
        font-size: 2.2rem;
        color: #1e3a8a;
        font-weight: 700;
        margin-bottom: 40px;
    }

    /* Grid Layout */
    .airports-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin-bottom: 40px;
    }

    /* Card Item */
    .airport-card {
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        background-color: #000;
        height: 280px;
        display: flex;
        align-items: flex-end;
        text-decoration: none;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .airport-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
    }

    /* Top Row Layout: First 2 cards take 2 columns each */
    .airport-card.large {
        grid-column: span 2;
        height: 340px;
    }

    /* Bottom Row Layout: Next 4 cards take 1 column each */
    .airport-card.small {
        grid-column: span 1;
        height: 260px;
    }

    /* Card Background Image & Overlay */
    .airport-card img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .airport-card:hover img {
        transform: scale(1.05);
    }

    .airport-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
    }

    /* Card Content / Title */
    .airport-content {
        position: relative;
        z-index: 2;
        padding: 20px;
        width: 100%;
        text-align: center;
    }

    .airport-card.large .airport-content {
        padding: 30px;
    }

    .airport-title {
        color: #ffffff;
        font-size: 1.25rem;
        font-weight: 600;
        line-height: 1.4;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }

    .airport-card.large .airport-title {
        font-size: 1.6rem;
    }

    /* View More Button Wrapper */
    .view-more-wrapper {
        text-align: center;
        margin-top: 20px;
    }

    .view-more-btn {
        display: inline-block;
        background-color: #ef4444;
        color: #ffffff;
        padding: 12px 30px;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 6px;
        text-decoration: none;
        transition: background-color 0.2s ease, transform 0.2s ease;
        box-shadow: 0 4px 6px rgba(239, 68, 68, 0.2);
    }

    .view-more-btn:hover {
        background-color: #dc2626;
        transform: translateY(-2px);
    }

    /* Responsive Design for Tablets and Mobile */
    @media (max-width: 1024px) {
        .airports-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .airport-card.large {
            grid-column: span 2;
        }
        .airport-card.small {
            grid-column: span 1;
        }
    }

    @media (max-width: 768px) {
        .airports-grid {
            grid-template-columns: 1fr;
            gap: 15px;
        }
        .airport-card.large, .airport-card.small {
            grid-column: span 1;
            height: 240px;
        }
        .section-title {
            font-size: 1.8rem;
            margin-bottom: 25px;
        }
        .airport-title {
            font-size: 1.15rem;
        }
        .airport-card.large .airport-title {
            font-size: 1.25rem;
        }
    }
/* Quick Links Section */
    .quick-links-section {
        padding: 60px 20px;
        background-color: #ffffff;
        font-family: Arial, sans-serif;
    }

    .quick-links-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Section Title */
    .quick-links-title {
        text-align: center;
        font-size: 2.2rem;
        color: #1e3a8a;
        font-weight: 700;
        margin-bottom: 40px;
    }

    /* Grid Layout: 4 columns */
    .quick-links-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    /* Card Item */
    .ql-card {
        position: relative;
        border-radius: 6px;
        overflow: hidden;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        background-color: #000;
        height: 220px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        text-decoration: none;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .ql-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
    }

    /* Background Image */
    .ql-card img {
        position: absolute;
        top: 0;
        left: 0;
        width: 1000px;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .ql-card:hover img {
        transform: scale(1.05);
    }

    /* Blue Bottom Label Strip */
    .ql-label {
        position: relative;
        z-index: 2;
        background-color: #1e3a8a;
        color: #ffffff;
        padding: 10px 15px;
        font-size: 0.9rem;
        font-weight: 600;
        text-align: left;
        width: 100%;
        box-sizing: border-box;
    }

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

    @media (max-width: 768px) {
        .quick-links-grid {
            grid-template-columns: 1fr;
            gap: 15px;
        }
        .quick-links-title {
            font-size: 1.8rem;
            margin-bottom: 25px;
        }
        .ql-card {
            height: 200px;
        }
    }
/* Latest Blogs Section */
    .latest-blogs-section {
        padding: 60px 20px;
        background-color: #f8f9fa;
        font-family: Arial, sans-serif;
    }

    .blogs-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Section Title */
    .section-title {
        text-align: center;
        font-size: 2.2rem;
        color: #1e3a8a;
        font-weight: 700;
        margin-bottom: 40px;
    }

    /* Grid Layout: 3 columns */
    .blogs-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    /* Blog Card */
    .blog-card {
        background-color: #ffffff;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        display: flex;
        flex-direction: column;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .blog-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    }

    /* Thumbnail Container */
    .blog-thumb {
        width: 100%;
        height: 220px;
        overflow: hidden;
        background-color: #e2e8f0;
    }

    .blog-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .blog-card:hover .blog-thumb img {
        transform: scale(1.05);
    }

    /* Blog Content */
    .blog-content {
        padding: 25px;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }

    .blog-title {
        font-size: 1.25rem;
        color: #1f2937;
        font-weight: 700;
        line-height: 1.4;
        margin-bottom: 12px;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .blog-title:hover {
        color: #ef4444;
    }

    .blog-excerpt {
        font-size: 0.95rem;
        color: #4b5563;
        line-height: 1.5;
        margin-bottom: 20px;
        flex-grow: 1;
    }

    /* Read More Link */
    .read-more-link {
        font-size: 0.95rem;
        color: #ef4444;
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        transition: color 0.2s ease;
    }

    .read-more-link:hover {
        color: #dc2626;
        text-decoration: underline;
    }

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

    @media (max-width: 768px) {
        .blogs-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        .section-title {
            font-size: 1.8rem;
            margin-bottom: 25px;
        }
    }
 
.process-card .icon i {
    font-size: 60px;
}

.dt_post_item .meta li {
    font-size: 1.4rem;
    color: var(--dt-secondary-color);
    font-weight: 600;
    transition: all .2s ease-in-out;
}

.dt_post_item .meta i {
    font-size: 2rem;
    color: var(--dt-main-color);
    vertical-align: middle;
    margin-right: 0.8rem;
}

.wc-block-components-product-badge {
    background: var(--dt-main-color);
    color: #fff;
}

.wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button {
    background-color: var(--dt-main-color);
    color: #fff;
}

.wc-block-cart-items th {
    color: var(--dt-main-color);
}

.wp-block-image figcaption {
    text-align: center;
}

div.wc-block-components-order-summary .wc-block-components-order-summary-item__quantity {
    background: var(--dt-main-color);
    color: #fff;
}

.wp-block-embed figcaption {
    text-align: center;
}

.has-background.wp-block-read-more {
    padding: 0.25em 1.375em;
}

.wc-block-featured-category__link .wp-block-button__link:hover, 
.wc-block-featured-category__link .wp-block-button__link:focus {
    color: #fff;
}

nav.woocommerce-breadcrumb a {
    text-decoration: none;
}

.has-text-color a:hover, 
.has-text-color a:focus {
    color: inherit;
}

.wc-block-featured-product__price .woocommerce-Price-amount.amount {
    color: #fff;
}

.wp-block-pullquote.has-text-color blockquote {
    border-left-color: inherit;
}

.wc-block-featured-product__link a:hover, 
.wc-block-featured-product__link a:focus {
    color: #fff;
}

.wp-block-table figcaption {
    text-align: center;
    font-weight: 600;
}

.wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link {
    color: #fff;
	text-decoration: none;
}

.wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link:hover, 
.wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link:focus {
    color: #fff;
}

.wp-block-code.has-text-color code {
    color: inherit;
}

.wp-block-code.has-background code {
    background: inherit;
}

table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name {
    font-size: 1.5rem;
}

.wc-block-components-product-metadata .wc-block-components-product-metadata__description>p {
    font-size: 1.2rem;
}

.wp-block-woocommerce-empty-mini-cart-contents-block .wc-block-mini-cart__empty-cart-wrapper p strong {
    font-size: 16px;
}

table.wc-block-cart-items .wc-block-components-product-price {
    font-size: 1.2rem;
}

.wp-block-post-author__avatar img {
    border-radius: 100%;
}

.wc-block-mini-cart__empty-cart-wrapper .wc-block-mini-cart__shopping-button:hover, 
.wc-block-mini-cart__empty-cart-wrapper .wc-block-mini-cart__shopping-button:focus {
    color: #fff;
}

ul.wp-block-page-list a {
    text-decoration: none;
}

.widget.widget_shopping_cart a:before {
    display:none
}

.widget .wc-block-grid__products a:before {
    display: none;
}

.has-background.wp-block-post-author {
    padding: 1rem;
}

table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity .wc-block-cart-item__remove-link {
    font-size: 1rem !important;
}

.wp-block-details summary {
    font-weight: 600;
    padding: 10px;
}

.wc-block-components-totals-item__value {
    font-size: 1.5rem;
}

.wc-block-mini-cart__footer-checkout,
.wc-block-mini-cart__footer-checkout:hover,
.wc-block-mini-cart__footer-checkout:focus {
    background-color: var(--dt-main-color);
    color: #fff;
}

.wp-block-verse {
    padding: 10px;
}

.wc-block-mini-cart__footer .wc-block-mini-cart__footer-actions a {
    text-decoration: none;
}

.aligncenter, img.aligncenter {
    margin-right: auto;
    margin-left: auto;
    display: block;
    clear: both;
}

.wc-block-mini-cart__badge {
    color: inherit;
}

table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name {
    text-decoration: none;
}

.wc-block-mini-cart__footer .wc-block-mini-cart__footer-actions a {
    font-size: 1.2rem;
}

.wc-block-mini-cart__footer span.wc-block-components-totals-item__label {
    font-size: 1.5rem;
}

.wp-block-archives-list a {
    text-decoration: none;
}

.wc-block-mini-cart__footer .wc-block-components-totals-item.wc-block-mini-cart__footer-subtotal .wc-block-components-totals-item__description {
    font-size: 1.2rem !important;
}

table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity .wc-block-cart-item__remove-link {
    text-decoration: none !important;
}

.wp-block-latest-comments__comment a {
    text-decoration: none;
}

.wc-block-components-product-badge {
    font-size: 1rem !important;
}

.wc-block-components-totals-coupon-link {
    text-decoration: none;
}

table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity .wc-block-cart-item__remove-link:hover, 
table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity .wc-block-cart-item__remove-link:focus {
    color: var(--dt-main-color) !important;
}

.wp-block-woocommerce-customer-account a .wc-block-customer-account__account-icon {
    height: 2rem !important;
    width: 2rem !important;
}

.dt_widget-area .wp-block-comment-author-name a,
.dt_widget-area .wp-block-comment-date a {
    color: var(--dt-secondary-color);
}

.wp-block-avatar img {
    border-radius: 50%;
}

.wp-block-avatar:hover img {
    -webkit-transform: scale(1.07);
    transform: scale(1.07);
}

.wp-block-page-list {
    list-style: none;
    padding: 0;
}

.wp-block-page-list a {
    color: var(--dt-secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.wp-block-page-list a:hover,
.wp-block-page-list a:focus {
    color: var(--dt-main-color);
}

.wp-block-list {
    padding: 0;
}

.wp-block-list.has-background {
    padding: 1.25em 2.375em;
}

.wp-block-details.has-background {
    padding: 1.25em 2.375em;
}

.wp-block-verse.has-background {
    padding: 1.25em 2.375em;
}

.wp-block-preformatted.has-background {
    padding: 1em;
}

.wp-block-archives {
    list-style: none;
    padding: 0;
}

.wp-block-archives-list a {
    font-weight: 600;
    color: var(--dt-secondary-color);
}

.wp-block-archives-list a:hover, 
.wp-block-archives-list a:focus {
    color: var(--dt-main-color);
}

.wp-block-page-list.has-background {
    padding: 1rem;
}

a.wp-block-button__link:hover, 
a.wp-block-button__link:focus {
    color: #fff;
    text-decoration: none;
}

.wp-block-button.is-style-outline a.wp-block-button__link {
    color: var(--dt-main-color);
}

.wp-block-latest-comments {
    padding-left: 0;
}

.wp-block-latest-comments li a:not(:hover, :focus) {
    color: var(--dt-secondary-color);
}

.wp-block-embed figcaption {
    text-align: center;
}

.dt_footer .wp-block-latest-comments li a:not(:hover, :focus) {
    color: inherit;
}

.dt_footer ul.product_list_widget li .woocommerce-Price-amount {
    color: #fff;
}

.dt_footer ul.product_list_widget li {
    border-bottom: none;
}

.dt_footer .widget_shopping_cart .button:not(.checkout):not(.add_to_cart_button) {
    background-color: var(--dt-main-color);
}

.dt_footer .widget_shopping_cart .button:not(.checkout):not(.add_to_cart_button):hover,
.dt_footer .widget_shopping_cart .button:not(.checkout):not(.add_to_cart_button):focus {
    background-color: var(--dt-main-color) !important;
}

.dt_footer .widget_shopping_cart a.checkout:hover, 
.dt_footer .widget_shopping_cart a.checkout:focus {
        background-color: var(--dt-main-color) !important;
}

.dt_footer .widget_shopping_cart span.amount {
    color: #fff;
}

.dt_footer .widget_shopping_cart li img {
   object-fit: contain !important;
   padding-right: 10px;
}

.dt_footer .widget .wc-block-cart-link {
    color:#fff;
    background: var(--dt-main-color);
}

.dt_footer .widget .wc-block-cart-link:hover, 
.dt_footer .widget .wc-block-cart-link:focus {
    text-decoration: none;
}

.woocommerce-account .woocommerce-Address-title h2 {
    font-size: 4rem;
}

.wp-block-button.is-style-outline a.wp-block-button__link {
    border-color: inherit;
    background: transparent
}

.wp-block-categories-list.has-background {
    padding: 1rem;
}

.wp-block-latest-comments.has-background {
    padding: 1rem;
}

.wp-block-file a {
    text-decoration: none;
}

.wp-block-file.has-background {
    padding: 1rem;
}

.woocommerce .summary .product_meta>span a {
    text-decoration: none;
}

table.wc-block-cart-items .wc-block-cart-items__header th {
    font-size: 1.6rem;
    font-weight: 700;
}

.wc-block-components-sidebar-layout.wc-block-cart .wc-block-cart__totals-title {
    font-weight: 700;
}

.wc-block-components-totals-footer-item .wc-block-components-totals-item__label, 
.wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
    font-weight: 600;
}

.wp-block-woocommerce-customer-account.has-background {
    padding: 1rem;
}

.wp-block-woocommerce-customer-account a:focus {
    text-decoration: underline !important;
}

.wc-block-customer-account__link {
    text-decoration: none;
}

.dt_footer .widget.widget_products ins .woocommerce-Price-amount.amount {
    color:#fff;
}

.woocommerce ul.products li.product a:focus .woocommerce-loop-product__title {
    color: var(--dt-main-color);
}

.wp-block-list li a:not(:hover):not(:focus) {
    text-decoration: none;
}

.wp-block-search.wp-block-search__button-only .wp-block-search__button {
    background-color: var(--dt-main-color);
}

.wp-block-accordion-heading.has-background .wp-block-accordion-heading__toggle {
    padding: 1rem;
}

.wp-block-accordion-heading__toggle:hover .wp-block-accordion-heading__toggle-title {
    text-decoration: none;
}