/* ==========================================================================
   1. BASIC RESET & FONTS
   ========================================================================== */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body{
    background-color: #fcfcfc;
    color: #333;
    line-height: 1.5;    
}
.close-menu{
    display: none;
}

/* ==========================================================================
   2. REUSABLE COMPONENTS (Common Classes)
   ========================================================================== */
.container{
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 20px;
}

a{
    text-decoration: none;
    transition: 0.3s ease;
}

.sitemap-link{
    color: #ff851b;
    text-decoration: underline;
}

/* .sitemap-link:hover{
    text-decoration: underline;
    color:fff;
} */
/* ==========================================================================
   3. TOP BAR (Dark Blue Strip)
   ========================================================================== */
.top-bar{
    background-color: #001f3f;
    color: #ffffff;
    padding: 10px 0;
    font-size: 18px;
}

.top-bar .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span{
    margin-right: 15px;
}

.contact-info a{
    color: inherit;
    text-decoration: none;
}

.contact-info i{
    margin-right: 8px;
    color: #ff851b;
}

.social-links a{
    color: #ffffff;
    margin-right: 15px;
}

.social-links a:hover{
    color: #ff851b;
    transform: scale(1.3);
    display: inline-block;
}

/* ==========================================================================
    Company Logo
   ========================================================================== */
.logo{
    display: flex;
    align-items: center;
}

.logo-img{
    height: 95px;
    width: auto;
    display: block;
}
/* ==========================================================================
    Search Bar
   ========================================================================== */

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

 .search-bar {
    flex: 0 1 300px;
    position: relative; 
}

.search-bar form {
    display: flex;
    border: 2px solid #001f3f;
    border-radius: 5px;
    overflow: hidden; 
}

.search-bar input {
    width: 100%;
    padding: 12px 15px;
    border: none;
    outline: none;
    font-size: 15px;
}

.search-bar button {
    background-color: #001f3f;
    color: white;
    border: none;
    padding: 0 25px;
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s;
}
.search-bar button:hover {
    background-color: #ff851b;
}

.btn-quote {
    background-color: #196333; 
    color: white;
    padding: 10px 22px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s ease;
    border: none;
}

.btn-quote i {
    font-size: 18px; 
}

.btn-quote:hover {
    background-color: #128c7e; 
    box-shadow: 0px 4px 10px rgba(0,0,0,0.15);
    transform: translateY(-2px); 
}

.suggestion-item {
    padding: 10px 15px;
    cursor: pointer;
    text-align: left;
    font-size: 14px;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
}
.suggestion-item:hover {
    background-color: #f5f5f5;
    color: #007bff;
    }

#searchSuggestions {
    position: absolute;
    top: 100%; 
    left: 0;
    width: 100%;
    background-color: white;
    border: 1px solid #001f3f;
    border-top: none;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 999; 
    max-height: 250px; 
    overflow-y: auto;
    display: none; 
}

/* ==========================================================================
   5. NAVIGATION BAR
   ========================================================================== */

.nav-bar {
    background-color: #001f3f; 
    padding: 0; 
}

.nav-links {
    list-style: none; 
    display: flex;
    gap: 0; 
}

.nav-links li {
    position: relative;
}

.nav-links li a {
    display: block;
    color: white;
    padding: 15px 25px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: 0.3s;
}

.nav-links li a:hover, 
.nav-links li a.active {
    background-color: #ff851b; 
    color: white;
}
.nav-links li a i {
    font-size: 10px;
    margin-left: 5px;
}

/* ==========================================================================
   6. DROPDOWN MENU (Sub-menu)
   ========================================================================== */

.dropdown-menu {
    position: absolute;
    top: 100%; 
    left: 0;
    background-color: #ffffff;
    min-width: 250px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.1);
    display: none;
    z-index: 1000; 
    border-top: 3px solid #ff851b;
    list-style: none;
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    color: #333;
    padding: 12px 20px;
    border-bottom: 1px solid #f1f1f1;
}

