/* Projects Section */

.projects-section {
    padding: 6rem 0;
    background-color: #f8fafc;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.project-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.project-content {
    padding: 2rem;
}

.project-content h3 {
    color: #1f2937;
    margin-bottom: 1rem;
}


/* Why Choose Us Section */

.why-choose-section {
    padding: 8rem 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0052a5be;
}

.why-choose-section .sectionsection-header,
.why-choose-section .section-subtitle {
    color: rgb(20, 20, 13);
}

.container .section-header .section-title,
.container .section-header .section-subtitle {
    color: #ffffff;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.choice-item {
    text-align: center;
    color: white;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.choice-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.choice-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.choice-icon i {
    font-size: 2rem;
    color: white;
}

.choice-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
}

.choice-item p {
    color: #cbd5e0;
}


/* Projects Preview Section */

.projects-preview-section {
    padding: 8rem 0;
    background: white;
}

.projects-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.project-preview-item {
    position: relative;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.project-preview-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.project-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-preview-item:hover img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(45, 55, 72, 0.9));
    color: white;
    padding: 3rem 2rem 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.project-preview-item:hover .project-overlay {
    transform: translateY(0);
}

.project-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ff6b35;
}

.projects-cta {
    text-align: center;
}

.animated-arrow {
    position: relative;
    overflow: hidden;
}

.animated-arrow i {
    transition: transform 0.3s ease;
}

.animated-arrow:hover i {
    transform: translateX(5px);
    animation: bounceArrow 0.6s ease-in-out;
}


/* Heavy Machinery Section */

.heavy-machinery-section {
    padding: 8rem 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.heavy-machinery-content {
    display: flex;
    align-items: center;
    min-height: 400px;
    position: relative;
    z-index: 2;
}

.machinery-text {
    max-width: 600px;
    color: white;
}

.machinery-text h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: white;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.machinery-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #e2e8f0;
}

.machinery-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}


/* Coded Welders Section */

.coded-welders-section {
    padding: 8rem 0;
    background: #f8fafc;
}

.coded-welders-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.welders-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2d3748;
}

.welders-text p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.8;
}

.welders-features {
    display: flex;
    gap: 2rem;
    margin: 2rem 0 3rem;
    flex-wrap: wrap;
}

.welder-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.welder-feature i {
    color: #ff6b35;
    font-size: 1.2rem;
}

.welder-feature span {
    font-weight: 600;
    color: #2d3748;
    font-size: 0.9rem;
}

.welders-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}


/* About Stats */

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    background: white;
    padding: 2rem 1rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #ff6b35;
}

.stat-item h4 {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 0.5rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
}

.stat-item span {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* Floating Contact Toolbar */

.floating-contact-toolbar {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.floating-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: inherit;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.floating-btn:hover::before {
    transform: scale(1.1);
}

.floating-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.phone-btn {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.email-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.floating-btn i {
    position: relative;
    z-index: 2;
}