/* ------------------------------------
   Argil Group SPC Export Landing Page
   Author: Flipcode Solutions
   ------------------------------------ */

/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #ffffff;
    color: #222;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Header */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

header img {
    height: 60px;
}

header .cta-btn {
    background-color: #007bff;
    color: #fff;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

header .cta-btn:hover {
    background-color: #0056b3;
}

/* Hero Section */
.hero {
    background: url('/images/spc-hero.jpg') center/cover no-repeat;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 25px;
}

.hero .cta-btn {
    background-color: #ffb400;
    color: #000;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.hero .cta-btn:hover {
    background-color: #ffd45a;
}

/* Product Grid */
.products {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.products h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.product-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card h3 {
    padding: 15px;
    font-size: 20px;
    text-align: center;
}

/* Process Section */
.process {
    padding: 70px 0;
}

.process h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    text-align: center;
}

.step {
    width: 250px;
    margin: 20px;
}

.step img {
    height: 70px;
    margin-bottom: 15px;
}

/* Contact Form */
.contact {
    background-color: #007bff;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.contact h2 {
    margin-bottom: 25px;
    font-size: 32px;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.contact input,
.contact textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
}

.contact button {
    width: 100%;
    padding: 12px;
    background-color: #ffb400;
    color: #000;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s;
}

.contact button:hover {
    background-color: #ffd45a;
}

/* Footer */
footer {
    background: #222;
    color: #aaa;
    padding: 30px 0;
    text-align: center;
    font-size: 14px;
}

footer a {
    color: #ffb400;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}


.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

#backToTop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

#backToTop:hover {
    background-color: #0056b3;
}

.export-process-bg
{
     background: url('/images/spc-hero.jpg');
}