/* ==================== style.css (COMPLETE UPDATED) ==================== */

/*AAAAAAAAAAAAAAAAAAAAAAA!!! BASE STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: #6a6a6a;
    line-height: 1.8;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Manrope', sans-serif;
    color: #1d1d18;
    font-weight: 800;
    margin: 10px 0;
}

a {
    text-decoration: none;
    transition: all 0.4s ease-in-out;
}

a:hover {
    color: #e25470;
}

.btn {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 10px;
    padding: 15px 30px;
    transition: all 0.4s ease-in-out;
    border: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1324px;
}

/*AAAAAAAAAAAAAAAAAAAAAAA!!! BASE STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! HEADER STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/

.header-top {
    background: #ffffff;
    color: #1d1d18;
    padding: 10px 0;
    font-size: 15px;
    border-bottom: 1px solid rgba(242, 242, 242, 0.47);
    display: flex;
    align-items: center;
    position: relative;
    z-index: 3;
}

.header-top a {
    color: #1d1d18;
    text-decoration: none;
    transition: all 0.4s ease-in-out;
}

.header-top a:hover {
    color: #e25470;
}

.header-top i {
    color: #ffffff;
}

.top-header-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.contact-detail-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-top-icon-wrapper {
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    background: #e25470;
    transition: all 0.4s ease-in-out;
    flex-shrink: 0;
}

.contact-detail-wrapper:hover .header-top-icon-wrapper {
    background: #134274;
}

.header-top-contact-detail {
    font-size: 15px;
    color: #1d1d18;
}

.header-top-quote-btn-info {
    text-align: right;
    margin-left: auto;
}

.header-top-quote-btn-right {
    margin-left: auto;
    margin-right: 0;
}

.header-top-quote-link-btn {
    background: #e25470 !important;
    color: #ffffff !important;
    padding: 8px 20px !important;
    border-radius: 10px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    display: inline-block;
    border: none;
    transition: all 0.4s ease-in-out;
}

.header-top-quote-link-btn:hover {
    background: #134274 !important;
    color: #ffffff !important;
}

.header-four {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 0 10px rgba(12, 12, 12, 0.06);
    position: relative;
    z-index: 10;
    padding: 0;
    border-bottom: 1px solid #eee;
}

.header-menu-container {
    padding: 0 15px;
}

.header-menu-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    min-height: 80px;
}

.logo-title-wrap {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-wrap {
    display: flex;
    align-items: center;
}

.logo-wrap img {
    max-width: 180px;
    height: auto;
}

.main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-navigation .navbar {
    width: 100%;
    padding: 0;
    display: flex;
    justify-content: center;
}

.main-navigation .navbar-nav {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0;
    align-items: center;
}

.main-navigation .navbar-nav .nav-item {
    padding: 30px 15px;
    position: relative;
}

.main-navigation .navbar-nav .nav-item:first-child {
    padding-left: 0;
}

.main-navigation .navbar-nav .nav-item:last-child {
    padding-right: 0;
}

.main-navigation .navbar-nav .nav-link {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #444;
    padding: 0;
    text-transform: uppercase;
    line-height: 22px;
    background: transparent;
    border: none;
    display: block;
    transition: color 0.3s ease;
}

.main-navigation .navbar-nav .nav-link:hover,
.main-navigation .navbar-nav .nav-link:focus {
    color: #e25470;
}

.main-navigation .navbar-nav .nav-link.dropdown-toggle::after {
    display: inline-block;
    margin-left: 5px;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
}

.main-navigation .navbar-nav .dropdown-menu {
    position: absolute;
    top: 65px;
    left: 0;
    border-radius: 0 0 10px 10px;
    border-bottom: 10px solid #e25470;
    box-shadow: 0 0 10px rgba(12, 12, 12, 0.06);
    padding: 0;
    min-width: 250px;
    background: #fff;
    display: none;
    border-top: none;
}

.main-navigation .navbar-nav .dropdown-menu.show {
    display: block;
}

.main-navigation .navbar-nav .dropdown-item {
    font-size: 13px;
    color: #686868;
    padding: 13px 18px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(244, 244, 244, 0.6);
    transition: all 0.4s ease-in-out;
    display: block;
    background: transparent;
}

.main-navigation .navbar-nav .dropdown-item:hover {
    background: transparent;
    color: #e25470;
    box-shadow: inset 5px 0 0 0 #e25470;
}

.main-navigation .navbar-nav .dropdown-item:last-child {
    border-bottom: none;
}

.main-navigation .navbar-nav .dropdown-item.active {
    color: #e25470;
    background: transparent;
}

.nav-icons-right {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
    padding-left: 20px;
}

.nav-icons-right .nav-icon {
    font-size: 16px;
    color: #444;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
    display: flex;
    align-items: center;
}

.nav-icons-right .nav-icon:hover {
    color: #e25470;
}

.cart-icon {
    position: relative;
    display: none;
}

.cart-icon-mobile {
    display: none;
}

.nav-social {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.nav-social .social-menu {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 15px;
}

.nav-social .social-menu .social-icon a {
    color: #e25470;
    font-size: 16px;
    transition: all 0.4s ease-in-out;
}

.nav-social .social-menu .social-icon a:hover {
    color: #444;
}

.nav-social .social-menu .social-icon a::before {
    font-family: "Font Awesome 6 Brands";
    font-weight: 400;
}

.nav-social .social-menu .social-icon a[href*="twitter.com"]::before {
    content: "\e61b";
}

.nav-social .social-menu .social-icon a[href*="facebook.com"]::before {
    content: "\f39e";
}

.nav-social .social-menu .social-icon a[href*="instagram.com"]::before {
    content: "\f16d";
}

.search-box-wrapper {
    position: absolute;
    z-index: 9999999;
    right: 0;
    display: none;
    background: transparent !important;
    box-shadow: none !important;
    max-width: 900px !important;
}

.search-box-wrapper input[type="text"] {
    width: 100%;
    float: left;
    padding-left: 20px;
    border: none;
    font-size: 20px;
    color: #4e4e4e;
    padding: 18px 15px;
    height: 50px !important;
    border-radius: 5px !important;
}

.search-box-wrapper button {
    position: absolute;
    right: 5px;
    top: 0;
    width: 50px;
    height: 100%;
    border: none;
    box-shadow: none;
    cursor: pointer;
    border-radius: 0;
    background: transparent;
}

.search-box-wrapper button i {
    color: #e25470;
}

.search-box-overlay {
    top: 0 !important;
    background-color: #fff !important;
    z-index: 999999 !important;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2) !important;
    border-bottom: 10px solid #e25470;
}

.close-container {
    position: absolute;
    margin: auto;
    width: 50px;
    height: 50px;
    cursor: pointer;
    left: 50%;
    top: -200px;
    transform: translate(-50%, -50%);
}

.leftright {
    height: 4px;
    width: 50px;
    position: absolute;
    margin-top: 24px;
    background-color: #4e4e4e;
    border-radius: 2px;
    transform: rotate(45deg);
    transition: all .3s ease-in;
}

.rightleft {
    height: 4px;
    width: 50px;
    position: absolute;
    margin-top: 24px;
    background-color: #4e4e4e;
    border-radius: 2px;
    transform: rotate(-45deg);
    transition: all .3s ease-in;
}

.close-container:hover .leftright {
    transform: rotate(-45deg);
}

.close-container:hover .rightleft {
    transform: rotate(45deg);
}

/* ========== FIX 1: Sticky Header - Mobile Hide ========== */
@media (max-width: 1199px) {
    .sticky-header-wrapper {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
}

.sticky-header-wrapper {
    background: rgba(255, 255, 255, 0.98);
    z-index: 9999;
    padding-top: 5px;
    padding-bottom: 5px;
    box-shadow: 0 10px 40px 0 rgba(47, 47, 47, 0.1);
    visibility: hidden;
    left: 0;
    position: fixed;
    opacity: 0;
    transition: all 0.4s ease-in-out;
    top: -30px;
}

.sticky-header-wrapper .logo-wrap img {
    max-width: 160px;
}

.sticky-header-wrapper .main-navigation .navbar-nav .nav-item {
    padding: 15px 15px;
}

.sticky-header-wrapper .main-navigation .navbar-nav .nav-link {
    font-size: 13px;
}

.mobile-header {
    display: none;
    background: #fff;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    z-index: 10;
}

.mobile-logo-area-wrapper {
    border-bottom: 1px solid #ededed;
    z-index: 999999;
    background: #fff;
    position: relative;
}

.mobile-logo-area {
    padding-bottom: 20px;
    padding-top: 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.mobile-logo a img {
    max-height: 80px;
    max-width: 150px;
}

.mobile-logo-area .logo-title-wrap {
    display: flex;
    align-items: center;
    margin-right: auto;
}

.search-icon-mobile {
    margin-top: auto;
    margin-bottom: auto;
    margin-left: auto;
    margin-right: 10px;
    line-height: 1;
}

.search-icon-mobile i {
    font-size: 20px;
    color: #525151;
    font-weight: 700;
}

.search-icon-mobile .search-toggle-mobile {
    cursor: pointer;
}

.mobile-menu-toggle {
    margin-right: 0;
    margin-left: 20px;
    margin-top: auto;
    margin-bottom: auto;
    line-height: 1.1;
}

.hamburger {
    padding: 15px;
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: .15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
}

.hamburger-box {
    width: 30px !important;
    height: 22px !important;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
    width: 30px !important;
    height: 3px !important;
    background-color: #525151;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: .15s;
    transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block;
    width: 30px !important;
    height: 3px !important;
    background-color: #525151;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: .15s;
    transition-timing-function: ease;
}

.hamburger-inner::before {
    top: -8px !important;
}

.hamburger-inner::after {
    top: -17px !important;
}

.hamburger-collapse .hamburger-inner {
    top: auto;
    bottom: 0;
    transition-duration: .15s;
    transition-delay: .15s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger-collapse .hamburger-inner::after {
    top: -20px;
    transition: top .3s .3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity .1s linear;
}

.hamburger-collapse .hamburger-inner::before {
    transition: top .12s .3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform .15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger-collapse.is-active .hamburger-inner {
    transform: translate3d(0, -10px, 0) rotate(-45deg);
    transition-delay: .32s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger-collapse.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top .3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity .1s .27s linear;
}

.hamburger-collapse.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-90deg);
    transition: top .12s .18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform .15s .42s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.mobile-submenu-toggle {
    float: right;
    cursor: pointer;
    padding: 12px 0;
    color: #444;
}

.mobile-submenu-toggle:hover {
    color: #e25470;
}

.mobile-submenu-toggle-icon {
    font-size: 18px;
    color: #e25470;
    transition: all 0.4s ease-in-out;
}

.search-box-mobile-wrapper {
    display: none;
    padding: 15px 0;
}

.search-box-mobile-wrapper input[type="text"] {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #eee;
    border-radius: 5px;
    font-size: 16px;
}

.search-box-mobile-wrapper button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    background: transparent;
    border: none;
    padding: 0 15px;
}

.search-box-mobile-wrapper button i {
    color: #e25470;
}

.side-mobile-menu {
    background: #fff;
    width: 80%;
    height: 100vh;
    position: fixed;
    transition: .3s;
    left: -9999px;
    top: 0;
    transition-timing-function: cubic-bezier(.9, 0, 1, 1);
    z-index: 3;
    border-bottom: 1px dashed rgba(232, 232, 232, 0.3);
    overflow-y: scroll;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2);
    z-index: 99999;
    padding: 30px;
}

.side-mobile-menu.open {
    left: 0;
    transition: .3s;
    transition-timing-function: cubic-bezier(.9, 0, 1, 1);
}

.side-mobile-menu .mobile-logo {
    padding: 30px 5px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.side-mobile-menu .mobile-logo img {
    max-width: 150px;
}

.side-mobile-menu .mobile-menu {
    margin: 20px 0;
    background: #fff;
    box-shadow: 0 8px 11px 4px rgba(158, 158, 158, 0.1);
}

.side-mobile-menu .mobile-menu li {
    list-style: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    font-weight: 500;
    position: relative;
}

.side-mobile-menu .mobile-menu li ul li {
    border-bottom: none;
}

.side-mobile-menu .mobile-menu li ul li a {
    padding: 8px 12px;
}

.side-mobile-menu .mobile-menu ul {
    padding: 0;
    margin-bottom: 0;
}

.side-mobile-menu .mobile-menu ul ul {
    padding-bottom: 10px;
}

.side-mobile-menu .mobile-menu li a {
    display: block;
    padding: 15px 20px;
    color: #444;
    font-family: "Manrope", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
}

.side-mobile-menu .mobile-menu .menu-item-has-children ul li a {
    text-transform: none;
    font-weight: 500;
    color: #686868;
}

.side-mobile-menu .mobile-menu .current-menu-item a,
.side-mobile-menu .mobile-menu .current_page_item a {
    color: #e25470;
}

.side-mobile-menu .mobile-submenu-toggle {
    position: absolute;
    right: 0;
    top: 0;
    width: 150px;
    height: 60px;
    z-index: 100;
    text-align: center;
    cursor: pointer;
    float: none;
}

.side-mobile-menu .mobile-submenu-toggle-icon {
    font-size: 18px;
    color: #e25470;
    position: absolute;
    right: 30px;
    top: 35%;
    transition: all 0.4s ease-in-out;
}

.side-mobile-menu .logo-title-wrap {
    display: flex;
    align-items: center;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99998;
    display: none;
}

.mobile-menu-overlay.show {
    display: block;
}

@media (max-width: 1199px) {
    .header-top {
        display: none;
    }
    .header-four .main-navigation {
        display: none;
    }
    .header-four .nav-icons-right {
        display: none;
    }
    .header-four .nav-social {
        display: none;
    }
    .mobile-header {
        display: block;
    }
    .header-menu-row {
        justify-content: space-between;
    }
    .logo-title-wrap {
        margin-right: 0;
    }
}

@media (max-width: 991px) {
    .header-four .main-navigation {
        display: none;
    }
    .header-four .nav-icons-right {
        display: none !important;
    }
    .header-four .nav-social {
        display: none !important;
    }
    .mobile-header {
        display: block;
    }
}

@media (min-width: 1200px) {
    .mobile-header {
        display: none !important;
    }
}

/*AAAAAAAAAAAAAAAAAAAAAAA!!! HEADER STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! HERO SLIDER STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/

.hero-slider-section {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.heroSwiper {
    width: 100%;
    height: 600px;
}

.heroSwiper .swiper-slide {
    position: relative;
    overflow: hidden;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-overlay-one {
    background: rgba(255, 255, 255, 0.4);
}

.slide-overlay-two {
    background: rgba(255, 255, 255, 0.8);
}

.slide-overlay-three {
    background: rgba(255, 255, 255, 0.8);
}

.slide-content-wrapper {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.slide-content {
    max-width: 60%;
    flex: 0 0 60%;
    text-align: center;
    margin: 0 auto;
    padding: 20px;
}

.slide-subtitle {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #e25470;
    color: #fff;
    padding: 5px 20px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 15px;
}

.slide-title {
    font-size: 70px;
    font-weight: 800;
    color: #1d1d18;
    line-height: 1.1;
    max-width: 100%;
}

.slide-description {
    font-size: 22px;
    color: #1c1c1c;
    max-width: 1000px;
    margin: 35px auto 0;
    font-weight: 500;
    text-align: center;
}

.slide-btn-wrapper {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.slide-btn {
    background: #e25470;
    color: #fff;
    padding: 15px 40px;
    border-radius: 10px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
}

.slide-btn:hover {
    background: #1d1d18;
    color: #fff;
}

.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 10px;
    color: #e25470;
    transition: all 0.4s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.heroSwiper .swiper-button-prev {
    left: auto;
    right: 80px;
}

.heroSwiper .swiper-button-next {
    left: auto;
    right: 20px;
}

.heroSwiper .swiper-button-next:hover,
.heroSwiper .swiper-button-prev:hover {
    background: #e25470;
    color: #fff;
}

.heroSwiper .swiper-button-next::after,
.heroSwiper .swiper-button-prev::after {
    font-size: 25px;
}

@media (max-width: 767px) {
    .heroSwiper {
        height: 500px;
    }
    .slide-title {
        font-size: 35px;
    }
    .slide-description {
        font-size: 16px;
    }
    .slide-content {
        max-width: 100%;
        flex: 0 0 100%;
    }
}

@media (max-width: 575px) {
    .heroSwiper {
        height: 450px;
    }
    .slide-title {
        font-size: 28px;
    }
    .slide-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
}

/*AAAAAAAAAAAAAAAAAAAAAAA!!! HERO SLIDER STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! ABOUT SECTION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/

.about-section {
    padding: 95px 0 80px;
    overflow: hidden;
    position: relative;
}

.about-heading {
    margin-bottom: 10px;
}

.about-title {
    font-size: 40px;
    color: #1d1d18;
    margin-bottom: 10px;
}

.heading-sep {
    display: inline-block;
    width: 50px;
    height: 3px;
    background: #e25470;
    border-radius: 20px;
}

.about-subtitle {
    font-size: 18px;
    color: #e25470;
    margin: 15px 0;
    font-weight: 600;
}

.about-text {
    color: #6a6a6a;
    margin-bottom: 15px;
    font-size: 16px;
}

.about-checklist {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.about-checklist li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #6a6a6a;
}

.about-checklist li i {
    color: #e25470;
    font-size: 18px;
    flex-shrink: 0;
}

.about-btn-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.about-btn {
    background: #e25470;
    color: #fff;
    padding: 15px 35px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
}

.about-btn:hover {
    background: #1d1d18;
    color: #fff;
}

.phone-icon-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.phone-icon {
    width: 46px;
    height: 46px;
    line-height: 46px;
    text-align: center;
    background: #e25470;
    border-radius: 50%;
    color: #fff;
    display: inline-block;
    flex-shrink: 0;
    font-size: 18px;
}

.phone-info h6 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
}

.phone-info h6 a {
    color: #1d1d18;
}

.phone-info h6 a:hover {
    color: #e25470;
}

.phone-info small {
    font-size: 14px;
    color: #6a6a6a;
    display: block;
}

.stats-row {
    display: flex;
    justify-content: space-between;
    margin-top: 35px;
    flex-wrap: wrap;
    gap: 20px;
}

.stats-row .stat-item {
    text-align: left;
    flex: 1;
    min-width: 80px;
}

.stats-row .stat-number {
    font-size: 60px;
    font-weight: 900;
    color: #e25470;
    margin: 0;
    line-height: 1.1;
}

.stats-row .stat-number span {
    font-size: 60px;
    color: #e25470;
}

.stats-row p {
    font-size: 16px;
    color: #6a6a6a;
    margin: 5px 0 0;
    font-weight: 500;
}

.about-images-wrapper {
    position: relative;
}

.about-images-wrapper .row {
    gap: 0;
}

.about-images-wrapper .col-6 {
    padding: 0 8px;
}

.about-images-wrapper img {
    border-radius: 10px;
    width: 100%;
    height: auto;
}

@media (max-width: 991px) {
    .stats-row .stat-number {
        font-size: 40px;
    }
    .stats-row .stat-number span {
        font-size: 40px;
    }
    .about-images-wrapper .col-6 {
        padding: 0 6px;
    }
}

@media (max-width: 767px) {
    .about-title {
        font-size: 28px;
    }
    .about-btn-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
    .stats-row .stat-item {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 20px;
    }
    .stats-row .stat-number {
        font-size: 35px;
    }
    .stats-row .stat-number span {
        font-size: 35px;
    }
    .about-images-wrapper .col-6 {
        padding: 0 5px;
    }
}

/*AAAAAAAAAAAAAAAAAAAAAAA!!! ABOUT SECTION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! SERVICES SECTION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/

.services-section-wrapper {
    padding: 0 0 90px 0;
    background: #F9F9F9;
    position: relative;
    z-index: 2;
}

.services-header {
    text-align: center;
    padding: 85px 0 30px;
}

.services-title {
    font-size: 40px;
    color: #1d1d18;
}

.heading-sep-center {
    display: block;
    width: 50px;
    height: 3px;
    background: #e25470;
    border-radius: 20px;
    margin: 0 auto;
}

.services-subtitle {
    font-size: 16px;
    color: #6a6a6a;
    max-width: 700px;
    margin: 20px auto 0;
}

.service-block {
    background: #fff;
    border-radius: 10px;
    padding: 15px 25px 25px;
    box-shadow: 0 8px 11px 4px rgba(154, 154, 154, 0.1);
    transition: all 0.4s ease-in-out;
    text-align: left;
}

.service-block:hover {
    transform: translateY(-10px);
}

.service-block-design-two-top {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.service-detail-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.service-detail-icon {
    position: relative;
    display: inline-block;
    font-size: 40px;
    color: #e25470;
    transition: all 0.5s linear;
    transform: scale(1);
}

.service-detail-icon i {
    z-index: 2;
    position: relative;
}

.service-detail-icon-wrap {
    width: 65px;
    height: 65px;
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #e25470;
    opacity: 0.15;
    border-radius: 10px;
    z-index: 0;
    transition: all 0.4s ease-in-out;
    box-shadow: 0 8px 11px 4px rgba(154, 154, 154, 0.1);
}

.service-block:hover .service-detail-icon-wrap {
    width: 55px;
    height: 55px;
}

.service-block:hover .service-detail-icon {
    transform: scale(0.9);
}

.service-main-name {
    font-size: 20px;
    font-weight: 700;
    color: #1d1d18;
    margin: 0;
    position: relative;
    padding-top: 15px;
}

.service-main-name a {
    color: #1d1d18;
}

.service-main-name a:hover {
    color: #e25470;
}

.service-name-underline {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 4px;
    width: 40px;
    background: #e25470;
    border-radius: 10px;
}

.service-block-img {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.service-block-img img {
    width: 100%;
    border-radius: 10px;
    transition: all 0.4s ease-in-out;
}

.service-block:hover .service-block-img img {
    transform: scale(1.1);
}

.img-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: "";
    background: #134274;
    border-radius: 10px;
    transition: all 500ms ease;
    transform: translate3d(0, -100%, 0);
    z-index: 1;
    opacity: 0.5;
}

.service-block:hover .img-overlay {
    transform: translate3d(0, 0, 0);
}

.stronghold-services-wrapper {
    padding: 30px 10px;
    position: relative;
    overflow: hidden;
}

.stronghold-service-carousel {
    display: flex;
    transition: transform 0.3s ease;
}

.stronghold-service-carousel .swiper-slide {
    flex-shrink: 0;
    width: calc(33.333% - 20px);
    margin-right: 30px;
}

.service-translate {
    transition: all 0.4s ease-in-out;
}

.service-translate:hover {
    transform: translateY(-10px);
}

.services-buttons-wrapper {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.services-buttons-wrapper .service-btn {
    background: #e25470;
    color: #fff;
    padding: 15px 30px;
    border-radius: 10px;
}

.services-buttons-wrapper .service-btn:hover {
    background: #1d1d18;
    color: #fff;
}

.services-buttons-wrapper .service-btn-dark {
    background: #1b1b1b;
    color: #fff;
    padding: 15px 30px;
    border-radius: 10px;
}

.services-buttons-wrapper .service-btn-dark:hover {
    background: #e25470;
    color: #fff;
}

.arrows-hidden-desktop .swiper-button-next,
.arrows-hidden-desktop .swiper-button-prev {
    display: none !important;
}

.dots-hidden-desktop .swiper-pagination {
    display: none !important;
}

@media (max-width: 991px) {
    .stronghold-service-carousel .swiper-slide {
        width: calc(50% - 15px);
    }
}

@media (max-width: 767px) {
    .services-title {
        font-size: 28px;
    }
    .stronghold-service-carousel .swiper-slide {
        width: calc(100% - 0px);
    }
    .services-buttons-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .services-buttons-wrapper .btn {
        width: 100%;
        max-width: 300px;
    }
}

/*AAAAAAAAAAAAAAAAAAAAAAA!!! SERVICES SECTION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! PRODUCTS GALLERY SECTION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/

.products-gallery-section {
    padding: 80px 0;
    background: #ffffff;
}

.gallery-header {
    text-align: center;
    margin-bottom: 40px;
}

.gallery-title {
    font-size: 40px;
    color: #1d1d18;
}

.gallery-subtitle {
    font-size: 16px;
    color: #6a6a6a;
    max-width: 700px;
    margin: 20px auto 0;
}

.gallery-grid-wrapper {
    padding: 10px 0;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: all 0.5s ease-in-out;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(225, 84, 112, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease-in-out;
    color: #fff;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 40px;
    margin-bottom: 10px;
    transform: scale(0.5);
    transition: all 0.4s ease-in-out;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

.gallery-overlay span {
    font-size: 18px;
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    transform: translateY(20px);
    transition: all 0.4s ease-in-out;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* Gallery Modal */
.gallery-modal-content {
    background: transparent;
    border: none;
    box-shadow: none;
}

.gallery-modal-header {
    border: none;
    padding: 0 0 15px 0;
    background: transparent;
    justify-content: flex-end;
}

.gallery-close-btn {
    width: 50px;
    height: 50px;
    background: #e25470;
    border-radius: 50%;
    border: none;
    color: #fff;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
    opacity: 1;
}

.gallery-close-btn:hover {
    background: #1d1d18;
    transform: rotate(90deg);
}

.gallery-close-btn i {
    color: #fff;
}

.gallery-modal-body {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
}

.gallery-modal-body img {
    max-height: 70vh;
    border-radius: 10px;
}

.gallery-modal-caption {
    margin-top: 15px;
    font-size: 20px;
    font-weight: 700;
    color: #1d1d18;
    font-family: 'Manrope', sans-serif;
}

/* Responsive */
@media (max-width: 991px) {
    .gallery-title {
        font-size: 32px;
    }
    .gallery-item img {
        height: 220px;
    }
}

@media (max-width: 767px) {
    .gallery-title {
        font-size: 28px;
    }
    .gallery-item img {
        height: 200px;
    }
    .gallery-overlay i {
        font-size: 30px;
    }
    .gallery-overlay span {
        font-size: 16px;
    }
    .gallery-modal-body {
        padding: 15px;
    }
}

/*AAAAAAAAAAAAAAAAAAAAAAA!!! PRODUCTS GALLERY SECTION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! GET IN TOUCH SECTION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/

.get-in-touch-section {
    padding: 80px 0 90px;
    background: #F9F9F9;
}

.touch-header {
    text-align: center;
    margin-bottom: 50px;
}

.touch-title {
    font-size: 40px;
    color: #1d1d18;
}

.touch-subtitle {
    font-size: 16px;
    color: #6a6a6a;
    max-width: 700px;
    margin: 20px auto 0;
}

/* Left Column - Company Info */
.company-info-wrapper {
    background: #fff;
    padding: 40px 35px;
    border-radius: 15px;
    box-shadow: 0 8px 11px 4px rgba(154, 154, 154, 0.1);
}

.info-title {
    font-size: 28px;
    color: #1d1d18;
    margin-bottom: 15px;
}

.info-text {
    color: #6a6a6a;
    margin-bottom: 30px;
    font-size: 16px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.info-item:last-child {
    border-bottom: none;
}

.info-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(225, 84, 112, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #e25470;
    transition: all 0.4s ease-in-out;
}

.info-item:hover .info-icon {
    background: #e25470;
    color: #fff;
    transform: scale(1.05);
}

.info-content h6 {
    font-size: 16px;
    font-weight: 700;
    color: #1d1d18;
    margin: 0 0 3px 0;
}

.info-content p {
    color: #6a6a6a;
    margin: 0;
    font-size: 15px;
}

.info-content p a {
    color: #6a6a6a;
}

.info-content p a:hover {
    color: #e25470;
}

.touch-social {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.touch-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(225, 84, 112, 0.12);
    color: #e25470;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.4s ease-in-out;
}

.touch-social a:hover {
    background: #e25470;
    color: #fff;
    transform: translateY(-5px);
}

/* Right Column - Contact Form */
.contact-form-wrapper {
    background: #fff;
    padding: 40px 35px;
    border-radius: 15px;
    box-shadow: 0 8px 11px 4px rgba(154, 154, 154, 0.1);
}

.form-title {
    font-size: 28px;
    color: #1d1d18;
    margin-bottom: 10px;
}

.form-subtitle {
    color: #6a6a6a;
    margin-bottom: 25px;
    font-size: 15px;
}

.contact-form .form-label {
    font-weight: 600;
    color: #1d1d18;
    font-size: 14px;
    font-family: 'Manrope', sans-serif;
}

.contact-form .required {
    color: #e25470;
}

.contact-form .form-control {
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 15px;
    color: #1d1d18;
    transition: all 0.4s ease-in-out;
    background: #fafafa;
}

.contact-form .form-control:focus {
    border-color: #e25470;
    box-shadow: 0 0 0 3px rgba(225, 84, 112, 0.15);
    background: #fff;
}

.contact-form .form-control::placeholder {
    color: #aaa;
    font-size: 14px;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 130px;
}

.submit-btn {
    background: #e25470;
    color: #fff;
    padding: 15px 40px;
    border-radius: 10px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.4s ease-in-out;
    width: 100%;
}

.submit-btn:hover {
    background: #1d1d18;
    color: #fff;
    transform: translateY(-3px);
}

.submit-btn i {
    margin-right: 10px;
}

/* Responsive */
@media (max-width: 991px) {
    .touch-title {
        font-size: 32px;
    }
    .company-info-wrapper,
    .contact-form-wrapper {
        padding: 30px 25px;
    }
    .info-title,
    .form-title {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .touch-title {
        font-size: 28px;
    }
    .get-in-touch-section {
        padding: 60px 0 70px;
    }
    .company-info-wrapper,
    .contact-form-wrapper {
        padding: 25px 20px;
    }
    .info-item {
        padding: 12px 0;
    }
    .touch-social {
        justify-content: center;
    }
    .submit-btn {
        padding: 12px 25px;
        font-size: 13px;
    }
}

@media (max-width: 575px) {
    .info-title,
    .form-title {
        font-size: 22px;
    }
    .info-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 16px;
    }
    .info-content h6 {
        font-size: 14px;
    }
    .info-content p {
        font-size: 13px;
    }
}

/*AAAAAAAAAAAAAAAAAAAAAAA!!! GET IN TOUCH SECTION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! HERO SINGLE BANNER STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/

.hero-single-section {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
    background: #134274;
    z-index: 1;
}

.hero-single-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-single-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 2;
}

.hero-single-content-wrapper {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-single-content {
    max-width: 700px;
    padding: 20px;
    text-align: left;
}

.hero-single-content .slide-subtitle {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: #e25470;
    color: #fff;
    padding: 6px 25px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 15px;
}

.hero-single-content .slide-title {
    font-size: 55px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-single-content .slide-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 550px;
}

.hero-single-content .slide-btn-wrapper {
    margin-top: 0;
}

.hero-single-content .slide-btn {
    background: #e25470;
    color: #ffffff;
    padding: 15px 40px;
    border-radius: 10px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    transition: all 0.4s ease-in-out;
}

.hero-single-content .slide-btn:hover {
    background: #ffffff;
    color: #1d1d18;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .hero-single-content .slide-title {
        font-size: 40px;
    }
    .hero-single-content .slide-description {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .hero-single-section {
        height: 60vh;
        min-height: 400px;
    }
    .hero-single-content {
        text-align: center;
        max-width: 100%;
    }
    .hero-single-content .slide-title {
        font-size: 30px;
    }
    .hero-single-content .slide-description {
        font-size: 15px;
        max-width: 100%;
    }
    .hero-single-content .slide-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .hero-single-section {
        height: 50vh;
        min-height: 350px;
    }
    .hero-single-content .slide-title {
        font-size: 24px;
    }
    .hero-single-content .slide-description {
        font-size: 14px;
    }
}

/*AAAAAAAAAAAAAAAAAAAAAAA!!! HERO SINGLE BANNER STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! FOOTER STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/

.site-footer {
    background: #134274;
    color: #ccc;
    overflow: hidden;
    position: relative;
}

.footer-main {
    padding: 80px 0 60px;
}

.footer-title {
    color: #fff;
    font-size: 25px;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 0;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #e25470;
    border-radius: 20px;
}

.footer-text {
    color: #dadada;
    font-size: 15px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #e25470;
    border-radius: 50%;
    color: #fff;
    transition: all 0.4s ease-in-out;
}

.footer-social a:hover {
    background: #fff;
    color: #e25470;
    transform: translateY(-5px);
}

.footer-contact .contact-item {
    display: flex;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    align-items: flex-start;
}

.footer-contact .contact-item:last-child {
    border-bottom: none;
}

.footer-contact .contact-item i {
    font-size: 22px;
    color: #e25470;
    margin-top: 3px;
    transition: all 0.4s ease-in-out;
    flex-shrink: 0;
}

.footer-contact .contact-item:hover i {
    color: #dadada;
}

.footer-contact .contact-label {
    display: block;
    font-size: 14px;
    color: #dadada;
}

.footer-contact .contact-value {
    display: block;
    color: #fff;
    font-weight: 600;
}

.footer-contact .contact-value a {
    color: #fff;
}

.footer-contact .contact-value a:hover {
    color: #e25470;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-links li:last-child {
    border-bottom: none;
}

.footer-links li a {
    color: #dadada;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s ease-in-out;
}

.footer-links li a i {
    color: #e25470;
    font-size: 12px;
    transition: all 0.4s ease-in-out;
}

.footer-links li a:hover {
    color: #e25470;
    padding-left: 5px;
}

.footer-links li a:hover i {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 0;
}

.footer-bottom p {
    color: #dadada;
    font-size: 15px;
    margin: 0;
    text-align: center;
}

@media (max-width: 991px) {
    .footer-main .row > div {
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .footer-title {
        font-size: 22px;
    }
    .footer-social {
        justify-content: flex-start;
    }
}

/*AAAAAAAAAAAAAAAAAAAAAAA!!! FOOTER STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! PEST ICONS FONT STARTS !!!AAAAAAAAAAAAAAAAAAA*/

@font-face {
    font-family: 'Pestraid';
    src: url('https://pestraid.strongholdthemes.com/demos/demo4/wp-content/themes/pest-raid/css/../fonts/Pestraid.ttf?nzg13g') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: block;
}

.pest-icon-termite:before {
    content: "\e969";
}
.pest-icon-cockroach:before {
    content: "\e940";
}
.pest-icon-rat1:before {
    content: "\e92a";
}
.pest-icon-mosquito:before {
    content: "\e928";
}
.pest-icon-bed-bug:before {
    content: "\e939";
}
.pest-icon-ant:before {
    content: "\e96d";
}

[class^="pest-icon-"] {
    font-family: 'Pestraid';
    speak: never;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/*AAAAAAAAAAAAAAAAAAAAAAA!!! PEST ICONS FONT ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! SERVICES SECTION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/

.services-section-wrapper {
    padding: 0 0 90px 0;
    background: #F9F9F9;
    position: relative;
    z-index: 2;
}

.services-header {
    text-align: center;
    padding: 85px 0 30px;
}

.services-title {
    font-size: 40px;
    color: #1d1d18;
}

.heading-sep-center {
    display: block;
    width: 50px;
    height: 3px;
    background: #e25470;
    border-radius: 20px;
    margin: 0 auto;
}

.services-subtitle {
    font-size: 16px;
    color: #6a6a6a;
    max-width: 700px;
    margin: 20px auto 0;
}

/* Product Grid */
.products-grid-wrapper {
    padding: 10px 0;
}

.product-block {
    background: #fff;
    border-radius: 10px;
    padding: 15px 25px 25px;
    box-shadow: 0 8px 11px 4px rgba(154, 154, 154, 0.1);
    transition: all 0.4s ease-in-out;
    text-align: left;
    height: 100%;
}

.product-block:hover {
    transform: translateY(-10px);
}

.product-block-top {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.product-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.product-icon {
    position: relative;
    display: inline-block;
    font-size: 40px;
    color: #e25470;
    transition: all 0.5s linear;
    transform: scale(1);
}

.product-icon i {
    z-index: 2;
    position: relative;
}

.product-icon-wrap {
    width: 65px;
    height: 65px;
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #e25470;
    opacity: 0.15;
    border-radius: 10px;
    z-index: 0;
    transition: all 0.4s ease-in-out;
    box-shadow: 0 8px 11px 4px rgba(154, 154, 154, 0.1);
}

.product-block:hover .product-icon-wrap {
    width: 55px;
    height: 55px;
}

.product-block:hover .product-icon {
    transform: scale(0.9);
}

.product-name {
    font-size: 20px;
    font-weight: 700;
    color: #1d1d18;
    margin: 0;
    position: relative;
    padding-top: 15px;
}

.product-name a {
    color: #1d1d18;
}

.product-name a:hover {
    color: #e25470;
}

.product-name-underline {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 4px;
    width: 40px;
    background: #e25470;
    border-radius: 10px;
}

.product-img {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.product-img img {
    width: 100%;
    border-radius: 10px;
    transition: all 0.4s ease-in-out;
}

.product-block:hover .product-img img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: "";
    background: #134274;
    border-radius: 10px;
    transition: all 500ms ease;
    transform: translate3d(0, -100%, 0);
    z-index: 1;
    opacity: 0.5;
}

.product-block:hover .product-overlay {
    transform: translate3d(0, 0, 0);
}

/* Buttons */
.products-buttons-wrapper {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.products-buttons-wrapper .product-btn {
    background: #e25470;
    color: #fff;
    padding: 15px 30px;
    border-radius: 10px;
}

.products-buttons-wrapper .product-btn:hover {
    background: #1d1d18;
    color: #fff;
}

.products-buttons-wrapper .product-btn-dark {
    background: #1b1b1b;
    color: #fff;
    padding: 15px 30px;
    border-radius: 10px;
}

.products-buttons-wrapper .product-btn-dark:hover {
    background: #e25470;
    color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
    .services-title {
        font-size: 32px;
    }
    .product-block {
        padding: 15px 20px 20px;
    }
}

@media (max-width: 767px) {
    .services-title {
        font-size: 28px;
    }
    .services-header {
        padding: 60px 0 20px;
    }
    .product-block {
        padding: 12px 15px 18px;
    }
    .product-icon {
        font-size: 30px;
    }
    .product-icon-wrap {
        width: 50px;
        height: 50px;
    }
    .product-name {
        font-size: 17px;
        padding-top: 12px;
    }
    .products-buttons-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .products-buttons-wrapper .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 575px) {
    .services-title {
        font-size: 24px;
    }
    .services-subtitle {
        font-size: 14px;
    }
    .product-block-top {
        flex-direction: column;
        align-items: flex-start;
    }
    .product-icon-wrapper {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .product-name-underline {
        left: 0;
    }
}

/*AAAAAAAAAAAAAAAAAAAAAAA!!! SERVICES SECTION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! MOBILE FIX - HIDE DESKTOP HEADER ON MOBILE STARTS !!!AAAAAAAAAAAAAAAAAAA*/

/* Hide desktop header on mobile/tablet devices */
@media (max-width: 991px) {
    .header-four {
        display: none !important;
    }
    
    /* Hide sticky header on mobile too */
    .sticky-header-wrapper {
        display: none !important;
    }
}

/* Ensure mobile header is visible only on mobile */
@media (min-width: 992px) {
    .mobile-header {
        display: none !important;
    }
}

/*AAAAAAAAAAAAAAAAAAAAAAA!!! MOBILE FIX - HIDE DESKTOP HEADER ON MOBILE ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/


/* ABOUT HERO SECTION - SINGLE IMAGE WITH TITLE & BLUR */
.about-hero-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-hero-section .hero-single-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(6px); /* blur effect applied to background image */
    transform: scale(1.05); /* prevents blur edge bleed */
    transition: filter 0.3s ease;
}

.about-hero-section .hero-single-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45); /* dark overlay for readability */
    z-index: 1;
}

.about-hero-section .hero-single-content-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 20px;
}

.about-hero-section .hero-single-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-hero-section .slide-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #f5c542;
    margin-bottom: 12px;
}

.about-hero-section .slide-title {
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 18px;
    line-height: 1.2;
}

.about-hero-section .slide-description {
    font-size: 1.25rem;
    color: #f0f0f0;
    max-width: 650px;
    margin: 0 auto;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    line-height: 1.6;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .about-hero-section {
        min-height: 50vh;
    }
    .about-hero-section .slide-title {
        font-size: 3rem;
    }
    .about-hero-section .slide-description {
        font-size: 1.1rem;
        padding: 0 15px;
    }
}

@media (max-width: 576px) {
    .about-hero-section {
        min-height: 45vh;
    }
    .about-hero-section .slide-title {
        font-size: 2.2rem;
    }
    .about-hero-section .slide-subtitle {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }
    .about-hero-section .slide-description {
        font-size: 1rem;
        padding: 0 10px;
    }
    .about-hero-section .hero-single-content-wrapper {
        padding: 40px 15px;
    }
}
------------------------------------

/* MIYAZAKI MANGO SPECIFICATIONS SECTION - RESPONSIVE STYLES */

.mango-specifications-section {
    padding: 80px 0;
    background: #f8fbf7;
}

/* Left Column - Image */
.spec-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    transition: transform 0.4s ease;
}

.spec-image-wrapper:hover {
    transform: scale(1.02);
}

.spec-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

/* Right Column - Content */
.spec-content-wrapper {
    padding-left: 10px;
}

.spec-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #2d5a1e;
    margin-bottom: 8px;
    font-family: 'Manrope', sans-serif;
}

