/**
 * Theme Name:     Twenty Twenty-Four Child
 * Author:         the WordPress team
 * Template:       twentytwentyfour
 * Text Domain:	   twenty-twenty-four-child
 * Description:    Twenty Twenty-Four is designed to be flexible, versatile and applicable to any website. Its collection of templates and patterns tailor to different needs, such as presenting a business, blogging and writing or showcasing work. A multitude of possibilities open up with just a few adjustments to color and typography. Twenty Twenty-Four comes with style variations and full page designs to help speed up the site building process, is fully compatible with the site editor, and takes advantage of new design tools introduced in WordPress 6.4.
 */
html {
  scroll-behavior: smooth;
}
/* mobile font*/

@media (max-width: 768px) {
    body {
       
       font-size: 16px;
       line-height: 1.6;
    }
   
    h1 {
        font-size: 32px;
        line-height: 1.2;
    }

    h2 {
        font-size: 26px;
        line-height: 1.3;
    }

    h3 {
        font-size: 22px;
        line-height: 1.4;
    }
     h4 {
        font-size: 20px;
        line-height: 1.4;
    }

    .wp-block-post-content {
        font-size: 16px;
        line-height: 1.6;
    }


}



/* Header Styling */
#site-header {
  position: relative;
  top: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 -8px 27px rgba(0, 0, 0, 0.08);
  z-index: 1000;
}

/* Mobile Header - 899px and below */
@media (max-width: 899px) {
  #site-header {
    padding: 10px 15px !important;
  }
  
  /* Only add spacing - nothing else */
  #site-header .wp-block-navigation__responsive-container-open {
    margin-left: auto !important;
    margin-right: 20px !important;
  }
  
  #site-header .wp-block-button__link {
    padding: 8px 16px !important;
    font-size: 14px !important;
  }
  
  /* FIX: Make navigation visible on mobile */
  #site-header .wp-block-navigation__responsive-container.is-menu-open {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 100000 !important;
  }
  
  #site-header .wp-block-navigation__responsive-close {
    position: absolute !important;
    top: 10px !important;
    right: 10px !important;
  }
}

/* Mobile buttons full width - homepage only */
@media (max-width: 768px) {
    main .wp-block-buttons {
        flex-direction: column !important;
        width: 100% !important;
    }
    
    main .wp-block-button {
        width: 100% !important;
        margin-bottom: 10px !important;
    }
    
    main .wp-block-button__link {
        width: 100% !important;
        display: block !important;
        text-align: center !important;
    }
}

/* form styling */
.form.fluent_form_2 .wpf_has_custom_css.ff-btn-submit {
    background-color: rgba(37, 99, 235, 1);
    color: #ffffff;
    border-radius: 0px;
    font-family: inherit !important;
    padding: 10px 20px;
}

.form-container-shadow {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 2rem;
}

.ff-default .ff-el-form-check label.ff-el-form-check-label {
   font-size: 14px;
}

/* Desktop screens */
@media (max-width: 1023px) {
  .mobile-padding-adjust {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
	
  .mobile-padding-adjust-b{
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
	
  .moble-button-learn-hp {
	width: 182px !important; 
	}
}

/* breadcrumbs style*/
.markat-breadcrumbs {
    font-size: 14px;
    margin-bottom: 16px;
    color: #6b7280;
}

.markat-breadcrumbs a {
    color: #2563eb;
    text-decoration: none;
}

.markat-breadcrumbs a:hover {
    text-decoration: underline;
}

.markat-breadcrumbs .separator {
    margin: 0 6px;
    opacity: 0.5;
}


/* table side scroll on mobile*/

@media (max-width: 768px) {
    .wp-block-table {
        position: relative;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-top: 22px;
        padding-bottom: 22px;
    }

    .wp-block-table table {
        width: 100%;
        min-width: 600px;
        border-collapse: collapse;
    }

    /* Top swipe indicator */
    .wp-block-table::before {
        content: "↔ Swipe Table ↔";
        position: absolute;
        top: 4px;
        right: 8px;
        font-size: 12px;
        color: #1e3a8a;
        opacity: 0.9;
        pointer-events: none;
        z-index: 2;
    }

    /* Bottom swipe indicator */
    .wp-block-table::after {
        content: "↔ Swipe Table ↔";
        position: absolute;
        bottom: 4px;
        right: 8px;
        font-size: 12px;
        color: #1e3a8a;
        opacity: 0.9;
        pointer-events: none;
        z-index: 2;
    }
}



