/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! START OF style.css !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! GLOBAL RESET & VARIABLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
:root {
    --white-color: #fff;
    --black-color: #010f34;
    --heading-color: #01133c;
    --body-color: #666666;
    --ternary-color: #88a5ad;
    --accent-color: #ef0f3a;
    --gray-color: #f5f7fa;
    --gray2-color: #e8ebee;
    --border-color: #ecf1f5;
    --heading-font: 'Archivo', sans-serif;
    --body-font: 'Roboto', sans-serif;
    
    --main-color: #ef0f3a;
    --secondary-color: #1B5E20;
    --white: #fff;
    --grey: #666;
    --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    
    --e-global-color-text: #D1D1D1;
    --e-global-color-secondary: #ef0f3a;
    --e-global-color-cce5634: #FFFFFF;
    --e-global-color-fbc3351: rgba(255, 255, 255, 0.1);
    --e-global-color-623c606: rgba(0, 0, 0, 0.7);
    
    --primary: #ef0f3a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Mulish', sans-serif;
    color: #586b75;
    background-color: #f2f3f8;
    overflow-x: hidden;
    font-size: 16px;
    line-height: 2rem;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! GLOBAL RESET & VARIABLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! CONTAINER & UTILITY CLASSES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.container-fluid {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 15px;
}

@media (min-width: 576px) { .container { max-width: 540px; } }
@media (min-width: 768px) { .container { max-width: 720px; } }
@media (min-width: 992px) { .container { max-width: 960px; } }
@media (min-width: 1200px) { .container { max-width: 1140px; } }
@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1320px;
    }
}

.position-relative { position: relative; }
.d-flex { display: flex; }

.cs_center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cs_mp_0 {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cs_bg_filed {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.cs_white_color { color: var(--white-color); }
.cs_heading_color { color: var(--heading-color); }
.cs_accent_color { color: var(--accent-color); }
.cs_heading_bg { background-color: var(--heading-color); }

.cs_fs_18 { font-size: 18px; line-height: 1.556em; }
.cs_fs_24 { font-size: 24px; line-height: 1.417em; }
.cs_fs_70 { font-size: 70px; line-height: 1.143em; }

@media (max-width: 991px) { .cs_fs_70 { font-size: 56px; } }
@media (max-width: 575px) { .cs_fs_70 { font-size: 48px; } }

.cs_semibold { font-weight: 600; }
.cs_mb_18 { margin-bottom: 18px; }
.cs_mb_34 { margin-bottom: 34px; }

.cs_btn.cs_style_1 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--white-color);
    gap: 10px;
    border: 1px solid var(--accent-color);
    padding: 12px 30px;
    line-height: 1.714em;
    background-color: var(--accent-color);
    position: relative;
    transition: all 0.3s ease;
}

@media (max-width: 991px) { .cs_btn.cs_style_1 { padding: 8px 20px; } }

.cs_btn.cs_style_1::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background-color: var(--heading-color);
    opacity: 0;
    transition: all 0.3s ease;
}

.cs_btn.cs_style_1 > * { position: relative; z-index: 1; }
.cs_btn.cs_style_1 i { transform: rotate(-45deg); transition: all 0.5s ease; }
.cs_btn.cs_style_1:hover i { transform: rotate(-405deg) scale(1.4); }
.cs_btn.cs_style_1:hover::before { opacity: 0.2; }

.cs_circle_btn {
    display: inline-flex;
    padding: 0;
    border: none;
    outline: none;
    background-color: transparent;
    font-size: 22px;
    cursor: pointer;
}

.cs_social_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    transition: all 0.3s ease;
    color: var(--white-color);
}

