/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    width: 100%;
}

/* Header Styles */
.header {
    background-color: #000;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 120px;
    width: 100%;
    overflow: hidden;
}

/* Logo Section */
.logo-section {
    display: flex;
    align-items: center;
}

.logo {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
        transform: scale(1.1);
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-list li {
    position: relative;
}

.nav-list a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 0;
    transition: color 0.3s ease;
    text-transform: capitalize;
}

.nav-list a:hover {
    color: #20b2aa;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #222;
    min-width: 250px;
    list-style: none;
    padding: 10px 0;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 8px 20px;
    color: #fff;
    font-size: 13px;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background-color: #333;
    color: #20b2aa;
}

/* Contact Us Button */
.contact-us-btn {
    display: flex;
    align-items: center;
}

.contact-us-btn a {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    padding: 10px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.contact-us-btn a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.contact-us-btn i {
    font-size: 16px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.mobile-menu-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Mobile Menu Active State */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Main Content */
main {
    margin-top: 130px;
    width: 100%;
    overflow-x: hidden;
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
    width: 100%;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 50px;
}

.text-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    max-width: 500px;
    border-left: 5px solid #ff6b35;
    transform: translateY(100px);
    opacity: 0;
    animation: slideUp 1s ease-out 0.5s forwards;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.welcome-text {
    color: #666;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 500;
}

.main-heading {
    color: #333;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.description {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cta-button {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s ease;
    border-radius: 5px;
}

.cta-button:hover {
    background: #e55a2b;
}

.cta-button i {
    font-size: 14px;
}

/* Slider Navigation Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background: white;
    border-color: #ff6b35;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* About Us Section */
.about-section {
    background: #fff;
    padding: 100px 0;
    position: relative;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* About Content */
.about-content {
    position: relative;
    max-width: 800px;
    width: 100%;
}

.about-background-text {
    position: absolute;
    top: -20px;
    right: 0;
    font-size: 120px;
    font-weight: 900;
    color: #f5f5f5;
    z-index: 1;
    line-height: 1;
    opacity: 0.3;
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-heading {
    margin-bottom: 30px;
}

.orange-line {
    width: 60px;
    height: 4px;
    background: #ff6b35;
    margin-bottom: 20px;
}

.about-heading h1 {
    color: #333;
    font-size: 42px;
    font-weight: bold;
    line-height: 1.2;
    margin: 0;
}

.about-description p {
    color: #666;
    font-size: 18px;
    line-height: 1.7;
    text-align: justify;
    margin: 0;
}

.about-description strong {
    color: #333;
    font-weight: 600;
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #ff6b35;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: #e55a2b;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* Services Section */
.services-section {
    background: #f8f9fa;
    padding: 100px 0;
    position: relative;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(0,0,0,0.02) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0,0,0,0.02) 0%, transparent 50%);
}

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

/* Main Heading */
.services-heading {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.services-heading h1 {
    color: #333;
    font-size: 42px;
    font-weight: bold;
    margin: 0;
    text-transform: lowercase;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* Service Cards */
.service-card {
    padding: 30px;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
}

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

.white-card {
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.black-card {
    background: #333;
    color: white;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #ff6b35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon i {
    color: white;
    font-size: 24px;
}

.service-content h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    margin-top: 0;
}

.service-content p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

/* Featured Service Card */
.featured-service-card {
    grid-column: 2;
    grid-row: 1 / span 2;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.featured-service-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.engineer-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    filter: blur(2px);
    background: #f8f9fa;
}

.featured-service-content {
    padding: 40px;
    width: 60%;
    position: relative;
    z-index: 2;
}

.gradient-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35 0%, #ffd700 100%);
}

.featured-service-content h2 {
    color: #333;
    font-size: 28px;
    font-weight: bold;
    font-style: italic;
    margin-bottom: 10px;
    margin-top: 0;
}

.featured-service-content h4 {
    color: #666;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
    margin-top: 0;
}

.divider-line {
    width: 50px;
    height: 2px;
    background: #ddd;
    margin-bottom: 20px;
}

.featured-service-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    margin-top: 0;
}

.featured-cta-button {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.featured-cta-button:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* Clients Section */
.clients-section {
    background: #fff;
    padding: 100px 0;
}

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

/* Main Heading */
.clients-heading {
    margin-bottom: 60px;
}

.clients-heading h1 {
    color: #333;
    font-size: 42px;
    font-weight: bold;
    margin: 0;
    text-transform: lowercase;
}

/* Clients Grid */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: center;
}

/* Client Cards */
.client-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

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

.client-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.client-name {
    color: #666;
    font-size: 14px;
    margin: 0;
    font-weight: 500;
}

/* Client Logo Images */
.client-logo-image {
    max-width: 280px;
    max-height: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.client-card:hover .client-logo-image {
    filter: grayscale(0%);
}

/* Contact Section */
.contact-section {
    background: #fff;
}

/* Newsletter Header */
.newsletter-header {
    background: #000;
    padding: 60px 0;
}

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

.newsletter-content {
    text-align: center;
    position: relative;
}

.newsletter-content h2 {
    color: white;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.newsletter-content p {
    color: white;
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    background: #333;
    color: white;
    font-size: 16px;
}

.newsletter-input::placeholder {
    color: #999;
}

.newsletter-button {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-button:hover {
    background: #e55a2b;
}

.newsletter-dot {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: #ff6b35;
    border-radius: 50%;
}

/* Contact Main */
.contact-main {
    position: relative;
    height: 500px;
}

.contact-container {
    display: flex;
    height: 100%;
}

/* Map Section */
.map-section {
    flex: 1;
    position: relative;
}

/* Contact Page Map Section */
.contact-page .map-section {
    width: 100%;
    height: 600px;
    margin: 0;
    padding: 0;
}

.map-container {
    width: 100%;
    height: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(100%);
}

/* Contact Info Panel */
.contact-info-panel {
    width: 400px;
    background: #000;
    color: white;
    padding: 40px;
    display: flex;
    align-items: center;
}

.contact-info-content h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-line {
    width: 60px;
    height: 3px;
    background: #ff6b35;
    margin-bottom: 30px;
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    border: 2px solid #ff6b35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: #ff6b35;
    font-size: 20px;
}

.contact-details {
    flex: 1;
}

.contact-label {
    color: #999;
    font-size: 14px;
    margin-bottom: 5px;
    margin-top: 0;
}

.contact-value {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 110px;
        left: 0;
        right: 0;
        background: #000;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        z-index: 99999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        min-height: 400px;
        max-height: 80vh;
        overflow-y: auto;
        overflow-x: hidden;
        border: 2px solid red;
    }
    
    /* Keep toggle visible; hide only CTA when menu is open */
    .nav-menu.active ~ .contact-us-btn {
        display: none !important;
    }

    /* Ensure the hamburger (X) stays visible and on top when menu is open */
    .nav-menu.active ~ .mobile-menu-toggle {
        display: flex !important;
        top: 18px !important;
        right: 18px !important;
        z-index: 100001 !important;
    }
    
    .nav-menu.active {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        background: #000 !important;
        color: #fff !important;
        top: 110px !important;
        border: none !important;
        z-index: 99999 !important;
        position: fixed !important;
        left: 0 !important;
        right: 0 !important;
    }
    
    /* Hide other content when mobile menu is active */
    .nav-menu.active ~ *,
    .nav-menu.active + * {
        display: none !important;
    }
    
    /* Hide main content when mobile menu is active */
    .nav-menu.active ~ main,
    .nav-menu.active + main {
        display: none !important;
    }
    
    /* Ensure only navigation content shows in mobile menu */
    .nav-menu.active .nav-list {
        display: block !important;
        background: #000 !important;
        position: relative !important;
        z-index: 10000 !important;
    }
    
    .nav-menu.active .nav-list li {
        display: block !important;
        background: #000 !important;
        position: relative !important;
        z-index: 10000 !important;
    }
    
    .nav-menu.active .nav-list a {
        display: block !important;
        background: #000 !important;
        color: #fff !important;
        position: relative !important;
        z-index: 10000 !important;
    }
    
    /* Hide any other content that might be showing in mobile menu */
    .nav-menu.active .hero-slider,
    .nav-menu.active .slide,
    .nav-menu.active .slide-content,
    .nav-menu.active .text-box {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .contact-us-btn {
        display: none;
    }
    
    .header-container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
    }
    
    .header {
        width: 100%;
        overflow: hidden;
    }
    
    /* Reduce header footprint on mobile */
    main {
        margin-top: 110px;
        width: 100%;
        overflow-x: hidden;
    }
    
    .header {
        padding: 10px 0;
    }
    
    .logo {
        width: 70px;
        height: 70px;
        overflow: visible;
        margin-left: 12px; /* slight left margin on mobile */
    }
    
    .logo-image {
        transform: scale(3); /* double size on mobile */
        transform-origin: left center; /* anchor scale to the left */
        filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
        will-change: transform;
    }
    
    .logo-inner-r {
        font-size: 28px;
    }
    
    .company-name h1 {
        font-size: 16px;
    }
    
    .company-name p {
        font-size: 12px;
    }
    
    .nav-list {
        gap: 0;
        flex-direction: column;
        align-items: flex-start;
        list-style: none;
        margin: 0;
        padding: 0;
        width: 100%;
        display: block;
        background: #000;
    }
    
    .nav-list li {
        width: 100%;
        border-bottom: 1px solid #333;
        margin: 0;
        padding: 0;
        background: #000;
    }
    
    .nav-list li:last-child {
        border-bottom: none;
    }
    
    .nav-list a {
        display: block;
        padding: 15px 0;
        font-size: 16px;
        border-bottom: none;
        color: #fff;
        text-decoration: none;
        transition: color 0.3s ease;
        background: #000;
    }
    
    .nav-list a:hover {
        color: #ff6b35;
        background: #111;
    }
    
    .nav-list li {
        width: 100%;
        border-bottom: 1px solid #333;
        margin: 0;
        padding: 0;
    }
    
    .nav-list li:last-child {
        border-bottom: none;
    }
    
    .nav-list a {
        display: block;
        padding: 15px 0;
        font-size: 16px;
        border-bottom: none;
        color: #fff;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .nav-list a:hover {
        color: #ff6b35;
    }
    
    .dropdown-menu {
        position: static;
        background: #111;
        margin: 10px 0;
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        list-style: none;
        padding: 0;
    }
    
    .dropdown-menu.show {
        display: block;
    }
    
    .dropdown-menu li {
        border-bottom: 1px solid #222;
    }
    
    .dropdown-menu li:last-child {
        border-bottom: none;
    }
    
    .dropdown-menu a {
        padding: 12px 20px;
        font-size: 14px;
        color: #ccc;
        display: block;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .dropdown-menu a:hover {
        color: #ff6b35;
        background: #1a1a1a;
    }
    
    /* Mobile Slider Styles */
    .hero-slider {
        height: 65vh;
        width: 100%;
        overflow: hidden;
    }
    
    .slider-container {
        width: 100%;
        overflow: hidden;
    }
    
    .slide {
        width: 100%;
        overflow: hidden;
    }
    
    .slide-content {
        padding: 0 12px;
        justify-content: center;
    }
    
    .text-box {
        max-width: 100%;
        width: 100%;
        padding: 15px 12px;
        margin: 0 auto;
        border-left-width: 3px;
        box-sizing: border-box;
    }
    
    .slide-content {
        width: 100%;
        padding: 0 12px;
        box-sizing: border-box;
    }
    
    .welcome-text {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .main-heading {
        font-size: 20px;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    .description {
        font-size: 13px;
        margin-bottom: 20px;
        line-height: 1.4;
    }
    
    .slider-dots {
        left: 20px;
        bottom: 20px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    /* Mobile About Us Styles */
    .about-section {
        padding: 60px 0;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-logo {
        width: 100px;
        height: 100px;
    }
    
    .about-company-name h2 {
        font-size: 20px;
    }
    
    .about-company-name p {
        font-size: 14px;
    }
    
    .about-background-text {
        font-size: 80px;
        top: -10px;
        right: 50%;
        transform: translateX(50%);
    }
    
    .about-heading h1 {
        font-size: 32px;
    }
    
    .about-description p {
        font-size: 16px;
    }
    
    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    /* Mobile Services Styles */
    .services-section {
        padding: 60px 0;
    }
    
    .services-heading h1 {
        font-size: 28px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 25px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto;
    }
    
    .service-icon i {
        font-size: 20px;
    }
    
    .service-content h3 {
        font-size: 18px;
    }
    
    .service-content p {
        font-size: 14px;
    }
    
    .featured-service-card {
        grid-column: 1;
        grid-row: auto;
    }
    
    .featured-service-image {
        position: relative;
        width: 100%;
        height: 200px;
    }
    
    .featured-service-content {
        width: 100%;
        padding: 25px;
    }
    
    .featured-service-content h2 {
        font-size: 22px;
    }
    
    .featured-service-content h4 {
        font-size: 14px;
    }
    
    .featured-service-content p {
        font-size: 14px;
    }
    
    .featured-cta-button {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    /* Mobile Clients Styles */
    .clients-section {
        padding: 60px 0;
    }
    
    .clients-heading h1 {
        font-size: 28px;
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .client-card {
        padding: 20px;
    }
    
    .ami-text {
        font-size: 24px;
    }
    
    .johnson-text, .controls-text {
        font-size: 18px;
    }
    
    .lancer-text {
        font-size: 22px;
    }
    
    .hitachi-text {
        font-size: 24px;
    }
    
    .magnum-text {
        font-size: 18px;
    }
    
    .schilthorn-text {
        font-size: 16px;
    }
    
    .tools-text {
        font-size: 14px;
    }
    
    .client-logo-image {
        max-width: 200px;
        max-height: 120px;
    }
    
    /* Mobile Contact Styles */
    .newsletter-header {
        padding: 40px 0;
    }
    
    .newsletter-content h2 {
        font-size: 24px;
    }
    
    .newsletter-content p {
        font-size: 16px;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .newsletter-input {
        width: 100%;
    }
    
    .newsletter-button {
        width: 100%;
    }
    
    .contact-main {
        height: auto;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .map-section {
        height: 300px;
    }
    
    .contact-page .map-section {
        height: 450px;
    }
    
    .contact-info-panel {
        width: 100%;
        padding: 30px 20px;
    }
    
    .contact-info-content h2 {
        font-size: 24px;
    }
    
    .contact-item {
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-icon i {
        font-size: 16px;
    }
    
    .contact-value {
        font-size: 14px;
    }
    
    .contact-label {
        font-size: 12px;
    }
}

/* Extra-small devices: tighten layout for the clients section */
@media (max-width: 480px) {
    .clients-container {
        padding: 0 16px;
    }
    .clients-heading h1 {
        font-size: 24px;
        line-height: 1.2;
    }
    .clients-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .client-card {
        padding: 16px;
    }
    .client-logo-image {
        max-width: 100%;
        max-height: 100px;
        width: 100%;
        height: auto;
    }
}

/* Footer */
.footer {
    background: #000;
    padding: 30px 0;
    position: relative;
}

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

.footer-content {
    text-align: center;
}

.footer-text {
    color: white;
    font-size: 16px;
    margin: 0;
    font-weight: 500;
}

.footer-brand {
    color: #ff6b35;
    font-weight: bold;
}

/* About Page Styles */
.about-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
    background: #000;
}

.about-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.about-hero-image {
    display: none;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.about-hero-content h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    opacity: 0.9;
}

.breadcrumbs i {
    font-size: 12px;
    opacity: 0.7;
}

/* About Content Section */
.about-content-section {
    padding: 80px 0;
    background: #fff;
}

.about-content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content-left h2 {
    color: #333;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1.2;
}

.about-content-left p {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
}

.about-content-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-logo-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-logo-image {
    width: 200px;
    height: 200px;
    object-fit: contain;
    border-radius: 10px;
}

.logo-border-decoration {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px dashed #333;
    border-radius: 15px;
    z-index: -1;
}

/* Active Navigation Link */
.nav-list a.active {
    color: #ff6b35;
    position: relative;
}

.nav-list a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ff6b35;
}

/* Vision & Mission Section */
.vision-mission-section {
    background: #fff;
    padding: 80px 0;
    position: relative;
}

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

.vision-mission-item {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    margin-bottom: 60px;
    align-items: start;
}

.vision-mission-left {
    position: relative;
}

.vision-mission-line {
    width: 60px;
    height: 3px;
    background: #ff6b35;
    margin-bottom: 20px;
}

.vision-mission-left h2 {
    color: #333;
    font-size: 32px;
    font-weight: bold;
    margin: 0;
}

.vision-mission-right p {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
}

.mission-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mission-point h4 {
    color: #333;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 0;
}

.mission-point p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    text-align: justify;
}

.vision-mission-dot {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: #ff6b35;
    border-radius: 50%;
}

/* Clients Slider Section */
.clients-slider-section {
    background: #f8f9fa;
    padding: 60px 0;
    overflow: hidden;
}

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

.clients-slider {
    display: flex;
    gap: 40px;
    animation: slideClients 30s linear infinite;
}

.client-slide {
    flex-shrink: 0;
    width: 200px;
}

.client-logo-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 160px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.client-slider-logo {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.client-logo-card:hover .client-slider-logo {
    filter: grayscale(0%);
}

@keyframes slideClients {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Pause animation on hover */
.clients-slider:hover {
    animation-play-state: paused;
}

/* Service Pages Styles */
.service-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
    margin-top: 130px;
    background: #000 !important;
}

/* Contact Page Styles */
.contact-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
    margin-top: 130px;
    background: #000 !important;
}

.contact-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.contact-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
    display: none;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.contact-hero-content h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Capacity Section Styles */
.capacity-section {
    padding: 80px 0;
    background: #fff;
}

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

.capacity-content {
    text-align: center;
}

.capacity-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    max-width: 800px;
    margin: 0 auto 60px;
}

.capacity-diamond {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto 60px;
    transform: rotate(45deg);
    background: #333;
    border: 4px solid #ff6b35;
    display: flex;
    align-items: center;
    justify-content: center;
}

.capacity-diamond-content {
    transform: rotate(-45deg);
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
}

.capacity-arrows {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.capacity-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
}

.capacity-arrow.top {
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-bottom: 15px solid #ff6b35;
}

.capacity-arrow.bottom {
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-top: 15px solid #ff6b35;
}

.capacity-images {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.capacity-image {
    width: 200px;
    height: 150px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.capacity-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #f8f9fa;
}

/* CNC Additional Section Styles */
.cnc-additional-section {
    padding: 60px 0;
    background: #fff;
}

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

.cnc-additional-content {
    text-align: center;
}

.cnc-additional-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.service-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.service-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
    display: none;
}

.service-hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.service-hero-content h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #ccc;
}

.breadcrumbs span {
    color: #ccc;
}

.breadcrumbs i {
    font-size: 12px;
    color: #ff6b35;
}

/* Service Content Section */
.service-content-section {
    padding: 80px 0;
    background: #fff;
}

.service-content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Single column layout when no image */
.service-content-container:has(.service-content-left:only-child) {
    grid-template-columns: 1fr;
    text-align: center;
}

/* CNC page specific layout */
.cnc-content {
    grid-template-columns: 1fr;
    text-align: center;
}

/* Powder coating page specific layout */
.powder-content {
    grid-template-columns: 1fr;
    text-align: center;
}

.service-heading {
    margin-bottom: 30px;
}

.orange-line {
    width: 60px;
    height: 4px;
    background: #ff6b35;
    margin-bottom: 20px;
}

.service-heading h2 {
    color: #333;
    font-size: 36px;
    font-weight: bold;
    margin: 0;
    line-height: 1.2;
}

.service-description p {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
}

.service-image-container {
    border-radius: 10px;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 400px;
    object-fit: contain;
    border-radius: 10px;
    background: #f8f9fa;
}

/* Service Categories Section */
.service-categories-section {
    background: #f8f9fa;
    padding: 80px 0;
}

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

.service-tabs {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
}

.service-tab {
    padding: 15px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.service-tab.active {
    background: linear-gradient(90deg, #ff6b35 0%, #ffd700 100%);
    color: white;
}

.service-tab span {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.service-tab-line {
    width: 100%;
    height: 1px;
    background: #ddd;
    margin-bottom: 40px;
}

.service-tab-content {
    text-align: center;
    margin-bottom: 60px;
}

.service-tab-content p {
    color: #666;
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.service-tab-dot {
    width: 8px;
    height: 8px;
    background: #ff6b35;
    border-radius: 50%;
    margin: 20px auto 0;
}

/* Service Cards Slider */
.service-cards-slider {
    position: relative;
}

.service-cards-container {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.service-card-slide {
    flex: 0 0 400px;
}

.service-card-dark {
    background: #333;
    color: white;
    padding: 40px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card-dark.gradient-bg {
    background: linear-gradient(135deg, #ff6b35 0%, #ffa726 100%);
}

.service-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(90deg, #ff6b35 0%, #ffd700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-card-icon i {
    font-size: 32px;
    color: white;
}

.service-card-dark h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    margin-top: 0;
}

.service-card-dark p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

.service-card-outline {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 50%;
}

/* Slider Navigation */
.slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.slider-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.slider-btn i {
    color: #333;
    font-size: 18px;
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s ease;
}

.slider-dots .dot.active {
    background: #ff6b35;
}

/* Home Services (Redesigned) */
.home-services {
    background: #f6f7f9;
    padding: 90px 0;
}

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

.home-services-header {
    text-align: center;
    margin-bottom: 40px;
}

.home-services-header h2 {
    font-size: 36px;
    margin: 0 0 8px 0;
}

.home-services-header p {
    color: #666;
}

.home-services-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 10px 0;
}

.home-service-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform .2s ease, box-shadow .2s ease;
    flex: 0 0 220px;
    min-width: 220px;
}

.home-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.home-service-icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff6b35 0%, #ffd700 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    margin-bottom: 16px;
}

.home-service-card h3 {
    font-size: 18px;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.home-service-card p {
    color: #666;
    margin: 0 0 14px 0;
    flex: 1 1 auto;
    font-size: 14px;
    line-height: 1.4;
}

.home-service-cta {
    color: #ff6b35;
    font-weight: 600;
}

@media (max-width: 480px) {
    .home-services {
        padding: 60px 0;
    }
    
    .about-section {
        padding: 60px 0;
    }
    
    .about-heading h1 {
        font-size: 32px;
    }
    
    .about-description p {
        font-size: 16px;
        text-align: justify;
    }
}
/* Products Page Styles */
.products-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
    background: #000;
}

.products-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.products-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
    display: none;
}

.products-hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.products-hero-content h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Products Categories Section */
.products-categories-section {
    background: #f8f9fa;
    padding: 80px 0;
}

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

/* Category Filters */
.category-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.filter-icon {
    width: 40px;
    height: 40px;
    border: 2px solid #ff6b35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6b35;
    font-size: 16px;
}

.category-btn {
    padding: 12px 24px;
    background: white;
    border: 2px solid #ddd;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    color: #333;
}

.category-btn.active {
    background: linear-gradient(90deg, #ff6b35 0%, #ffd700 100%);
    border-color: #ff6b35;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.category-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.product-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-item:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    color: #333;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 0;
}

.product-info p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Product Item States */
.product-item.hidden {
    display: none;
}

.product-item.visible {
    display: block;
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Clients Page Styles */
.clients-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
    background: #000;
}

.clients-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.clients-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
    display: none;
}

.clients-hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.clients-hero-content h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* About page contact info cards */
.contact-info-cards {
    background: #fff;
    padding: 60px 0 20px;
}

.contact-info-cards-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}

.info-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.info-card:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.info-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b35 0%, #ffa726 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.info-content h3 {
    margin: 0 0 8px 0;
    font-size: 22px;
    color: #111;
}

.info-content p {
    margin: 2px 0;
    color: #555;
}

/* Consultation section */
.consultation-section {
    padding: 40px 0 80px;
    background: #fff;
}

.consultation-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.consultation-logo {
    max-width: 420px;
    width: 100%;
    height: auto;
}

.consultation-heading-line {
    width: 60px;
    height: 6px;
    background: #ff6b35;
    border-radius: 3px;
    margin-bottom: 16px;
}

.consultation-right h2 {
    margin: 0 0 12px 0;
    font-size: 44px;
    line-height: 1.2;
    color: #111;
}

.consultation-subtext {
    color: #666;
    margin-bottom: 20px;
}

.consultation-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.consultation-input {
    padding: 16px 18px;
    border: 1px solid #eee;
    border-radius: 8px;
    outline: none;
    font-size: 16px;
}

.consultation-button {
    background: #ff5a1f;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 16px 22px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(255, 90, 31, 0.35);
}

.consultation-button i {
    margin-right: 8px;
}

/* Form Messages */
.newsletter-message,
.consultation-message {
    margin-top: 15px;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    display: none;
}

.newsletter-message.success,
.consultation-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.newsletter-message.error,
.consultation-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

@media (max-width: 992px) {
    .contact-info-cards-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .info-card {
        padding: 15px;
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .info-content h3 {
        font-size: 18px;
    }
    
    .info-content p {
        font-size: 14px;
    }
    .consultation-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .consultation-heading-line {
        margin: 0 auto 16px;
    }
    .consultation-right h2 {
        font-size: 32px;
    }
    .consultation-logo {
        max-width: 320px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .logo-section {
        gap: 10px;
    }
    
    main {
        margin-top: 130px !important;
    }
    
    .header {
        padding: 8px 0;
    }
    
    .logo {
        width: 50px;
        height: 50px;
    }
    
    .hero-slider {
        height: 60vh;
    }
    
    .text-box {
        padding: 12px 10px;
    }
    
    .welcome-text {
        font-size: 11px;
    }
    
    .main-heading {
        font-size: 18px;
    }
    
    .description {
        font-size: 12px;
    }
    
    .company-name h1 {
        font-size: 14px;
    }
    
    .company-name p {
        font-size: 11px;
    }
    
    /* Mobile About Page Styles */
    .about-hero {
        height: 300px;
    }
    
    .about-hero-content h1 {
        font-size: 32px;
    }
    
    .breadcrumbs {
        font-size: 14px;
    }
    
    .about-content-section {
        padding: 50px 0;
    }
    
    .about-content-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content-left h2 {
        font-size: 28px;
    }
    
    .about-content-left p {
        font-size: 14px;
    }
    
    .about-logo-image {
        width: 150px;
        height: 150px;
    }
    
    /* Mobile Vision & Mission Styles */
    .vision-mission-section {
        padding: 50px 0;
    }
    
    .vision-mission-item {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .vision-mission-left h2 {
        font-size: 24px;
    }
    
    .vision-mission-right p {
        font-size: 14px;
    }
    
    .mission-point h4 {
        font-size: 16px;
    }
    
    .mission-point p {
        font-size: 14px;
    }
    
    /* Mobile Clients Slider Styles */
    .clients-slider-section {
        padding: 40px 0;
    }
    
    .clients-slider {
        gap: 20px;
        animation: slideClients 20s linear infinite;
    }
    
    .client-slide {
        width: 150px;
    }
    
    .client-logo-card {
        padding: 25px;
        height: 120px;
    }
    
    .client-slider-logo {
        max-height: 80px;
    }
    
    /* Custom Fabrication Page Responsive */
    .service-tab-dot {
        width: 8px;
        height: 8px;
        background: #ff6b35;
        border-radius: 50%;
        margin: 20px auto 0;
    }
    
    .service-cards-container {
        gap: 20px;
    }
    
    .service-card-dark {
        padding: 25px 20px;
    }
    
    .service-card-dark h3 {
        font-size: 18px;
    }
    
    .service-card-dark p {
        font-size: 14px;
    }
    
    .service-content-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-content-left h2 {
        font-size: 28px;
    }
    
    .service-content-left p {
        font-size: 14px;
    }
    
    .service-tabs {
        flex-direction: column;
        gap: 10px;
    }
    
    .service-tab {
        font-size: 14px;
        padding: 12px 16px;
    }
    
    /* Contact Page Responsive */
    .contact-hero {
        height: 300px;
        margin-top: 100px;
    }
    
    .contact-hero-content h1 {
        font-size: 32px;
    }
    
    .contact-info-cards-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .consultation-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .consultation-right h2 {
        font-size: 28px;
    }
    
    /* Capacity Section Responsive */
    .capacity-diamond {
        width: 200px;
        height: 200px;
    }
    
    .capacity-diamond-content {
        font-size: 16px;
    }
    
    .capacity-images {
        flex-direction: column;
        gap: 20px;
    }
    
    .capacity-image {
        width: 100%;
        max-width: 300px;
    }
    
    /* CNC Additional Section Responsive */
    .cnc-additional-content p {
        font-size: 16px;
    }
    
    /* Service Pages Mobile Responsive */
    .service-hero {
        height: 300px;
        margin-top: 100px;
    }
    
    .service-hero-content h1 {
        font-size: 32px;
    }
    
    .service-tab-content p {
        font-size: 16px;
    }
    
    .slider-nav {
        gap: 20px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .slider-dots {
        gap: 8px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
}
