/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!!!!!!!!!!! GLOBAL RESET & BASE STYLES STARTS !!!!!!!!!!!!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #1e2a3e;
    line-height: 1.5;
}

:root {
    --primary-dark: #022559;
    --accent-orange: #e6912e;
    --white: #ffffff;
    --gray-text: #4a5568;
    --light-bg: #f8fafc;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -16px;
}

.col-lg-2, .col-lg-3, .col-lg-4, .col-lg-6, .col-lg-9, .col-lg-10, .col-lg-12 {
    padding: 0 16px;
}

.col-lg-2 { width: 16.666%; }
.col-lg-3 { width: 25%; }
.col-lg-4 { width: 33.333%; }
.col-lg-6 { width: 50%; }
.col-lg-9 { width: 75%; }
.col-lg-10 { width: 83.333%; }
.col-lg-12 { width: 100%; }

.highlight {
    color: var(--accent-orange);
}

.text-center {
    text-align: center;
}
/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!!!!!!!!!!! GLOBAL RESET & BASE STYLES ENDS !!!!!!!!!!!!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/

/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!!!!!!!!!!! BUTTON & LINKS STYLES STARTS !!!!!!!!!!!!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
.a_btn a {
    display: inline-block;
    background: var(--white);
    padding: 14px 36px;
    font-weight: 600;
    border-radius: 40px;
    text-decoration: none;
    color: #1e293b;
    margin-right: 12px;
    transition: 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.a_btn a.active {
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
}

.a_btn a:hover {
    background: var(--accent-orange);
    color: var(--white);
    transform: translateY(-2px);
}
/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!!!!!!!!!!! BUTTON & LINKS STYLES ENDS !!!!!!!!!!!!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/

/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!!!!!!!!!!! MAIN MENU AREA STYLES STARTS !!!!!!!!!!!!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
.main_menu_area {
    background: var(--white);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.main_menu_all_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.site_logo_area {
    display: inline-block;
    background: transparent;
    border: none;
}

.site_logo_area img {
    max-width: 160px;
    height: auto;
    display: block;
}

.advola_right_area {
    display: flex;
    align-items: center;
    gap: 30px;
}

.inner_main_nav_area ul {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
}

.inner_main_nav_area ul li a {
    text-decoration: none;
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 15px;
    transition: 0.2s;
}

.inner_main_nav_area ul li a:hover {
    color: var(--accent-orange);
}

.header_phone {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-orange);
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    transition: 0.2s;
}

.header_phone i {
    font-size: 16px;
}

.header_phone:hover {
    background: var(--primary-dark);
}

.mobile_menu_btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile_menu_btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-dark);
    margin: 5px 0;
    border-radius: 3px;
    transition: 0.3s;
}

.mobile_menu_overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100%;
    background: var(--white);
    z-index: 2000;
    box-shadow: 2px 0 20px rgba(0,0,0,0.1);
    transition: left 0.3s ease;
    padding: 80px 30px 30px;
}

.mobile_menu_overlay.active {
    left: 0;
}

.mobile_menu_overlay ul {
    list-style: none;
    padding: 0;
}

.mobile_menu_overlay ul li {
    margin-bottom: 20px;
}

.mobile_menu_overlay ul li a {
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-dark);
    transition: 0.2s;
}

.mobile_menu_overlay ul li a:hover {
    color: var(--accent-orange);
    padding-left: 5px;
}

.close_menu {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 30px;
    cursor: pointer;
    color: var(--primary-dark);
}

.overlay_backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
    display: none;
}

.overlay_backdrop.active {
    display: block;
}

@media (min-width: 769px) {
    .mobile_menu_btn {
        display: none;
    }
    .mobile_menu_overlay, .overlay_backdrop {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .inner_main_nav_area {
        display: none;
    }
    
    .mobile_menu_btn {
        display: block;
    }
    
    .advola_right_area {
        gap: 15px;
    }
    
    .header_phone {
        padding: 8px 14px;
        font-size: 13px;
    }
    
    .header_phone span {
        display: none;
    }
    
    .header_phone i {
        font-size: 18px;
    }
    
    .site_logo_area img {
        max-width: 130px;
    }
}

@media (max-width: 480px) {
    .header_phone {
        padding: 8px 12px;
    }
    
    .site_logo_area img {
        max-width: 110px;
    }
}
/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!!!!!!!!!!! MAIN MENU AREA STYLES ENDS !!!!!!!!!!!!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/

/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!!!!!!!!!!! SLIDER SECTION STYLES STARTS !!!!!!!!!!!!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
.slider_area {
    position: relative;
    overflow: hidden;
}

.inner_slider_area {
    background-size: cover;
    background-position: center;
    min-height: 85vh;
    display: flex !important;
    align-items: center;
    width: 100%;
    position: relative;
}

.inner_slider_area::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2,37,89,0.7) 0%, rgba(0,0,0,0.4) 100%);
}

