/*AAAAAAAAAAAAAAAAAAAAAAA!!! GLOBAL RESET & VARIABLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
:root {
    --primary-color: #462b34;
    --second-color: #ff3b3e;
    --white-color: #ffffff;
    --black-color: #000000;
    --dark-color: #222222;
    --heading-font: 'Nunito Sans', sans-serif;
    --paragraph-font: 'Mulish', sans-serif;
    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--paragraph-font);
    font-size: 16px;
    line-height: 30px;
 color: var(--primary-color);
}

a {
    text-decoration: none;
    transition: all 0.5s ease;
}

.container {
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1170px;
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 1199px) { .container { max-width: 960px; padding: 0 15px; } }
@media (max-width: 991px) { .container { max-width: 720px; } }
@media (max-width: 767px) { .container { max-width: 540px; } }

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-lg-4 {
    width: 33.333%;
    padding: 0 15px;
}
.col-lg-5, .col-lg-7 {
    padding: 0 15px;
}
.col-lg-7 { width: 58.333%; }
.col-lg-5 { width: 41.666%; }

@media (max-width: 991px) {
    .col-lg-4 { width: 50%; }
    .col-lg-5, .col-lg-7 { width: 100%; }
}
@media (max-width: 767px) {
    .col-lg-4 { width: 100%; }
}

.pd_0 { padding: 0; }
/*AAAAAAAAAAAAAAAAAAAAAAA!!! GLOBAL RESET & VARIABLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! HEADER STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.header {
    position: relative;
    background: #ffe9e9;
    z-index: 3;
}

.header .top_bar {
    position: relative;
    background: #1e1e2a;
    z-index: 2;
}

.header .top_bar .top_bar_inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-flow: row wrap;
}

.header .header_info {
    display: flex;
    align-items: center;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    margin-left: 40px;
    flex-flow: row wrap;
}

.header .schedule {
    position: relative;
    font-family: var(--heading-font);
    font-size: 14px;
    font-weight: var(--font-regular);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: auto;
    color: var(--white-color);
    margin: 0px 40px;
}

.header .schedule img {
    margin-right: 15px;
}

.header .schedule span {
    color: var(--second-color);
}

.header .phone {
    position: relative;
    font-family: var(--paragraph-font);
    font-weight: var(--font-bold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: auto;
    background: var(--second-color);
    color: var(--white-color);
    line-height: 18px;
    padding: 20px 30px;
}

.header .phone > * {
    position: relative;
}

.header .phone img {
    margin-right: 10px;
}

.header .phone span {
    font-family: var(--heading-font);
    font-weight: var(--font-semibold);
}

.header .phone::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 7px;
    width: calc(100% - 14px);
    height: calc(100% - 14px);
    background: #e33134;
    border: 1px dashed #ff6b6d;
}

.header .header_social .top_social {
    padding: 0px;
    margin-bottom: 0px;
}

.header .header_social .top_social li {
    list-style: none;
    display: inline-block;
    position: relative;
    text-transform: uppercase;
    padding: 0px 15px;
}

.header .header_social .top_social li:first-child {
    padding-left: 0px;
}

.header .header_social .top_social li:last-child {
    padding-right: 0px;
}

.header .header_social .top_social li a {
    font-size: 16px;
    text-align: center;
    color: var(--white-color);
    display: block;
    outline: none;
}

.header .header_social .top_social li a:hover {
    color: var(--second-color);
}

.header .ma5menu__toggle {
    background: transparent;
    width: 40px;
    height: 40px;
    line-height: 38px;
    padding: 0px;
    color: var(--second-color);
    font-size: 24px;
    border: 1px solid var(--second-color);
    display: none;
    transition: all 0.5s ease;
    cursor: pointer;
}

.header .ma5menu__toggle:focus {
    outline: none;
}

.header .ma5menu__toggle:hover {
    background: var(--second-color);
    color: var(--white-color);
}

.header .header_search {
    margin: 0px 30px;
}

.header .header_search .search_form {
    max-width: 250px;
    width: 140px;
    position: relative;
    border: 0px solid transparent;
    transition: all 0.5s ease;
}

.header .header_search .search_form .form-control {
    font-family: var(--paragraph-font);
    font-size: 14px;
    padding: 0px 0px 0px 50px;
    height: 50px;
    border: 0px solid var(--primary-color);
    border-radius: 30px;
    color: var(--second-color);
    background: #ffd2d2;
    transition: all 0.5s ease;
    width: 100%;
}

.header .header_search .search_form .form-control:focus {
    box-shadow: none;
    outline: none;
}

.header .header_search .search_form .form-control-submit {
    position: absolute;
    top: 0;
    left: 30px;
    border: 0px;
    background: transparent;
    padding: 0;
    font-size: 22px;
    line-height: 50px;
    color: #e33134;
    cursor: pointer;
}

.header .logo {
    position: absolute;
    z-index: 3;
    text-align: center;
}

.header .logo a {
    display: inline-block;
}

.header .logo img {
    transition: all 0.5s ease;
    max-height: 140px;
    width: auto;
}

.header .middle_bar {
    position: relative;
}

.header .middle_bar_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 60px;
}

.header .header_right_part {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: auto;
}

.header .mainnav ul.main_menu {
    padding: 0px;
    margin: 0px;
}

.header .mainnav ul.main_menu li {
    border: 0;
    list-style: none;
    line-height: 1;
    display: inline-block;
    position: relative;
    font-size: 14px;
    font-weight: var(--font-medium);
    line-height: 24px;
}

.header .mainnav ul.main_menu li a {
    border: 0;
    font-family: var(--heading-font);
    font-size: 17px;
    font-weight: var(--font-bold);
    line-height: 24px;
    text-align: center;
    color: var(--primary-color);
    padding: 38px 0px;
    display: inline-block;
}

.header .mainnav ul.main_menu li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0px, 0px, 0px);
}

.header .mainnav ul.main_menu li.current > a,
.header .mainnav ul.main_menu li.active > a,
.header .mainnav ul.main_menu li:hover > a {
    color: var(--second-color);
}

.header .mainnav ul.main_menu li ul {
    position: absolute;
    left: 0;
    opacity: 0;
    visibility: hidden;
    min-width: 250px;
    background: #401818;
    border-top: 3px solid var(--second-color);
    border-radius: 0px 0px 10px 10px;
    transition: all 0.5s ease;
    transform: translate3d(15px, 0px, 0px);
    z-index: 5;
}

.header .mainnav ul.main_menu li ul li {
    width: 100%;
    padding: 0px 25px;
}

.header .mainnav ul.main_menu li ul li a {
    font-size: 16px;
    font-weight: var(--font-semibold);
    color: var(--white-color);
    padding: 13px 20px;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header .mainnav ul.main_menu li ul li a:hover {
    color: var(--second-color);
}

.header .mainnav ul.main_menu li ul li:last-child a {
    border-bottom: none;
}

.header .mainnav ul.main_menu > li {
    margin: 0px 25px;
}

.header .mainnav ul.main_menu > li:first-child {
    margin-left: 0px;
}

.header .mainnav ul.main_menu > li:last-child {
    margin-right: 0px;
}

.aside_open {
    background: var(--second-color);
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 100%;
    color: var(--white-color);
    font-size: 21px;
    cursor: pointer;
}

@media (max-width: 991px) {
    .header .mainnav ul.main_menu {
        display: none;
    }
    .header .ma5menu__toggle {
        display: block;
    }
    .header .top_bar .top_bar_inner {
        justify-content: center;
        flex-direction: column;
    }
    .header .header_info {
        margin-left: 0;
        margin-top: 10px;
    }
    .header .schedule {
        margin: 0 15px;
    }
    .header .logo {
        position: relative;
        margin-bottom: 20px;
    }
    .header .middle_bar_inner {
        flex-direction: column;
    }
    .header .header_right_part {
        margin-left: 0;
    }
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! HEADER STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! SLIDER STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.theme_slider_1 {
    position: relative;
    z-index: 1;
}

.theme_slider_1 .slider {
    background-image: url('https://wpthemebooster.com/demo/themeforest/html/chaveiro/assets/images/slider/slider_bg1.jpg');
    background-position: top center;
    background-size: cover;
}

.slide_content {
    position: relative;
    z-index: 1;
    padding-top: 190px;
    padding-bottom: 165px;
    color: var(--white-color);
}

.slide_content span {
    color: var(--second-color);
}

.slide_content .sub_heading {
    font-family: var(--paragraph-font);
    font-weight: var(--font-extrabold);
    text-transform: uppercase;
}

.slide_content .heading {
    font-size: 72px;
    font-weight: var(--font-extrabold);
    line-height: 78px;
    margin: 35px 0 45px 0;
}

.slide_content .desc {
    font-size: 20px;
    font-weight: var(--font-semibold);
    line-height: 24px;
    border-left: 3px solid var(--second-color);
    padding-left: 20px;
}

.slider_button {
    margin-top: 35px;
}

.slide_content_img {
    position: absolute;
    bottom: 0;
    right: 0;
}

.button {
    position: relative;
    min-width: 200px;
    display: inline-block;
    font-family: var(--heading-font);
    font-size: 14px;
    line-height: 26px;
    font-weight: var(--font-extrabold);
    text-transform: uppercase;
    text-align: center;
    padding: 13px 30px;
    background: var(--second-color);
    color: var(--white-color);
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.5s ease;
}

.button:hover {
    background: #3f1817;
    color: var(--second-color);
}

.button.alt {
    background: var(--white-color);
    color: var(--second-color);
}

.button.alt:hover {
    background: var(--second-color);
    color: var(--white-color);
}

@media (max-width: 991px) {
    .slide_content .heading {
        font-size: 48px;
        line-height: 56px;
    }
    .slide_content {
        padding: 80px 0;
    }
    .slide_content_img { display: none; }
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! SLIDER STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! SERVICES (ICON BOXES) STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.services {
    background: #fff7f7;
}

.iconbox3 {
    position: relative;
    background: #13131c;
    margin: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    height: 100%;
}

.iconbox3 .iconbox_wrapper {
    display: flex;
    padding: 60px;
}

.iconbox3 .iconbox_image {
    position: relative;
    margin-right: 40px;
    min-width: 70px;
}

.iconbox3 .iconbox_icon img {
    width: 60px;
    height: 60px;
    background: var(--second-color);
    border-radius: 50%;
    padding: 12px;
    transition: all 0.5s ease;
}

.iconbox3 .iconbox_icon .first_icon {
    position: absolute;
    left: 0;
    top: 0;
}

.iconbox3 .iconbox_icon .second_icon {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
}

.iconbox3 .iconbox_content h3 {
    font-weight: var(--font-bold);
    line-height: 30px;
    text-transform: capitalize;
    color: var(--second-color);
    margin-bottom: 20px;
    font-size: 22px;
}

.iconbox3 .iconbox_content h3 a {
    color: var(--second-color);
}

.iconbox3 .iconbox_content p {
    font-size: 18px;
    color: var(--white-color);
    font-weight: var(--font-semibold);
    line-height: 30px;
    margin-bottom: 0;
}

.read_more {
    margin-top: 30px;
}

.read_more a {
    position: relative;
    font-family: var(--heading-font);
    font-size: 16px;
    font-weight: var(--font-bold);
    text-transform: uppercase;
    color: var(--white-color);
    padding-left: 25px;
    display: inline-block;
    overflow: hidden;
}

.read_more a span {
    position: relative;
    z-index: 2;
}

.read_more a::before {
    content: "\f30f";
    font-family: 'Ionicons';
    position: absolute;
    left: 0;
    font-size: 22px;
    color: var(--second-color);
    transition: all 0.7s ease;
}

.read_more a:hover {
    padding-left: 0;
    padding-right: 25px;
    color: var(--second-color);
}

.read_more a:hover::before {
    left: calc(100% - 15px);
}

.iconbox3.first {
    background: #13131c;
}

.iconbox3.second {
    background: #1e1e2a;
}

.iconbox3.third {
    background: #3f1817;
}

.iconbox3:hover {
    background: var(--second-color);
}

.iconbox3:hover .iconbox_icon .first_icon {
    opacity: 0;
    visibility: hidden;
}

.iconbox3:hover .iconbox_icon .second_icon {
    opacity: 1;
    visibility: visible;
}

.iconbox3:hover .iconbox_content h3 a {
    color: var(--white-color);
}

.iconbox3:hover .read_more a {
    color: var(--white-color);
}

.iconbox3:hover .read_more a::before {
    color: var(--white-color);
}

@media (max-width: 991px) {
    .iconbox3 .iconbox_wrapper {
        padding: 30px;
    }
    .iconbox3 .iconbox_image {
        margin-right: 30px;
    }
    .pd_0 {
        padding-left: 15px;
        padding-right: 15px;
    }
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! SERVICES (ICON BOXES) STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/


/*AAAAAAAAAAAAAAAAAAAAAAA!!! ABOUT 2-COLUMN FIXED (LEFT IMAGE + RIGHT TEXT) STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.about-two-col {
    padding: 100px 0;
    background: #fff7f7;
}

.about-two-col .row {
    display: flex;
    flex-wrap: nowrap;  /* Force no wrapping */
    align-items: center;
    gap: 50px;
}