.dropdown-menu li a:hover {
    background-color: #f9f9f9;
    color: #ff851b;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* ==========================================================================
   7. HERO SECTION (BANNER)
   ========================================================================== */

.hero {
    height: 380px;
    background: linear-gradient(to right, 
                rgba(0, 31, 63, 1) 0%, 
                rgba(0, 31, 63, 0.8) 40%, 
                rgba(0, 31, 63, 0) 100%), 
                url('Images/packaging-image.webp');
    background-size: contain;
    background-position: center right;
    display: flex;
    align-items: center;
    color: white;
}

.hero .container {
    margin-left: 5%; 
    width: 95%;
    max-width: 1250px; 
}

.hero-content {
    max-width: 550px;
    text-align: left;
}

.hero-content h1 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-content h1 span {
    color: #ffffff;
}

.hero-content p {
    font-size: 16px;
    margin-bottom: 35px;
    opacity: 0.9;
}

.hero-btns {
    gap: 15px;
}

/* ==========================================================================
   8. PRODUCT CATEGORIES (HORIZONTAL SCROLL)
   ========================================================================== */

.product-categories {
    padding: 60px 0;
    background-color: #ffffff;
}

.category-scroll-container {
    display: flex;
    gap: 20px;
    overflow-x: auto; 
    padding-bottom: 10px;
    scrollbar-width: thin; 
    scroll-behavior: smooth;
}

.category-scroll-container::-webkit-scrollbar {
    height: 6px;
}
.category-scroll-container::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.category-card {
    min-width: 200px;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid #eee;
    display: flex;             
    flex-direction: column;    
    text-decoration: none;  
    color: #333;
}

.category-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-color: #ff851b;
    cursor: pointer;
}

