/* Responsive screens */
/* 1440 */
@media (min-width: 1440px) {
  .hide-1440 { display: none ; }
}

/* 1200 */
@media (min-width: 1200px) {
  .hide-1200 { display: none ; }
}

/* 991 */
@media (min-width: 991px) {
  .hide-991 { display: none ; }
}
@media (max-width: 991px) {
  .hide-992 { display: none ; }
}
/* 768 */
@media (min-width: 768px) {
  .hide-768 { display: none ; }
}

/* 600 */
@media (max-width: 600px) {
  .hide-600 { display: none ; }
}

/ * Header CSS 18 June 2026 */

.mauli-marquee {
  overflow: hidden;
  width: 100%;
  background: transparent;
  font-family: "Poppins", sans-serif;
}

.mauli-marquee-track {
  display: flex;
  gap: 40px;
  width: max-content;
  align-items: center;
  animation: marqueeScroll 12s linear infinite;
}

.mu-transalte {
    height: 41px;
    background: #000;
    padding: 0px 10px;
    right: -10px !important;
}

.mauli-marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-size: 14px;
  color: #F8BE00;
  font-family: "Poppins", sans-serif;
	font-weight: 600;
}

/* animation */
@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* mobile only */
@media (min-width: 991px) {
  .mauli-marquee {
    display: none;
  }
}


#bottom-header {
    width: 100%;
    z-index: 9999;
	
}

#bottom-header.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    animation: headerSlideDown 0.35s ease forwards;
	background: #fff !important;
	transition: background 0.35s ease-in;
}

@keyframes headerSlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}


/* Home Page 11 June 2026 */
.hero-slider .elementor-swiper-button.elementor-swiper-button-prev
,.hero-slider .elementor-swiper-button.elementor-swiper-button-next{

  width : 60px !important;
  height : 47px !important;
  display : flex !important;
  justify-content : center !important;
  align-items : center !important;
  
}

.hero-slider .elementor-swiper-button.elementor-swiper-button-prev
{
   background : #017729 !important;
   border-radius : 10px 0px 0px 0px;
}
.hero-slider .elementor-swiper-button.elementor-swiper-button-next{
  background-color : #ffffff !important;
}

.running-line-section div.swiper-wrapper{
    transition-timing-function: linear !important;
}

/* 15 June 2026 Home Swapper slider */
selector .swiper-slide {
    margin-right: 0 !important;
}

/* About Us Page 12 June 2026 */
.ma-our-commitment-box{
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ma-counter .elementor-counter-number-wrapper {
    background-image: url('https://yellow-pheasant-928890.hostingersite.com/wp-content/uploads/2026/06/Rectangle-2.webp');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
    color: transparent;

    display: inline-block;
}

.ma-counter .elementor-counter-number,
.ma-counter .elementor-counter-number-suffix {
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Single Product Page CSS */
/* Main Wrapper */
.ma-composition-table{
    width:100%;
    font-family:'DM Sans', sans-serif;
}

/* Header */
.ma-table-head{
    display:grid;
    grid-template-columns:100px 1fr 180px;
    align-items:center;
    background:#CCF4DA;
    padding:10px 20px;
    border-radius:10px;
}

.ma-table-head div{
    color:#017729;
    font-size:16px;
    font-weight:700;
    line-height:150%;
}

/* Body */
.ma-table-body{
    margin-top:23px;
    display:flex;
    flex-direction:column;
    gap:23px;
	padding : 0px 20px;
}

/* Rows */
.ma-row{
    display:grid;
    grid-template-columns:100px 1fr 180px;
    align-items:center;
}

.ma-row div{
    color:#2B2B2B;
    font-size:16px;
    font-weight:700;
    line-height:150%;
}


/* Contact Us Form CSS 16 June 2026 */
/* ==========================
   Form Wrapper
========================== */

.ma-enquiry-form {
    width: 100%;
}

/* ==========================
   Grid Layout
========================== */

.ma-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
    row-gap: 35px;
}

/* ==========================
   Form Group
========================== */

.ma-form-group {
    display: flex;
    flex-direction: column;
}

.ma-full-width {
    grid-column: 1 / -1;
}

/* ==========================
   Labels
========================== */

.ma-form-group label {
    margin-bottom: 10px;

    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: #2B2B2B;
}

/* ==========================
   Inputs & Textarea
========================== */

.ma-form-group input,
.ma-form-group textarea {
    width: 100%;
    padding: 16px 22px;
    border: 1px solid #4B4B4B;
    border-radius: 0;
    background: #fff;
    outline: none;
    box-sizing: border-box;

    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 150%;
    color: #2B2B2B;

    transition: all 0.3s ease;
}

.ma-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Focus State */

.ma-form-group input:focus,
.ma-form-group textarea:focus {
    border-color: #F8BE00;
}

/* ==========================
   Placeholder
========================== */

.ma-form-group input::placeholder,
.ma-form-group textarea::placeholder {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 150%;
    color: #888888;
}


/* ==========================
   Tablet
========================== */

@media (max-width: 991px) {
    .ma-form-grid {
        grid-template-columns: 1fr;
        row-gap: 25px;
    }

    .ma-form-group label {
        font-size: 15px;
    }

    .ma-form-group input,
    .ma-form-group textarea {
        padding: 14px 18px;
    }
}

/* ==========================
   Mobile
========================== */

@media (max-width: 767px) {

    .ma-form-grid {
        row-gap: 20px;
    }

    .ma-form-group label {
        margin-bottom: 8px;
        font-size: 14px;
    }

    .ma-form-group input,
    .ma-form-group textarea {
        padding: 14px 16px;
        font-size: 14px;
    }

    .ma-submit-btn {
        width: 100%;
        padding: 16px 24px;
    }
}

/* Pop-up Form CSS */
/* Popup Form Wrapper */
.ma-popup-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Header */
.ma-popup-form-header {
    text-align: center;
    margin-bottom: 8px;
}

.ma-popup-form-header h3 {
    margin: 0 0 8px;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    color: #017729;
}

.ma-popup-form-header p {
    margin: 0;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #6B7280;
}

/* Form Group */
.ma-popup-form .ma-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Labels */
.ma-popup-form label {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #1F2937;
}

/* Inputs & Textarea */
.ma-popup-form input,
.ma-popup-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    background: #FFFFFF;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 16px;
    color: #1F2937;
    transition: all 0.3s ease;
}