.cs_social_btn:hover { color: rgba(255, 255, 255, 0.7); transform: scale(1.1); }
/*AAAAAAAAAAAAAAAAAAAAAAA!!! CONTAINER & UTILITY CLASSES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! HEADER STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.cs_site_header {
    position: absolute;
    z-index: 101;
    width: 100%;
    left: 0;
    top: 0px;
    transition: all 0.4s ease;
}
.cs_site_header.cs_style_1 { background-color: #fff; }
.cs_site_header.cs_style_1 .cs_top_header { background-color: #141422; color: #fff; }
@media (max-width: 1199px) { .cs_site_header.cs_style_1 .cs_top_header { display: none; } }
.cs_site_header.cs_style_1 .cs_main_header_in,
.cs_site_header.cs_style_1 .cs_top_header_in {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
}
.cs_site_header.cs_style_1 .cs_main_header_in { height: 90px; }
.cs_site_header.cs_style_1 .cs_top_header_in { height: 50px; position: relative; z-index: 1; }
.cs_site_header.cs_style_1 .cs_top_header_left { padding-left: 31.6%; }
@media (max-width: 1400px) { .cs_site_header.cs_style_1 .cs_top_header_left { padding-left: 27.3%; } }
.cs_site_header.cs_style_1 .cs_main_header_right {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 0 40px;
}
@media (max-width: 1199px) { .cs_site_header.cs_style_1 .cs_main_header_right { gap: 0 25px; padding-right: 55px; } }
.cs_header_contact_list {
    display: flex;
    gap: 5px 30px;
}
.cs_header_contact_list li {
    display: flex;
    gap: 10px;
    align-items: center;
}
.cs_header_contact_list li i { color: var(--accent-color); }
.cs_header_contact_list a { color: #fff; }
.cs_header_contact_list a:hover { color: rgba(255, 255, 255, 0.7); }
.cs_header_social_links {
    display: flex;
    font-size: 15px;
    gap: 5px 20px;
}
.cs_logo_wrap {
    position: relative;
    height: calc(100% + 50px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -50px;
}
@media (max-width: 1199px) { .cs_logo_wrap { margin-top: 0; height: 80px; } }
.cs_site_branding {
    display: inline-block;
    position: relative;
    z-index: 3;
    max-width: 225px;
}
@media (max-width: 1250px) { .cs_site_branding { max-width: 200px; } }
@media (max-width: 1199px) { .cs_site_branding { max-width: 180px; } }
.cs_logo_bg_shape {
    position: absolute;
    right: -155px;
    bottom: 0;
    z-index: 2;
}
.cs_logo_bg_shape img {
    position: absolute;
    top: 0;
    right: 70px;
}
@media (max-width: 1600px) { .cs_logo_bg_shape { right: -100px; } }
@media (max-width: 1400px) { .cs_logo_bg_shape { right: -80px; } }
.cs_header_search_wrap {
    position: absolute;
    top: 100%;
    margin-top: 20px;
    right: 0;
    background-color: #fff;
    padding: 15px;
    box-shadow: 2px 2px 50px 0px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    z-index: 11;
    transition: all 0.3s ease;
}
.cs_header_search {
    position: relative;
    width: 270px;
}
.cs_header_search .cs_header_search_input {
    padding: 12px 55px 12px 20px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 27, 0.2);
    width: 100%;
    outline: none;
}
.cs_header_search .cs_header_search_btn {
    position: absolute;
    right: 0;
    top: 0;
    border: none;
    background-color: transparent;
    padding: 0;
    height: 50px;
    width: 50px;
    cursor: pointer;
}
@media screen and (min-width: 1200px) {
    .cs_main_header_center {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 100;
    }
    .cs_nav {
        display: flex;
        align-items: center;
        height: 100%;
        line-height: 1.6em;
        position: relative;
        z-index: 100;
    }
    .cs_nav .cs_nav_list {
        display: flex !important;
        flex-wrap: wrap;
        height: inherit;
    }
    .cs_nav .cs_nav_list > li {
        margin-right: 40px;
        height: inherit;
    }
    .cs_nav .cs_nav_list > li:last-child { margin-right: 0; }
    .cs_nav .cs_nav_list > li > a {
        padding: 10px 0;
        display: inline-flex;
        position: relative;
        height: inherit;
        align-items: center;
        color: var(--heading-color);
        font-weight: 600;
    }
    .cs_nav .cs_nav_list > li > ul {
        left: 0;
        top: calc(100% + 15px);
        pointer-events: none;
    }
    .cs_nav .cs_nav_list > li:hover > ul {
        top: 100%;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    .cs_nav .cs_nav_list li.menu-item-has-children > a::after {
        content: '';
        display: inline-block;
        height: 6px;
        width: 6px;
        border: 2px solid currentColor;
        transform: rotate(45deg);
        border-left: 0;
        border-top: 0;
        margin-left: 6px;
        position: relative;
        top: -1px;
    }
    .cs_nav .cs_nav_list ul {
        width: 260px;
        background-color: var(--white-color);
        position: absolute;
        border-top: 2px solid var(--accent-color);
        box-shadow: 0px 1px 2px 0px rgba(2, 0, 181, 0.1);
        padding: 10px 0;
        z-index: 100;
        opacity: 0;
        visibility: hidden;
        display: block !important;
        border-radius: 0 0 5px 5px;
        transition: all 0.4s ease;
    }
    .cs_nav .cs_nav_list ul a {
        display: block;
        padding: 10px 20px;
        color: var(--heading-color);
    }
    .cs_nav .cs_nav_list ul ul {
        top: 15px;
        left: 100%;
    }
    .cs_menu_toggle,
    .cs_menu_dropdown_toggle { display: none; }
}
@media screen and (max-width: 1199px) {
    .cs_menu_toggle {
        display: inline-block;
        width: 30px;
        height: 27px;
        cursor: pointer;
        position: absolute;
        top: 27px;
        right: 30px;
    }
    .cs_menu_toggle span,
    .cs_menu_toggle span:before,
    .cs_menu_toggle span:after {
        width: 100%;
        height: 2px;
        background-color: currentColor;
        display: block;
    }
    .cs_menu_toggle span {
        margin: 0 auto;
        position: relative;
        top: 12px;
    }
    .cs_menu_toggle span:before {
        content: '';
        position: absolute;
        margin-top: -9px;
    }
    .cs_menu_toggle span:after {
        content: '';
        position: absolute;
        margin-top: 9px;
    }
    .cs_site_header.cs_style_1 .cs_menu_toggle {
        top: 50%;
        right: 0px;
        margin-top: -13px;
    }
    .cs_nav .cs_nav_list_wrap {
        position: fixed;
        width: 100vw;
        left: -100vw;
        top: 0;
        background-color: #fff;
        color: var(--heading-color);
        height: 100vh;
        padding-top: 80px;
        transition: all 0.4s ease;
        z-index: 999;
    }
    .cs_nav .cs_nav_list {
        padding: 10px 0;
        overflow: auto;
        height: 100%;
    }
    .cs_nav .cs_nav_list ul {
        padding-left: 15px;
        display: none;
    }
    .cs_nav .cs_nav_list a {
        display: block;
        padding: 12px 15px;
        color: var(--heading-color);
        font-weight: 600;
    }
    .cs_menu_dropdown_toggle {
        position: absolute;
        height: 40px;
        width: 100%;
        top: 0;
        left: 0;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding: 23px 18px;
        cursor: pointer;
        z-index: 3;
    }
    .cs_menu_dropdown_toggle span {
        display: block;
        position: relative;
        height: 10px;
        width: 10px;
    }
    .cs_menu_dropdown_toggle span:before,
    .cs_menu_dropdown_toggle span:after {
        content: '';
        display: block;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        height: 2px;
        width: 10px;
        background-color: currentColor;
        transition: all 0.3s ease;
    }
    .cs_menu_dropdown_toggle span:before { transform: translate(-50%, -50%) rotate(90deg); }
    .cs_site_header.cs_style_1 .cs_main_header_in { height: 80px; }
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! HEADER STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! HERO / SLIDER STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.cs_hero.cs_style_1 {
    min-height: 600px;
    height: calc(100vh - 140px);
    max-height: 1000px;
    position: relative;
    padding: 80px 0;
    display: flex !important;
    align-items: center;
    width: 100%;
    background-size: cover;
    background-position: center;
}
@media (max-width: 575px) {
    .cs_hero.cs_style_1 {
        height: initial;
        max-height: initial;
    }
}
.cs_hero.cs_style_1 .cs_hero_text {
    max-width: 680px;
    position: relative;
    z-index: 1;
    text-align: left;
    padding-top: 100px;
}
@media (max-width: 991px) {
    .cs_hero.cs_style_1 .cs_hero_text {
        max-width: 500px;
        padding-top: 60px;
    }
}
.cs_hero.cs_style_1 .cs_hero_title {
    color: var(--heading-color);
    text-align: left;
}
.cs_hero.cs_style_1 .cs_hero_subtitle {
    color: var(--body-color);
    text-align: left;
}
.cs_hero_btns {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px 40px;
    justify-content: flex-start;
}
.cs_hero_number {
    display: flex;
    align-items: center;
    gap: 15px;
}
.cs_hero_number_icon {
    height: 55px;
    width: 55px;
    border-radius: 50%;
    flex: none;
}
.cs_slider {
    position: relative;
}
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
}
.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
.slick-slide > div {
    display: flex;
    flex-direction: column;
}
.slick-initialized .slick-slide {
    display: block;
}
.cs_pagination.cs_style_1 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 5.5%;
    padding: 30px 0;
    z-index: 10;
}
@media (max-width: 1600px) { .cs_pagination.cs_style_1 { left: 3%; } }
@media (max-width: 1480px) { .cs_pagination.cs_style_1 { left: 25px; } }
@media (max-width: 1070px) {
    .cs_pagination.cs_style_1 {
        top: initial;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        padding: 10px 30px;
    }
}
.cs_pagination.cs_style_1 ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex !important;
    gap: 23px;
    flex-direction: column;
}
@media (max-width: 1070px) {
    .cs_pagination.cs_style_1 ul {
        flex-direction: row;
    }
}
.cs_pagination.cs_style_1 li {
    height: 13px;
    width: 13px;
    background-color: var(--heading-color);
    border-radius: 50%;
    margin: 0;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}
.cs_pagination.cs_style_1 li:hover {
    background-color: var(--accent-color);
}
.cs_pagination.cs_style_1 li::before {
    content: '';
    height: 35px;
    width: 35px;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    opacity: 0;
}
.cs_pagination.cs_style_1 li.slick-active {
    background-color: var(--accent-color);
}
.cs_pagination.cs_style_1 li.slick-active::before {
    opacity: 1;
}
.cs_pagination.cs_style_1 button {
    display: none;
}
.slick-slide .cs_hero.cs_style_1 .cs_hero_text {
    position: relative;
    left: 50px;
    transition: all 0.4s ease;
    opacity: 0;
}
.slick-slide.slick-current .cs_hero.cs_style_1 .cs_hero_text {
    opacity: 1;
    left: 0;
    transition-delay: 0.8s;
}
@media (max-width: 767px) {
    .cs_site_header .cs_btn.cs_style_1 {
        display: none;
    }
}
.cs_slider_wrapper {
    width: 100%;
    overflow: hidden;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! HERO / SLIDER STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! FEATURES SECTION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.features {
    padding: 5rem 5%;
    background: #f2f3f8;
}
.features .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1.5rem;
}
.feature-item {
    padding: 2rem 1.5rem;
    background-color: var(--white);
    border-bottom: 0.5rem solid var(--main-color);
    box-shadow: var(--box-shadow);
    text-align: center;
    border-radius: 0.5rem;
}
.feature-item i {
    font-size: 3rem;
    color: var(--main-color);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 7rem;
    width: 7rem;
    background: #f2f3f8;
    border-radius: 50%;
    margin: 0 auto;
    margin-bottom: 2rem;
}
.feature-item h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--secondary-color);
    padding-bottom: 1rem;
}
.feature-item p {
    font-size: 1.5rem;
    color: var(--grey);
    line-height: 1.6;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! FEATURES SECTION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! ABOUT SECTION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.aboutus-section-two {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background: #f2f3f8;
}
.aboutus-section-two .section-header {
    margin-bottom: 24px;
}
.aboutus-section-two .section-header .badge {
    font-size: 16px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(239, 15, 58, 0.1);
    color: var(--accent-color);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 16px;
}
.aboutus-section-two .section-header .badge i {
    font-size: 14px;
}
.aboutus-section-two .section-header .section-title-one {
    font-size: 48px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 16px;
}
@media (max-width: 991px) {
    .aboutus-section-two .section-header .section-title-one {
        font-size: 38px;
    }
}
@media (max-width: 767px) {
    .aboutus-section-two .section-header .section-title-one {
        font-size: 32px;
    }
}
.aboutus-section-two .section-header .section-title-one span {
    color: var(--accent-color);
}
.aboutus-section-two .section-header p {
    color: var(--body-color);
    margin-bottom: 0;
}
.aboutus-img {
    position: relative;
    width: 100%;
}
@media (max-width: 991px) {
    .aboutus-img {
        display: none;
    }
}
.aboutus-img .img-one {
    width: 100%;
    height: 450px;
    top: 0;
    right: 0;
    position: absolute;
    border-radius: 20px;
    object-fit: cover;
    max-width: 360px;
}
@media (max-width: 1399px) {
    .aboutus-img .img-one {
        max-width: 320px;
        object-fit: cover;
    }
}
@media (max-width: 1199px) {
    .aboutus-img .img-one {
        max-width: 280px;
    }
}
.aboutus-img .img-two {
    width: 100%;
    max-width: 377px;
    height: 495px;
    bottom: 0;
    left: 0;
    border-radius: 20px;
    margin: 115px 0 0 0;
    position: relative;
}
@media (max-width: 1399px) {
    .aboutus-img .img-two {
        max-width: 320px !important;
        object-fit: cover;
    }
}
.aboutus-img .element-one {
    position: absolute;
    left: 38px;
    top: 0;
    z-index: -1;
    animation: updown 1.5s ease-in-out 0s infinite alternate;
}
.aboutus-img .element-1 {
    position: absolute;
    right: 0;
    bottom: -130px;
    z-index: -1;
    animation: updown 1.5s ease-in-out 0s infinite alternate;
}
@media (max-width: 1199px) {
    .aboutus-img .element-1 {
        display: none;
    }
}
@keyframes updown {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}
.aboutus-img .about-contact {
    display: flex;
    align-items: center;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    position: absolute;
    bottom: 31px;
    right: 88px;
    background: var(--white);
}
@media (max-width: 1399px) {
    .aboutus-img .about-contact {
        right: 55px;
    }
}
.aboutus-img .about-contact .about-contact-item {
    width: 89px;
    height: 93px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}
.aboutus-img .about-contact .about-contact-item i {
    color: #fff;
    font-size: 40px;
}
.aboutus-img .about-contact .about-contact-list {
    padding: 12px 20px;
    background: var(--white);
}
.aboutus-img .about-contact .about-contact-list span {
    font-size: 14px;
    color: var(--body-color);
}
.aboutus-img .about-contact .about-contact-list .number {
    font-size: 24px;
    font-weight: 700;
    color: var(--heading-color);
    font-family: 'Archivo', sans-serif;
}
.aboutus-content {
    margin-bottom: 0;
}
.aboutus-content .aboutus-content-item {
    margin-bottom: 40px;
}
.aboutus-content .aboutus-content-item .aboutus-text {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}
.aboutus-content .aboutus-content-item .aboutus-text .custom-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
@media (max-width: 767px) {
    .aboutus-content .aboutus-content-item .aboutus-text .custom-title {
        font-size: 22px;
    }
}
.aboutus-content .aboutus-content-item .aboutus-text .custom-title i {
    color: var(--accent-color);
    font-size: 24px;
}
.aboutus-content .aboutus-content-item .aboutus-text p {
    color: var(--body-color);
    margin-bottom: 0;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! ABOUT SECTION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! SERVICES SECTION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.service-area {
    position: relative;
    display: block;
    padding: 80px 0;
    background: #EDF5F9;
    z-index: 1;
}
.service-bg {
    position: relative;
    z-index: 1;
}
.service-bg::before {
    content: "";
    position: absolute;
    background: url('/img/03.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100%;
    width: 100%;
    opacity: 0.09;
    z-index: -1;
}
.site-heading {
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}
.site-title-tagline {
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-color);
    position: relative;
    display: inline-block;
}
.site-title {
    font-weight: 700;
    text-transform: capitalize;
    font-size: 50px;
    color: var(--heading-color);
    margin-bottom: 0;
}
.site-title span {
    color: var(--accent-color);
}
.heading-divider {
    display: inline-block;
    position: relative;
    height: 3px;
    border-radius: 30px;
    background-color: var(--accent-color);
    width: 90px;
    overflow: hidden;
    margin-top: 15px;
}
.heading-divider:after {
    content: '';
    position: absolute;
    left: 0;
    top: -1.1px;
    height: 7px;
    width: 8px;
    background-color: #ffffff;
    animation: heading-move 5s infinite linear;
}
@keyframes heading-move {
    0% { transform: translateX(-1px); }
    50% { transform: translateX(85px); }
    100% { transform: translateX(-1px); }
}
.service-item {
    position: relative;
    padding: 10px;
    margin-bottom: 25px;
    border-radius: 10px;
    background: #fff;
    transition: all .5s ease-in-out;
    box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.05);
    z-index: 1;
}
.service-item:hover {
    transform: translateY(-10px);
}
.service-img img {
    border-radius: 10px;
    width: 100%;
    height: 220px;
    object-fit: cover;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
}
.service-content {
    padding: 15px;
    position: relative;
}
.service-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    background: var(--accent-color);
    border-radius: 15px;
    position: absolute;
    right: 50px;
    margin-top: -70px;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    transition: all .5s ease-in-out;
}
.service-icon i {
    color: #fff;
    font-size: 50px;
    line-height: 1;
}
.service-item:hover .service-icon {
    transform: rotateY(360deg);
}
.service-title a {
    font-size: 22px;
    margin-top: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--heading-color);
    text-decoration: none;
    display: inline-block;
}
.service-title a:hover {
    color: var(--accent-color);
}
.service-text {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-top: 10px;
}
.service-arrow {
    margin-top: 20px;
}
.theme-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: var(--accent-color);
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.theme-btn::before {
    content: "";
    height: 300px;
    width: 300px;
    background: #263787;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%) scale(0);
    transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}
.theme-btn:hover::before {
    transform: translateY(-50%) translateX(-50%) scale(1);
}
.theme-btn:hover {
    color: #fff;
}
.theme-btn i {
    transition: transform 0.3s ease;
    font-size: 14px;
}
.theme-btn:hover i {
    transform: translateX(5px);
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! SERVICES SECTION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! MARQUEE SECTION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.marquee-section {
    background-color: var(--accent-color);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}
.horizontal-slide {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}
.slide-list {
    display: inline-flex;
    animation: marqueeScroll 25s linear infinite;
}
.marquee-item {
    display: inline-flex;
    align-items: center;
    margin: 0 40px;
}
.marquee-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--white-color);
    margin: 0;
    position: relative;
    display: inline-block;
    letter-spacing: 1px;
    font-family: 'Archivo', sans-serif;
}
.marquee-item::after {
    content: "✦";
    display: inline-block;
    margin-left: 80px;
    width: auto;
    height: auto;
    font-size: 40px;
    color: var(--white-color);
}
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@media (max-width: 768px) {
    .marquee-title { font-size: 28px; }
    .marquee-item { margin: 0 20px; }
    .marquee-item::after { margin-left: 40px; font-size: 24px; }
}
@media (max-width: 480px) {
    .marquee-title { font-size: 22px; }
    .marquee-item { margin: 0 15px; }
    .marquee-item::after { margin-left: 25px; font-size: 20px; }
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! MARQUEE SECTION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! FOOTER STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.mad-footer {
    background-color: #0E0D0D;
    background-image: url('img/footer_bg_5.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    margin-top: -2px;
}
.mad-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--e-global-color-623c606);
    background-image: url('img/dot-bg-1.png');
    background-position: center center;
    background-repeat: repeat;
    background-size: cover;
    pointer-events: none;
}
.footer-wave-top {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    line-height: 0;
    z-index: 2;
}
.footer-wave-top svg {
    width: 100%;
    height: auto;
}
.footer-grid-container {
    position: relative;
    z-index: 2;
    max-width: 1320px;
    margin: 0 auto;
    padding: 100px 15px 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
@media (max-width: 992px) {
    .footer-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}
@media (max-width: 576px) {
    .footer-grid-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}
.footer-col h3 {
    font-family: 'Archivo', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--e-global-color-cce5634);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}
.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--e-global-color-secondary);
    border-radius: 2px;
}
.footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
}
.company-text {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--e-global-color-text);
    margin-bottom: 25px;
}
.social-share-list {
    display: flex;
    gap: 12px;
    margin: 0;
    padding: 0;
}
.social-share-list li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--e-global-color-secondary);
    color: var(--e-global-color-cce5634);
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s ease;
}
.social-share-list li a:hover {
    opacity: 0.8;
    transform: translateY(-3px);
    background-color: #ff9e2c;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 14px;
}
.footer-links li a {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: var(--e-global-color-text);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.footer-links li a i {
    font-size: 13px;
    color: var(--e-global-color-secondary);
    transition: all 0.3s ease;
}
.footer-links li a:hover {
    color: var(--e-global-color-secondary);
    padding-left: 5px;
}
.footer-links li a:hover i {
    transform: translateX(3px);
}
.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}
.contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: var(--e-global-color-text);
}
.contact-info li i {
    width: 35px;
    height: 35px;
    background-color: rgba(239, 15, 58, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--e-global-color-secondary);
    font-size: 16px;
}
.contact-info li a {
    color: var(--e-global-color-text);
    text-decoration: none;
    transition: all 0.3s ease;
}
.contact-info li a:hover {
    color: var(--e-global-color-secondary);
}
.footer-bottom {
    position: relative;
    z-index: 2;
    border-top: 1px solid var(--e-global-color-fbc3351);
    padding: 20px 15px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    max-width: 1320px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
.copyright {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: var(--e-global-color-text);
}
.footer-bottom-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}
.footer-bottom-links a {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: var(--e-global-color-text);
    text-decoration: none;
    transition: all 0.3s ease;
}
.footer-bottom-links a:hover {
    color: var(--e-global-color-secondary);
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! FOOTER STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! RESPONSIVE MEDIA QUERIES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
@media (max-width: 768px) {
    .site-title {
        font-size: 36px;
    }
    .service-icon {
        width: 80px;
        height: 80px;
        right: 30px;
        margin-top: -60px;
    }
    .service-icon i {
        font-size: 40px;
    }
    .service-area {
        padding: 50px 0;
    }
    .aboutus-section-two {
        padding: 50px 0;
    }
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! RESPONSIVE MEDIA QUERIES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/


/*AAAAAAAAAAAAAAAAAAAAAAA!!! PRODUCTS GALLERY SECTION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.products-gallery-section {
    padding: 80px 0;
    background: #f2f3f8;
    position: relative;
}

.products-gallery-section .section-header {
    margin-bottom: 50px;
}

.products-gallery-section .badge {
    font-size: 16px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(239, 15, 58, 0.1);
    color: var(--accent-color);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.products-gallery-section .section-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 20px;
}

.products-gallery-section .section-title span {
    color: var(--accent-color);
}

.products-gallery-section .section-subtitle {
    color: var(--body-color);
    font-size: 16px;
    margin-top: 20px;
}

.products-gallery-section .heading-divider {
    display: inline-block;
    position: relative;
    height: 3px;
    border-radius: 30px;
    background-color: var(--accent-color);
    width: 90px;
    overflow: hidden;
    margin-top: 15px;
}

.products-gallery-section .heading-divider:after {
    content: '';
    position: absolute;
    left: 0;
    top: -1.1px;
    height: 7px;
    width: 8px;
    background-color: #f2f3f8;
    animation: heading-move 5s infinite linear;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: white;
    padding: 20px;
    text-align: center;
    transition: bottom 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    bottom: 0;
}

.gallery-overlay i {
    font-size: 30px;
    margin-bottom: 10px;
    display: block;
    color: var(--accent-color);
}

.gallery-overlay h4 {
    font-size: 18px;
    margin: 0;
    font-weight: 600;
}

/* Lightbox Popup Styles */
.lightbox-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox-popup.active {
    display: flex;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    cursor: pointer;
}