.cat-image {
    background: #fff;
    border-radius: 6px;
    padding: 10px;
    margin-bottom: 15px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cat-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.category-card h3 {
    font-size: 14px;
    font-weight: 700;
    color: #001f3f;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.category-card p {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

/* ==========================================================================
   9. SHOP SECTION (FILTER + GRID)
   ========================================================================== */
.shop-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
    padding: 50px 20px;
}

.filters-sidebar {
    border-right: 1px solid #eee;
    padding-right: 20px;
}

.filter-group {
    margin-bottom: 25px;
}

.filter-group h4 {
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: #333;
}

.filter-group label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
    cursor: pointer;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.product-item {
    border: 2px solid #eee;
    border-radius: 8px;
    padding: 20px;
    transition: 0.3s;
    background: #fff;
}

.product-item:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.item-img {
    height: 200px;
    background: #f9f9f9;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-img img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.item-info h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #001f3f;
}

.item-info p {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
    margin-bottom: 15px;
}

.item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

/* .price {
    font-size: 18px;
    font-weight: 700;
    color: #333;
} */

.rating {
    font-size: 14px;
    color: #ff851b;
}

.btn-view {
    display: block;
    text-align: center;
    background: #2b61a1; 
    color: white;
    padding: 10px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-view:hover {
    background: #001f3f;
}

/* ==========================================================================
   10. FOOTER SECTION
   ========================================================================== */

.main-footer {
    background-color: #001f3f; 
    color: #ffffff;
    padding: 60px 0 0;
    font-size: 16px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    width: 100%;
    height: auto;
    max-width: 130px;
    margin-bottom: 20px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 2px;
    background-color: #ff851b;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #cbd5e0;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #ff851b;
    padding-left: 5px;
}

.footer-col p {
    line-height: 1.6;
    color: #cbd5e0;
    margin-bottom: 15px;
}

.footer-col p i {
    margin-right: 10px;
    color: #ff851b;
}
.footer-col .fa-phone{
    color: #ff851b;
}
.footer-col a[href^="tel:"]{
    color: #cbd5e0;
    text-decoration: none;
    
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    color: white;
    background: rgba(255,255,255,0.1);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #ff851b;
    transform: translateY(-3px);
}

.footer-map-mini{
    width: 100%;
    height: 170px;
    border: 0;
    border-radius: 4px;
    margin-top: 10px;
}

.footer-map-mini iframe {
    width: 100% !important;
    height: 100% !important;
}

.footer-bottom {
    background-color: #00152b;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
}

.footer-bottom p {
    font-size: 13px;
    color: #a0aec0;
}

/* ---------------------------------------------Product Page--------------------------------------------- */
.product-page { 
    padding: 20px 0; 
    background-color: #ffffff; 
}

.breadcrumb { 
    font-size: 16px; 
    margin-bottom: 20px; 
}
.breadcrumb a { 
    color: #ff851b; 
    text-decoration: none; 
    font-weight: 500; 
}

.breadcrumb i { 
    font-size: 10px; 
    margin: 0 8px; 
}

.product-hero { 
    display: grid; 
    grid-template-columns: 0.6fr 1.4fr; 
    gap: 40px; 
    margin-bottom: 30px; 
}

.main-image { 
    border: 1px solid #eee; 
    border-radius: 10px; 
    padding: 20px; 
    background: #fff; 
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}
.main-image img { 
    width: 100%; 
    max-height: 350px;
    object-fit: contain;
    height: auto; 
}

.product-main-info h1 { 
    font-size: 32px; 
    color: #001f3f; 
    margin-bottom: 10px; 
}
.product-main-info .tagline { 
    font-size: 18px;
    margin-bottom: 25px; 
    text-align: justify;
}

.cta-actions { 
    display: flex; 
    gap: 15px; 
}

.btn-primary { 
    background: #196333; 
    color: white; 
    padding: 15px 25px; 
    border-radius: 5px; 
    text-decoration: none; 
    font-weight: bold; 
}
.btn-primary:hover {
    background-color: #e67616;
    transform: translateY(-2px);
}

.btn-outline { 
    border: 2px solid white; 
    color: white; 
    padding: 13px 25px; 
    border-radius: 5px; 
    text-decoration: none; 
    font-weight: bold; 
    background-color: #001f3f;
}
.btn-outline:hover {
    background-color: #001f3f; 
    color: #ffffff;
    transform: translateY(-2px);
    border: 2px solid #001f3f;
} 

.btn-video {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background-color: #f13434;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #f13434;
}

.btn-video:hover {
    background-color: #fff;
    color: #f13434;
    transform: translateY(-2px);
}
.details-section{
    text-align: justify;
    font-size: 18px;
}

.details-section h2{
    font-size: 28px;
}

.specifications h2{
    font-size: 28px;
}
.specifications ul{
    margin-left: 15px;
}

.specs-table { 
    width: 100%; 
    border-collapse: collapse; 
    margin-top: 20px; 
    border: 1px solid #ddd; 
}
.specs-table th, 
.specs-table td { 
    padding: 15px; 
    border: 1px solid #ddd; 
    text-align: left; 
}
.specs-table th { 
    background-color: #001f3f; 
    color: white; 
}
.specs-table tr:nth-child(even) { 
    background-color: #f8f9fa; 
}

.features-section h2{
    font-size: 28px;
    margin-top: 5px;
}
.features-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 25px; 
    margin-top: 30px; 
}
.feature-item { 
    padding: 25px; 
    border: 1px solid #eee; 
    border-radius: 8px; 
    text-align: center; 
}
.feature-item i { 
    font-size: 35px; 
    color: #ff851b; 
    margin-bottom: 15px; 
}
.feature-item h4 { 
    margin-bottom: 10px; 
    color: #001f3f; 
}


/* ==========================================================================
   Products Page
   ========================================================================== */
   
/* --- Page Banner Styling --- */
.product-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    margin-top: 20px;
}
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.product-img-box {
    padding: 0;
    background: #ffffff; 
    height: 280px; 
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
}

.product-img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;     
    transition: transform 0.5s ease;
}

.product-detail {
    padding: 20px;
}

.product-detail h2 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 8px;
    height: 60px;
    overflow: hidden;
}

.model-no {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.card-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.view-btn {
    background: #001f3f; 
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9rem;
}

.wa-btn {
    background: #25D366; 
    color: white;
    padding: 8px 12px;
    border-radius: 5px;
    text-decoration: none;
}


/* ==========================================================================
   AboutUs
   ========================================================================== */
.about-header h2 {
    color: #001f3f;
    margin-bottom: 25px;
    font-size: 2rem;
    position: relative;
    padding-bottom: 10px;
}

.about-header h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: #ff851b;
}