.heading-sep {
    display: block;
    width: 60px;
    height: 3px;
    background: #6ab04c;
    margin: 12px 0 20px 0;
    border-radius: 4px;
}

.spec-description {
    font-size: 1.05rem;
    color: #4a5a4a;
    line-height: 1.7;
    margin-bottom: 25px;
    font-weight: 400;
}

/* Specifications Table */
.spec-table-wrapper {
    margin-bottom: 28px;
    background: #ffffff;
    border-radius: 12px;
    padding: 5px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    overflow: hidden;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.spec-table tr {
    border-bottom: 1px solid #edf3ea;
    transition: background 0.2s ease;
}

.spec-table tr:last-child {
    border-bottom: none;
}

.spec-table tr:hover {
    background: #f4faf2;
}

.spec-table td {
    padding: 14px 18px;
    vertical-align: middle;
}

.spec-label {
    font-weight: 700;
    color: #2d5a1e;
    width: 38%;
    background: #f7fbf5;
    letter-spacing: 0.3px;
}

.spec-value {
    color: #3d4d3d;
    font-weight: 500;
    width: 62%;
}

/* Bulk Order Information */
.bulk-order-info {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #e8f5e3;
    padding: 18px 22px;
    border-radius: 12px;
    margin: 20px 0 25px 0;
    border-left: 4px solid #6ab04c;
}

.bulk-order-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: #6ab04c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
}

