/* ==================== RESET & ROOT VARIABLES STARTS ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blackc: #272727;
    --whitec: #fff;
    --ddcolor: #ddd;
    /* NEW Green + Gold Color Scheme for Agro Products */
    --bgcolor: #1B5E20;      /* Forest Green - Primary */
    --goldcolor: #D4AF37;    /* Gold - Accent */
    --goldlight: #F5E6A3;    /* Light Gold */
    --brcolor: #0E76BC;
    --paracolor: #555;
    --titlecolor: #1a3b1a;   /* Dark Green */
}

body {
    font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: var(--titlecolor);
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
}

/* ==================== RESET & ROOT VARIABLES ENDS ==================== */

/* NOTE: TOP HEADER STYLES REMOVED as per client feedback - moved to Contact page */

/* ==================== MAIN MENU / NAVIGATION STYLES STARTS ==================== */
.main_menu_area {
    padding: 0;
    background: var(--whitec);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.site_logo_area {
    text-align: left;
    padding: 15px 0;
    border-radius: 0;
    margin-right: 0;
}

.site_logo_area img {
    max-width: 160px;
    height: auto;
}

.main_nav_area {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.inner_main_nav_area ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.inner_main_nav_area > ul > li {
    display: inline-block;
    position: relative;
}

.inner_main_nav_area > ul > li > a {
    display: block;
    margin: 30px 15px;
    transition: 0.3s;
    font-size: 16px;
    font-weight: 600;
    color: var(--blackc);
    text-transform: capitalize;
    font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.inner_main_nav_area > ul > li > a > i {
    font-weight: 700;
    color: var(--titlecolor);
    font-size: 12px;
}

.inner_main_nav_area > ul > li > a:hover {
    color: var(--bgcolor);
}

.inner_main_nav_area ul li .sub_menu {
    position: absolute;
    top: 130%;
    left: 0;
    width: max-content;
    min-width: 220px;
    text-align: left;
    margin: 0;
    padding: 15px 5px;
    z-index: 9999;
    box-shadow: 0 0 30px rgba(0,0,0,0.1);
    background-color: var(--whitec);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    border-radius: 8px;
}

.inner_main_nav_area ul li:hover .sub_menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
}

.inner_main_nav_area ul li .sub_menu li {
    display: block;
}

.inner_main_nav_area ul li .sub_menu li a {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #444;
    padding: 8px 20px;
    transition: 0.3s;
}

.inner_main_nav_area ul li .sub_menu li a:hover {
    color: var(--bgcolor);
    padding-left: 25px;
}

.beutty_right_area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.main_nav_icons_together {
    display: flex;
    align-items: center;
}

.main_nav_icons > i {
    display: inline-block;
    cursor: pointer;
    transition: 0.3s;
    color: var(--blackc);
    font-size: 20px;
}

.main_nav_icons > i:hover {
    color: var(--bgcolor);
}

.menu_btn {
    margin-left: 0;
}

.dtbtn {
    background-color: var(--bgcolor);
    color: var(--whitec);
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    padding: 12px 28px;
    transition: 0.3s;
    font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.dtbtn:hover {
    background-color: var(--goldcolor);
    color: var(--titlecolor);
    transform: translateY(-2px);
}

/* ==================== MAIN MENU / NAVIGATION STYLES ENDS ==================== */

/* ==================== SLIDER AREA STYLES STARTS ==================== */
.slider_area {
    overflow: hidden;
    position: relative;
}

.inner_slider_area {
    height: 700px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex !important;
    align-items: center;
}

.inner_slider_content {
    margin: 0 auto;
    text-align: left;
    width: 68%;
}

.inner_slider_content h1 {
    font-size: 20px;
    color: var(--bgcolor);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.inner_slider_content h2 {
    font-size: 60px;
    margin: 0;
    font-weight: 700;
    color: var(--titlecolor);
}

.inner_slider_content h3 {
    font-size: 70px;
    margin: 0;
    font-weight: 800;
}

.inner_slider_content h3 .ssv_text,
.inner_slider_content h3 .exim_text {
    font-size: 70px;
    font-weight: 800;
    display: inline-block;
}

.inner_slider_content h3 .exim_text {
    color: var(--bgcolor);
}

.inner_slider_content p {
    color: var(--titlecolor);
    width: 60%;
    font-weight: 500;
    font-size: 20px;
    margin: 20px 0 0;
}

.b_btn {
    margin-top: 35px;
}

.b_btn a {
    display: inline-block;
    border-radius: 30px;
    padding: 14px 40px;
    font-size: 14px;
    font-weight: 600;
    margin-right: 12px;
    margin-bottom: 10px;
    font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: var(--whitec);
    background-color: var(--bgcolor);
    transition: 0.3s;
}

.b_btn a:hover {
    background-color: var(--goldcolor);
    color: var(--titlecolor);
}

.b_btn a.active {
    background-color: var(--goldcolor);
    color: var(--titlecolor);
}

.b_btn a.active:hover {
    background-color: var(--bgcolor);
    color: var(--whitec);
}

.slick-prev, .slick-next {
    display: none !important;
}

/* ==================== SLIDER AREA STYLES ENDS ==================== */

/* ==================== FEATURE AREA STYLES STARTS ==================== */
.feature_area {
    padding: 80px 0 50px;
}

.main_feature {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border: 2px solid var(--goldlight);
    border-radius: 15px;
    transition: 0.4s;
    padding: 40px 25px;
    position: relative;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.main_feature:hover {
    border: 2px solid var(--bgcolor);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(27, 94, 32, 0.15);
}

.main_feature img {
    margin-bottom: 20px;
    transition: 0.3s;
}

.main_feature:hover img {
    transform: scale(1.05);
}

.main_feature h2 {
    margin: 15px 0 20px;
}

.main_feature h2 a {
    font-size: 22px;
    color: var(--titlecolor);
    font-weight: 700;
    text-decoration: none;
}

.main_feature h2 a:hover {
    color: var(--bgcolor);
}

.feature_icon a {
    height: 45px;
    width: 45px;
    line-height: 45px;
    font-size: 20px;
    border-radius: 50%;
    display: inline-block;
    color: var(--whitec);
    background: var(--bgcolor);
    transition: 0.3s;
}

.feature_icon a:hover {
    background: var(--goldcolor);
    color: var(--titlecolor);
    transform: rotate(90deg);
}

/* ==================== FEATURE AREA STYLES ENDS ==================== */

/* ==================== ABOUT AREA STYLES STARTS ==================== */
.about_area {
    padding: 80px 0;
    background: #fafbf5;
}

.single_about_img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about_active h4 {
    color: var(--bgcolor);
    font-size: 16px;
    letter-spacing: 2px;
    margin-top: 10px;
    font-weight: 600;
}

.about_active h2 {
    font-size: 42px;
    margin: 15px 0 20px;
    font-weight: 800;
}

.about_active h2 .highlight {
    color: var(--bgcolor);
}

.about_list {
    display: flex;
    gap: 15px;
    margin: 25px 0;
    align-items: center;
}

.about_item i {
    font-size: 40px;
    width: 70px;
    height: 70px;
    line-height: 67px;
    text-align: center;
    border-radius: 50%;
    color: var(--whitec);
    background: var(--titlecolor);
    border: 4px solid var(--goldcolor);
    transition: 0.3s;
}

.about_list:hover .about_item i {
    background: var(--bgcolor);
    transform: scale(1.05);
}

.about_text h2 a {
    font-size: 20px;
    color: var(--titlecolor);
    font-weight: 700;
    text-decoration: none;
}

.about_text h2 a:hover {
    color: var(--bgcolor);
}

.witrlistw ul {
    list-style: none;
    padding: 0;
}

.witrlistw ul li {
    margin-bottom: 12px;
}

.witrlistw ul li span i {
    color: var(--bgcolor);
    margin-right: 8px;
}

.about_btn {
    margin-top: 20px;
}

.about_btn a {
    background: var(--bgcolor);
    color: white;
    padding: 14px 40px;
    border-radius: 30px;
    display: inline-block;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.about_btn a:hover {
    background: var(--goldcolor);
    color: var(--titlecolor);
}

.main_counter.about_counter2 {
    margin-top: 20px;
}

.inner_counter_sub_cont {
    display: flex;
    align-items: baseline;
}

.inner_counter_sub_cont h3 {
    font-size: 60px;
    color: var(--bgcolor);
    font-weight: 800;
}

.inner_counter_sub_cont span {
    font-size: 40px;
    color: var(--goldcolor);
    font-weight: 700;
}

.inner_counter_area h2 {
    font-size: 18px;
    text-transform: uppercase;
    margin-top: 5px;
    font-weight: 600;
}

/* ==================== ABOUT AREA STYLES ENDS ==================== */

/* ==================== CERTIFICATIONS SECTION STYLES STARTS ==================== */
.certifications_section {
    padding: 80px 0;
    background: var(--whitec);
}

.section_title {
    text-align: center;
    margin-bottom: 50px;
}

.section_title h4 {
    color: var(--bgcolor);
    font-size: 16px;
    letter-spacing: 2px;
    margin-top: 10px;
    font-weight: 600;
}

.section_title h2 {
    font-size: 42px;
    margin-top: 15px;
    font-weight: 800;
}

.section_title h2 .highlight {
    color: var(--bgcolor);
}

.section_subtitle {
    color: var(--paracolor);
    font-size: 16px;
    max-width: 700px;
    margin: 15px auto 0;
}

.certifications_grid {
    margin-top: 20px;
}

.cert_item {
    margin-bottom: 30px;
}

.cert_card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.cert_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(27, 94, 32, 0.15);
}

.cert_img_wrap {
    position: relative;
    overflow: hidden;
    padding: 20px;
    background: #f9f9f9;
    cursor: pointer;
}

.cert_img_wrap img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.cert_card:hover .cert_img_wrap img {
    transform: scale(1.05);
}

.cert_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 94, 32, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cert_img_wrap:hover .cert_overlay {
    opacity: 1;
}

.cert_popup_btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--goldcolor);
    border: none;
    color: var(--titlecolor);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert_popup_btn:hover {
    background: var(--whitec);
    transform: scale(1.1);
}

.cert_caption {
    padding: 20px;
    background: var(--whitec);
}

.cert_caption h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--titlecolor);
}

.cert_caption p {
    font-size: 13px;
    color: var(--paracolor);
    margin: 0;
}

/* ==================== CERTIFICATIONS SECTION STYLES ENDS ==================== */

/* ==================== PROJECT / PRODUCTS SECTION STYLES STARTS ==================== */
.project_area {
    padding: 80px 0;
    background: #fafbf5;
}

.products_grid {
    display: flex;
    flex-wrap: wrap;
}

.product_item {
    margin-bottom: 30px;
}

.inner_img_area {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.inner_img_area:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(27, 94, 32, 0.15);
}

.inner_img_overlay {
    position: relative;
    overflow: hidden;
}

.inner_img_overlay img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.inner_img_area:hover .inner_img_overlay img {
    transform: scale(1.08);
}

.img_overlay_go {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 94, 32, 0.85);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.inner_img_area:hover .img_overlay_go {
    opacity: 1;
}

.absolute_icons {
    text-align: center;
    margin-bottom: 15px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.inner_img_area:hover .absolute_icons {
    transform: translateY(0);
}

.absolute_icons a {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: var(--goldcolor);
    color: var(--titlecolor);
    border-radius: 50%;
    text-align: center;
    font-size: 24px;
    transition: all 0.3s ease;
}

.absolute_icons a:hover {
    background: var(--whitec);
    transform: rotate(90deg);
}

.project_title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.95);
    text-align: center;
    padding: 15px 10px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.inner_img_area:hover .project_title {
    transform: translateY(0);
}

.project_title h2 a {
    color: var(--titlecolor);
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.project_title h2 a:hover {
    color: var(--bgcolor);
}

.project_title p {
    color: var(--paracolor);
    margin: 5px 0 0;
    font-size: 13px;
}

/* ==================== PROJECT / PRODUCTS SECTION STYLES ENDS ==================== */

/* ==================== GALLERY SECTION STYLES STARTS ==================== */
.gallery_section {
    padding: 80px 0;
    background: var(--whitec);
}

.gallery_grid {
    margin-top: 20px;
}

.gallery_item {
    margin-bottom: 30px;
}

.gallery_img_wrap {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
}

.gallery_img_wrap img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery_img_wrap:hover img {
    transform: scale(1.1);
}

.gallery_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 94, 32, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery_img_wrap:hover .gallery_overlay {
    opacity: 1;
}

.gallery_popup_btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--goldcolor);
    border: none;
    color: var(--titlecolor);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery_popup_btn:hover {
    background: var(--whitec);
    transform: scale(1.1);
}

/* Image Popup Modal */
.image_popup_modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
}

.image_popup_modal.active {
    display: flex;
}

.popup_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    cursor: pointer;
}