.inner_slider_content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 5%;
    color: white;
}

.inner_slider_content h1 {
    font-size: 1.2rem;
    letter-spacing: 2px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.inner_slider_content h2 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 8px 0;
}

.inner_slider_content p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 20px 0 28px;
    max-width: 550px;
}

.slick-dots {
    display: flex;
    gap: 12px;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    list-style: none;
}

.slick-dots button {
    font-size: 0;
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.2s;
}

.slick-dots li.slick-active button,
.slick-dots .dot.active {
    background: var(--accent-orange);
    width: 28px;
    border-radius: 20px;
}

.slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.slider-container {
    overflow: hidden;
    position: relative;
}
/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!!!!!!!!!!! SLIDER SECTION STYLES ENDS !!!!!!!!!!!!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/

/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!!!!!!!!!!! ABOUT SECTION STYLES STARTS !!!!!!!!!!!!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
.about_area {
    padding: 90px 0 80px;
    background: var(--white);
}

.section_title_area h2 {
    font-size: 1rem;
    letter-spacing: 2px;
    color: var(--accent-orange);
    font-weight: 600;
    margin-bottom: 12px;
}

.section_title_area h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.3;
}

.section_title_area p {
    color: var(--gray-text);
    margin-top: 20px;
    line-height: 1.6;
}

.about_wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.about_image {
    flex: 1;
    position: relative;
}

.image_box {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 50px -20px rgba(0,0,0,0.25);
}

.image_box img {
    width: 100%;
    border-radius: 30px;
    transition: transform 0.4s ease;
}

.experience_badge {
    position: absolute;
    bottom: -25px;
    right: 20px;
    background: var(--accent-orange);
    padding: 20px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(230,145,46,0.3);
    animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.exp_year {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.exp_text {
    display: block;
    font-size: 0.8rem;
    color: var(--white);
    opacity: 0.9;
}

.about_content {
    flex: 1;
}

.about_features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 35px;
}

.feature_item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature_icon {
    width: 55px;
    height: 55px;
    background: rgba(230,145,46,0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature_icon i {
    font-size: 28px;
    color: var(--accent-orange);
}

.feature_text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 6px;
}

.feature_text p {
    font-size: 0.85rem;
    color: var(--gray-text);
}

.about_stats {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding: 25px 0;
    border-top: 1px solid #eef2f6;
    border-bottom: 1px solid #eef2f6;
}

.stat {
    text-align: center;
}

.stat_number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-orange);
}

.stat_label {
    font-size: 0.85rem;
    color: var(--gray-text);
    font-weight: 500;
}

.about_btn {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn_primary {
    background: var(--accent-orange);
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn_primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.btn_outline {
    background: transparent;
    border: 2px solid var(--accent-orange);
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    color: var(--accent-orange);
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn_outline:hover {
    background: var(--accent-orange);
    color: var(--white);
    transform: translateY(-3px);
}
/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!!!!!!!!!!! ABOUT SECTION STYLES ENDS !!!!!!!!!!!!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/

/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!!!!!!!!!!! SERVICES SECTION STYLES STARTS !!!!!!!!!!!!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
.services_area {
    padding: 80px 0;
    background: var(--light-bg);
}

.services_grid {
    margin-top: 50px;
}

.service_card {
    background: var(--white);
    padding: 40px 28px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.service_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service_card i {
    font-size: 54px;
    color: var(--accent-orange);
    margin-bottom: 20px;
    display: inline-block;
}

.service_card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.service_card p {
    color: var(--gray-text);
    line-height: 1.6;
}
/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!!!!!!!!!!! SERVICES SECTION STYLES ENDS !!!!!!!!!!!!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/

/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!!!!!!!!!!! PRODUCTS SECTION STYLES STARTS !!!!!!!!!!!!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
.products_section {
    padding: 80px 0;
    background: var(--white);
}

.products_grid {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.product_card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    width: calc(33.333% - 20px);
    text-align: center;
    padding: 25px;
    border: 1px solid #eef2f6;
}

.product_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.12);
}

.product_card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 15px;
}

.product_card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 15px 0 10px;
}

.product_card p {
    color: var(--gray-text);
    font-size: 0.9rem;
    line-height: 1.5;
    padding: 0 10px;
}

.product_buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn_view, .btn_enquiry {
    padding: 10px 24px;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.btn_view {
    background: var(--primary-dark);
    color: var(--white);
}

.btn_view:hover {
    background: var(--accent-orange);
    transform: translateY(-2px);
}

.btn_enquiry {
    background: var(--accent-orange);
    color: var(--white);
}

.btn_enquiry:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}
/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!!!!!!!!!!! PRODUCTS SECTION STYLES ENDS !!!!!!!!!!!!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/