.bulk-order-text h6 {
    font-weight: 700;
    color: #1d4a0e;
    margin-bottom: 4px;
    font-size: 1.05rem;
}

.bulk-order-text p {
    color: #3d5a3d;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Request Bulk Quote Button */
.spec-btn-wrapper {
    margin-top: 10px;
}

.spec-btn {
    background: linear-gradient(135deg, #2d5a1e, #4a8c36);
    color: #ffffff;
    padding: 14px 38px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    border: none;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(45, 90, 30, 0.35);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'DM Sans', sans-serif;
}

.spec-btn i {
    margin-right: 10px;
}

.spec-btn:hover {
    background: linear-gradient(135deg, #1d4a0e, #3a7a28);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(45, 90, 30, 0.45);
    color: #ffffff;
}

/* ========== RESPONSIVE STYLES ========== */

@media (max-width: 992px) {
    .mango-specifications-section {
        padding: 60px 0;
    }
    
    .spec-content-wrapper {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .spec-title {
        font-size: 1.9rem;
    }
    
    .spec-table td {
        padding: 12px 14px;
        font-size: 0.92rem;
    }
}

@media (max-width: 768px) {
    .mango-specifications-section {
        padding: 45px 0;
    }
    
    .spec-title {
        font-size: 1.7rem;
    }
    
    .spec-description {
        font-size: 0.98rem;
    }
    
    .spec-table td {
        padding: 10px 12px;
        font-size: 0.88rem;
    }
    
    .spec-label {
        width: 42%;
    }
    
    .spec-value {
        width: 58%;
    }
    
    .bulk-order-info {
        flex-direction: column;
        align-items: stretch;
        padding: 16px 18px;
    }
    
    .bulk-order-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .spec-btn {
        padding: 12px 28px;
        font-size: 0.95rem;
        width: 100%;
        text-align: center;
    }
    
    .spec-image-wrapper:hover {
        transform: none;
    }
}

@media (max-width: 480px) {
    .mango-specifications-section {
        padding: 35px 0;
    }
    
    .spec-title {
        font-size: 1.4rem;
    }
    
    .spec-table td {
        padding: 8px 10px;
        font-size: 0.82rem;
    }
    
    .spec-label {
        width: 45%;
        font-size: 0.82rem;
    }
    
    .spec-value {
        width: 55%;
        font-size: 0.82rem;
    }
    
    .bulk-order-text p {
        font-size: 0.88rem;
    }
    
    .spec-btn {
        font-size: 0.88rem;
        padding: 11px 20px;
    }
}
-------------------------

/* ============================================================ */
/* MOBILE PAR STICKY HEADER HATANA - START */
/* ============================================================ */

/* Mobile view mein sticky header hide karo */
@media (max-width: 575px) {
    .masthead.sticky-header-wrapper {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        position: fixed !important;
        top: -9999px !important;
        pointer-events: none !important;
    }
}

/* Ya agar aap chahte ho ke mobile par sticky header bilkul na aaye */
@media (max-width: 767px) {
    .masthead.sticky-header-wrapper {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        position: fixed !important;
        top: -9999px !important;
        pointer-events: none !important;
    }
}

/* ============================================================ */
/* MOBILE PAR STICKY HEADER HATANA - END */
/* ============================================================ */