.popup_container {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    z-index: 100000;
    animation: popupFadeIn 0.3s ease;
    text-align: center;
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.popup_close_btn {
    position: absolute;
    top: -45px;
    right: -45px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bgcolor);
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup_close_btn:hover {
    background: var(--goldcolor);
    color: var(--titlecolor);
    transform: rotate(90deg);
}

.popup_container img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.popup_caption {
    margin-top: 15px;
    color: var(--goldcolor);
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}

/* ==================== GALLERY SECTION STYLES ENDS ==================== */

/* ==================== GET IN TOUCH SECTION STYLES STARTS ==================== */
.getintouch_section {
    padding: 80px 0;
    background: #fafbf5;
}

.getintouch_row {
    margin-top: 30px;
}

/* Left Column - Company Info */
.touch_info_wrap {
    background: var(--titlecolor);
    padding: 40px 30px;
    border-radius: 20px;
    height: 100%;
    color: white;
}

.touch_info_item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.touch_info_item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.touch_icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--bgcolor);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.touch_icon i {
    font-size: 28px;
    color: white;
}

.touch_info_item:hover .touch_icon {
    transform: scale(1.1);
    background: var(--goldcolor);
}

.touch_info_item:hover .touch_icon i {
    color: var(--titlecolor);
}

.touch_text h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.touch_text p {
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

.touch_social {
    margin-top: 30px;
    padding-top: 20px;
}

.touch_social h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.touch_social_links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.touch_social_links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
}

.touch_social_links a:hover {
    background: var(--goldcolor);
    color: var(--titlecolor);
    transform: translateY(-5px);
}

/* Right Column - Form */
.touch_form_wrap {
    background: white;
    padding: 40px 35px;
    border-radius: 20px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.touch_form_wrap h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--titlecolor);
    position: relative;
    padding-bottom: 15px;
}

.touch_form_wrap h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--bgcolor);
}

.form_group {
    margin-bottom: 20px;
}

.form_group input,
.form_group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: white;
    font-family: inherit;
}

.form_group input:focus,
.form_group textarea:focus {
    outline: none;
    border-color: var(--bgcolor);
    box-shadow: 0 0 0 3px rgba(27, 94, 32, 0.1);
}

.form_group textarea {
    resize: vertical;
    min-height: 120px;
}

.touch_submit_btn {
    background: var(--bgcolor);
    color: white;
    border: none;
    padding: 14px 35px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.touch_submit_btn:hover {
    background: var(--goldcolor);
    color: var(--titlecolor);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.touch_submit_btn i {
    font-size: 16px;
}

.form_message {
    margin-top: 20px;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 14px;
}

.form_message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form_message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ==================== GET IN TOUCH SECTION STYLES ENDS ==================== */

/* ==================== FOOTER AREA STYLES STARTS ==================== */
.footer_area {
    padding: 80px 0 40px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-color: #0a1f0a;
}

.footer_widget h4 {
    color: var(--whitec);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 12px;
    position: relative;
}

.footer_widget h4::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--goldcolor);
}

.footer_logo_area img {
    margin-bottom: 20px;
    background: white;
    padding: 10px;
    border-radius: 10px;
}

.footer_logo_area p {
    color: #ccc;
    margin-bottom: 15px;
    font-size: 14px;
}

.inner_subscribe_form_area {
    position: relative;
    margin-top: 20px;
}

.inner_subscribe_form_area input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 30px;
    color: white;
}

.inner_subscribe_form_area input::placeholder {
    color: #aaa;
}

.inner_subscribe_form_area button {
    position: absolute;
    right: 5px;
    top: 5px;
    background: var(--goldcolor);
    border: none;
    color: var(--titlecolor);
    padding: 8px 18px;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.inner_subscribe_form_area button:hover {
    background: var(--bgcolor);
    color: white;
}

.footer_nav ul {
    list-style: none;
    padding: 0;
}

.footer_nav ul li {
    margin-bottom: 12px;
}

.footer_nav ul li a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
}

.footer_nav ul li a i {
    margin-right: 8px;
    color: var(--goldcolor);
}

.footer_nav ul li a:hover {
    color: var(--goldcolor);
    padding-left: 5px;
}

.footer_address_text {
    color: #ccc;
}

.footer_address_text p {
    color: #ccc;
    margin-bottom: 12px;
    font-size: 14px;
}

.footer_address_text i {
    color: var(--goldcolor);
    margin-right: 10px;
    width: 25px;
}

/* ==================== FOOTER AREA STYLES ENDS ==================== */

/* ==================== COPYRIGHT AREA STYLES STARTS ==================== */
.copyright_area {
    background: var(--bgcolor);
    padding: 20px 0;
    text-align: center;
}

.copyright_area p {
    color: white;
    margin: 0;
    font-size: 14px;
}

.sitemap_link {
    text-align: right;
}

.sitemap_link a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.sitemap_link a:hover {
    color: var(--goldcolor);
}

/* ==================== COPYRIGHT AREA STYLES ENDS ==================== */