/* LEFT COLUMN - IMAGE */
.about-left-img {
    width: 50%;
    flex: 0 0 50%;
}

.about-left-img .img-box {
    background: #ffe0e0;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
}

.about-left-img img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    display: block;
}

/* RIGHT COLUMN - TEXT */
.about-right-text {
    width: 50%;
    flex: 0 0 50%;
    padding-left: 0;
}

.about-right-text h2 {
    font-family: var(--heading-font);
    font-size: 40px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-right-text h2 span {
    color: var(--second-color);
}

.company-desc {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 35px;
}

.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.feat {
    width: calc(50% - 10px);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: var(--primary-color);
}

.feat i {
    font-size: 26px;
    color: var(--second-color);
}

.about-btn-main {
    display: inline-block;
    background: var(--second-color);
    color: white;
    padding: 14px 35px;
    border-radius: 40px;
    font-weight: 700;
    transition: all 0.4s;
    border: 2px solid var(--second-color);
}

.about-btn-main:hover {
    background: transparent;
    color: var(--second-color);
    transform: translateY(-3px);
}

/* Desktop large screens */
@media (min-width: 992px) {
    .about-two-col .row {
        flex-wrap: nowrap;
    }
    .about-left-img {
        width: 50%;
        flex: 0 0 50%;
    }
    .about-right-text {
        width: 50%;
        flex: 0 0 50%;
    }
}

/* Tablet screens - still force side by side */
@media (max-width: 991px) and (min-width: 769px) {
    .about-two-col .row {
        flex-wrap: nowrap;
        gap: 30px;
    }
    .about-left-img {
        width: 45%;
        flex: 0 0 45%;
    }
    .about-right-text {
        width: 55%;
        flex: 0 0 55%;
    }
    .about-right-text h2 {
        font-size: 28px;
    }
    .feat {
        width: 100%;
    }
}

/* Mobile screens - only then stack */
@media (max-width: 768px) {
    .about-two-col .row {
        flex-wrap: wrap;
        gap: 30px;
    }
    .about-left-img {
        width: 100%;
        flex: 0 0 100%;
    }
    .about-right-text {
        width: 100%;
        flex: 0 0 100%;
    }
    .about-right-text h2 {
        font-size: 28px;
    }
    .feat {
        width: 100%;
    }
    .about-btn-main {
        width: 100%;
        text-align: center;
    }
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! ABOUT 2-COLUMN FIXED ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/



/*============== POPULAR LOCKSMITH SERVICES CSS START ==============*/

.services_1 {
    background: #fff4f4;
    padding-bottom: 210px;
    padding-top: 80px;
}

.section_header {
    margin-bottom: 50px;
    position: relative;
}

.section_header.text-center {
    text-align: center;
}

.shadow_icon {
    margin-bottom: 15px;
}

.shadow_icon img {
    display: inline-block;
}

.section_sub_title {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #ff3b3e;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section_title {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 42px;
    font-weight: 800;
    line-height: 52px;
    color: #462b34;
    margin-bottom: 20px;
}

.section_desc {
    font-family: 'Mulish', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #656a7c;
    line-height: 30px;
}

.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-lg-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding-right: 15px;
    padding-left: 15px;
}

.col-md-6 {
    position: relative;
    width: 100%;
}

/* Iconbox2 - Service Cards */
.iconbox2 {
    position: relative;
    margin: 0px 0px 30px 0px;
}

.iconbox2 .iconbox_wrapper {
    -webkit-border-radius: 0px;
    border-radius: 0px;
    display: block;
    text-align: left;
}

.iconbox2 .iconbox_wrapper .iconbox_image {
    position: relative;
    overflow: hidden;
}

.iconbox2 .iconbox_wrapper .iconbox_image img {
    width: 100%;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.iconbox2:hover .iconbox_wrapper .iconbox_image img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.iconbox2 .iconbox_wrapper .iconbox_content {
    position: relative;
    padding: 45px 45px 45px 45px;
    margin: -135px 20px 0px 20px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.iconbox2 .iconbox_wrapper .iconbox_content:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    display: block;
    width: 55px;
    height: 55px;
    background: #ff3b3e;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.iconbox2:hover .iconbox_wrapper .iconbox_content:after {
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.iconbox2 .iconbox_wrapper .iconbox_content h3 {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 800;
    text-transform: capitalize;
    margin-bottom: 20px;
    font-size: 22px;
    line-height: 30px;
}

.iconbox2 .iconbox_wrapper .iconbox_content h3 a {
    color: #ff3b3e;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-decoration: none;
}

.iconbox2 .iconbox_wrapper .iconbox_content h3 a:hover {
    color: #fff;
}

.iconbox2 .iconbox_wrapper .iconbox_content .read_more {
    margin-top: 30px;
}

.iconbox2 .iconbox_wrapper .iconbox_content .read_more a {
    position: relative;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    padding-left: 25px;
    display: inline-block;
    overflow: hidden;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    text-decoration: none;
}

.iconbox2 .iconbox_wrapper .iconbox_content .read_more a span {
    position: relative;
    z-index: 2;
}

.iconbox2 .iconbox_wrapper .iconbox_content .read_more a::before {
    content: "\f30f";
    font-family: 'Ionicons';
    position: absolute;
    left: 0;
    font-size: 22px;
    font-weight: 400;
    color: #ff3b3e;
    -webkit-transition: all 0.7s ease;
    transition: all 0.7s ease;
}

.iconbox2 .iconbox_wrapper .iconbox_content .read_more a:hover {
    padding-left: 0px;
    padding-right: 25px;
}

.iconbox2 .iconbox_wrapper .iconbox_content .read_more a:hover::before {
    left: calc(100% - 15px);
}

/* Card Color Variants */
.iconbox2.first .iconbox_wrapper .iconbox_content {
    background: #13131c;
}

.iconbox2.second .iconbox_wrapper .iconbox_content {
    background: #1e1e2a;
}

.iconbox2.third .iconbox_wrapper .iconbox_content {
    background: #3f1817;
}

.iconbox2.first .iconbox_wrapper .iconbox_content .read_more a,
.iconbox2.second .iconbox_wrapper .iconbox_content .read_more a,
.iconbox2.third .iconbox_wrapper .iconbox_content .read_more a {
    color: #ffffff;
}

/* Hover Effects - All turn to red */
.iconbox2:hover .iconbox_wrapper .iconbox_content {
    background: #ff3b3e;
}

.iconbox2:hover .iconbox_wrapper .iconbox_content h3 a {
    color: #ffffff;
}

.iconbox2:hover .iconbox_wrapper .iconbox_content .read_more a {
    color: #ffffff;
}

.iconbox2:hover .iconbox_wrapper .iconbox_content .read_more a::before {
    color: #ffffff;
}

/* Explore All Bottom Text */
.explore_all {
    font-family: 'Mulish', sans-serif;
    font-size: 14px;
    font-weight: 800;
    line-height: 24px;
    text-align: center;
    color: #656a7c;
    margin-top: 40px;
}

.explore_all a {
    color: #656a7c;
    border-bottom: 1px solid #ff3b3e;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.explore_all a:hover {
    color: #ff3b3e;
}

.explore_all span {
    color: #ff3b3e;
    font-weight: 900;
}

/* Responsive */
@media (max-width: 991px) {
    .services_1 {
        padding-bottom: 100px;
        padding-top: 60px;
    }
    
    .col-lg-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .iconbox2 .iconbox_wrapper .iconbox_content {
        padding: 30px 25px 30px 25px;
        margin: -100px 15px 0px 15px;
    }
    
    .iconbox2 .iconbox_wrapper .iconbox_content h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .read_more {
        margin-top: 15px;
    }
}

@media (max-width: 767px) {
    .services_1 {
        padding-bottom: 60px;
    }
    
    .col-lg-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .section_title {
        font-size: 28px;
        line-height: 38px;
    }
    
    .section_desc {
        font-size: 16px;
    }
    
    .iconbox2 .iconbox_wrapper .iconbox_content {
        padding: 25px 20px;
        margin: -80px 10px 0px 10px;
    }
    
    .iconbox2 .iconbox_wrapper .iconbox_content h3 {
        font-size: 16px;
        line-height: 24px;
    }
    
    .read_more a {
        font-size: 13px;
    }
    
    .explore_all {
        font-size: 12px;
        padding: 0 15px;
    }
}

/*============== POPULAR LOCKSMITH SERVICES CSS END ==============*/

/*============== SERVICES SECTION SPACE FIX ==============*/
.services {
    background: #fff7f7;
    padding: 0;
    overflow: hidden;
}

.services .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 !important;
    padding: 0 !important;
}

.services .pd_0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.iconbox3 {
    position: relative;
    background: #13131c;
    margin: 0 !important;
    overflow: hidden;
    transition: all 0.5s ease;
    height: 100%;
}

.iconbox3 .iconbox_wrapper {
    display: flex;
    padding: 60px 50px;
    height: 100%;
}

/* Remove any extra gaps between columns */
.services .col-lg-4,
.services .col-md-6 {
    padding: 0 !important;
    margin: 0 !important;
}

/* Ensure boxes touch each other with no gap */
@media (min-width: 992px) {
    .services .col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

/* Tablet responsive */
@media (max-width: 991px) and (min-width: 768px) {
    .iconbox3 .iconbox_wrapper {
        padding: 40px 30px;
        flex-direction: column;
        text-align: center;
    }
    
    .iconbox3 .iconbox_image {
        margin-right: 0;
        margin-bottom: 25px;
        display: flex;
        justify-content: center;
    }
    
    .services .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Mobile responsive */
@media (max-width: 767px) {
    .iconbox3 .iconbox_wrapper {
        padding: 35px 25px;
        flex-direction: column;
        text-align: center;
    }
    
    .iconbox3 .iconbox_image {
        margin-right: 0;
        margin-bottom: 20px;
        display: flex;
        justify-content: center;
    }
    
    .services .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Optional hover effect */
.iconbox3:hover {
    transform: translateY(-3px);
}

/*============== SERVICES SECTION SPACE FIX END ==============*/


/*============== EXTRA CSS FOR ABOUT COMPANY (Add to existing footer CSS) ==============*/

.about_company_text p {
    font-size: 14px;
    line-height: 1.6;
    color: #c5d1e7;
    margin-bottom: 15px;
}

.company_info_list {
    margin-top: 20px;
}

.company_info_list p {
    font-size: 13px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.company_info_list p i {
    color: #ff3b3e;
    font-size: 18px;
    margin-right: 8px;
}

/*============== END ==============*/

/*=========== FOOTER CSS START ===========*/

.pd_0 {
    padding: 0px;
}

.pd_lr_65 {
    padding-left: 65px;
    padding-right: 65px;
}

.footer {
    position: relative;
}

.footer .footer_above {
    background: url('https://wpthemebooster.com/demo/themeforest/html/chaveiro/assets/images/footer_bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding-top: 200px;
    padding-bottom: 65px;
}

.footer.type_2 .footer_above {
    background: url('https://wpthemebooster.com/demo/themeforest/html/chaveiro/assets/images/footer_bg2.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding-top: 90px;
    padding-bottom: 90px;
}

.footer ul {
    padding: 0;
    margin-bottom: 0px;
    list-style-type: none;
}

.footer ul li {
    list-style-type: none;
}

.footer .footer_widget {
    margin-top: 30px;
}

.footer .widget_title {
    position: relative;
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    text-transform: capitalize;
    letter-spacing: 0px;
    color: #ffffff;
    text-align: left;
    margin-top: 0px;
    margin-bottom: 30px;
}

.footer .widget_title .title_line {
    display: block;
    width: 65px;
    height: 2px;
    background: #ff3b3e;
    margin-top: 15px;
}

/* Footer Nav */
.footer .footer_nav li {
    position: relative;
    padding: 10px 0px;
}

.footer .footer_nav li:first-child {
    padding-top: 0px;
}

.footer .footer_nav li a {
    position: relative;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color: #c5d1e7;
    display: block;
    padding-left: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer .footer_nav li a:hover {
    color: #ff3b3e;
}

.footer .footer_nav li a:before {
    content: '\f30f';
    font-family: 'Ionicons';
    font-size: 18px;
    color: #ff3b3e;
    position: absolute;
    left: 0;
    top: 0;
}

/* Address / Contact */
.footer .footer_contact {
    position: relative;
    background: #1b1b27;
    text-align: center;
    margin-top: 0px;
}

.footer .footer_contact .logo_footer {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -57%);
}

.footer .contact_info {
    padding: 85px 50px 50px 50px;
}

.footer .contact_info h4 {
    font-size: 22px;
    font-weight: 500;
    line-height: 30px;
    color: #ffffff;
    margin: 15px 0px;
}

.footer .contact_info .phone {
    position: relative;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 24px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: auto;
    color: #ffffff;
    line-height: 32px;
    padding: 30px 30px;
    margin-top: 25px;
    border: 1px dashed #ff3b3e;
    word-break: break-word;
}

.footer .contact_info .phone > * {
    position: relative;
    text-align: left;
}

.footer .contact_info .phone img {
    margin-right: 15px;
}

.footer .contact_info .phone span {
    font-family: 'Mulish', sans-serif;
    font-size: 18px;
    font-weight: 500;
}

/* About Company Text (Replaces Most Read) */
.footer .about_company_text {
    padding: 0;
}

.footer .about_company_text p {
    font-size: 15px;
    line-height: 26px;
    font-weight: 500;
    color: #c5d1e7;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.footer .about_company_text p i {
    color: #ff3b3e;
    margin-right: 10px;
    font-size: 18px;
}

.footer .about_company_text p:first-child {
    margin-bottom: 20px;
    display: block;
}

.footer .about_company_text p:first-child i {
    display: none;
}

/* Footer Bottom */
.footer .footer_bottom {
    background: #1b1b27;
    padding: 13px 30px;
}

.footer .footer_bottom .footer_bottom_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-flow: row wrap;
    color: #fff;
}

.footer .footer_bottom .footer_bottom_inner > div {
    width: 33.33%;
    max-width: 100%;
    flex: auto;
}

.footer .footer_bottom .copyright p {
    font-family: 'Mulish', sans-serif;
    font-size: 12px;
    font-weight: 300;
    line-height: 24px;
    text-transform: capitalize;
    color: #99abbd;
    margin: 0;
}

.footer .footer_bottom .copyright p a {
    color: #99abbd;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer .footer_bottom .copyright p a:hover {
    color: #ff3b3e;
}

.footer .footer_bottom .totop {
    position: relative;
    text-align: right;
}

.footer .footer_bottom .totop a {
    width: 54px;
    height: 54px;
    background: #ff3b3e;
    color: #ffffff;
    display: inline-block;
    text-align: center;
    line-height: 54px;
    border-radius: 4px;
    box-shadow: 0px 0px 10px #ff3b3e;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer .footer_bottom .totop a:hover {
    background: #ffffff;
    color: #ff3b3e;
    transform: translateY(-3px);
}

/* Footer Social */
.footer .footer_social {
    text-align: center;
}

.footer .footer_social .bottom_social {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
    margin-bottom: 0px;
}

.footer .footer_social .bottom_social li {
    list-style: none;
    display: inline-block;
    position: relative;
    text-transform: uppercase;
    padding: 0px 8px;
}

.footer .footer_social .bottom_social li:first-child {
    padding-left: 0px;
}

.footer .footer_social .bottom_social li:last-child {
    padding-right: 0px;
}

.footer .footer_social .bottom_social li a {
    position: relative;
    overflow: hidden;
    font-size: 20px;
    text-align: center;
    background: #2f2f3e;
    color: #ffffff;
    display: block;
    outline: none;
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 100%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer .footer_social .bottom_social li a:hover {
    color: #ff3b3e;
    transform: translateY(-3px);
}

/* Footer Social 2 */
.footer .footer_social_2 .bottom_social {
    display: flex;
    align-items: center;
    padding: 0px;
    margin-bottom: 0px;
}

.footer .footer_social_2 .bottom_social li {
    list-style: none;
    display: inline-block;
    position: relative;
    padding: 0px 15px;
}

.footer .footer_social_2 .bottom_social li:first-child {
    padding-left: 0px;
}

.footer .footer_social_2 .bottom_social li:last-child {
    padding-right: 0px;
}

.footer .footer_social_2 .bottom_social li a {
    position: relative;
    overflow: hidden;
    font-size: 16px;
    text-align: center;
    color: #cbd2d9;
    display: block;
    outline: none;
    transition: all 0.5s ease;
    text-decoration: none;
}

.footer .footer_social_2 .bottom_social li a:hover {
    color: #ffffff;
}

/* Widget Info */
.footer .widget_info {
    margin-top: 20px;
    margin-bottom: 45px;
}

.footer .widget_info p {
    color: #c5d1e7;
    font-size: 17px;
    line-height: 28px;
}

/* Side Contact Info */
.side_contact_info {
    padding: 50px 40px 20px 40px;
}

.side_contact_info h4 {
    font-size: 22px;
    font-weight: 500;
    line-height: 30px;
    color: #ffffff;
    margin: 15px 0px;
}

.side_contact_info .phone {
    position: relative;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 24px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: auto;
    color: #ffffff;
    line-height: 32px;
    padding: 16px 30px;
    margin-top: 25px;
    border: 1px dashed #ff3b3e;
    word-break: break-word;
}

.side_contact_info .phone > * {
    position: relative;
    text-align: left;
}

.side_contact_info .phone img {
    margin-right: 15px;
}

.side_contact_info .phone span {
    font-family: 'Mulish', sans-serif;
    font-size: 18px;
    font-weight: 500;
}

/* Side Footer Social */
.side_footer_social {
    text-align: center;
    margin-top: 40px;
}

.side_footer_social .bottom_social {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    padding: 0px;
    margin-bottom: 0px;
}

.side_footer_social .bottom_social li {
    list-style: none;
    display: inline-block;
    position: relative;
    text-transform: uppercase;
    padding: 0px 8px;
}

.side_footer_social .bottom_social li:first-child {
    padding-left: 0px;
}

.side_footer_social .bottom_social li:last-child {
    padding-right: 0px;
}

.side_footer_social .bottom_social li a {
    position: relative;
    overflow: hidden;
    font-size: 20px;
    text-align: center;
    background: #ffeae9;
    color: #401818;
    display: block;
    outline: none;
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 100%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.side_footer_social .bottom_social li a:hover {
    color: #ff3b3e;
}

/* Responsive */
@media screen and (max-width: 992px) {
    .footer .footer_contact {
        padding-left: 0px;
    }
    .footer .footer_links {
        padding-left: 0px;
    }
    .footer .footer_widget {
        margin: 20px 0px;
    }
    .footer .footer_social {
        text-align: center;
    }
    .pd_lr_65 {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media screen and (max-width: 768px) {
    .footer .footer_bottom .footer_bottom_inner > div {
        width: 100%;
        text-align: center;
        margin: 10px 0;
    }
    .footer .footer_bottom .totop {
        text-align: center;
    }
    .footer .contact_info {
        padding: 85px 25px 40px 25px;
    }
    .footer .contact_info h4 {
        font-size: 18px;
    }
    .footer .contact_info .phone {
        font-size: 18px;
        padding: 20px;
    }
    .footer .about_company_text p {
        font-size: 14px;
        line-height: 24px;
    }
}

/*=========== FOOTER CSS END ===========*/

/* About Company - Single Column Normal Flow */
.footer .about_company_text {
    display: block;
}

.footer .about_company_text p {
    font-size: 15px;
    line-height: 26px;
    font-weight: 500;
    color: #c5d1e7;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    flex-direction: row;
    width: 100%;
}

.footer .about_company_text p i {
    color: #ff3b3e;
    margin-right: 10px;
    font-size: 18px;
    flex-shrink: 0;
}

.footer .about_company_text p:first-child {
    display: block;
    margin-bottom: 15px;
}

.footer .about_company_text p:first-child i {
    display: none;
}

/* Ensure proper grid layout */
.row {
    display: flex;
    flex-wrap: wrap;
}

.col-lg-3 {
    width: 25%;
    float: left;
}

.col-lg-6 {
    width: 50%;
    float: left;
}

.pd_0 {
    padding: 0;
}

.pd_lr_65 {
    padding-left: 65px;
    padding-right: 65px;
}





/* ========== MOBILE FIXES CSS - START ========== */
/* Ye code aapki existing style.css ke BILKUL END mein add karein */
/* Desktop koi change nahi hoga, sirf mobile pe fixes apply honge */

/* Off-Canvas Menu Styles */
.offcanvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.offcanvas-overlay.active {
    opacity: 1;
    visibility: visible;
}

.offcanvas-menu {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100%;
    background: #1a1a2e;
    z-index: 1000;
    transition: all 0.3s ease;
    overflow-y: auto;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.3);
}

.offcanvas-menu.active {
    left: 0;
}

.offcanvas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas-logo img {
    max-height: 50px;
    width: auto;
}

.offcanvas-close {
    background: transparent;
    border: none;
    font-size: 48px;
    color: #ff3b3e;
    cursor: pointer;
    line-height: 1;
    padding: 0;
}

.offcanvas-close:focus {
    outline: none;
}

.offcanvas-body {
    padding: 20px 0 30px 0;
}

.offcanvas-main-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offcanvas-main-menu .menu-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.offcanvas-main-menu .menu-item > a {
    display: block;
    padding: 15px 25px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.offcanvas-main-menu .menu-item > a:hover {
    color: #ff3b3e;
    padding-left: 30px;
}

.offcanvas-main-menu .menu-item.active > a {
    color: #ff3b3e;
}

.offcanvas-main-menu .sub-menu {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
    background: rgba(255, 255, 255, 0.05);
}

.offcanvas-main-menu .sub-menu .menu-item a {
    display: block;
    padding: 12px 25px 12px 40px;
    font-family: 'Mulish', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #c5d1e7;
    text-decoration: none;
}

.offcanvas-main-menu .sub-menu .menu-item a:hover {
    color: #ff3b3e;
    padding-left: 45px;
}

.offcanvas-main-menu .menu-item-has-children.submenu-open > a {
    color: #ff3b3e;
}

/* Offcanvas Contact */
.offcanvas-contact {
    padding: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
}

.offcanvas-phone,
.offcanvas-email {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-family: 'Mulish', sans-serif;
    font-size: 14px;
    color: #c5d1e7;
}

.offcanvas-phone i,
.offcanvas-email i {
    font-size: 20px;
    color: #ff3b3e;
}

/* Offcanvas Social */
.offcanvas-social {
    padding: 20px 25px;
    display: flex;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas-social a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.offcanvas-social a:hover {
    background: #ff3b3e;
    transform: translateY(-3px);
}

/* ===== MOBILE RESPONSIVE MEDIA QUERIES ===== */

/* Tablet and Mobile (max-width: 991px) */
@media (max-width: 991px) {
    
    /* Hide search button on mobile */
    .header_search {
        display: none !important;
    }
    
    /* Remove aside_open if any leftover */
    .aside_open {
        display: none !important;
    }
    
    /* Fix header spacing */
    .header .header_right_part {
        gap: 10px;
    }
    
    .header .ma5menu__toggle {
        display: block !important;
        background: #ff3b3e;
        color: #ffffff;
        border: none;
        width: 45px;
        height: 45px;
        border-radius: 5px;
        font-size: 24px;
        cursor: pointer;
    }
    
    /* Fix middle bar for mobile */
    .header .middle_bar_inner {
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
        padding: 15px 0;
    }
    
    .header .logo {
        position: relative;
        margin-bottom: 0;
    }
    
    .header .logo img {
        max-height: 60px;
    }
    
    /* Fix top bar for mobile */
    .top_bar_inner {
        flex-direction: column;
        text-align: center;
        padding: 10px 0;
    }
    
    .header_info {
        margin-left: 0;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .schedule {
        margin: 5px 15px !important;
    }
    
    .phone {
        margin: 5px 0;
    }
}

/* Mobile only (max-width: 767px) */
@media (max-width: 767px) {
    
    /* ===== ABOUT SECTION MOBILE FIX ===== */
    .about-two-col {
        padding: 60px 0;
    }
    
    .about-two-col .container {
        padding: 0 15px;
    }
    
    .about-two-col .row {
        display: flex !important;
        flex-direction: column !important;
        flex-wrap: wrap !important;
        gap: 30px !important;
        margin: 0 !important;
    }
    
    .about-left-img {
        width: 100% !important;
        flex: 0 0 100% !important;
        padding: 0 !important;
    }
    
    .about-left-img .img-box {
        padding: 15px;
    }
    
    .about-left-img img {
        width: 100%;
        height: auto;
    }
    
    .about-right-text {
        width: 100% !important;
        flex: 0 0 100% !important;
        padding: 0 !important;
        text-align: center;
    }
    
    .about-right-text h2 {
        font-size: 28px;
        text-align: center;
    }
    
    .company-desc {
        text-align: center;
        font-size: 16px;
    }
    
    .features-list {
        justify-content: center;
    }
    
    .feat {
        width: 100% !important;
        justify-content: center;
    }
    
    .about-btn-main {
        display: block;
        width: 100%;
        text-align: center;
        max-width: 250px;
        margin: 0 auto;
    }
    
    /* ===== FOOTER MOBILE FIX ===== */
    .footer .row {
        display: flex;
        flex-direction: column;
        margin: 0 !important;
    }
    
    .footer .col-lg-3,
    .footer .col-lg-6,
    .footer .col-sm-6 {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 15px !important;
        margin-bottom: 30px;
        float: none !important;
    }
    
    .footer .footer_above {
        padding-top: 80px;
        padding-bottom: 40px;
    }
    
    .footer .footer_widget {
        margin: 0;
        text-align: center;
    }
    
    .footer .widget_title {
        text-align: center;
    }
    
    .footer .widget_title .title_line {
        margin: 15px auto 0 auto;
    }
    
    .footer .footer_links .footer_nav ul {
        text-align: center;
    }
    
    .footer .footer_links .footer_nav li a {
        padding-left: 0;
        display: inline-block;
    }
    
    .footer .footer_links .footer_nav li a:before {
        display: none;
    }
    
    .footer .footer_contact {
        margin-top: 0;
    }
    
    .footer .contact_info {
        padding: 40px 20px;
    }
    
    .footer .contact_info h4 {
        font-size: 18px;
    }
    
    .footer .contact_info .phone {
        font-size: 16px;
        padding: 15px;
        flex-direction: column;
        text-align: center;
    }
    
    .footer .contact_info .phone img {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .footer .about_company_text {
        text-align: center;
    }
    
    .footer .about_company_text p {
        justify-content: center;
        font-size: 14px;
    }
    
    .footer .footer_bottom .footer_bottom_inner {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer .footer_bottom .footer_bottom_inner > div {
        width: 100%;
        text-align: center;
    }
    
    .footer .footer_social {
        text-align: center;
    }
    
    .footer .footer_social .bottom_social {
        justify-content: center;
    }
    
    .footer .totop {
        text-align: center;
    }
    
    /* ===== SLIDER MOBILE FIX ===== */
    .slide_content .heading {
        font-size: 32px;
        line-height: 42px;
    }
    
    .slide_content {
        padding: 60px 0;
    }
    
    /* ===== SERVICES BOXES MOBILE FIX ===== */
    .iconbox3 .iconbox_wrapper {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .iconbox3 .iconbox_image {
        margin-right: 0;
        margin-bottom: 20px;
        display: flex;
        justify-content: center;
    }
    
    .services .col-md-6 {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    
    /* ===== POPULAR SERVICES MOBILE FIX ===== */
    .services_1 {
        padding-bottom: 60px;
        padding-top: 40px;
    }
    
    .services_1 .col-lg-4,
    .services_1 .col-md-6 {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    
    .section_title {
        font-size: 28px;
        line-height: 38px;
    }
    
    .section_desc {
        font-size: 16px;
        padding: 0 15px;
    }
    
    .iconbox2 .iconbox_wrapper .iconbox_content {
        margin: -80px 15px 0 15px;
        padding: 25px 20px;
    }
    
    .explore_all {
        font-size: 12px;
        padding: 0 15px;
        line-height: 20px;
    }
}

/* Small mobile (max-width: 480px) */
@media (max-width: 480px) {
    .offcanvas-menu {
        width: 280px;
        left: -280px;
    }
    
    .header .schedule {
        font-size: 12px;
        margin: 5px 10px !important;
    }
    
    .header .phone {
        padding: 12px 20px;
        font-size: 12px;
    }
    
    .slide_content .heading {
        font-size: 26px;
        line-height: 36px;
    }
    
    .button {
        min-width: 160px;
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .about-right-text h2 {
        font-size: 24px;
    }
    
    .about-btn-main {
        max-width: 200px;
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* ========== MOBILE FIXES CSS - END ========== */


/* Footer Mobile Emergency Fix */
@media (max-width: 767px) {
    .footer .footer_contact .logo_footer {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        text-align: center !important;
        padding-top: 20px !important;
    }
    
    .footer .footer_links .footer_nav li a {
        padding-left: 0 !important;
    }
    
    .footer .footer_links .footer_nav li a:before {
        display: none !important;
    }
    
    .footer .col-lg-3,
    .footer .col-lg-6,
    .footer .col-sm-6 {
        clear: both !important;
        display: block !important;
    }
}



/* ========== 4 PRODUCTS IN ONE LINE - DESKTOP VIEW ========== */
@media (min-width: 1200px) {
    .services_1 .row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px; /* Gap between columns */
    }
    
    .services_1 .row .col-lg-4 {
        flex: 0 0 calc(25% - 30px); /* 4 columns with gap */
        max-width: calc(25% - 30px);
        margin: 0;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .services_1 .row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
    }
    
    .services_1 .row .col-lg-4 {
        flex: 0 0 calc(33.333% - 25px); /* 3 columns on smaller desktop */
        max-width: calc(33.333% - 25px);
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .services_1 .row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .services_1 .row .col-md-6 {
        flex: 0 0 calc(50% - 20px); /* 2 columns on tablet */
        max-width: calc(50% - 20px);
    }
}

@media (max-width: 767px) {
    .services_1 .row .col-lg-4 {
        flex: 0 0 100%; /* 1 column on mobile */
        max-width: 100%;
    }
}



/* ========== 4 PRODUCTS IN ONE LINE - PROPER SIZE WITH IMAGES VISIBLE ========== */

/* Large Desktop (min 1400px) - 4 products properly visible */
@media (min-width: 1400px) {
    .services_1 .container {
        max-width: 1320px !important;
        width: 100%;
    }
    
    .services_1 .row {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -15px;
    }
    
    .services_1 .row .col-lg-4 {
        flex: 0 0 25%;
        max-width: 25%;
        padding: 0 15px;
    }
}

/* Normal Desktop (1200px to 1399px) - 3 products + 1 wrap to next line */
@media (min-width: 1200px) and (max-width: 1399px) {
    .services_1 .row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .services_1 .row .col-lg-4 {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }
}

/* Small Desktop (992px to 1199px) - 2 products */
@media (min-width: 992px) and (max-width: 1199px) {
    .services_1 .row .col-lg-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991px) {
    .services_1 .row .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .services_1 .row .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Ensure images are visible and properly sized */
.iconbox2 .iconbox_wrapper .iconbox_image img {
    width: 100%;
    height: auto;
    min-height: 200px;
    object-fit: cover;
}

/* Card content padding adjustment for 4 column layout */
@media (min-width: 1400px) {
    .iconbox2 .iconbox_wrapper .iconbox_content {
        padding: 30px 20px;
        margin: -100px 15px 0px 15px;
    }
    
    .iconbox2 .iconbox_wrapper .iconbox_content h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .read_more a {
        font-size: 13px;
    }
}




/* ========== GALLERY SECTION STYLES ========== */
.gallery-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section_header {
    text-align: center;
    margin-bottom: 50px;
}

.section_sub_title {
    font-size: 16px;
    color: #ff3b3e;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 10px;
}

.section_title {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.section_desc {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 48px;
    color: white;
    background: rgba(255,59,62,0.8);
    padding: 15px;
    border-radius: 50%;
}

/* Lightbox Popup */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 90%;
    max-height: 85%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    font-size: 50px;
    color: white;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 10000;
}

.lightbox-close:hover {
    color: #ff3b3e;
}

.lightbox-close i {
    font-size: 50px;
}

/* ========== GET IN TOUCH SECTION STYLES ========== */
.get-in-touch {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
}

.touch-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 20px;
}

/* Left Column - Info Cards */
.touch-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.info-card {
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255,59,62,0.1);
    border-color: #ff3b3e20;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: #ff3b3e10;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.info-icon i {
    font-size: 30px;
    color: #ff3b3e;
}

.info-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.info-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Right Column - Form */
.touch-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    transition: all 0.3s;
    background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff3b3e;
    background: white;
    box-shadow: 0 0 0 3px #ff3b3e20;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    background: #ff3b3e;
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.submit-btn:hover {
    background: #e02b2e;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255,59,62,0.3);
}

.submit-btn i {
    font-size: 18px;
}

/* Responsive */
@media (max-width: 992px) {
    .touch-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .touch-info {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section_title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .gallery-section, .get-in-touch {
        padding: 50px 0;
    }
    
    .touch-info {
        grid-template-columns: 1fr;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .touch-form {
        padding: 25px;
    }
}



/* ========== FOOTER LOGO SIZE FIX - START ========== */
/* Footer logo ko chota karne ke liye */
.footer .footer_contact .logo_footer img {
    max-width: 120px !important;
    max-height: 60px !important;
    width: auto !important;
    height: auto !important;
}

/* Tablet ke liye */
@media (max-width: 991px) {
    .footer .footer_contact .logo_footer img {
        max-width: 100px !important;
        max-height: 50px !important;
    }
}

/* Mobile ke liye */
@media (max-width: 767px) {
    .footer .footer_contact .logo_footer {
        position: relative !important;
        transform: none !important;
        left: auto !important;
        top: auto !important;
        text-align: center !important;
        padding-top: 15px !important;
    }
    
    .footer .footer_contact .logo_footer img {
        max-width: 100px !important;
        max-height: 50px !important;
    }
}
/* ========== FOOTER LOGO SIZE FIX - END ========== */

/* ========== SINGLE BANNER SECTION - CSS START ========== */

/* Container for centering */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Row for flex centering */
.row {
    display: flex;
    flex-wrap: wrap;
}

.col-lg-12 {
    width: 100%;
}

/* Single Banner Styles - Theme Color Only */
.theme_slider_1 .single-banner {
    background: #ff3b3e;  /* Theme color */
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.theme_slider_1 .banner_content {
    text-align: center;
    width: 100%;
}

.theme_slider_1 .banner_title {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    display: block;
}

/* Make heading center horizontally and vertically */
.single-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.single-banner .container {
    width: 100%;
}

.single-banner .banner_content {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Responsive CSS */
@media (max-width: 768px) {
    .theme_slider_1 .single-banner {
        padding: 50px 0;
        min-height: 150px;
    }
    .theme_slider_1 .banner_title {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .theme_slider_1 .single-banner {
        padding: 40px 0;
        min-height: 120px;
    }
    .theme_slider_1 .banner_title {
        font-size: 28px;
    }
}

/* ========== SINGLE BANNER SECTION - CSS END ========== */



/* ========== PEANUTS SPECIFICATIONS SECTION START ========== */
.peanuts-specs-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.specs-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.specs-image-col {
    flex: 1;
    min-width: 280px;
}

.specs-image-box {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 25px;
}

.specs-image-box img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.specs-image-box:hover img {
    transform: scale(1.02);
}

.peanuts-short-about h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a2b4c;
}

.peanuts-short-about p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.bulk-order-badge {
    background: #e8f5e9;
    padding: 12px 20px;
    border-radius: 8px;
    border-left: 4px solid #2e7d32;
}

.bulk-order-badge i {
    color: #2e7d32;
    font-size: 20px;
    margin-right: 10px;
    vertical-align: middle;
}

.bulk-order-badge span {
    font-size: 15px;
    font-weight: 600;
    color: #1a2b4c;
}

.specs-table-col {
    flex: 1.2;
    min-width: 320px;
}

.specs-table-wrapper {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow-x: auto;
    padding: 5px;
}

.product-specs-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Mulish', sans-serif;
}

.product-specs-table th,
.product-specs-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.product-specs-table th {
    background: #1a2b4c;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
}

.product-specs-table th:first-child {
    border-radius: 8px 0 0 0;
}

.product-specs-table th:last-child {
    border-radius: 0 8px 0 0;
}

.product-specs-table tr:last-child td {
    border-bottom: none;
}

.product-specs-table td:first-child {
    font-weight: 700;
    color: #333;
    background: #fafafa;
    width: 40%;
}

.product-specs-table td:last-child {
    color: #555;
}

.specs-enquiry-btn {
    text-align: center;
    margin-top: 30px;
}

.specs-enquiry-btn .about-btn-main {
    display: inline-block;
    background: #c49a2c;
    color: #fff;
    padding: 12px 32px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.specs-enquiry-btn .about-btn-main:hover {
    background: #a07d22;
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .peanuts-specs-section {
        padding: 50px 0;
    }
    
    .specs-row {
        flex-direction: column;
        gap: 30px;
    }
    
    .product-specs-table th,
    .product-specs-table td {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .peanuts-short-about h3 {
        font-size: 20px;
    }
}
/* ========== PEANUTS SPECIFICATIONS SECTION END ========== */