/*
Theme Name: Airlink Tele Services
Author: Ishaan Awasthi
Description: Our default theme for 2020 is designed to take full advantage of the flexibility of the block editor. Organizations and businesses have the ability to create dynamic landing pages with endless layouts using the group and column blocks. The centered content column and fine-tuned typography also makes it perfect for traditional blogs. Complete editor styles give you a good idea of what your content will look like, even before you publish. You can give your site a personal touch by changing the background colors and the accent color in the Customizer. The colors of all elements on your site are automatically calculated based on the colors you pick, ensuring a high, accessible color contrast for your visitors.
Tags: blog, one-column, custom-background, custom-colors, custom-logo, custom-menu, editor-style, featured-images, footer-widgets, full-width-template, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready, block-styles, wide-blocks, accessibility-ready
Version: 1.3
Requires at least: 5.0
Tested up to: 5.4
Requires PHP: 7.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twentytwenty
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.
*/

.filter-bar {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}
.filter-bar select {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 50px;
    font-size: 14px;
    background: #fff;
    color: #333;
}

.hero-slider-custom {
  width: 100%;
  height: auto;
  position: relative;
}

.hero-slider-custom img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
  display: none;
}

.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.7;
}
.swiper-pagination-bullet-active {
  background: #007bff; /* Bootstrap primary color */
}

/* Hide mobile nav by default */
@media (max-width: 1199px) {
  #mobile-menu > ul {
    display: none !important;
    visibility: hidden;
  }
  /* MeanMenu wrapper will override this */
  .mean-container .mean-nav {
    display: block !important;
    visibility: visible !important;
  }
}

.wc-block-components-order-summary-item__individual-prices {
    display: none !important;
}

.wc-block-components-order-summary-item__total-price, .wc-block-components-checkout-return-to-cart-button {
    display: none !important;
}

/* ----------------------------------------------------------
   PREMIUM GRADIENT "PLACE ORDER" BUTTON + RIGHT ARROW ICON
----------------------------------------------------------- */
.wc-block-components-checkout-place-order-button {
    background: linear-gradient(135deg, #007bff, #00c6ff) !important;
    color: #fff !important;
    border: none !important;
    padding: 14px 34px 14px 28px !important; /* space for arrow */
    font-size: 16px !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    position: relative !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 12px rgba(0, 150, 255, 0.35) !important;
}

/* Add Arrow Icon */
.wc-block-components-checkout-place-order-button::after {
    content: "➜"; /* you can change to → ➤ ➠ ► */
    font-size: 18px;
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
}

/* Hover */
.wc-block-components-checkout-place-order-button:hover {
    background: linear-gradient(135deg, #006ae0, #00b3e6) !important;
    box-shadow: 0 6px 16px rgba(0, 150, 255, 0.45) !important;
    transform: translateY(-2px) !important;
}

/* Hover Arrow Animation */
.wc-block-components-checkout-place-order-button:hover::after {
    transform: translateY(-50%) translateX(2px);
}

/* Active Click */
.wc-block-components-checkout-place-order-button:active {
    transform: translateY(0px) !important;
    box-shadow: 0 3px 10px rgba(0, 150, 255, 0.25) !important;
}

/* ----------------------------------------------------------
   DESKTOP — Align button to the RIGHT
----------------------------------------------------------- */
.wc-block-components-checkout-place-order {
    display: flex !important;
    justify-content: flex-end !important;
    width: 100% !important;
}

.wc-block-components-checkout-place-order-button {
    margin-left: auto !important;
}

/* ----------------------------------------------------------
   MOBILE — Center the button
----------------------------------------------------------- */
@media (max-width: 767px) {
    .wc-block-components-checkout-place-order {
        justify-content: center !important;
        text-align: center !important;
    }

    .wc-block-components-checkout-place-order-button {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

.contact-main-wrapper .contact-form-items .form-clt textarea {
    height: 120px;
}

.contact-main-wrapper .contact-form-items .form-clt textarea {
    padding-top: 18px;
}

/* POPUP OVERLAY */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

/* POPUP BOX */
.popup-box {
    background: #fff;
    width: 90%;
    max-width: 800px;
    border-radius: 14px;
    position: relative;
    display: flex;
    overflow: hidden;
    animation: fadeIn 0.3s ease-in-out;
}

/* TWO COLUMN LAYOUT */
.popup-two-col {
    display: flex;
}

/* LEFT IMAGE */
.popup-left {
    width: 45%;
    background: #eee;
}

.popup-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* RIGHT FORM AREA */
.popup-right {
    width: 55%;
    padding: 35px;
}

/* Close Button */
.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #333;
}

/* Fade animation */
@keyframes fadeIn {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* CF7 Field Styling */
.popup-right input,
.popup-right textarea {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 15px;
}

/* Submit Button */
.popup-right input[type="submit"] {
    width: 100%;
    padding: 14px;
    background: #0094b7;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    cursor: pointer;
}

.popup-right input[type="submit"]:hover {
    background: #007a96;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .popup-two-col {
        flex-direction: column;
    }

    .popup-left,
    .popup-right {
        width: 100%;
    }

    .popup-left img {
        height: 220px;
    }
}

.popup-field input {
    color: #000;
}

.fv-popup-benefits {
    line-height: 22px !important;
    padding-left: 0 !important;
    margin-bottom:0 !important;
}
