* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #072b99;
    --secondary-color: #92c84e;
    --dark-color: #222222;
    --light-bg: #f5f5f5;
    --white: #ffffff;
    --text-gray: #686868;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-top {
    background:#0B3C5D;
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap !important;
}

.header-top ul {
    list-style: none;
    display: flex;
    gap: 15px;
    flex-wrap: nowrap !important;
    align-items: center;
}

.header-top ul li {
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.header-top a {
    color: var(--white);
    text-decoration: none;
    transition: 0.3s;
}

.header-top a:hover {
    color: var(--secondary-color);
}

.header-top i {
    margin-right: 8px;
}

.header-main {
    background: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 70px;
}

.main-nav {
    flex-grow: 1; 
    display: flex;
    justify-content: flex-end; 
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 60px; 
    margin-left: 50px; 
}

.main-nav a {
    color: var(--dark-color);
    text-decoration: none;
    font-size: 19px; 
    transition: 0.3s;
    position: relative;
    font-family: 'Roboto';
    font-weight: 600;
    letter-spacing: 0.5px;
}

.main-nav a:hover {
    color: var(--primary-color);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: 0.3s;
}

.main-nav a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
}

.mobile-menu-close, div.mobile-menu-close {
    display: none !important;
}

.header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-shrink: 0;
}

.header-icon {
    color: var(--white);
    font-size: 18px;
    transition: color 0.3s;
}

.header-icon:hover {
    color: var(--secondary-color);
}

.search-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    animation: fadeIn 0.3s ease;
    overflow-y: auto;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.main-nav a {
    font-family: 'TimesNewRoman', serif; 
}

.search-modal-content {
    background-color: #fff;
    margin: 80px auto 40px;
    padding: 30px;
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.search-close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    color: #999;
    transition: color 0.3s;
    line-height: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f5f5f5;
    z-index: 1;
}

.search-close:hover {
    color: #333;
    background: #e0e0e0;
}

#searchInput {
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: border-color 0.3s;
    font-family: 'Roboto', sans-serif;
}

#searchInput:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(7, 43, 153, 0.1);
}

#searchResults {
    max-height: 400px;
    overflow-y: auto;
    margin-top: 10px;
}

.hero-section {
    background-image: url("images/main/hero.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 70vh;          
    max-height: 500px;   
    min-height: 350px;  
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 200px;
    font-weight: 900;
    color: rgba(255,255,255,0.05);
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color: var(--white);
}

.hero-content h1 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 
    3px 3px 8px rgba(0, 0, 0, 0.9),
    -1px -1px 2px rgba(0, 0, 0, 0.5);
}

.hero-content h1 span {
    color: var(--secondary-color);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9);
}

.btn-primary {
    display: inline-block;
    background: var(--white);
    color: var(--primary-color);
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    border: 2px solid var(--white);
}

.btn-primary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.about-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 90%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.section-subtitle {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    color: rgb(0, 0, 85);
}