.lightbox-container {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    z-index: 10000;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    transition: transform 0.3s;
}

.lightbox-close:hover {
    transform: scale(1.1);
    color: var(--accent-color);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--accent-color);
    transform: translateY(-50%) scale(1.05);
}

.lightbox-prev {
    left: -60px;
}

.lightbox-next {
    right: -60px;
}

@media (max-width: 768px) {
    .products-gallery-section {
        padding: 50px 0;
    }
    
    .products-gallery-section .section-title {
        font-size: 32px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .gallery-item img {
        height: 220px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! PRODUCTS GALLERY SECTION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! GET IN TOUCH SECTION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.getintouch-section {
    padding: 80px 0;
    background: #f2f3f8;
    position: relative;
}

.getintouch-section::before {
    display: none;
}

.getintouch-section .section-header .badge {
    font-size: 16px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(239, 15, 58, 0.1);
    color: var(--accent-color);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.getintouch-section .section-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 20px;
}

.getintouch-section .section-title span {
    color: var(--accent-color);
}

.getintouch-section .section-subtitle {
    color: var(--body-color);
    font-size: 16px;
    margin-top: 20px;
}

.getintouch-section .heading-divider {
    display: inline-block;
    position: relative;
    height: 3px;
    border-radius: 30px;
    background-color: var(--accent-color);
    width: 90px;
    overflow: hidden;
    margin-top: 15px;
}

.getintouch-section .heading-divider:after {
    background-color: #f2f3f8;
}

.touch-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.touch-info {
    background: var(--white-color);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.info-card:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: rgba(239, 15, 58, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 24px;
    color: var(--accent-color);
}

.info-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 10px;
}

.info-content p {
    color: var(--body-color);
    line-height: 1.6;
    margin: 0;
}

.info-content a {
    color: var(--body-color);
    text-decoration: none;
    transition: color 0.3s;
}

.info-content a:hover {
    color: var(--accent-color);
}

.info-social {
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
}

.info-social h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(239, 15, 58, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 20px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--accent-color);
    color: var(--white-color);
    transform: translateY(-3px);
}

.touch-form {
    background: var(--white-color);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--box-shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px 15px 50px;
    background: var(--gray-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--heading-color);
    font-size: 16px;
    transition: all 0.3s;
}

.form-group textarea {
    padding: 15px 20px 15px 50px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: var(--white-color);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--body-color);
}

.form-group i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-color);
    font-size: 16px;
}