.ma-popup-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* Placeholder */
.ma-popup-form input::placeholder,
.ma-popup-form textarea::placeholder {
    color: #9CA3AF;
}

/* Focus State */
.ma-popup-form input:focus,
.ma-popup-form textarea:focus {
    outline: none;
    border-color: #017729;
    box-shadow: 0 0 0 4px rgba(1, 119, 41, 0.08);
}

/* Submit Button */
.ma-popup-form .ma-submit-btn {
    width: 100%;
    min-height: 56px;
    border: none;
    border-radius: 12px;
    background: #F8BE00;
    color: #1F2937;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
	
}

.ma-popup-form .ma-submit-btn:hover {
    transform: translateY(-5px);
    filter: brightness(0.95);
}

.ma-popup-form .ma-submit-btn:active {
    transform: translateY(-2px);
}

button.atf-popup-close:hover {
    background: transparent !important;
}
.atf-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px !important;
    border-bottom: none;
}

.atf-popup-window.atf-popup-position-center {
    position: relative;
}

button.atf-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
}

.atf-popup-close span {
    font-size: 29px;
}

button.atf-form-button, .ma-submit-btn {
    background-color: #F8BE00;
    font-family: "Bricolage Grotesque", Sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 16px;
    fill: #101010;
    color: #101010;
    border-radius: 0px 0px 0px 0px;
    padding: 14px 32px 14px 32px;
    border: none;
    outline: none;
	 transform : translateY(px) !important;
    Transition : all 0.4s ease-in-out;
}

button.atf-form-button:hover, .ma-submit-btn:hover  {
    transform : translateY(-5px) !important;
    background-color: #E5AE00 !important;
	color: #101010 !important;
    
    }
button.atf-form-button:focus, .ma-submit-btn:focus  {
    background-color: #E5AE00 !important;
	color: #101010 !important;
    
    }

.atf-field-error {
    margin-top: 2px !important;
}

.book-free-cta button.atf-form-button{
	background : #017729 !important;
	color : #fff !important;
}

/* Form CSS Updated Once */
.ma-form-grid {
    row-gap: 10px;
}
.atf-field-error {
    margin-top: -0.5rem;
    margin-bottom: 0.2rem;
}

/* Tablet */
@media (max-width: 1024px) {
    .ma-popup-form-header h3 {
        font-size: 28px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .ma-popup-form {
        gap: 14px;
    }

    .ma-popup-form-header h3 {
        font-size: 24px;
    }

    .ma-popup-form-header p {
        font-size: 14px;
    }

    .ma-popup-form input,
    .ma-popup-form textarea {
        padding: 12px 16px;
        font-size: 15px;
    }

    .ma-popup-form .ma-submit-btn {
        min-height: 52px;
        font-size: 15px;
    }
}

@media (max-width: 991px) {
    .atf-popup-content {
        padding-bottom: 20px !important;
    }
	button.atf-form-button, .ma-submit-btn{
		padding : 10px 20px !important;
		font-size : 16px !important;
	}
}

@media(max-width : 600px){
	button.atf-form-button, .ma-submit-btn{
		padding : 10px 20px !important;
		font-size : 14px !important;
	}
}


svg{
    
    visibility: visible !important;
}