/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!!!!!!!!!!! GALLERY SECTION STYLES STARTS !!!!!!!!!!!!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
.gallery_section {
    padding: 80px 0;
    background: var(--light-bg);
}

.gallery_grid {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 50px;
}

.gallery_item {
    width: calc(33.333% - 17px);
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.gallery_item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery_item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2,37,89,0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery_item .overlay i {
    font-size: 48px;
    color: var(--white);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.gallery_item:hover .overlay {
    opacity: 1;
}

.gallery_item:hover img {
    transform: scale(1.08);
}

.gallery_item:hover .overlay i {
    transform: scale(1);
}
/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!!!!!!!!!!! GALLERY SECTION STYLES ENDS !!!!!!!!!!!!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/

/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!!!!!!!!!!! CONTACT SECTION STYLES STARTS !!!!!!!!!!!!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
.contact_section {
    padding: 80px 0;
    background: var(--white);
}

.contact_wrapper {
    display: flex;
    gap: 45px;
    margin-top: 55px;
    flex-wrap: wrap;
}

.contact_info {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.info_card {
    background: var(--white);
    padding: 28px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #eef2f6;
    transition: all 0.3s ease;
}

.info_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px rgba(0,0,0,0.1);
}

.info_card i {
    font-size: 42px;
    color: var(--accent-orange);
    margin-bottom: 15px;
}

.info_card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.info_card p {
    color: var(--gray-text);
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact_form {
    flex: 1;
    background: var(--light-bg);
    padding: 40px 35px;
    border-radius: 28px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.form_group {
    margin-bottom: 22px;
}

.form_group input, .form_group textarea {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form_group textarea {
    border-radius: 24px;
    resize: vertical;
}

.form_group input:focus, .form_group textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(230,145,46,0.1);
}

.submit_btn {
    background: var(--accent-orange);
    color: var(--white);
    padding: 14px 35px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit_btn i {
    margin-right: 8px;
}

.submit_btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.form_status {
    margin-top: 18px;
    font-size: 0.85rem;
    text-align: center;
}
/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!!!!!!!!!!! CONTACT SECTION STYLES ENDS !!!!!!!!!!!!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/

/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!!!!!!!!!!! MODAL STYLES STARTS !!!!!!!!!!!!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.88);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.modal_content {
    background: var(--white);
    max-width: 550px;
    width: 90%;
    border-radius: 28px;
    position: relative;
    animation: modalFadeIn 0.35s ease;
    overflow: hidden;
}

.modal_content.gallery_modal {
    max-width: 750px;
}

.close_btn {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 36px;
    cursor: pointer;
    color: var(--primary-dark);
    z-index: 10;
    transition: all 0.2s;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
}

.close_btn:hover {
    color: var(--accent-orange);
    transform: rotate(90deg);
}

.modal_body {
    padding: 35px;
    text-align: center;
}

.modal_body img {
    width: 100%;
    max-height: 380px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 20px;
}

.modal_body h3 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.modal_body p {
    color: var(--gray-text);
    line-height: 1.6;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.92);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!!!!!!!!!!! MODAL STYLES ENDS !!!!!!!!!!!!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/

/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!!!!!!!!!!! FOOTER SECTION STYLES STARTS !!!!!!!!!!!!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
.footer_area {
    background-image: url('img/Tr_footer_bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 70px 0 40px;
    margin-top: 40px;
    position: relative;
}

.footer_area::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(2,37,89,0.88);
}

.footer_area .container,
.footer_logo_area,
.footer_addres_area,
.footer_nav {
    position: relative;
    z-index: 2;
}

.footer_logo_area p {
    color: #e2e8f0;
    margin-bottom: 24px;
}

.footer_socail_icons a {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    width: 38px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    border-radius: 50%;
    margin-right: 12px;
    color: white;
    transition: 0.2s;
    text-decoration: none;
}

.footer_socail_icons a:hover {
    background: var(--accent-orange);
}

.footer_addres_area h5 {
    color: var(--accent-orange);
    font-size: 1.1rem;
    margin: 18px 0 6px;
}

.footer_addres_area h5 i {
    margin-right: 8px;
}

.footer_addres_area p {
    color: #f1f5f9;
}

.footer_nav ul {
    list-style: none;
}

.footer_nav h5 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer_nav li {
    margin-bottom: 12px;
}

.footer_nav a {
    text-decoration: none;
    color: #f1f5f9;
    font-weight: 500;
    transition: 0.2s;
}

.footer_nav a:hover {
    color: var(--accent-orange);
    padding-left: 5px;
}
/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!!!!!!!!!!! FOOTER SECTION STYLES ENDS !!!!!!!!!!!!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/

/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!!!!!!!!!!! RESPONSIVE MEDIA QUERIES STARTS !!!!!!!!!!!!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
@media (max-width: 992px) {
    .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-6, .col-lg-9, .col-lg-10 {
        width: 100%;
        margin-bottom: 20px;
    }
    .inner_slider_content h2 {
        font-size: 2.5rem;
    }
    .section_title_area h3 {
        font-size: 1.8rem;
    }
    .about_wrapper {
        flex-direction: column;
    }
    .about_features {
        grid-template-columns: 1fr;
    }
    .about_stats {
        flex-wrap: wrap;
        justify-content: center;
    }
    .product_card, .gallery_item {
        width: calc(50% - 20px);
    }
    .contact_info {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact_wrapper {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .inner_slider_content h2 {
        font-size: 2rem;
    }
    .a_btn a {
        padding: 10px 22px;
    }
    .product_card, .gallery_item {
        width: 100%;
    }
    .contact_info {
        grid-template-columns: 1fr;
    }
    .contact_form {
        padding: 30px 25px;
    }
    .about_btn {
        flex-direction: column;
    }
    .btn_primary, .btn_outline {
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .inner_slider_content h2 {
        font-size: 1.6rem;
    }
    .inner_slider_content h1 {
        font-size: 0.9rem;
    }
    .a_btn a {
        padding: 8px 18px;
        font-size: 0.85rem;
    }
    .section_title_area h3 {
        font-size: 1.4rem;
    }
    .modal_body {
        padding: 25px;
    }
    .modal_body h3 {
        font-size: 1.4rem;
    }
    .product_buttons {
        flex-direction: column;
        align-items: center;
    }
    .btn_view, .btn_enquiry {
        width: 100%;
        max-width: 180px;
    }
    .experience_badge {
        padding: 12px 18px;
        bottom: -15px;
        right: 10px;
    }
    .exp_year {
        font-size: 1.5rem;
    }
    .exp_text {
        font-size: 0.65rem;
    }
}
/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!!!!!!!!!!! RESPONSIVE MEDIA QUERIES ENDS !!!!!!!!!!!!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/




/* CSS START */

/* ===== DROPDOWN MENU STYLES ===== */
.inner_main_nav_area ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.inner_main_nav_area ul li {
    position: relative;
}

.inner_main_nav_area ul li a {
    text-decoration: none;
    color: #1a2b3e;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.inner_main_nav_area ul li a:hover {
    color: #f39c12;
}

/* Dropdown container */
.inner_main_nav_area ul li.dropdown {
    position: relative;
}

/* Dropdown menu - hidden by default */
.inner_main_nav_area ul li .dropdown_menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    list-style: none;
}

/* Show dropdown on hover */
.inner_main_nav_area ul li.dropdown:hover .dropdown_menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown items */
.inner_main_nav_area ul li .dropdown_menu li {
    display: block;
    margin: 0;
    padding: 0;
}

.inner_main_nav_area ul li .dropdown_menu li a {
    padding: 10px 20px;
    display: block;
    font-size: 14px;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
}

.inner_main_nav_area ul li .dropdown_menu li:last-child a {
    border-bottom: none;
}

.inner_main_nav_area ul li .dropdown_menu li a:hover {
    background: #fef5e8;
    color: #f39c12;
    padding-left: 25px;
}

/* Chevron icon rotation on hover */
.inner_main_nav_area ul li.dropdown > a i {
    transition: transform 0.3s ease;
}

.inner_main_nav_area ul li.dropdown:hover > a i {
    transform: rotate(180deg);
}

/* Responsive - Mobile menu ke liye */
@media (max-width: 991px) {
    .inner_main_nav_area ul {
        display: none;
    }
    
    /* Mobile menu mein dropdown dikhane ke liye */
    .mobile_menu_overlay ul li.dropdown .dropdown_menu {
        position: static;
        box-shadow: none;
        padding-left: 20px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }
    
    .mobile_menu_overlay ul li.dropdown.open .dropdown_menu {
        display: block;
    }
}

/* CSS END */




/* Premium Text Logo */
.text_logo {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    color: #1a2a3a;
    position: relative;
}

.text_logo span {
    font-weight: 500;
    color: #e67e22;
    position: relative;
}

.text_logo::before {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #e67e22, #f39c12);
    border-radius: 3px;
}

/* For white footer logo */
.footer_logo_area .text_logo {
    color: #ffffff;
}

.footer_logo_area .text_logo span {
    color: #f39c12;
}

.footer_logo_area .text_logo::before {
    background: linear-gradient(90deg, #f39c12, #e67e22);
}