.form-group textarea + i {
    top: 22px;
    transform: none;
}

.form-group select {
    appearance: none;
    cursor: pointer;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--accent-color);
    border: none;
    border-radius: 12px;
    color: var(--white-color);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background: #c40d32;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(239, 15, 58, 0.3);
}

.submit-btn i {
    transition: transform 0.3s;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

.form-status {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
}

.form-status.success {
    color: #4CAF50;
}

.form-status.error {
    color: #ef0f3a;
}

@media (max-width: 992px) {
    .touch-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .getintouch-section .section-title {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .getintouch-section {
        padding: 50px 0;
    }
    
    .getintouch-section .section-title {
        font-size: 32px;
    }
    
    .touch-info,
    .touch-form {
        padding: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .info-card {
        gap: 15px;
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
    }
    
    .info-icon i {
        font-size: 20px;
    }
    
    .info-content h3 {
        font-size: 18px;
    }
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! GET IN TOUCH SECTION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! HIDE SLIDER ARROWS & FIX SLIDER STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.slick-prev, 
.slick-next,
.slick-arrow,
button.slick-prev,
button.slick-next,
.cs_slider .slick-prev,
.cs_slider .slick-next {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! HIDE SLIDER ARROWS & FIX SLIDER ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

.img-two {
    animation: updown 1.5s ease-in-out 0s infinite alternate;
}

.aboutus-img .element-one {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: absolute !important;
    left: 38px !important;
    top: 0 !important;
    z-index: 1 !important;
    animation: updown 1.5s ease-in-out 0s infinite alternate !important;
}

.footer-col:nth-child(3) {
    margin-top: 30px !important;
}

.footer-col:nth-child(3) .footer-links {
    margin-top: 20px !important;
}

.service-area.service-bg {
    background-image: url('img/traditional-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
}

.service-area.service-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.88);
    z-index: -1;
}

.getintouch-section {
    background-image: url('img/img_world_map.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

.getintouch-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.92);
    z-index: -1;
}

.cs_logo_bg_shape {
    bottom: -20px !important;
    right: -155px !important;
}

.cs_logo_bg_shape img {
    top: 20px !important;
    right: 70px !important;
}

@media (max-width: 1600px) {
    .cs_logo_bg_shape {
        bottom: -15px !important;
        right: -100px !important;
    }
}

@media (max-width: 1400px) {
    .cs_logo_bg_shape {
        bottom: -10px !important;
        right: -80px !important;
    }
}

@media (max-width: 1199px) {
    .cs_logo_bg_shape {
        display: none !important;
    }
}



/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!!!!!!!!!!!!!!! PRODUCTS SECTION - IMAGE BIG & CLEAR (START) !!!!!!!!!!!!!!!!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/

/* Service Item - Image ko bada aur clear karne ke liye */
.service-area .service-item {
    overflow: hidden;
    background: #fff;
    border-radius: 15px;
    transition: all 0.4s ease;
}

/* Image container ko full width and height */
.service-area .service-img {
    width: 100%;
    overflow: hidden;
    background: #f5f5f5;
}

/* Image ko bada, clear aur proper dikhane ke liye */
.service-area .service-img img {
    width: 100%;
    height: auto;
    min-height: 280px;
    max-height: 350px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
    border-radius: 12px 12px 0 0;
    clip-path: none !important;  /* Remove clip-path so full image dikhe */
}

/* Hover effect - image zoom */
.service-area .service-item:hover .service-img img {
    transform: scale(1.05);
}

/* Service Icon ko thoda adjust kiya */
.service-area .service-icon {
    width: 80px;
    height: 80px;
    right: 20px;
    margin-top: -50px;
    z-index: 2;
}

.service-area .service-icon i {
    font-size: 40px;
}

/* Service Content - padding adjust */
.service-area .service-content {
    padding: 20px 15px 25px 15px;
    text-align: center;
}

/* Service Title */
.service-area .service-title a {
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 15px;
}

/* Service Text - HIDE KAR DIYA (aapne bola tha hatana hai) */
.service-area .service-text {
    display: none !important;
}

/* Service Arrow button */
.service-area .service-arrow {
    margin-top: 15px;
}

.service-area .theme-btn {
    padding: 10px 20px;
    font-size: 13px;
}

/* Responsive - Mobile pe bhi image bada dikhe */
@media (max-width: 768px) {
    .service-area .service-img img {
        min-height: 220px;
        max-height: 280px;
    }
    
    .service-area .service-icon {
        width: 65px;
        height: 65px;
        right: 15px;
        margin-top: -40px;
    }
    
    .service-area .service-icon i {
        font-size: 32px;
    }
    
    .service-area .service-title a {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .service-area .service-img img {
        min-height: 180px;
        max-height: 220px;
    }
    
    .service-area .service-icon {
        width: 55px;
        height: 55px;
        right: 12px;
        margin-top: -35px;
    }
    
    .service-area .service-icon i {
        font-size: 28px;
    }
}

/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!!!!!!!!!!!!!!! PRODUCTS SECTION - IMAGE BIG & CLEAR (END) !!!!!!!!!!!!!!!!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/


/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!!!!!!!!!!!!!!! SERVICE CARD BORDER - #ef0f3a (START) !!!!!!!!!!!!!!!!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/

/* Card border - #ef0f3a color se */
.service-area .service-item {
    border: 2px solid #ef0f3a;
    border-radius: 15px;
    background: #fff;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Border bottom highlight effect (optional - extra style) */
.service-area .service-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #ef0f3a;
    transform: scaleX(0);
    transition: transform 0.4s ease;
    border-radius: 0 0 15px 15px;
}

.service-area .service-item:hover::after {
    transform: scaleX(1);
}

/* Hover effect - border glow */
.service-area .service-item:hover {
    border-color: #ef0f3a;
    box-shadow: 0 10px 30px rgba(239, 15, 58, 0.2);
    transform: translateY(-8px);
}

/* Image border top radius matching card */
.service-area .service-img img {
    border-radius: 13px 13px 0 0;
}

/* Icon background bhi #ef0f3a */
.service-area .service-icon {
    background: #ef0f3a;
}

/* Button color bhi #ef0f3a */
.service-area .theme-btn {
    background: #ef0f3a;
}

.service-area .theme-btn:hover {
    background: #c40d32;
}

/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!!!!!!!!!!!!!!! SERVICE CARD BORDER - #ef0f3a (END) !!!!!!!!!!!!!!!!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/


/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!!!!!!!!!!!!!!! MARQUEE IMAGE + TEXT STYLES (START) !!!!!!!!!!!!!!!!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/

.marquee-section {
    background-color: var(--accent-color);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 25px;
    margin: 0 50px;
}

.marquee-img {
    width: 120px !important;
    height: 120px !important;
    object-fit: contain;
    border-radius: 15px;
    background: transparent;
    display: block;
}

.marquee-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--white-color);
    margin: 0;
    letter-spacing: 1px;
    font-family: 'Archivo', sans-serif;
    white-space: nowrap;
}

.marquee-item::after {
    content: "✦";
    display: inline-block;
    margin-left: 50px;
    font-size: 45px;
    color: var(--white-color);
}

.marquee-item:last-child::after {
    display: none;
}

/* Animation */
.horizontal-slide {
    width: 100%;
    overflow: hidden;
}

.slide-list {
    display: inline-flex;
    animation: marqueeScroll 20s linear infinite;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Hover effect - pause on hover */
.horizontal-slide:hover .slide-list {
    animation-play-state: paused;
}

/* Responsive - Tablet */
@media (max-width: 992px) {
    .marquee-section {
        padding: 40px 0;
    }
    
    .marquee-img {
        width: 90px !important;
        height: 90px !important;
    }
    
    .marquee-title {
        font-size: 32px;
    }
    
    .marquee-item {
        gap: 20px;
        margin: 0 35px;
    }
    
    .marquee-item::after {
        margin-left: 35px;
        font-size: 35px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .marquee-section {
        padding: 30px 0;
    }
    
    .marquee-img {
        width: 70px !important;
        height: 70px !important;
    }
    
    .marquee-title {
        font-size: 24px;
    }
    
    .marquee-item {
        gap: 15px;
        margin: 0 25px;
    }
    
    .marquee-item::after {
        margin-left: 25px;
        font-size: 28px;
    }
}

/* Responsive - Small Mobile */
@media (max-width: 480px) {
    .marquee-section {
        padding: 25px 0;
    }
    
    .marquee-img {
        width: 55px !important;
        height: 55px !important;
    }
    
    .marquee-title {
        font-size: 18px;
    }
    
    .marquee-item {
        gap: 12px;
        margin: 0 18px;
    }
    
    .marquee-item::after {
        margin-left: 18px;
        font-size: 22px;
    }
}

/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!!!!!!!!!!!!!!! MARQUEE IMAGE + TEXT STYLES (END) !!!!!!!!!!!!!!!!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/


/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!!!!!!!!!!!!!!! READ MORE BUTTON STYLES (START) !!!!!!!!!!!!!!!!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-color);
    color: var(--white-color);
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.read-more-btn:hover {
    background: #c40d32;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(239, 15, 58, 0.3);
}

.read-more-btn i {
    transition: transform 0.3s ease;
}

.read-more-btn:hover i {
    transform: translateX(5px);
}

.read-more-content {
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid var(--border-color);
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!!!!!!!!!!!!!!! READ MORE BUTTON STYLES (END) !!!!!!!!!!!!!!!!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/


/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!!!!!!!!!!!!!!! HERO SLIDER DOTS HIDE - RIGHT SIDE SE HATANE KE LIYE !!!!!!!!!!!!!!!!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/

/* Dots ko complete hide karne ke liye */
.cs_pagination.cs_style_1 {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* Agar sirf right side position change karna hai toh yeh use karo */
/* (upar wala hide nahi karna toh neeche wala code use karo) */

/*
.cs_pagination.cs_style_1 {
    left: auto !important;
    right: auto !important;
    bottom: 20px !important;
    top: auto !important;
    transform: translateX(-50%) !important;
    left: 50% !important;
}

.cs_pagination.cs_style_1 ul {
    flex-direction: row !important;
}
*/

/* Dots ke individual style bhi remove karne ke liye */
.slick-dots {
    display: none !important;
}

.cs_pagination.cs_style_1 li {
    display: none !important;
}

.cs_pagination.cs_style_1 ul {
    display: none !important;
}

/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!!!!!!!!!!!!!!! HERO SLIDER DOTS HIDE - CODE END !!!!!!!!!!!!!!!!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/



/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!!!!!!!!!!!!!!! OVERLAP FIX - SECTIONS SAHI SE ALIGN KARNE KE LIYE !!!!!!!!!!!!!!!!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/

/* All sections ko proper spacing aur clear fix */
section,
.cs_slider,
.features,
.aboutus-section-two,
.service-area,
.marquee-section,
.products-gallery-section,
.getintouch-section,
.mad-footer {
    position: relative !important;
    clear: both !important;
    overflow-x: clip !important;
}

/* Hero slider overlap fix */
.cs_site_header {
    position: absolute !important;
    z-index: 999 !important;
}

.cs_slider {
    z-index: 1 !important;
    position: relative !important;
}

/* Features section - kisi se overlap na ho */
.features {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    z-index: 2 !important;
    background: #f2f3f8 !important;
}

/* About section fix */
.aboutus-section-two {
    z-index: 2 !important;
    background: #f2f3f8 !important;
    margin-top: -1px !important;
}

/* Service area fix */
.service-area {
    z-index: 2 !important;
    background: #EDF5F9 !important;
    margin-top: -1px !important;
}

/* Marquee section - spacing fix */
.marquee-section {
    z-index: 2 !important;
    margin-top: -1px !important;
    margin-bottom: -1px !important;
}

/* Gallery section fix */
.products-gallery-section {
    z-index: 2 !important;
    background: #f2f3f8 !important;
}

/* Get in touch section fix */
.getintouch-section {
    z-index: 2 !important;
    background: #f2f3f8 !important;
}

/* Footer overlap fix - IMPORTANT */
.mad-footer {
    z-index: 2 !important;
    position: relative !important;
    margin-top: 0 !important;
    clear: both !important;
}

/* Footer wave shape - overlap na kare */
.footer-wave-top {
    position: absolute !important;
    top: -2px !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1 !important;
    pointer-events: none !important;
}

.footer-wave-top svg {
    display: block !important;
    width: 100% !important;
    height: auto !important;
}

/* Service cards - overlap fix */
.service-item {
    margin-bottom: 30px !important;
    clear: both !important;
}

/* Row columns - proper spacing */
.row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.col-md-6, .col-lg-4, .col-lg-6 {
    position: relative !important;
    width: 100% !important;
}

/* Desktop par grid theek karo */
@media (min-width: 992px) {
    .col-lg-4 {
        width: 33.333% !important;
        flex: 0 0 auto !important;
    }
    
    .col-lg-6 {
        width: 50% !important;
        flex: 0 0 auto !important;
    }
}

/* Mobile par aur spacing */
@media (max-width: 768px) {
    section,
    .features,
    .aboutus-section-two,
    .service-area,
    .marquee-section,
    .products-gallery-section,
    .getintouch-section {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }
    
    /* Har section ke beech gap */
    .features + .aboutus-section-two,
    .aboutus-section-two + .service-area,
    .service-area + .marquee-section,
    .marquee-section + .products-gallery-section,
    .products-gallery-section + .getintouch-section {
        margin-top: -1px !important;
    }
}

/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!!!!!!!!!!!!!!! OVERLAP FIX CODE END !!!!!!!!!!!!!!!!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/


/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!!!!!!!!!!!!!!! ABOUT SECTION - SIMPLE 1 IMAGE VERSION (START) !!!!!!!!!!!!!!!!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/

.aboutus-section-two {
    padding: 80px 0;
    background: #f2f3f8;
    position: relative;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Image Column */
.about-image-col {
    position: relative;
}

.aboutus-img-simple {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-main-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.aboutus-img-simple:hover .about-main-img {
    transform: scale(1.02);
}

/* Email Contact Card */
.about-contact-card {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: white;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-color, #ef0f3a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    font-size: 24px;
    color: white;
}

.contact-details span {
    font-size: 13px;
    color: #666;
    display: block;
}

.contact-details h4 {
    font-size: 16px;
    font-weight: 700;
    color: #01133c;
    margin: 0;
}

/* Content Column */
.about-content-col {
    padding-left: 20px;
}

.aboutus-content-simple .section-header {
    margin-bottom: 25px;
}

.aboutus-content-simple .badge {
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(239, 15, 58, 0.1);
    color: #ef0f3a;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 15px;
}

.aboutus-content-simple .section-title-one {
    font-size: 42px;
    font-weight: 700;
    color: #01133c;
    margin-bottom: 20px;
}

.aboutus-content-simple .section-title-one span {
    color: #ef0f3a;
}

.about-text-simple p {
    font-size: 16px;
    line-height: 1.7;
    color: #586b75;
    margin-bottom: 20px;
}

/* Read More Button */
.read-more-btn-simple {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ef0f3a;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.read-more-btn-simple:hover {
    background: #c40d32;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(239, 15, 58, 0.3);
}

.read-more-btn-simple i {
    transition: transform 0.3s;
}

.read-more-btn-simple:hover i {
    transform: translateX(5px);
}

.read-more-content {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content-col {
        padding-left: 0;
    }
    
    .aboutus-content-simple .section-title-one {
        font-size: 36px;
    }
    
    .about-contact-card {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
    }
    
    .contact-icon i {
        font-size: 20px;
    }
    
    .contact-details h4 {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .aboutus-section-two {
        padding: 50px 0;
    }
    
    .aboutus-content-simple .section-title-one {
        font-size: 30px;
    }
    
    .about-text-simple p {
        font-size: 15px;
    }
    
    .about-contact-card {
        bottom: 15px;
        right: 15px;
        padding: 10px 15px;
        gap: 10px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-icon i {
        font-size: 18px;
    }
    
    .contact-details span {
        font-size: 11px;
    }
    
    .contact-details h4 {
        font-size: 12px;
    }
    
    .read-more-btn-simple {
        padding: 10px 25px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .aboutus-content-simple .section-title-one {
        font-size: 26px;
    }
    
    .about-contact-card {
        display: none;
    }
}

/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!!!!!!!!!!!!!!! ABOUT SECTION - SIMPLE 1 IMAGE VERSION (END) !!!!!!!!!!!!!!!!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/


/*AAAAAAAAAAAAAAAAAAAAAAA!!! FEATURES SECTION FIXED RESPONSIVE STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.features {
    padding: 5rem 5%;
    background: #f2f3f8;
}

.features .box-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-item {
    padding: 2rem 1.5rem;
    background-color: var(--white);
    border-bottom: 0.5rem solid var(--main-color);
    box-shadow: var(--box-shadow);
    text-align: center;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 3rem;
    color: var(--main-color);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 7rem;
    width: 7rem;
    background: #f2f3f8;
    border-radius: 50%;
    margin: 0 auto;
    margin-bottom: 2rem;
}

.feature-item h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--secondary-color);
    padding-bottom: 1rem;
}

.feature-item p {
    font-size: 1.5rem;
    color: var(--grey);
    line-height: 1.6;
}

/* ===== RESPONSIVE FIXES FOR FEATURES SECTION ===== */

/* Tablet (768px to 991px) */
@media (max-width: 991px) {
    .features {
        padding: 4rem 4%;
    }
    
    .features .box-container {
        gap: 1.2rem;
    }
    
    .feature-item {
        padding: 1.8rem 1.2rem;
    }
    
    .feature-item i {
        height: 6rem;
        width: 6rem;
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-item h3 {
        font-size: 1.8rem;
    }
    
    .feature-item p {
        font-size: 1.4rem;
    }
}

/* Mobile (576px to 767px) */
@media (max-width: 767px) {
    .features {
        padding: 3rem 3%;
    }
    
    .features .box-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .feature-item {
        padding: 1.5rem 1rem;
    }
    
    .feature-item i {
        height: 5rem;
        width: 5rem;
        font-size: 2rem;
        margin-bottom: 1.2rem;
    }
    
    .feature-item h3 {
        font-size: 1.6rem;
        padding-bottom: 0.8rem;
    }
    
    .feature-item p {
        font-size: 1.3rem;
        line-height: 1.5;
    }
}

/* Small Mobile (below 576px) */
@media (max-width: 576px) {
    .features {
        padding: 2.5rem 4%;
    }
    
    .features .box-container {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .feature-item {
        padding: 1.8rem 1.5rem;
        max-width: 100%;
    }
    
    .feature-item i {
        height: 5.5rem;
        width: 5.5rem;
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-item h3 {
        font-size: 1.8rem;
        padding-bottom: 0.8rem;
    }
    
    .feature-item p {
        font-size: 1.4rem;
        line-height: 1.6;
        max-width: 90%;
        margin: 0 auto;
    }
}

/* Extra Small Mobile (below 400px) */
@media (max-width: 400px) {
    .features {
        padding: 2rem 3%;
    }
    
    .feature-item {
        padding: 1.5rem 1rem;
    }
    
    .feature-item i {
        height: 4.8rem;
        width: 4.8rem;
        font-size: 2rem;
    }
    
    .feature-item h3 {
        font-size: 1.6rem;
    }
    
    .feature-item p {
        font-size: 1.3rem;
        line-height: 1.5;
        max-width: 95%;
    }
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! FEATURES SECTION FIXED RESPONSIVE STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/


/* ============================================
   PRODUCT NAVIGATION - HORIZONTAL BUTTONS
   ============================================ */

/* Product Nav Buttons - Default State */
.product-nav-btn {
    background: #e0e0e0;
    color: #333333;
    border: 2px solid transparent;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

/* Hover Effect */
.product-nav-btn:hover {
    background: #CC0000;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(204, 0, 0, 0.3);
}

/* Active State - RED */
.product-nav-btn.active {
    background: #8B0000 !important;
    color: #ffffff !important;
    border-color: #8B0000;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .product-nav-wrapper {
        position: relative !important;
        top: 0 !important;
        padding: 15px 10px !important;
        background: #f9f9f9 !important;
    }
    
    .product-nav-buttons {
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        justify-content: flex-start !important;
        padding-bottom: 10px;
        gap: 8px !important;
        -webkit-overflow-scrolling: touch;
    }
    
    .product-nav-buttons::-webkit-scrollbar {
        height: 4px;
    }
    
    .product-nav-buttons::-webkit-scrollbar-thumb {
        background: #CC0000;
        border-radius: 10px;
    }
    
    .product-nav-btn {
        padding: 8px 14px;
        font-size: 12px;
        flex-shrink: 0;
    }
    
    .product-spec-item .row {
        flex-direction: column;
    }
    
    .product-spec-item .col-md-5,
    .product-spec-item .col-md-7 {
        width: 100%;
        text-align: center;
    }
    
    .product-spec-item .col-md-7 {
        margin-top: 20px;
    }
    
    .product-spec-item table {
        font-size: 13px;
    }
}




/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! END OF style.css !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/





/* ===== HEADER MENU FIX - FINAL ===== */

/* Desktop Menu Force Show */
@media screen and (min-width: 1200px) {
    .cs_nav .cs_nav_list {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    .cs_nav .cs_nav_list > li {
        display: inline-block !important;
        margin-right: 40px !important;
    }
    .cs_nav .cs_nav_list > li > a {
        display: inline-block !important;
        color: #01133c !important;
        font-weight: 600 !important;
        padding: 10px 0 !important;
    }
    .cs_main_header_center {
        display: block !important;
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        z-index: 100 !important;
    }
    .cs_nav {
        display: block !important;
    }
    .cs_nav_list_wrap {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        padding-top: 0 !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: none !important;
        box-shadow: none !important;
    }
}

/* Mobile Menu - Hamburger show */
@media screen and (max-width: 1199px) {
    .cs_menu_toggle {
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    .cs_nav .cs_nav_list_wrap {
        position: fixed !important;
        left: -100vw !important;
        top: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background: #ffffff !important;
        padding-top: 80px !important;
        transition: all 0.4s ease !important;
        z-index: 999 !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    .cs_nav .cs_nav_list_wrap.active {
        left: 0 !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    .cs_nav .cs_nav_list {
        display: block !important;
        padding: 10px 20px !important;
    }
    .cs_nav .cs_nav_list > li {
        display: block !important;
        margin-right: 0 !important;
        border-bottom: 1px solid #eee !important;
    }
    .cs_nav .cs_nav_list > li > a {
        display: block !important;
        padding: 15px 0 !important;
        color: #01133c !important;
        font-weight: 600 !important;
    }
}


/* ============================================
   DIRECTOR'S MESSAGE SECTION
   ============================================ */

.directors-message-section {
    padding: 80px 0 90px;
    background: #f8f9fa;
    position: relative;
}

.directors-message-section .section-header {
    margin-bottom: 50px;
}

.directors-message-section .badge {
    background: #8B0000;
    color: #fff;
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 15px;
}

.directors-message-section .badge i {
    margin-right: 8px;
}

.directors-message-section .section-title {
    font-size: 38px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.directors-message-section .section-title span {
    color: #8B0000;
}

.directors-message-section .heading-divider {
    width: 60px;
    height: 4px;
    background: #8B0000;
    border-radius: 2px;
}

/* Message Letter */
.message-letter {
    background: #ffffff;
    padding: 40px 45px;
    border-radius: 16px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
    margin-bottom: 40px;
    border-left: 5px solid #8B0000;
}

.message-letter .greeting {
    font-size: 22px;
    font-weight: 700;
    color: #8B0000;
    margin-bottom: 18px;
}

.message-letter p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 16px;
}

.message-letter p:last-child {
    margin-bottom: 0;
}

/* Product Grid */
.product-message-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 45px;
}

.product-message-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
}

.product-message-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(139, 0, 0, 0.10);
    border-bottom-color: #8B0000;
}

.product-message-icon {
    width: 55px;
    height: 55px;
    background: #8B0000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
    transition: all 0.3s ease;
}

.product-message-card:hover .product-message-icon {
    background: #DC143C;
    transform: scale(1.05);
}

.product-message-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.product-message-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 0;
}

/* Closing Message */
.message-closing {
    background: #ffffff;
    padding: 40px 45px;
    border-radius: 16px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
    border-right: 5px solid #8B0000;
}

.message-closing p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 16px;
}

.message-closing .quality-note {
    font-weight: 500;
    color: #1a1a1a;
}

.message-closing .closing-tagline {
    font-size: 18px;
    font-weight: 600;
    color: #8B0000;
    margin: 20px 0 12px;
}

.message-closing .wish-text {
    font-size: 17px;
    font-weight: 500;
    color: #1a1a1a;
    margin-top: 8px;
}

/* Signature Block */
.signature-block {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid #f0f0f0;
}

.signature-block .regards {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.signature-names {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.signature-names p {
    margin-bottom: 0;
}

.signature-names strong {
    font-size: 18px;
    color: #8B0000;
    display: block;
}

.signature-names span {
    font-size: 14px;
    color: #777;
    font-weight: 400;
}

.signature-block .company-name {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-top: 8px;
    margin-bottom: 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 992px) {
    .directors-message-section {
        padding: 60px 0 70px;
    }

    .directors-message-section .section-title {
        font-size: 30px;
    }

    .product-message-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .message-letter,
    .message-closing {
        padding: 30px 25px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .directors-message-section {
        padding: 45px 0 55px;
    }

    .directors-message-section .section-title {
        font-size: 24px;
    }

    .directors-message-section .badge {
        font-size: 12px;
        padding: 6px 18px;
    }

    .product-message-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .message-letter,
    .message-closing {
        padding: 22px 18px;
    }

    .message-letter .greeting {
        font-size: 18px;
    }

    .message-letter p,
    .message-closing p {
        font-size: 15px;
        line-height: 1.7;
    }

    .message-closing .closing-tagline {
        font-size: 16px;
    }

    .signature-names {
        flex-direction: column;
        gap: 12px;
    }

    .signature-names strong {
        font-size: 16px;
    }

    .product-message-card {
        padding: 22px 18px;
    }

    .product-message-card h4 {
        font-size: 16px;
    }

    .product-message-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .signature-block .company-name {
        font-size: 14px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .directors-message-section {
        padding: 35px 0 45px;
    }

    .directors-message-section .section-title {
        font-size: 20px;
    }

    .message-letter,
    .message-closing {
        padding: 18px 14px;
    }

    .message-letter p,
    .message-closing p {
        font-size: 14px;
    }

    .product-message-card {
        padding: 18px 14px;
    }
}