/* ==================== RESPONSIVE STYLES STARTS ==================== */
@media (max-width: 991px) {
    .inner_slider_content h2 {
        font-size: 40px;
    }
    .inner_slider_content h3,
    .inner_slider_content h3 .ssv_text,
    .inner_slider_content h3 .exim_text {
        font-size: 42px;
    }
    .inner_slider_content p {
        width: 80%;
        font-size: 16px;
    }
    .about_active h2, .section_title h2 {
        font-size: 32px;
    }
    .site_logo_area img {
        max-width: 130px;
    }
    .sitemap_link {
        text-align: center;
        margin-top: 10px;
    }
    .copyright_area .row {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .inner_slider_content {
        width: 90%;
        text-align: center;
    }
    .inner_slider_content h2 {
        font-size: 28px;
    }
    .inner_slider_content h3,
    .inner_slider_content h3 .ssv_text,
    .inner_slider_content h3 .exim_text {
        font-size: 32px;
    }
    .inner_slider_content h1 {
        font-size: 14px;
    }
    .inner_slider_content p {
        width: 100%;
        font-size: 14px;
    }
    .b_btn a {
        padding: 10px 25px;
        font-size: 12px;
    }
    .about_area, .feature_area, .project_area, .gallery_section, .getintouch_section, .certifications_section {
        padding: 50px 0;
    }
    .about_active h2, .section_title h2 {
        font-size: 26px;
    }
    .touch_info_wrap {
        margin-bottom: 30px;
    }
    .touch_form_wrap {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .inner_slider_area {
        height: 500px;
    }
    .inner_slider_content h2 {
        font-size: 24px;
    }
    .inner_slider_content h3,
    .inner_slider_content h3 .ssv_text,
    .inner_slider_content h3 .exim_text {
        font-size: 26px;
    }
    .b_btn a {
        padding: 8px 18px;
        font-size: 11px;
    }
    .cert_img_wrap img {
        height: 140px;
    }
    .cert_caption h4 {
        font-size: 16px;
    }
}

/* Mobile Menu Styles */
@media (max-width: 991px) {
    .mobile_menu_toggle {
        display: block;
        width: 35px;
        height: 35px;
        cursor: pointer;
        background: var(--bgcolor);
        border-radius: 5px;
        padding: 8px;
        margin-left: auto;
    }
    
    .mobile_menu_toggle span {
        display: block;
        width: 100%;
        height: 3px;
        background: white;
        margin: 4px 0;
        transition: all 0.3s ease;
    }
    
    .mobile_menu_toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile_menu_toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile_menu_toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .inner_main_nav_area {
        position: fixed;
        top: 0;
        left: -280px;
        width: 280px;
        height: 100%;
        background: var(--titlecolor);
        z-index: 9999;
        transition: left 0.4s ease;
        overflow-y: auto;
        padding: 80px 20px 30px;
    }
    
    .inner_main_nav_area.active {
        left: 0;
    }
    
    .menu_overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.7);
        z-index: 9998;
        display: none;
    }
    
    .menu_overlay.active {
        display: block;
    }
    
    .inner_main_nav_area > ul > li {
        display: block;
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .inner_main_nav_area > ul > li > a {
        color: white;
        margin: 0;
        padding: 15px 0;
        display: block;
    }
    
    .inner_main_nav_area ul li .sub_menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        background: rgba(255,255,255,0.1);
        padding: 0;
        display: none;
    }
    
    .inner_main_nav_area ul li .sub_menu.active {
        display: block;
    }
    
    .inner_main_nav_area ul li .sub_menu li a {
        color: #ccc;
        padding: 10px 0 10px 20px;
    }
    
    .menu_has_children > a:after {
        content: '\eaa2';
        font-family: 'icofont';
        float: right;
    }
}

@media (min-width: 992px) {
    .mobile_menu_toggle,
    .menu_overlay {
        display: none !important;
    }
}

/* ==================== RESPONSIVE STYLES ENDS ==================== */

/* ==================== FEATURE AREA STYLES STARTS ==================== */
.feature_area {
    padding: 80px 0 50px;
}

