/* Dynamic Text Mobile */

.dynamic-text {
    font-size: 2.2rem;
    line-height: 1.3;
}


/* Why Choose Us Mobile */

.why-choose-section {
    padding: 4rem 0;
}

.choice-icon {
    width: 60px;
    height: 60px;
}

.choice-icon i {
    font-size: 1.5rem;
}


/* Projects Preview Mobile */

.projects-preview-section {
    padding: 4rem 0;
}

.project-preview-item {
    height: 300px;
}


/* Heavy Machinery Mobile */

.heavy-machinery-section {
    padding: 4rem 0;
}

.machinery-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.machinery-text p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.machinery-buttons {
    justify-content: center;
}


/* Coded Welders Mobile */

.coded-welders-section {
    padding: 4rem 0;
}

.coded-welders-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
}

.welders-text h2 {
    font-size: 2rem;
}

.welders-features {
    justify-content: center;
}

.welders-image {
    order: -1;
}


/* Stats Mobile */

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

.stat-item {
    padding: 1.5rem 1rem;
}

.stat-item h4 {
    font-size: 2rem;
}


/* Floating Contact Mobile */

.floating-contact-toolbar {
    bottom: 20px;
    left: 20px;
    gap: 10px;
}

.floating-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
}


/* Carousel Controls */


/* Section Padding */

.about-section,
.services-section,
.projects-section,
.contact-section {
    padding: 4rem 0;
}

.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2rem;
}


/* About Section */

.about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
}

.about-image {
    order: -1;
}

.about-features {
    justify-content: center;
}


/* Services Section */

.services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.service-card {
    padding: 2rem;
}


/* Projects Section */

.projects-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}


/* Footer */

.footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-description {
        font-size: 0.9rem;
    }
    .service-card {
        padding: 1.5rem;
    }
    .service-icon {
        width: 60px;
        height: 60px;
    }
    .service-icon i {
        font-size: 1.5rem;
    }
    .contact-form {
        padding: 1.5rem;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem;
    }
    .carousel-indicators {
        bottom: 1rem;
    }
    .indicator {
        width: 10px;
        height: 10px;
    }
}


/* Landscape Phone */

@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        height: 100vh;
    }
    .hero-content {
        padding: 2rem 0;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    .hero-buttons .btn {
        padding: 10px 25px;
        font-size: 14px;
    }
}


/* Extra Large Screens */

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    .hero-title {
        font-size: 4.5rem;
    }
    .hero-subtitle {
        font-size: 1.8rem;
    }
    .hero-description {
        font-size: 1.3rem;
    }
}


/* High DPI Screens */

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .hero-slide {
        background-size: cover;
    }
}


/* Reduced Motion */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .hero-slide {
        transition: none;
    }
    .carousel-btn,
    .indicator,
    .service-card,
    .project-card {
        transition: none;
    }
}