.about-image-full {
    width: 100%;
    margin: 20px 0 35px 0;
    text-align: center;
    padding: 0; 
}

.about-image-full img {
    width: 100%; 
    max-width: 900px;
    height: 600px;           
    object-fit: cover;      
    object-position: center; 
    display: inline-block;
    border-radius: 4px;     
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}


.about-text-content p {
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    font-size: 1.05rem;
    text-align: justify;
}

.about-text-content strong {
    color: #001f3f;
}

.certifications-section {
    text-align: center;
    padding: 50px 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.certifications-section h2 {
    margin-bottom: 20px;
    color: #001f3f;
}

.cert-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.cert-item {
    flex: 1;
    min-width: 250px;
    transition: 0.3s;
}

.cert-item i {
    font-size: 3rem;
    color: #ff851b;
}

.cert-item h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #001f3f;
}

.cert-item p {
    color: #666;
}


/* ==========================================================================
   ContactUs
   ========================================================================== */
.contact-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.section-title {
    font-size: 2.5rem;
    color: #001f3f;
    text-align: center;
    margin-bottom: 10px;
    position: relative;
}

.section-subtitle {
    text-align: center;
    color: #666;
    max-width: 700px;
    margin: 0 auto 40px;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* --- Left Side: Info --- */
.contact-wrapper .contact-info {
    flex: 1;
    min-width: 300px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 1.5rem;
    color: #ff851b;
    margin-top: 5px;
}

.info-item h2, .info-item h3 {
    font-size: 1.2rem;
    color: #001f3f;
    margin-bottom: 5px;
}

.info-item p {
    color: #555;
    line-height: 1.6;
}

/* Google Map Styling */
.map-container {
    width: 100%;
    height: 250px;
    margin-top: 20px;
    overflow: hidden;
    border: 1px solid #ddd;
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

/* --- Right Side: Form --- */
.contact-form-container {
    flex: 1;
    min-width: 350px;
    background: #f4f7f9;
    padding: 30px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 2px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #001f3f;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    border-color: #ff851b;
    outline: none;
    box-shadow: 0 0 5px rgba(255, 133, 27, 0.2);
}

.submit-btn {
    width: 100%;
    background-color: #001f3f;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background-color: #ff851b;
}

.g-recaptcha {
    margin-bottom: 15px;
    transform: scale(0.9);
    transform-origin: 0 0;
}

/* Success Screen Styling */
.success-container {
    display: none; 
    text-align: center;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    margin-top: 20px;
}

.success-icon {
    font-size: 60px;
    color: #28a745;
    margin-bottom: 20px;
}

.success-title {
    color: #333;
    margin-bottom: 10px;
}

.success-msg {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.success-btn {
    margin-top: 20px;
    width: auto !important; 
    padding: 10px 25px;
    cursor: pointer;
}

/* ==========================================================================
    services page
   ========================================================================== */
.services-section {
    padding: 60px 20px;
    font-family: 'Arial', sans-serif;
    color: #333;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 25px;
    color: #000;
}

.services-content p {
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
    text-align: justify;
}

.service-buttons-container {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 40px;
    flex-wrap: wrap; 
}

.service-btn {
    flex: 1;
    min-width: 250px;
    background-color: #001f3f; 
    color: white;
    text-decoration: none;
    text-align: center;
    padding: 15px 10px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 50px 10px 50px 10px;
    transition: background 0.3s ease;
}

.service-btn:hover {
    background-color: #ff851b;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.2);
}

/* ==========================================================================
field services
   ========================================================================== */
.field-service-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.field-service-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 25px;
    line-height: 1.6;
}

.field-service-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #b31313;
    font-weight: bold;
}

.field-service-list li strong {
    color: #333;
    display: inline-block;
    min-width: 180px;
}
/* ==========================================================================
Calibration
   ========================================================================== */

.features-list{
    padding-left: 25px;
}

/* ==========================================================================
AMC
   ========================================================================== */
.services-content ul{
    padding-left: 25px;
}







/* ==========================================================================
   RESPONSIVE DESIGN (BREAKPOINTS)
   ========================================================================== */
   

   @media screen and (max-width: 768px) and (min-width: 426px){
    /* ======================== Product pages ========================*/
    .top-bar .container {
        flex-direction: column; 
        gap: 10px; 
        text-align: center;
    }

    .contact-info, 
    .social-links {
        width: 100%;
        justify-content: left;
        display: flex;
        flex-wrap: wrap; 
    }

    .nav-links li a{
        font-size: 12px;
        padding: 17px;
    }
    .main-image{
        min-height: 230px;
        padding: 10px;
    }
    .main-image img{
        min-height: 210px;
    }
    .product-main-info h1{
        font-size: 26px;
    }
    .product-main-info .tagline{
        font-size: 16px;
    }
    .cta-actions{
        gap: 10px;
    }
    .btn-primary, .btn-outline, .btn-video{
        padding: 10px;
        font-size: 12px;
    }
    .details-section h2{
        font-size: 24px;
    }

    .details-section p{
        font-size: 16px;
    }

    .specifications h2{
        font-size: 24px;
    }
    .footer-grid{
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .footer-col:last-child{
        grid-column: span 2;
        padding-top: 20px;
        margin-top: 10px;
    }
    .footer-map-mini{
        width: 100%;
        height: 230px;
        margin-top: 20px;
    }
}

@media screen and (max-width: 425px) {
    /* ======================== Header For All Pages ========================*/
    header{
        position: relative;
    }
    .top-bar .container{
        flex-direction: column;
        gap: 10px;
        padding: 10px 15px;
        text-align: left;
        align-items: flex-start;
    }
    .contact-info{
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    .contact-info span{
        margin-right: 0;
        font-size: 16px;
        display: block;
    }
    .social-links{
        padding-top: 8px;
        width: 100%;
        display: flex;
        justify-content: flex-start;
        gap: 20px;
    }
    .social-links a{
        margin-right: 0;
        font-size: 18px;
    }
    /* ------------------------------- */
    .main-header{
        position: relative;
        padding-bottom: 60px;
    }
    .main-header .container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 0;
        padding: 10px 15px;
    }
    .logo .header-cta{
        flex: 0 1 auto;
    }
    .logo-img{
        height: 60px;
        width: auto;
    }
    .search-bar{
        position: absolute;
        bottom: 10px;
        left: 15px;
        width: calc(100% - 85px);
        margin-top: 0;
    }
    .search-bar form{
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .search-bar input{
        padding: 10px;
        font-size: 14px;
        flex: 1;
        width: 100%;
        max-width: none;
    }
    .btn-quote{
        width: auto;
        justify-content: center;
        font-size: 13px;
        padding: 12px;
    }
    /* ------------------------------- */
    .nav-bar{
        position: absolute;
        bottom: 10px;
        right: 15px;
        width: 60px;
        height: 42px;
        background: transparent;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .menu-toggle{
        display: block;
        cursor: pointer;
        padding: 8px 10px;
        background: #001f3f;
        z-index: 1001;
        border-radius: 6px;
    }
    .bar{
        display: block;
        width: 22px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.3s ease-in-out;
        background: #ffffff;
    }
    #mobile-menu.is-active .bar:nth-child(2){ 
        opacity: 0; 
    }
    #mobile-menu.is-active .bar:nth-child(1){ 
        transform: translateY(8px) rotate(45deg);
    }
    #mobile-menu.is-active .bar:nth-child(3){
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        top: 0px; 
        left: -100%;
        width: 95%; 
        height: 100vh;
        background: #ffffff;
        display: flex;
        flex-direction: column;
        transition: 0.4s ease-in-out;
        z-index: 9999;
        padding: 20px 0;
        box-shadow: 0 10px 25px rgba(0,0,0,0.3);
        border-radius: 0 15px 15px 0; 
        overflow-y: auto;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        width: 100%;
        list-style: none;
    }
    .close-menu {
        display: flex;
        justify-content: flex-end;
        padding: 0 20px 10px 0;
        font-size: 24px;
        color: #001f3f; 
        cursor: pointer;
    }
    .nav-links li a {
        padding: 15px 25px;
        color: #333 !important;
        font-size: 15px;
        font-weight: 600;
        border-bottom: 1px solid #f5f5f5;
    }
    .nav-links li a:active, 
    .nav-links li a.active {
        background: #fdf2e9; 
        color: #ff8c00 !important; 
        border-left: 4px solid #ff8c00;
    }
    .dropdown-menu{
        position: static;
        display: none;
        box-shadow: none;
        padding-left: 20px;
    }

    /* ------------------------------- Product page ------------------------------- */
    .product-hero{
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    .product-gallery{
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .main-image img{
        width: 100%;
        height: auto;
        max-width: 350px;
        border-radius: 8px;
    }
    .product-main-info{
        width: 100%;
        text-align: left;
    }
    .product-main-info h1{
        font-size: 22px;
        margin-bottom: 10px;
    }
    .product-main-info .tagline{
        font-size: 14px;
        line-height: 1.5;
    }
    .cta-actions{
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
        width: 100%;
        align-items: center;
    }
    .cta-actions a{
        width: 90%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 12px;
        text-align: center;
        text-decoration: none;
    }
    .details-section h2{
        font-size: 20px;
    }
    .details-section p{
        font-size: 14px;
        line-height: 1.5;
    }
    .specifications{
        padding: 10px 0;
    }
    .table-wrapper{
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin-bottom: 20px;
    }
    .specs-table{
        width: 100%;
        min-width: 450px;
        border-collapse: collapse;
        font-size: 11px;
    }
    .specifications h2{
        margin-bottom: 15px;
        font-size: 22px;
    }
    .table-wrapper::-webkit-scrollbar{
        height: 6px;
        display: block;
    }
    .table-wrapper::-webkit-scrollbar-thumb{
        background: #ccc;
        border-radius: 10px;
    }
    .table-wrapper::-webkit-scrollbar-track{
        background: #f1f1f1;
    }

    /* ------------------------------- footer ------------------------------- */

    .main-footer{
        padding: 40px 0 20px;
        background: #001f3f;
        color: #ffffff;
    }

    .footer-grid{
        display: flex;
        flex-direction: column;
        gap: 30px;
        text-align: left;
        padding: 0 15px;
    }
    .footer-col{
        width: 100%;
    }
    .footer-logo{
        margin-bottom: 15px;
        height: auto;
        max-width: 100px;
    }
    .footer-col h4{
        font-size: 18px;
        margin-bottom: 15px;
        padding-bottom: 8px;
        display: inline-block;
        width: 100%;
    }
    .footer-col ul{
        list-style: none;
        padding: 0;
    }
    .footer-col ul li{
        margin-bottom: 10px;
    }
    .footer-col ul li a{
        color: #ddd;
        text-decoration: none;
        font-size: 14px;
    }
    .footer-map-mini iframe{
        width: 100%;
        height: 150px;
        border: 0;
        border-radius: 8px;
        margin-top: 15px;
    }
    .footer-bottom{
        margin-top: 30px;
        padding: 20px 15px;
        text-align: center;
        font-size: 12px;
    }
    .footer-col p, 
    .footer-col .contact-item p {
        font-size: 13px; 
        line-height: 1.5;
    }
    .footer-col i {
        font-size: 13px;
        margin-right: 8px;
    }
    /* ------------------------------- index page ------------------------------- */
    .hero{
        padding: 60px 0;
        text-align: center;
    }
    .hero-content h1{
        font-size: 26px;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    .hero-content h1 span{
        font-size: 22px;
    }
    .hero-content p {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 25px;
        padding: 0 10px;
    }
    .hero-btns{
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    .hero-btns .btn-primary,
    .hero-btns .btn-outline{
        width: 100%;
        max-width: 220px;
        padding: 12px 20px;
        text-align: center;
        box-sizing: border-box;
    }
    .shop-container{
        display: flex;
        flex-direction: column;
        gap: 25px;
        padding: 10px;
    }

    .filters-sidebar{
        width: 100%;
        box-sizing: border-box;
    }
    .product-grid{
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .product-item{
        width: 100%;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
    }
    .btn-view{
        display: block;
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
}