.main_feature {
    background: url('img/fea_bg.png');
    background-position: center center;
    background-size: cover;
    border: 2px solid var(--goldlight);
    border-radius: 15px;
    transition: 0.4s;
    padding: 40px 25px;
    position: relative;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.main_feature:hover {
    border: 2px solid var(--bgcolor);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(27, 94, 32, 0.15);
}

.main_feature img {
    margin-bottom: 20px;
    transition: 0.3s;
}

.main_feature:hover img {
    transform: scale(1.05);
}

.main_feature h2 {
    margin: 15px 0 20px;
}

.main_feature h2 a {
    font-size: 22px;
    color: var(--titlecolor);
    font-weight: 700;
    text-decoration: none;
}

.main_feature h2 a:hover {
    color: var(--bgcolor);
}

.feature_icon a {
    height: 45px;
    width: 45px;
    line-height: 45px;
    font-size: 20px;
    border-radius: 50%;
    display: inline-block;
    color: var(--whitec);
    background: var(--bgcolor);
    transition: 0.3s;
}

.feature_icon a:hover {
    background: var(--goldcolor);
    color: var(--titlecolor);
    transform: rotate(90deg);
}
/* ==================== FEATURE AREA STYLES ENDS ==================== */

/* ==================== MAIN MENU / NAVIGATION STYLES STARTS ==================== */
.main_menu_area {
    padding: 0;
    background: var(--whitec);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.site_logo_area {
    text-align: left;
    padding: 10px 0;
    border-radius: 0;
    margin-right: 0;
}

.site_logo_area img {
    max-width: 130px;
    height: auto;
}

.main_nav_area {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.inner_main_nav_area ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.inner_main_nav_area > ul > li {
    display: inline-block;
    position: relative;
}

.inner_main_nav_area > ul > li > a {
    display: block;
    margin: 20px 12px;
    transition: 0.3s;
    font-size: 15px;
    font-weight: 600;
    color: var(--blackc);
    text-transform: capitalize;
    font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.inner_main_nav_area > ul > li > a > i {
    font-weight: 700;
    color: var(--titlecolor);
    font-size: 11px;
}

.inner_main_nav_area > ul > li > a:hover {
    color: var(--bgcolor);
}

.inner_main_nav_area ul li .sub_menu {
    position: absolute;
    top: 130%;
    left: 0;
    width: max-content;
    min-width: 200px;
    text-align: left;
    margin: 0;
    padding: 12px 5px;
    z-index: 9999;
    box-shadow: 0 0 30px rgba(0,0,0,0.1);
    background-color: var(--whitec);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    border-radius: 8px;
}

.inner_main_nav_area ul li:hover .sub_menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
}

.inner_main_nav_area ul li .sub_menu li {
    display: block;
}

.inner_main_nav_area ul li .sub_menu li a {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #444;
    padding: 6px 18px;
    transition: 0.3s;
}

.inner_main_nav_area ul li .sub_menu li a:hover {
    color: var(--bgcolor);
    padding-left: 22px;
}

.beutty_right_area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.main_nav_icons_together {
    display: flex;
    align-items: center;
}

.main_nav_icons > i {
    display: inline-block;
    cursor: pointer;
    transition: 0.3s;
    color: var(--blackc);
    font-size: 18px;
}

.main_nav_icons > i:hover {
    color: var(--bgcolor);
}

.menu_btn {
    margin-left: 0;
}

.dtbtn {
    background-color: var(--bgcolor);
    color: var(--whitec);
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    border-radius: 30px;
    padding: 8px 22px;
    transition: 0.3s;
    font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.dtbtn:hover {
    background-color: var(--goldcolor);
    color: var(--titlecolor);
    transform: translateY(-2px);
}
/* ==================== MAIN MENU / NAVIGATION STYLES ENDS ==================== */



/* ==================== SINGLE BANNER STYLES STARTS ==================== */
.single_banner_area {
    background: linear-gradient(135deg, #1a472a 0%, #0e2a1a 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.single_banner_area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('img/pattern-overlay.png') repeat;
    opacity: 0.05;
    pointer-events: none;
}

.inner_single_banner_content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.inner_single_banner_content h1 {
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.inner_single_banner_content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    font-weight: 400;
}

.banner_btn {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.banner_btn a {
    display: inline-block;
    padding: 12px 30px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 40px;
    transition: all 0.3s ease;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.banner_btn a.active {
    background: #d4a017;
    color: #1a472a;
    border: 2px solid #d4a017;
}

.banner_btn a.active:hover {
    background: transparent;
    color: #d4a017;
    border-color: #d4a017;
}

.banner_btn a:not(.active) {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.banner_btn a:not(.active):hover {
    border-color: #d4a017;
    color: #d4a017;
    background: rgba(212, 160, 23, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .single_banner_area {
        padding: 80px 0;
    }
    
    .inner_single_banner_content h1 {
        font-size: 38px;
    }
    
    .inner_single_banner_content p {
        font-size: 16px;
    }
    
    .banner_btn a {
        padding: 8px 20px;
        font-size: 12px;
    }
}
/* ==================== SINGLE BANNER STYLES ENDS ==================== */



/* ==================== PRODUCT SPECS SECTION STYLES STARTS ==================== */
.product_specs_section {
    padding: 80px 0;
    background: #f9f6f0;
}

.specs_img_wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.specs_img_wrap img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.specs_img_wrap:hover img {
    transform: scale(1.02);
}

.section_title_left {
    margin-bottom: 25px;
}

.section_title_left h4 {
    color: #d4a017;
    font-size: 16px;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 10px;
}

.section_title_left h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1a472a;
    margin-bottom: 15px;
}

.section_title_left .highlight {
    color: #d4a017;
}

.specs_table_wrap {
    margin-bottom: 25px;
    border: 1px solid #e8e0d0;
    border-radius: 12px;
    overflow: hidden;
}

.specs_table {
    width: 100%;
    border-collapse: collapse;
}

.specs_table tr {
    border-bottom: 1px solid #e8e0d0;
}

.specs_table tr:last-child {
    border-bottom: none;
}

.specs_table td {
    padding: 12px 15px;
    font-size: 14px;
    color: #333;
}

.specs_table td:first-child {
    background: #f0ebe3;
    width: 40%;
    font-weight: 500;
}

.specs_table td:last-child {
    background: #ffffff;
    width: 60%;
}

.specs_about_text {
    margin-bottom: 25px;
}

.specs_about_text p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 0;
}

.bulk_order_info {
    display: flex;
    gap: 15px;
    background: #e8f0e3;
    padding: 18px 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    border-left: 4px solid #d4a017;
}

.bulk_icon i {
    font-size: 40px;
    color: #1a472a;
}

.bulk_text h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a472a;
    margin-bottom: 8px;
}

.bulk_text p {
    font-size: 14px;
    color: #555;
    margin-bottom: 0;
    line-height: 1.5;
}

.specs_btn {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.specs_btn .dtbtn {
    background: #1a472a;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.specs_btn .dtbtn:hover {
    background: #d4a017;
    color: #1a472a;
}

.specs_btn .specs_link {
    background: transparent;
    color: #1a472a;
    padding: 12px 20px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid #1a472a;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.specs_btn .specs_link:hover {
    background: #1a472a;
    color: #ffffff;
    border-color: #1a472a;
}

/* Responsive */
@media (max-width: 992px) {
    .product_specs_section {
        padding: 50px 0;
    }
    
    .section_title_left h2 {
        font-size: 28px;
    }
    
    .specs_btn {
        justify-content: center;
    }
    
    .specs_img_wrap {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .specs_table td {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .bulk_order_info {
        flex-direction: column;
        text-align: center;
    }
    
    .specs_btn .dtbtn,
    .specs_btn .specs_link {
        padding: 8px 20px;
        font-size: 12px;
    }
}
/* ==================== PRODUCT SPECS SECTION STYLES ENDS ==================== */

.certified_section {
    padding: 60px 0;
    background: #f9f6f0;
}
.certified_full_row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}
.cert_full_item {
    flex: 0 0 auto;
    width: auto;
    max-width: 180px;
    padding: 10px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    text-align: center;
}
.cert_full_item:hover {
    transform: scale(1.05);
}
.cert_full_item img {
    max-height: 120px;
    width: auto;
    object-fit: contain;
}
@media (max-width: 768px) {
    .cert_full_item {
        max-width: 120px;
        padding: 8px;
    }
    .cert_full_item img {
        max-height: 80px;
    }
}



.certified_section {
    padding: 60px 0;
    background: #f9f6f0;
}
.certified_full_row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}
.cert_full_item {
    flex: 0 0 auto;
    width: auto;
    max-width: 180px;
    padding: 10px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    text-align: center;
}
.cert_full_item:hover {
    transform: scale(1.05);
}
.cert_full_item img {
    max-height: 120px;
    width: auto;
    object-fit: contain;
}
@media (max-width: 768px) {
    .cert_full_item {
        max-width: 120px;
        padding: 8px;
    }
    .cert_full_item img {
        max-height: 80px;
    }
}


/* ==================== RESET & ROOT VARIABLES STARTS ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blackc: #272727;
    --whitec: #fff;
    --ddcolor: #ddd;
    --bgcolor: #1B5E20;
    --goldcolor: #D4AF37;
    --goldlight: #F5E6A3;
    --brcolor: #0E76BC;
    --paracolor: #555;
    --titlecolor: #1a3b1a;
}

body {
    font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: var(--titlecolor);
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
}

/* ==================== MAIN MENU / NAVIGATION STYLES STARTS ==================== */
.main_menu_area {
    padding: 0;
    background: var(--whitec);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    min-height: 70px;
}

.site_logo_area {
    text-align: left;
    padding: 8px 0;
    border-radius: 0;
    margin-right: 30px;
}

.site_logo_area img {
    max-width: 200px;
    height: auto;
}

.main_nav_area {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.inner_main_nav_area ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.inner_main_nav_area > ul > li {
    display: inline-block;
    position: relative;
}

.inner_main_nav_area > ul > li > a {
    display: block;
    margin: 12px 6px;
    transition: 0.3s;
    font-size: 14px;
    font-weight: 700;
    color: var(--blackc);
    text-transform: capitalize;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    padding: 10px 18px;
    border: 2px solid var(--bgcolor);
    border-radius: 8px;
    background: transparent;
}

.inner_main_nav_area > ul > li > a:hover {
    background: var(--bgcolor);
    color: var(--whitec);
}

.inner_main_nav_area > ul > li > a > i {
    font-weight: 700;
    color: var(--titlecolor);
    font-size: 11px;
}

.inner_main_nav_area ul li .sub_menu {
    position: absolute;
    top: 130%;
    left: 0;
    width: max-content;
    min-width: 200px;
    text-align: left;
    margin: 0;
    padding: 12px 5px;
    z-index: 9999;
    box-shadow: 0 0 30px rgba(0,0,0,0.1);
    background-color: var(--whitec);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    border-radius: 8px;
}

.inner_main_nav_area ul li:hover .sub_menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
}

.inner_main_nav_area ul li .sub_menu li {
    display: block;
}

.inner_main_nav_area ul li .sub_menu li a {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #444;
    padding: 6px 18px;
    transition: 0.3s;
}

.inner_main_nav_area ul li .sub_menu li a:hover {
    color: var(--bgcolor);
    padding-left: 22px;
}

.beutty_right_area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.main_nav_icons_together {
    display: flex;
    align-items: center;
}

.main_nav_icons > i {
    display: inline-block;
    cursor: pointer;
    transition: 0.3s;
    color: var(--blackc);
    font-size: 18px;
}

.main_nav_icons > i:hover {
    color: var(--bgcolor);
}

.menu_btn {
    margin-left: 0;
}

.dtbtn {
    background-color: var(--bgcolor);
    color: var(--whitec);
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    border-radius: 8px;
    padding: 10px 22px;
    transition: 0.3s;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    border: 2px solid var(--bgcolor);
}

.dtbtn:hover {
    background-color: var(--goldcolor);
    color: var(--titlecolor);
    transform: translateY(-2px);
    border-color: var(--goldcolor);
}

/* ==================== MAIN MENU / NAVIGATION STYLES ENDS ==================== */

/* ==================== SLIDER AREA STYLES STARTS ==================== */
.slider_area {
    overflow: hidden;
    position: relative;
}

.inner_slider_area {
    height: calc(100vh - 70px);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex !important;
    align-items: center;
}

.inner_slider_content {
    margin: 0 auto;
    text-align: left;
    width: 68%;
}

.inner_slider_content h1 {
    font-size: 20px;
    color: var(--bgcolor);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.inner_slider_content h2 {
    font-size: 60px;
    margin: 0;
    font-weight: 700;
    color: var(--titlecolor);
}

.inner_slider_content h3 {
    font-size: 70px;
    margin: 0;
    font-weight: 800;
}

.inner_slider_content h3 .ssv_text,
.inner_slider_content h3 .exim_text {
    font-size: 70px;
    font-weight: 800;
    display: inline-block;
}

.inner_slider_content h3 .exim_text {
    color: var(--bgcolor);
}

.inner_slider_content p {
    color: var(--titlecolor);
    width: 60%;
    font-weight: 500;
    font-size: 20px;
    margin: 20px 0 0;
}

.b_btn {
    margin-top: 35px;
}

.b_btn a {
    display: inline-block;
    border-radius: 30px;
    padding: 14px 40px;
    font-size: 14px;
    font-weight: 600;
    margin-right: 12px;
    margin-bottom: 10px;
    font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: var(--whitec);
    background-color: var(--bgcolor);
    transition: 0.3s;
}

.b_btn a:hover {
    background-color: var(--goldcolor);
    color: var(--titlecolor);
}

.b_btn a.active {
    background-color: var(--goldcolor);
    color: var(--titlecolor);
}

.b_btn a.active:hover {
    background-color: var(--bgcolor);
    color: var(--whitec);
}

.slick-prev, .slick-next {
    display: none !important;
}

/* ==================== SLIDER AREA STYLES ENDS ==================== */

/* ==================== FEATURE AREA STYLES STARTS ==================== */
.feature_area {
    padding: 80px 0 50px;
}

.main_feature {
    background: url('img/fea_bg.png');
    background-position: center center;
    background-size: cover;
    border: 2px solid var(--goldlight);
    border-radius: 15px;
    transition: 0.4s;
    padding: 40px 25px;
    position: relative;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.main_feature:hover {
    border: 2px solid var(--bgcolor);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(27, 94, 32, 0.15);
}

.main_feature img {
    margin-bottom: 20px;
    transition: 0.3s;
}

.main_feature:hover img {
    transform: scale(1.05);
}

.main_feature h2 {
    margin: 15px 0 20px;
}

.main_feature h2 a {
    font-size: 22px;
    color: var(--titlecolor);
    font-weight: 700;
    text-decoration: none;
}

.main_feature h2 a:hover {
    color: var(--bgcolor);
}

.feature_icon a {
    height: 45px;
    width: 45px;
    line-height: 45px;
    font-size: 20px;
    border-radius: 50%;
    display: inline-block;
    color: var(--whitec);
    background: var(--bgcolor);
    transition: 0.3s;
}

.feature_icon a:hover {
    background: var(--goldcolor);
    color: var(--titlecolor);
    transform: rotate(90deg);
}

/* ==================== FEATURE AREA STYLES ENDS ==================== */

/* ==================== ABOUT AREA STYLES STARTS ==================== */
.about_area {
    padding: 80px 0;
    background: #fafbf5;
}

.single_about_img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about_active h4 {
    color: var(--bgcolor);
    font-size: 16px;
    letter-spacing: 2px;
    margin-top: 10px;
    font-weight: 600;
}

.about_active h2 {
    font-size: 42px;
    margin: 15px 0 20px;
    font-weight: 800;
}

.about_active h2 .highlight {
    color: var(--bgcolor);
}

.about_list {
    display: flex;
    gap: 15px;
    margin: 25px 0;
    align-items: center;
}

.about_item i {
    font-size: 40px;
    width: 70px;
    height: 70px;
    line-height: 67px;
    text-align: center;
    border-radius: 50%;
    color: var(--whitec);
    background: var(--titlecolor);
    border: 4px solid var(--goldcolor);
    transition: 0.3s;
}

.about_list:hover .about_item i {
    background: var(--bgcolor);
    transform: scale(1.05);
}

.about_text h2 a {
    font-size: 20px;
    color: var(--titlecolor);
    font-weight: 700;
    text-decoration: none;
}

.about_text h2 a:hover {
    color: var(--bgcolor);
}

.witrlistw ul {
    list-style: none;
    padding: 0;
}

.witrlistw ul li {
    margin-bottom: 12px;
}

.witrlistw ul li span i {
    color: var(--bgcolor);
    margin-right: 8px;
}

.about_btn {
    margin-top: 20px;
}

.about_btn a {
    background: var(--bgcolor);
    color: white;
    padding: 14px 40px;
    border-radius: 30px;
    display: inline-block;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.about_btn a:hover {
    background: var(--goldcolor);
    color: var(--titlecolor);
}

.main_counter.about_counter2 {
    margin-top: 20px;
}

.inner_counter_sub_cont {
    display: flex;
    align-items: baseline;
}

.inner_counter_sub_cont h3 {
    font-size: 60px;
    color: var(--bgcolor);
    font-weight: 800;
}

.inner_counter_sub_cont span {
    font-size: 40px;
    color: var(--goldcolor);
    font-weight: 700;
}

.inner_counter_area h2 {
    font-size: 18px;
    text-transform: uppercase;
    margin-top: 5px;
    font-weight: 600;
}

/* ==================== ABOUT AREA STYLES ENDS ==================== */

/* ==================== PROJECT / PRODUCTS SECTION STYLES STARTS ==================== */
.project_area {
    padding: 80px 0;
    background: #fafbf5;
}

.products_grid {
    display: flex;
    flex-wrap: wrap;
}

.product_item {
    margin-bottom: 30px;
}

.inner_img_area {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.inner_img_area:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(27, 94, 32, 0.15);
}

.inner_img_overlay {
    position: relative;
    overflow: hidden;
}

.inner_img_overlay img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.inner_img_area:hover .inner_img_overlay img {
    transform: scale(1.08);
}

.img_overlay_go {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 94, 32, 0.85);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.inner_img_area:hover .img_overlay_go {
    opacity: 1;
}

.absolute_icons {
    text-align: center;
    margin-bottom: 15px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.inner_img_area:hover .absolute_icons {
    transform: translateY(0);
}

.absolute_icons a {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: var(--goldcolor);
    color: var(--titlecolor);
    border-radius: 50%;
    text-align: center;
    font-size: 24px;
    transition: all 0.3s ease;
}

.absolute_icons a:hover {
    background: var(--whitec);
    transform: rotate(90deg);
}

.project_title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.95);
    text-align: center;
    padding: 15px 10px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.inner_img_area:hover .project_title {
    transform: translateY(0);
}

.project_title h2 a {
    color: var(--titlecolor);
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.project_title h2 a:hover {
    color: var(--bgcolor);
}

.project_title p {
    color: var(--paracolor);
    margin: 5px 0 0;
    font-size: 13px;
}

/* ==================== PROJECT / PRODUCTS SECTION STYLES ENDS ==================== */

/* ==================== GALLERY SECTION STYLES STARTS ==================== */
.gallery_section {
    padding: 80px 0;
    background: var(--whitec);
}

.gallery_grid {
    margin-top: 20px;
}

.gallery_item {
    margin-bottom: 30px;
}

.gallery_img_wrap {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
}

.gallery_img_wrap img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery_img_wrap:hover img {
    transform: scale(1.1);
}

.gallery_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 94, 32, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery_img_wrap:hover .gallery_overlay {
    opacity: 1;
}

.gallery_popup_btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--goldcolor);
    border: none;
    color: var(--titlecolor);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery_popup_btn:hover {
    background: var(--whitec);
    transform: scale(1.1);
}

/* Image Popup Modal */
.image_popup_modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
}

.image_popup_modal.active {
    display: flex;
}

.popup_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    cursor: pointer;
}

.popup_container {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    z-index: 100000;
    animation: popupFadeIn 0.3s ease;
    text-align: center;
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.popup_close_btn {
    position: absolute;
    top: -45px;
    right: -45px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bgcolor);
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup_close_btn:hover {
    background: var(--goldcolor);
    color: var(--titlecolor);
    transform: rotate(90deg);
}

.popup_container img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.popup_caption {
    margin-top: 15px;
    color: var(--goldcolor);
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}

/* ==================== GALLERY SECTION STYLES ENDS ==================== */

/* ==================== CERTIFIED SECTION STYLES STARTS ==================== */
.certified_section {
    padding: 60px 0;
    background: #f9f6f0;
}

.certified_full_row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.cert_full_item {
    flex: 0 0 auto;
    width: auto;
    max-width: 180px;
    padding: 10px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    text-align: center;
}

.cert_full_item:hover {
    transform: scale(1.05);
}

.cert_full_item img {
    max-height: 120px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .cert_full_item {
        max-width: 120px;
        padding: 8px;
    }
    .cert_full_item img {
        max-height: 80px;
    }
}
/* ==================== CERTIFIED SECTION STYLES ENDS ==================== */

/* ==================== GET IN TOUCH SECTION STYLES STARTS ==================== */
.getintouch_section {
    padding: 80px 0;
    background: #fafbf5;
}

.getintouch_row {
    margin-top: 30px;
}

.touch_info_wrap {
    background: var(--titlecolor);
    padding: 40px 30px;
    border-radius: 20px;
    height: 100%;
    color: white;
}

.touch_info_item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.touch_info_item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.touch_icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--bgcolor);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.touch_icon i {
    font-size: 28px;
    color: white;
}

.touch_info_item:hover .touch_icon {
    transform: scale(1.1);
    background: var(--goldcolor);
}

.touch_info_item:hover .touch_icon i {
    color: var(--titlecolor);
}

.touch_text h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.touch_text p {
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

.touch_social {
    margin-top: 30px;
    padding-top: 20px;
}

.touch_social h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.touch_social_links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.touch_social_links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
}

.touch_social_links a:hover {
    background: var(--goldcolor);
    color: var(--titlecolor);
    transform: translateY(-5px);
}

.touch_form_wrap {
    background: white;
    padding: 40px 35px;
    border-radius: 20px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.touch_form_wrap h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--titlecolor);
    position: relative;
    padding-bottom: 15px;
}

.touch_form_wrap h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--bgcolor);
}

.form_group {
    margin-bottom: 20px;
}

.form_group input,
.form_group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: white;
    font-family: inherit;
}

.form_group input:focus,
.form_group textarea:focus {
    outline: none;
    border-color: var(--bgcolor);
    box-shadow: 0 0 0 3px rgba(27, 94, 32, 0.1);
}

.form_group textarea {
    resize: vertical;
    min-height: 120px;
}

.touch_submit_btn {
    background: var(--bgcolor);
    color: white;
    border: none;
    padding: 14px 35px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.touch_submit_btn:hover {
    background: var(--goldcolor);
    color: var(--titlecolor);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.touch_submit_btn i {
    font-size: 16px;
}

.form_message {
    margin-top: 20px;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 14px;
}

.form_message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form_message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ==================== GET IN TOUCH SECTION STYLES ENDS ==================== */

/* ==================== FOOTER AREA STYLES STARTS ==================== */
.footer_area {
    padding: 80px 0 40px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-color: #0a1f0a;
}

.footer_widget h4 {
    color: var(--whitec);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 12px;
    position: relative;
}

.footer_widget h4::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--goldcolor);
}

.footer_logo_area img {
    margin-bottom: 20px;
    background: white;
    padding: 10px;
    border-radius: 10px;
}

.footer_logo_area p {
    color: #ccc;
    margin-bottom: 15px;
    font-size: 14px;
}

.inner_subscribe_form_area {
    position: relative;
    margin-top: 20px;
}

.inner_subscribe_form_area input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 30px;
    color: white;
}

.inner_subscribe_form_area input::placeholder {
    color: #aaa;
}

.inner_subscribe_form_area button {
    position: absolute;
    right: 5px;
    top: 5px;
    background: var(--goldcolor);
    border: none;
    color: var(--titlecolor);
    padding: 8px 18px;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.inner_subscribe_form_area button:hover {
    background: var(--bgcolor);
    color: white;
}

.footer_nav ul {
    list-style: none;
    padding: 0;
}

.footer_nav ul li {
    margin-bottom: 12px;
}

.footer_nav ul li a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
}

.footer_nav ul li a i {
    margin-right: 8px;
    color: var(--goldcolor);
}

.footer_nav ul li a:hover {
    color: var(--goldcolor);
    padding-left: 5px;
}

.footer_address_text {
    color: #ccc;
}

.footer_address_text p {
    color: #ccc;
    margin-bottom: 12px;
    font-size: 14px;
}

.footer_address_text i {
    color: var(--goldcolor);
    margin-right: 10px;
    width: 25px;
}

/* ==================== FOOTER AREA STYLES ENDS ==================== */

/* ==================== COPYRIGHT AREA STYLES STARTS ==================== */
.copyright_area {
    background: var(--bgcolor);
    padding: 20px 0;
    text-align: center;
}

.copyright_area p {
    color: white;
    margin: 0;
    font-size: 14px;
}

.sitemap_link {
    text-align: right;
}

.sitemap_link a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.sitemap_link a:hover {
    color: var(--goldcolor);
}

/* ==================== COPYRIGHT AREA STYLES ENDS ==================== */

/* ==================== RESPONSIVE STYLES STARTS ==================== */
@media (max-width: 991px) {
    .inner_slider_content h2 {
        font-size: 40px;
    }
    .inner_slider_content h3,
    .inner_slider_content h3 .ssv_text,
    .inner_slider_content h3 .exim_text {
        font-size: 42px;
    }
    .inner_slider_content p {
        width: 80%;
        font-size: 16px;
    }
    .about_active h2, .section_title h2 {
        font-size: 32px;
    }
    .site_logo_area img {
        max-width: 160px;
    }
    .sitemap_link {
        text-align: center;
        margin-top: 10px;
    }
    .copyright_area .row {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .inner_slider_content {
        width: 90%;
        text-align: center;
    }
    .inner_slider_content h2 {
        font-size: 28px;
    }
    .inner_slider_content h3,
    .inner_slider_content h3 .ssv_text,
    .inner_slider_content h3 .exim_text {
        font-size: 32px;
    }
    .inner_slider_content h1 {
        font-size: 14px;
    }
    .inner_slider_content p {
        width: 100%;
        font-size: 14px;
    }
    .b_btn a {
        padding: 10px 25px;
        font-size: 12px;
    }
    .about_area, .feature_area, .project_area, .gallery_section, .getintouch_section, .certifications_section {
        padding: 50px 0;
    }
    .about_active h2, .section_title h2 {
        font-size: 26px;
    }
    .touch_info_wrap {
        margin-bottom: 30px;
    }
    .touch_form_wrap {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .inner_slider_area {
        height: 500px;
    }
    .inner_slider_content h2 {
        font-size: 24px;
    }
    .inner_slider_content h3,
    .inner_slider_content h3 .ssv_text,
    .inner_slider_content h3 .exim_text {
        font-size: 26px;
    }
    .b_btn a {
        padding: 8px 18px;
        font-size: 11px;
    }
    .cert_full_item {
        max-width: 120px;
        padding: 8px;
    }
    .cert_full_item img {
        max-height: 80px;
    }
}
/* ==================== RESPONSIVE STYLES ENDS ==================== */

/* ==================== HEADER HEIGHT FIX STARTS ==================== */
.main_menu_area {
    min-height: 50px !important;
    padding: 0 !important;
}

.site_logo_area {
    padding: 3px 0 !important;
}

.site_logo_area img {
    max-width: 150px !important;
}

.inner_main_nav_area > ul > li > a {
    margin: 4px 4px !important;
    padding: 4px 12px !important;
    font-size: 12px !important;
}

.dtbtn {
    padding: 4px 15px !important;
    font-size: 11px !important;
}

.inner_slider_area {
    height: calc(100vh - 50px) !important;
    min-height: 450px !important;
}
/* ==================== HEADER HEIGHT FIX ENDS ==================== */

/* ==================== ENQUIRY POPUP STYLES STARTS ==================== */
.enquiry_popup_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
}

.enquiry_popup_overlay.active {
    display: flex;
}

.enquiry_popup_box {
    background: white;
    max-width: 500px;
    width: 90%;
    padding: 40px 35px;
    border-radius: 15px;
    position: relative;
    animation: popupFadeIn 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.enquiry_popup_close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 30px;
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
    transition: 0.3s;
}

.enquiry_popup_close:hover {
    color: #1B5E20;
    transform: rotate(90deg);
}

.enquiry_popup_content h3 {
    font-size: 24px;
    font-weight: 800;
    color: #1a3b1a;
    margin-bottom: 10px;
}

.enquiry_popup_content p {
    color: #555;
    margin-bottom: 25px;
    font-size: 14px;
}

.enquiry_form_group {
    margin-bottom: 18px;
}

.enquiry_form_group input,
.enquiry_form_group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: 0.3s;
    font-family: inherit;
}

.enquiry_form_group input:focus,
.enquiry_form_group textarea:focus {
    border-color: #1B5E20;
    outline: none;
    box-shadow: 0 0 0 3px rgba(27,94,32,0.1);
}

.enquiry_submit_btn {
    background: #1B5E20;
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}

.enquiry_submit_btn:hover {
    background: #D4AF37;
    color: #1a3b1a;
}
/* ==================== ENQUIRY POPUP STYLES ENDS ==================== */


/*AAAAAAAAAAAAAAAAAAAAAAA!!! LOGO & HERO TEXT FIX STARTS !!!AAAAAAAAAAAAAAAAAAA*/

/* Logo - Bigger & Left */
.site_logo_area .main_logo img {
    width: 220px !important;
    max-width: 100%;
    margin-left: -20px !important;
}

/* Hero Text - Smaller to fit in blue area */
.inner_slider_content h1 {
    font-size: 1.8rem !important;
    line-height: 1.2 !important;
    max-width: 100% !important;
    word-wrap: break-word !important;
}

@media (max-width: 768px) {
    .inner_slider_content h1 {
        font-size: 1.2rem !important;
    }
    .site_logo_area .main_logo img {
        width: 150px !important;
        margin-left: -10px !important;
    }
}

/*AAAAAAAAAAAAAAAAAAAAAAA!!! LOGO & HERO TEXT FIX ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! HERO TEXT FIX (STRONG) STARTS !!!AAAAAAAAAAAAAAAAAAA*/

/* Hero text ko forcefully chhota aur fit */
.slider_area .inner_slider_content h1 {
    font-size: 1.4rem !important;
    line-height: 1.2 !important;
    max-width: 70% !important;
    white-space: normal !important;
    word-break: break-word !important;
    padding-right: 30px !important;
}

/* Mobile */
@media (max-width: 768px) {
    .slider_area .inner_slider_content h1 {
        font-size: 0.9rem !important;
        max-width: 100% !important;
        padding-right: 10px !important;
    }
}

/* Agar overflow ho raha hai toh slider image ko side pe rakho */
.inner_slider_area {
    background-size: cover !important;
    background-position: right center !important;
}

/*AAAAAAAAAAAAAAAAAAAAAAA!!! HERO TEXT FIX (STRONG) ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! CERTIFICATION LOGOS FIX STARTS !!!AAAAAAAAAAAAAAAAAAA*/

/* Certification section - uniform size and 4-column grid */
.certified_full_row {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
    justify-content: center !important;
    margin-top: 30px !important;
    padding: 0 15px !important;
}

.cert_full_item {
    width: 100% !important;
    max-width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 15px !important;
    background: white !important;
    border-radius: 10px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    cursor: pointer !important;
}

.cert_full_item:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15) !important;
}

.cert_full_item img {
    width: 100% !important;
    height: 100% !important;
    max-height: 150px !important;
    object-fit: contain !important;
    padding: 5px !important;
}

/* Mobile - 2 columns */
@media (max-width: 768px) {
    .certified_full_row {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
        padding: 0 10px !important;
    }
    .cert_full_item {
        aspect-ratio: 1 / 1 !important;
        padding: 10px !important;
    }
    .cert_full_item img {
        max-height: 100px !important;
    }
}

/* Mobile small - 2 columns */
@media (max-width: 480px) {
    .certified_full_row {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    .cert_full_item {
        padding: 8px !important;
    }
    .cert_full_item img {
        max-height: 80px !important;
    }
}

/*AAAAAAAAAAAAAAAAAAAAAAA!!! CERTIFICATION LOGOS FIX ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/* ===== CLIENT HEADER UPDATE - VERY BIG LOGO ===== */

/* 1. Header height - same (120px) */
.main_menu_area {
    padding: 0 !important;
    min-height: 120px !important;
    max-height: 130px !important;
    overflow: visible !important;
}

/* 2. Logo container */
.site_logo_area {
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    height: 120px !important;
}

/* 3. LOGO - VERY VERY BIG! */
.site_logo_area .main_logo img {
    max-width: 450px !important;
    width: 450px !important;
    height: auto !important;
    margin-left: -30px !important;
    max-height: 150px !important;
    object-fit: contain !important;
}

/* 4. Navigation - vertically centered */
.main_nav_area {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    height: 120px !important;
    gap: 12px !important;
}

/* 5. Navigation links - normal */
.inner_main_nav_area {
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
}

.inner_main_nav_area > ul {
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.inner_main_nav_area > ul > li {
    display: inline-block !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
}

.inner_main_nav_area > ul > li > a {
    margin: 0 6px !important;
    padding: 8px 18px !important;
    font-size: 16px !important;
    height: auto !important;
    line-height: 1.4 !important;
    border: 2px solid var(--bgcolor) !important;
    border-radius: 10px !important;
    background: transparent !important;
    font-weight: 700 !important;
}

.inner_main_nav_area > ul > li > a:hover {
    background: var(--bgcolor) !important;
    color: var(--whitec) !important;
}

/* 6. Right side - normal */
.beutty_right_area {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    height: 120px !important;
}

.main_nav_icons > i {
    font-size: 20px !important;
}

.menu_btn .dtbtn {
    padding: 8px 22px !important;
    font-size: 14px !important;
    border-radius: 10px !important;
    line-height: 1.4 !important;
    font-weight: 700 !important;
}

/* 7. Row alignment */
.main_menu_area .container .row {
    align-items: center !important;
    height: 120px !important;
}

.main_menu_area .container .row > div {
    display: flex !important;
    align-items: center !important;
    height: 120px !important;
}

/* 8. Hero banner - adjust spacing */
.inner_slider_area {
    min-height: calc(100vh - 120px) !important;
    height: calc(100vh - 120px) !important;
    max-height: calc(100vh - 120px) !important;
}

/* ===== EXTRA BIG LOGO ON LARGE SCREENS ===== */
@media (min-width: 1400px) {
    .site_logo_area .main_logo img {
        max-width: 500px !important;
        width: 500px !important;
        max-height: 160px !important;
        margin-left: -35px !important;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .site_logo_area .main_logo img {
        max-width: 420px !important;
        width: 420px !important;
        max-height: 145px !important;
        margin-left: -30px !important;
    }
}

/* ===== RESPONSIVE - TABLETS ===== */
@media (max-width: 991px) {
    .main_menu_area {
        min-height: 90px !important;
        max-height: 100px !important;
    }
    .site_logo_area {
        height: 90px !important;
    }
    .main_nav_area {
        height: 90px !important;
    }
    .beutty_right_area {
        height: 90px !important;
    }
    .main_menu_area .container .row {
        height: 90px !important;
    }
    .main_menu_area .container .row > div {
        height: 90px !important;
    }
    .site_logo_area .main_logo img {
        max-width: 280px !important;
        width: 280px !important;
        max-height: 90px !important;
        margin-left: -15px !important;
    }
    .inner_main_nav_area > ul > li > a {
        font-size: 13px !important;
        padding: 5px 12px !important;
    }
    .menu_btn .dtbtn {
        font-size: 12px !important;
        padding: 5px 14px !important;
    }
    .inner_slider_area {
        min-height: calc(100vh - 90px) !important;
        height: calc(100vh - 90px) !important;
        max-height: calc(100vh - 90px) !important;
    }
}

-----------------------------------------------


/* ===== HEADER & SLIDER FIX ===== */

/* Header - fixed position */
.main_menu_area {
    position: relative !important;
    z-index: 999 !important;
}

/* Slider - adjust height */
.inner_slider_area {
    min-height: calc(100vh - 120px) !important;
    height: calc(100vh - 120px) !important;
    max-height: calc(100vh - 120px) !important;
}

/* Responsive */
@media (max-width: 991px) {
    .main_menu_area {
        min-height: 90px !important;
        max-height: 100px !important;
    }
    .main_menu_area .row {
        height: 90px !important;
    }
    .inner_slider_area {
        min-height: calc(100vh - 90px) !important;
        height: calc(100vh - 90px) !important;
        max-height: calc(100vh - 90px) !important;
    }
    .main_menu_area .main_logo img {
        max-width: 280px !important;
        width: 280px !important;
        max-height: 85px !important;
    }
}

@media (max-width: 767px) {
    .main_menu_area {
        min-height: 70px !important;
        max-height: 80px !important;
    }
    .main_menu_area .row {
        height: 70px !important;
    }
    .inner_slider_area {
        min-height: calc(100vh - 70px) !important;
        height: calc(100vh - 70px) !important;
        max-height: calc(100vh - 70px) !important;
    }
    .main_menu_area .main_logo img {
        max-width: 180px !important;
        width: 180px !important;
        max-height: 65px !important;
    }
    .main_menu_area ul li a {
        font-size: 11px !important;
        padding: 4px 10px !important;
    }
    .main_menu_area .dtbtn {
        font-size: 10px !important;
        padding: 4px 10px !important;
    }
}
--------------------------------------

/* ===== CERTIFICATION GRID FIX - CLEAN & PROPER ===== */

/* 1. Certification section */
.certified_section {
    padding: 60px 0 !important;
    background: #f9f6f0 !important;
}

/* 2. Section title */
.certified_section .section_title {
    text-align: center !important;
    margin-bottom: 40px !important;
}

.certified_section .section_title h4 {
    color: #1B5E20 !important;
    font-size: 16px !important;
    letter-spacing: 2px !important;
    font-weight: 600 !important;
    margin-top: 10px !important;
}

.certified_section .section_title h2 {
    font-size: 36px !important;
    font-weight: 800 !important;
    margin-top: 15px !important;
}

.certified_section .section_title h2 .highlight {
    color: #1B5E20 !important;
}

/* 3. Row - clean */
.certified_section .row {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 20px !important;
}

/* 4. Each column - equal size */
.certified_section .col-lg-3,
.certified_section .col-md-4,
.certified_section .col-sm-6,
.certified_section .col-6 {
    flex: 0 0 calc(25% - 20px) !important;
    max-width: calc(25% - 20px) !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* 5. Each card - equal height & center */
.cert_full_item {
    width: 100% !important;
    height: 180px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 15px !important;
    background: #ffffff !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    border: 1px solid #e8e0d0 !important;
    cursor: default !important;
}

/* 6. Hover effect */
.cert_full_item:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 30px rgba(27, 94, 32, 0.15) !important;
}

/* 7. Images - center aligned, maintain aspect ratio */
.cert_full_item img {
    width: auto !important;
    height: auto !important;
    max-width: 130px !important;
    max-height: 130px !important;
    object-fit: contain !important;
    padding: 5px !important;
    display: block !important;
    margin: 0 auto !important;
}

/* ===== TABLETS (3 columns) ===== */
@media (max-width: 991px) {
    .certified_section .col-lg-3,
    .certified_section .col-md-4,
    .certified_section .col-sm-6,
    .certified_section .col-6 {
        flex: 0 0 calc(33.33% - 18px) !important;
        max-width: calc(33.33% - 18px) !important;
    }
    .cert_full_item {
        height: 160px !important;
    }
    .cert_full_item img {
        max-width: 110px !important;
        max-height: 110px !important;
    }
}

/* ===== MOBILE (2 columns) ===== */
@media (max-width: 767px) {
    .certified_section .row {
        gap: 15px !important;
    }
    .certified_section .col-lg-3,
    .certified_section .col-md-4,
    .certified_section .col-sm-6,
    .certified_section .col-6 {
        flex: 0 0 calc(50% - 15px) !important;
        max-width: calc(50% - 15px) !important;
    }
    .cert_full_item {
        height: 140px !important;
        padding: 10px !important;
    }
    .cert_full_item img {
        max-width: 90px !important;
        max-height: 90px !important;
    }
    .certified_section .section_title h2 {
        font-size: 28px !important;
    }
}

/* ===== EXTRA SMALL (2 columns) ===== */
@media (max-width: 480px) {
    .certified_section .row {
        gap: 12px !important;
    }
    .certified_section .col-lg-3,
    .certified_section .col-md-4,
    .certified_section .col-sm-6,
    .certified_section .col-6 {
        flex: 0 0 calc(50% - 12px) !important;
        max-width: calc(50% - 12px) !important;
    }
    .cert_full_item {
        height: 120px !important;
        padding: 8px !important;
        border-radius: 8px !important;
    }
    .cert_full_item img {
        max-width: 75px !important;
        max-height: 75px !important;
    }
    .certified_section .section_title h2 {
        font-size: 22px !important;
    }
    .certified_section {
        padding: 40px 0 !important;
    }
}

------------------------------------------------------------

/* ===== CERTIFICATION SECTION - FORCE CENTER ===== */

/* 1. Section */
.certified_section {
    padding: 60px 0 !important;
    background: #f9f6f0 !important;
    text-align: center !important;
}

/* 2. Container - Center */
.certified_section .container-fluid {
    text-align: center !important;
    padding: 0 !important;
    max-width: 100% !important;
}

/* 3. Section Title - Center */
.certified_section .section_title {
    text-align: center !important;
    margin-bottom: 40px !important;
}

.certified_section .section_title h4 {
    color: #1B5E20 !important;
    font-size: 16px !important;
    letter-spacing: 2px !important;
    font-weight: 600 !important;
    margin-top: 10px !important;
    text-align: center !important;
}

.certified_section .section_title h2 {
    font-size: 36px !important;
    font-weight: 800 !important;
    margin-top: 15px !important;
    text-align: center !important;
}

.certified_section .section_title h2 .highlight {
    color: #1B5E20 !important;
}

.certified_section .section_subtitle {
    color: #666 !important;
    font-size: 15px !important;
    margin-top: 10px !important;
    text-align: center !important;
}

/* 4. Row - Force Center */
.certified_section .row {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 0 auto !important;
    padding: 0 !important;
    text-align: center !important;
}

/* 5. Grid Container - Center */
.certified_full_row {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 30px auto 0 auto !important;
    padding: 0 15px !important;
    max-width: 1200px !important;
    text-align: center !important;
    place-items: center !important;
}

/* 6. Each column - Center */
.certified_section .col-lg-3,
.certified_section .col-md-4,
.certified_section .col-sm-6,
.certified_section .col-6 {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 0 !important;
    margin: 0 auto !important;
    text-align: center !important;
    float: none !important;
}

/* 7. Each card - Center */
.cert_full_item {
    width: 100% !important;
    max-width: 220px !important;
    height: 160px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 15px !important;
    background: #ffffff !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    border: 1px solid #e8e0d0 !important;
    cursor: pointer !important;
    gap: 10px !important;
    text-align: center !important;
    margin: 0 auto !important;
}

.cert_full_item:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 30px rgba(27, 94, 32, 0.15) !important;
    border-color: #1B5E20 !important;
}

/* 8. Logo images - Center */
.cert_full_item img {
    width: auto !important;
    height: auto !important;
    max-width: 100px !important;
    max-height: 80px !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
    transition: transform 0.3s ease !important;
}

.cert_full_item:hover img {
    transform: scale(1.05) !important;
}

/* 9. Label - Center */
.cert_label {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #1B5E20 !important;
    text-align: center !important;
    display: block !important;
    letter-spacing: 0.5px !important;
}

/* ===== RESPONSIVE - TABLETS (3 columns) ===== */
@media (max-width: 991px) {
    .certified_full_row {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 18px !important;
        padding: 0 15px !important;
    }
    .cert_full_item {
        height: 140px !important;
        max-width: 200px !important;
    }
    .cert_full_item img {
        max-width: 80px !important;
        max-height: 65px !important;
    }
    .cert_label {
        font-size: 12px !important;
    }
}

/* ===== RESPONSIVE - MOBILE (2 columns) ===== */
@media (max-width: 767px) {
    .certified_full_row {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
        padding: 0 10px !important;
    }
    .cert_full_item {
        height: 120px !important;
        max-width: 160px !important;
        padding: 10px !important;
    }
    .cert_full_item img {
        max-width: 65px !important;
        max-height: 55px !important;
    }
    .cert_label {
        font-size: 11px !important;
    }
    .certified_section .section_title h2 {
        font-size: 28px !important;
    }
}

/* ===== RESPONSIVE - EXTRA SMALL (2 columns) ===== */
@media (max-width: 480px) {
    .certified_full_row {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        padding: 0 8px !important;
    }
    .cert_full_item {
        height: 100px !important;
        max-width: 140px !important;
        padding: 8px !important;
        border-radius: 8px !important;
    }
    .cert_full_item img {
        max-width: 50px !important;
        max-height: 40px !important;
    }
    .cert_label {
        font-size: 10px !important;
    }
    .certified_section .section_title h2 {
        font-size: 22px !important;
    }
    .certified_section {
        padding: 40px 0 !important;
    }
}

-------------------------------------------

/* ===== GALLERY SECTION - 3 SECTIONS ===== */

/* 1. Gallery section spacing */
.gallery_section {
    padding: 60px 0 !important;
    background: #ffffff !important;
}

/* 2. Section title - center */
.gallery_section .section_title {
    text-align: center !important;
    margin-bottom: 30px !important;
}

.gallery_section .section_title h4 {
    color: #1B5E20 !important;
    font-size: 16px !important;
    letter-spacing: 2px !important;
    font-weight: 600 !important;
    margin-top: 10px !important;
}

.gallery_section .section_title h2 {
    font-size: 32px !important;
    font-weight: 800 !important;
    margin-top: 15px !important;
}

.gallery_section .section_title h2 .highlight {
    color: #1B5E20 !important;
}

/* 3. Gallery grid - 3 columns */
.gallery_grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 25px !important;
    margin-top: 20px !important;
}

/* 4. Gallery item */
.gallery_item {
    margin-bottom: 0 !important;
}

/* 5. Image wrapper */
.gallery_img_wrap {
    position: relative !important;
    overflow: hidden !important;
    border-radius: 12px !important;
    cursor: pointer !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.gallery_img_wrap:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 30px rgba(27, 94, 32, 0.15) !important;
}

/* 6. Gallery images */
.gallery_img_wrap img {
    width: 100% !important;
    height: 280px !important;
    object-fit: cover !important;
    transition: transform 0.5s ease !important;
}

.gallery_img_wrap:hover img {
    transform: scale(1.08) !important;
}

/* 7. Overlay */
.gallery_overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(27, 94, 32, 0.75) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}

.gallery_img_wrap:hover .gallery_overlay {
    opacity: 1 !important;
}

/* 8. Popup button */
.gallery_popup_btn {
    width: 55px !important;
    height: 55px !important;
    border-radius: 50% !important;
    background: #D4AF37 !important;
    border: none !important;
    color: #1a3b1a !important;
    font-size: 22px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.gallery_popup_btn:hover {
    background: #ffffff !important;
    transform: scale(1.1) !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .gallery_grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
    .gallery_img_wrap img {
        height: 240px !important;
    }
    .gallery_section .section_title h2 {
        font-size: 28px !important;
    }
}

@media (max-width: 767px) {
    .gallery_grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    .gallery_img_wrap img {
        height: 180px !important;
    }
    .gallery_section .section_title h2 {
        font-size: 24px !important;
    }
}

@media (max-width: 480px) {
    .gallery_grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    .gallery_img_wrap img {
        height: 140px !important;
    }
    .gallery_section .section_title h2 {
        font-size: 20px !important;
    }
    .gallery_popup_btn {
        width: 40px !important;
        height: 40px !important;
        font-size: 16px !important;
    }
}




/* === START: Horizontal About List === */
.witrlistw.all_list_color ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 25px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.witrlistw.all_list_color ul li {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}
/* === END: Horizontal About List === */



/* ============================================================
     LOGO FIX - SIRF HEADER LOGO (FOOTER SAFE)
     ============================================================ */

/* SIRF HEADER LOGO - JISME CLASS "header-logo-only" HO */
.header-logo-only {
    max-width: 490px !important;
    width: 490px !important;
    height: auto !important;
    max-height: 160px !important;
    margin-left: -120px !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    display: block !important;
    float: left !important;
    position: relative !important;
    left: -30px !important;
}

/* HEADER ROW - FORCE LEFT ALIGN */
.main_menu_area .container-fluid .row {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
    height: 120px !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* LOGO COLUMN - FORCE LEFT */
.main_menu_area .container-fluid .row .col-auto {
    flex: 0 0 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    height: 120px !important;
    padding: 0 !important;
    margin: 0 !important;
    position: relative !important;
    left: -40px !important;
}

/* LOGO CONTAINER */
.site_logo_area {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding: 0 !important;
    margin: 0 !important;
    margin-left: -30px !important;
}

/* NAVIGATION - PUSH RIGHT */
.main_menu_area .container-fluid .row .col {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    height: 120px !important;
    padding: 0 !important;
    margin: 0 !important;
}

.main_nav_area {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    height: 120px !important;
    gap: 10px !important;
    padding: 0 !important;
    margin: 0 !important;
}

.inner_main_nav_area {
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
}

.inner_main_nav_area > ul {
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 4px !important;
}

.inner_main_nav_area > ul > li {
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
}

.inner_main_nav_area > ul > li > a {
    margin: 0 4px !important;
    padding: 8px 16px !important;
    font-size: 15px !important;
    border: 2px solid #1B5E20 !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    color: #272727 !important;
    text-decoration: none !important;
    display: inline-block !important;
}

.inner_main_nav_area > ul > li > a:hover {
    background: #1B5E20 !important;
    color: #ffffff !important;
}

/* SEARCH & BUTTON */
.beutty_right_area {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    height: 120px !important;
}

.main_nav_icons > i {
    font-size: 20px !important;
    cursor: pointer !important;
    color: #272727 !important;
}

.menu_btn .dtbtn {
    background-color: #1B5E20 !important;
    color: #fff !important;
    padding: 8px 20px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    border-radius: 8px !important;
    border: 2px solid #1B5E20 !important;
    text-decoration: none !important;
    display: inline-block !important;
}

.menu_btn .dtbtn:hover {
    background-color: #D4AF37 !important;
    color: #1a3b1a !important;
    border-color: #D4AF37 !important;
}

/* ===== FOOTER LOGO - NORMAL (SAFE) ===== */
.footer-logo-only {
    max-width: 180px !important;
    width: 180px !important;
    height: auto !important;
    background: white !important;
    padding: 10px !important;
    border-radius: 10px !important;
    margin-bottom: 20px !important;
    margin-left: 0 !important;
    float: none !important;
    position: static !important;
}

/* ============================================================
     RESPONSIVE
     ============================================================ */

@media (max-width: 1199px) {
    .header-logo-only {
        max-width: 350px !important;
        width: 350px !important;
        max-height: 120px !important;
        margin-left: -80px !important;
        left: -20px !important;
    }
    .main_menu_area .container-fluid .row,
    .main_menu_area .container-fluid .row .col-auto,
    .main_menu_area .container-fluid .row .col,
    .main_nav_area,
    .beutty_right_area {
        height: 110px !important;
    }
    .main_menu_area .container-fluid .row .col-auto {
        left: -30px !important;
    }
    .inner_main_nav_area > ul > li > a {
        font-size: 12px !important;
        padding: 5px 10px !important;
    }
    .menu_btn .dtbtn {
        font-size: 11px !important;
        padding: 5px 12px !important;
    }
}

@media (max-width: 991px) {
    .header-logo-only {
        max-width: 250px !important;
        width: 250px !important;
        max-height: 85px !important;
        margin-left: -50px !important;
        left: -15px !important;
    }
    .main_menu_area .container-fluid .row,
    .main_menu_area .container-fluid .row .col-auto,
    .main_menu_area .container-fluid .row .col,
    .main_nav_area,
    .beutty_right_area {
        height: 85px !important;
    }
    .main_menu_area .container-fluid .row .col-auto {
        left: -25px !important;
    }
    .inner_main_nav_area > ul > li > a {
        font-size: 11px !important;
        padding: 4px 8px !important;
    }
    .menu_btn .dtbtn {
        font-size: 10px !important;
        padding: 4px 10px !important;
    }
}

@media (max-width: 767px) {
    .header-logo-only {
        max-width: 170px !important;
        width: 170px !important;
        max-height: 60px !important;
        margin-left: -30px !important;
        left: -8px !important;
    }
    .main_menu_area .container-fluid .row,
    .main_menu_area .container-fluid .row .col-auto,
    .main_menu_area .container-fluid .row .col,
    .main_nav_area,
    .beutty_right_area {
        height: 70px !important;
    }
    .main_menu_area .container-fluid .row .col-auto {
        left: -15px !important;
    }
    .inner_main_nav_area > ul > li > a {
        font-size: 9px !important;
        padding: 3px 6px !important;
        border-width: 1.5px !important;
    }
    .menu_btn .dtbtn {
        font-size: 8px !important;
        padding: 3px 6px !important;
        border-width: 1.5px !important;
    }
    .main_nav_icons > i {
        font-size: 14px !important;
    }
}

@media (max-width: 480px) {
    .header-logo-only {
        max-width: 130px !important;
        width: 130px !important;
        max-height: 45px !important;
        margin-left: -20px !important;
        left: -5px !important;
    }
    .main_menu_area .container-fluid .row,
    .main_menu_area .container-fluid .row .col-auto,
    .main_menu_area .container-fluid .row .col,
    .main_nav_area,
    .beutty_right_area {
        height: 60px !important;
    }
    .main_menu_area .container-fluid .row .col-auto {
        left: -10px !important;
    }
    .inner_main_nav_area > ul > li > a {
        font-size: 7px !important;
        padding: 2px 4px !important;
        border-width: 1px !important;
        border-radius: 4px !important;
    }
    .menu_btn .dtbtn {
        font-size: 7px !important;
        padding: 2px 4px !important;
        border-width: 1px !important;
        border-radius: 4px !important;
    }
    .main_nav_icons > i {
        font-size: 10px !important;
    }
}

/* ============================================================
     END - LOGO FIX (Footer Safe)
     ============================================================ */