.about-content p {
    color: var(--text-gray);
    margin-bottom: 25px;
    text-align: justify;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-item h3 {
    font-size: 16px;
    line-height: 1.4;
}

.services-section {
    background: var(--light-bg);
    padding: 80px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-grid {
    max-width: 1200px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    text-align: center;
    border-radius: 10px;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #f0f4ff 0%, #fff5f0 100%);
}

.service-icon i {
    font-size: 2.5rem;
    color: #072b99;
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-card p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
}

.stats-section {
    background: url("images/main/StatsImg.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 60px 20px;
    color: var(--white);
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.stat-icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: lightskyblue;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

.products-section {
    padding: 80px 20px;
}

.products-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    font-size: 16px;
    color: var(--dark-color);
}

.clients-section {
    padding: 80px 0;
    background: #f8f9fa;
    overflow: hidden;
}

.clients-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.clients-section .section-subtitle {
    color: rgb(47, 172, 249);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.clients-section .section-title {
    font-size: 36px;
    color: rgb(0, 0, 85);
    font-weight: 700;
    margin-bottom: 20px;
}

.clients-section .section-description {
    color: #666;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.clients-slider {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    overflow: hidden;
}

.clients-track {
    display: flex;
    gap: 40px;
    overflow: visible;
    padding: 20px 0;
    width: max-content;
}

.client-card {
    flex: 0 0 250px;
    width: 250px;
    min-width: 250px;
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.client-logo {
    width: 100%;
    height: 120px;
    object-fit: contain;
    margin-bottom: 15px;
}

.client-name {
    font-size: 16px;
    font-weight: 600;
    color: #072b99;
    margin-bottom: 5px;
}

.client-since {
    font-size: 14px;
    color: lightskyblue;
    font-weight: 700;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgb(0, 0, 85);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    z-index: 10;
    transition: background 0.3s ease;
}

.slider-btn:hover {
    background: rgb(0, 0, 85);
}

.slider-btn.prev {
    left: 0;
}

.slider-btn.next {
    right: 0;
}

.why-choose-us-list .list-item {
    display: flex;
    margin-bottom: 30px; 
}

.why-choose-us-list .list-item .icon-wrapper {
    flex-shrink: 0;
    margin-right: 15px;
    align-self: flex-start;
    font-size: 24px; 
    color: #0B3C5D;
}

.why-choose-us-list .list-item div {
    flex-grow: 1;
}

.why-choose-us-list .list-item h3 {
    margin-top: 0;
}

.why-choose-us-list .list-item p {
    margin-bottom: 0;
}

.cta-section {
    background: url("images/main/CTAImg.png");
    background-size: cover;
    background-position: center;
    padding: 80px 20px 40px;
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.btn-secondary {
    display: inline-block;
    background: var(--text-gray);
    color: var(--white);
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    border: 2px solid var(--text-gray);
}

.btn-secondary:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.footer {
    background: #1a1a1a;
    color: var(--white);
    padding: 60px 20px 20px;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-widget h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-widget p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.8;
    text-align: justify;
}

.footer-widget ul {
    list-style: none;
}

.footer-widget ul li {
    margin-bottom: 10px;
}

.footer-widget a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-widget a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    font-size: 14px;
    color: #aaa;
}

.footer-bottom a {
    color: var(--white);
    text-decoration: none;
}

.page-header {
    background: url("images/main/ProductImg.png");
    background-size: cover;
    background-position: center;
    padding: 80px 20px 40px;
    color: var(--white);
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.breadcrumb {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
}

.products-content {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title-center {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-desc {
    text-align: center;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 50px;
}

.products-grid-page {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-content {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-details h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #0B3C5D;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-info-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.contact-info-item p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
}

.contact-form-wrapper h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.contact-form .form-row {
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form .form-row:nth-child(2),
.contact-form .form-row:nth-child(3),
.contact-form .form-row:nth-child(4) {
    grid-template-columns: 1fr;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    background: grey;
    color: var(--white);
    padding: 12px 40px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background: lightgray;
}

.map-section {
    margin-top: 60px;
}

.footer-contact {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 20px 20px;
}

.footer-contact .footer-widget h3 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-contact .footer-widget p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    line-height: 1.8;
}

.footer-contact .footer-widget ul {
    list-style: none;
}

.footer-contact .footer-widget ul li {
    margin-bottom: 10px;
}

.footer-contact .footer-widget a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
}

.footer-contact .footer-widget i {
    margin-right: 10px;
    width: 20px;
}

.footer-contact .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
}

.fixed-actions {
    position: fixed;
    right: 20px; 
    bottom: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px; 
    align-items: flex-end;
}

.action-btn {
    text-decoration: none;
    cursor: pointer;
    border-radius: 50px;
    padding: 10px 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.scroll-top-btn {
    background: #fff;
    border: 2px solid #0B3C5D;
    color: #0B3C5D;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    padding: 0;
    opacity: 0; 
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease; 
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn i {
    font-size: 20px;
}

.enquiry-btn {
    background-color: #1A9E58; 
    color: #ffffff;
    font-weight: bold;
}

.enquiry-btn i {
    margin-right: 8px;
    font-size: 18px;
}

.enquiry-modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
}

.enquiry-modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 90%; 
    max-width: 500px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.enquiry-form h3 {
    margin-top: 0;
    color: #0B3C5D;
}

.enquiry-form input[type="text"],
.enquiry-form input[type="email"],
.enquiry-form input[type="tel"],
.enquiry-form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.enquiry-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.enquiry-close:hover,
.enquiry-close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}


@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 48px;
    }
    
    .about-grid,
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid-page {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .main-nav ul {
        gap: 30px; 
    }
}

@media (max-width: 768px) {
    .header-top {
        display: block !important;
        font-size: 14px;
        padding: 12px 0;
        background: #0B3C5D;
    }
    
    .header-top .container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 15px;
        gap: 10px;
        flex-wrap: nowrap !important;
    }
    
    .header-top ul {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;  
        gap: 5px;
        flex: 1;
        min-width: 0;
        list-style: none;
        text-align: left !important;  
    }
    
    .header-top ul li {
        display: flex !important;
        align-items: center;
        justify-content: flex-start !important;  
        font-size: 14px;
        white-space: nowrap;
        width: auto;
        text-align: left !important;  
    }
    
    .header-top ul li a {
        display: flex;
        align-items: center;
        justify-content: flex-start !important;  
        color: var(--white);
        font-size: 15px;
        gap: 5px;
        text-align: left !important; 
    }
    
    .header-top ul li i {
        font-size: 12px;
        margin-right: 5px;
        flex-shrink: 0;
    }
    
    .header-actions {
        display: flex;
        gap: 12px;
        align-items: center;
        justify-content: flex-end !important; 
        flex-shrink: 0;
    }
    
    .header-icon {
        font-size: 20px;
        color: var(--white);
    }
    
    .logo img {
        height: 50px;
    }
    
    .mobile-menu-btn {
        display: block;
    }

    .main-nav {
        display: none;
    }

    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        display: none;
        z-index: 9998;
    }

    .mobile-menu-overlay.active {
        display: block;
    }

    .search-modal-content {
        margin: 20px auto;
        padding: 25px 20px;
        width: 95%;
        max-width: calc(100% - 20px);
    }
    
    #searchInput {
        padding: 12px 15px;
        font-size: 15px;
    }
    
    #searchResults {
        max-height: calc(100vh - 250px);
    }
    
    .search-result-item {
        padding: 12px;
        font-size: 14px;
    }

    .hero-section {
        height: 45vh;
        min-height: 250px;
    }
    
    .hero-section::before {
        font-size: 100px;
        right: -50px;
    }

    .hero-content h1 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .hero-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .btn-primary {
        padding: 12px 30px;
        font-size: 14px;
    }

    .about-section {
        padding: 40px 20px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-image img {
        width: 100%;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 24px;
    }

    .services-section {
        padding: 40px 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 20px;
    }

    .stats-section {
        padding: 40px 20px;
        background-attachment: scroll;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-item {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 32px;
    }

    .clients-section {
        padding: 40px 0;
    }
    
    .clients-slider {
        padding: 0 40px;
    }

    .client-card {
        flex: 0 0 220px;
        width: 220px;
        min-width: 220px;
        padding: 20px;
    }
    
    .client-logo {
        height: 100px;
    }

    .cta-section {
        padding: 40px 20px 30px;
        background-attachment: scroll;
    }
    
    .cta-section h2 {
        font-size: 20px;
        line-height: 1.4;
    }
    
    .cta-section h2 br {
        display: none;
    }
    
    .btn-secondary {
        padding: 12px 30px;
        font-size: 14px;
    }

    .products-grid,
    .products-grid-page {
        grid-template-columns: 1fr;
    }
    
    .products-content {
        padding: 40px 20px;
    }
    
    .section-title-center {
        font-size: 24px;
    }

    .contact-content {
        padding: 40px 20px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-details h2,
    .contact-form-wrapper h2 {
        font-size: 22px;
    }

    .footer {
        padding: 40px 20px 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .page-header {
        padding: 60px 20px 30px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }

    .why-choose-us-image-col {
        display: none;
    }
    
    .why-choose-us-table td {
        padding: 0;
        margin: 0;
    }
    .fixed-actions {
        right: 15px;
        bottom: 15px;
        gap: 10px;
    }
    
    .enquiry-btn span {
        display: none; 
    }
    
    .enquiry-btn {
        padding: 10px; 
    }
    
    .enquiry-btn i {
        margin-right: 0;
    }
    
    .enquiry-modal-content {
        margin: 20% auto;
    }
}

@media (max-width: 480px) {
    .header-top {
        font-size: 13px;
        padding: 10px 0;
    }
    
    .header-top .container {
        padding: 0 10px;
        gap: 8px;
    }
    
    .header-top ul {
        display: flex !important;
        flex-direction: column !important;
        gap: 4px;
    }
    
    .header-top ul li {
        display: flex !important;
        font-size: 14px;
    }
    
    .header-top ul li i {
        font-size: 11px;
        margin: 3px;
    }
    
    .header-top ul li a {
        font-size: 14px;
    }
    
    .header-actions {
        gap: 6px;
    }
    
    .header-icon {
        font-size: 18px;
    }
    
    .search-modal-content {
        margin: 15px auto;
        padding: 20px 15px;
        border-radius: 8px;
    }
    
    .search-close {
        font-size: 28px;
        width: 35px;
        height: 35px;
        right: 10px;
        top: 8px;
    }
    
    #searchInput {
        font-size: 14px;
        padding: 10px 15px;
    }

    .hero-content h1 {
        font-size: 24px;
    }
    
    .hero-content p {
        font-size: 13px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .client-card {
        flex: 0 0 200px;
        width: 200px;
        min-width: 200px;
    }

    .clients-slider {
        padding: 0 30px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    .service-card h3 {
        font-size: 16px;
    }
    
    .service-card p {
        font-size: 13px;
    }
    
    .cta-section h2 {
        font-size: 18px;
    }
    
    .footer-widget h3 {
        font-size: 18px;
    }
    
    .footer-widget p,
    .footer-widget a {
        font-size: 13px;
    }
}

.mobile-slide-menu {
    position: fixed;
    top: 0;
    right: -250px; 
    left: auto; 
    width: 250px; 
    max-width: 90%; 
    height: 100%;
    background: #444;
    transition: right 0.4s ease-in-out; 
    padding: 0; 
    z-index: 9999;
    box-shadow: -5px 0 15px rgba(0,0,0,0.5);
    display: flex; 
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start; 
    overflow-y: auto; 
}

.mobile-slide-menu.active {
    right: 0; 
}

.mobile-slide-menu ul {
    list-style: none;
    display: block;
    width: 100%;
    padding: 90px 0 0 0; 
}

.mobile-slide-menu li {
    list-style: none; 
    border-bottom: 1px solid rgba(255, 255, 255, 0.15); 
    background: #444; 
}

.mobile-slide-menu a {
    color: var(--white); 
    text-decoration: none;
    font-size: 18px; 
    font-weight: 700; 
    display: block;
    padding: 20px 25px 20px 40px; 
    transition: background-color 0.2s, color 0.2s;
    font-family: 'Times New Roman', Times, serif; 
    letter-spacing: 0.5px;
}

.mobile-slide-menu a:hover {
    background-color: rgba(255, 255, 255, 0.1); 
    color: var(--white); 
}

.mobile-slide-menu .mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    font-weight: bold;
    color: var(--primary-color); 
    cursor: pointer;
    background: var(--white); 
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex !important; 
    align-items: center;
    justify-content: center;
    line-height: 1;
    z-index: 10000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.mobile-menu-overlay.active + .mobile-slide-menu .mobile-menu-close {
    display: flex !important; 
}