/* --- BRAND IDENTITY & COLORS --- */
:root {
    --brand-red: #ff2828;
    --nav-footer-pink: #f226a3;   /* NEW */
    --brand-magenta: #C017A8;
    --brand-purple: #7A25D8;
    --deep-purple: #1e0a24;
    --gradient-main: linear-gradient(135deg, #E60073, #7A25D8);
    --form-bg: #f9f6f9;
    --white: #ffffff;
    --text-dark:#905A01;
    --light-bg: #f8f9fa;
	--header-height: 94px; /* MUST match logo height */
}

* { margin:0; padding:0; box-sizing: border-box; font-family: 'Inter', sans-serif; scroll-behavior: smooth; }
body { background: var(--white); color: #333; overflow-x: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* --- LOADER STYLES --- */
#loader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--deep-purple);
    display: flex; justify-content: center; align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}
.spinner {
    width: 50px; height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.1);
    border-top: 5px solid var(--brand-pink);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ================= NAVIGATION (UPDATED) ================= */
header {
    background: linear-gradient(90deg, #ff5757, #e64545);
    padding: 10px 5%;
    height: 72px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 6px 18px rgba(255,87,87,0.35);
}

/* LOGO AREA – SIMPLE */
.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

/* LOGO IMAGE – CLEAN */
.logo-img {
    height: 94px;
    width: auto;
}

/* LOGO TEXT */
.logo-text h2 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.logo-text p {
    font-size: 10px;
    color: rgba(255,255,255,0.85);
}

/* NAV LINKS */
nav ul {
    display: flex;
    list-style: none;
    gap: 28px;
    align-items: center;
}

nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

nav ul li a:hover {
    opacity: 0.8;
}

/* CTA BUTTON */
.btn-quote {
    background: #ffffff;
    color: #ff5757 !important;
    padding: 9px 20px;
    border-radius: 30px;
    font-weight: 700;
}
/* --- HERO --- */
.hero {
    position: relative;
    width: 100%;
    
        aspect-ratio: 16 / 8; 
    
    margin-top: var(--header-height);
    
    
    background: linear-gradient(rgba(30, 10, 36, 0.5), rgba(30, 10, 36, 0.6)), 
                url("bg.png") no-repeat;
    
    
    background-size: 100% 100%;
    background-position: center;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    box-sizing: border-box;
    overflow: hidden;
}
@media (max-width: 768px) {
    .hero {
        aspect-ratio: auto;
        min-height: 60vh; /* On phones, we let it crop a bit to keep the text readable */
        background-size: cover;
    }
}


.pill-tag { 
    display: inline-block; padding: 6px 20px; border: 1px solid var(--brand-pink); 
    border-radius: 30px; color: var(--brand-pink); font-size: 12px; 
    font-weight: 700; letter-spacing: 2px; margin-bottom: 25px; text-transform: uppercase;
}
.hero h1 { font-family: 'Inter', sans-serif; font-size: 65px; line-height: 1.1; margin-bottom: 20px; letter-spacing: -0.5px;}
.hero h1 span { color: var(--brand-pink); }
.hero-desc { font-size: 18px; color: #ccc; max-width: 650px; margin-bottom: 30px; }

.hero-bullets { display: flex; gap: 20px; margin-bottom: 40px; }
.hero-bullets span { font-size: 14px; display: flex; align-items: center; gap: 8px; color: #eee; }
.hero-bullets span::before { content: '●'; color: var(--brand-pink); font-size: 10px; }

.hero-btns { display: flex; gap: 20px; margin-bottom: 60px; }
.btn-main { padding: 15px 35px; border-radius: 5px; font-weight: 700; text-decoration: none; transition: 0.3s; display: inline-block; }
.btn-pink { background: var(--gradient-main); color: white; }
.btn-outline { border: 1px solid white; color: white; background: rgba(255,255,255,0.05); }

.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.stat-card { 
    background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1); padding: 25px; border-radius: 12px;
    display: flex; align-items: center; gap: 15px;
}
.stat-icon { font-size: 24px; color: var(--brand-pink); background: rgba(255,0,127,0.1); padding: 15px; border-radius: 10px; }
.stat-info h4 { font-size: 12px; color: #aaa; text-transform: uppercase; letter-spacing: 1px; }
.stat-info p { font-size: 20px; font-weight: 700; }

/* --- COMPANY PROFILE SECTION --- */
.profile-section { padding: 100px 0; background: #fff; }
.profile-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; align-items: start; }
.profile-tag { color: var(--brand-pink); font-weight: 700; letter-spacing: 2px; font-size: 13px; text-transform: uppercase; margin-bottom: 15px; display: block; }
.profile-title { font-family: 'Playfair Display'; font-size: 48px; line-height: 1.2; color: var(--deep-purple); margin-bottom: 30px; }
.profile-text { color: #666; font-size: 16px; line-height: 1.8; margin-bottom: 40px; text-align: justify;}
.profile-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.profile-stat-box { background: var(--light-bg); padding: 30px; border-radius: 12px; text-align: center; transition: 0.3s; }
.profile-stat-box i { color: var(--brand-pink); font-size: 24px; margin-bottom: 15px; }
.profile-stat-box h2 { font-size: 32px; font-weight: 700; color: var(--deep-purple); }
.profile-stat-box p { font-size: 13px; color: #888; margin-top: 5px; }

.quality-card { background: var(--deep-purple); color: white; padding: 50px; border-radius: 20px; height: 100%; }
.quality-card h2 { font-family: 'Playfair Display'; font-size: 32px; margin-bottom: 35px; }
.quality-item { margin-bottom: 25px; display: flex; gap: 15px; }
.quality-dot { width: 8px; height: 8px; background: var(--brand-pink); border-radius: 50%; margin-top: 10px; flex-shrink: 0; }
.quality-content h4 { font-size: 18px; margin-bottom: 5px; }
.quality-content p { font-size: 14px; color: #bca0c0; line-height: 1.5; }

/* CATEGORY */

.category-grid{
display:grid;
grid-template-columns:repeat(auto-fill,minmax(250px,1fr));
gap:20px;
padding:60px 0;
}

.category-card{
background:white;
padding:20px;
border-radius:15px;
text-align:center;
border:1px solid #eee;
transition:0.4s;
}

.category-card:hover{
transform:translateY(-10px);
background:var(--gradient-main);
color:white;
}

.cat-img{
width:100%;
height:150px;
object-fit:cover;
border-radius:10px;
margin-bottom:15px;
}


.custom-icon {
  display: inline-block;
  width: 70px;
  height: 70px;
  background-image: url("logo1.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
/* --- WHY CHOOSE US --- */
.why-us { background: #2a0b35; padding: 100px 0; color: white; }
.section-title { text-align: center; font-family: 'Playfair Display'; font-size: 42px; color: #1e0a24; margin-bottom: 40px; }
.advantage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-bottom: 60px; }
.adv-card { background: rgba(255, 255, 255, 0.05); padding: 40px 30px; border-radius: 15px; border: 1px solid rgba(255, 255, 255, 0.1); transition: 0.3s; }
.adv-card:hover { background: rgba(255, 255, 255, 0.1); transform: scale(1.02); }
.adv-icon { width: 50px; height: 50px; background: rgba(255, 0, 127, 0.1); color: var(--brand-pink); display: flex; align-items: center; justify-content: center; border-radius: 10px; margin-bottom: 20px; font-size: 22px; }
.adv-card h3 { font-size: 20px; margin-bottom: 15px; font-family: 'Playfair Display'; }
.adv-card p { font-size: 14px; color: #ccc; line-height: 1.6; }
.cert-pills-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
.cert-pill { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 0, 127, 0.3); padding: 10px 25px; border-radius: 30px; font-size: 13px; font-weight: 600; color: #eee; }

/* --- RFQ SECTION --- */
.rfq-section { background-color: var(--form-bg); padding: 80px 0; }
.rfq-grid { display: grid; grid-template-columns: 1.8fr 1fr; gap: 30px; }
.rfq-form-card { background: white; padding: 40px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: 13px; margin-bottom: 8px; color: #555; }
.form-group input, .form-group textarea { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 8px; background: #fcfcfc; font-size: 14px; }
.submit-btn { width: 100%; padding: 15px; border: none; border-radius: 8px; color: white; font-weight: 700; background: var(--gradient-main); cursor: pointer; transition: 0.3s; margin-top: 20px; }
.sidebar-card { background: white; padding: 25px; border-radius: 15px; margin-bottom: 20px; display: flex; align-items: center; gap: 15px; text-decoration: none; color: inherit; border: 1px solid #eee; }
.sidebar-icon { width: 45px; height: 45px; background: #f9f0f6; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--brand-pink); font-size: 20px; }
.checklist-card { background: #1e0a24; color: white; padding: 30px; border-radius: 15px; }

/* --- FOOTER --- */
.site-footer { background-color: var(--brand-light-pink); color: #ffffff; padding: 60px 0 30px; font-size: 14px; }
.footer-container { display: grid; grid-template-columns: 1.2fr 0.8fr 1fr 1.2fr; gap: 40px; margin-bottom: 40px; }
.footer-logo-area { display: flex; align-items: center; gap: 12px; }
.footer-logo-img { height: 135px; border-radius: 50%; }
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 12px; }
.footer-links ul li a { color: #bca0c0; text-decoration: none; transition: 0.3s; }
.footer-links ul li a:hover { color: var(--brand-pink); }
.contact-item { display: flex; gap: 15px; margin-bottom: 20px; color: #bca0c0; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.05); padding-top: 25px; color: #886090; font-size: 12px; display: flex; justify-content: space-between; }

/* --- SCROLL ANIMATION CLASSES --- */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}
.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- RESPONSIVE --- */
/* ========================================
   MOBILE RESPONSIVE — PASTE THIS AT THE 
   BOTTOM OF style.css (replace old @media)
   ======================================== */

/* --- TABLET (max 992px) --- */
@media (max-width: 992px) {
    .hero h1 { font-size: 42px; }
    .profile-grid { grid-template-columns: 1fr; }
    .advantage-grid { grid-template-columns: repeat(2, 1fr); }
    .rfq-grid { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr 1fr; }
    .stat-row { grid-template-columns: repeat(2, 1fr); }
}

/* --- MOBILE (max 768px) --- */
@media (max-width: 768px) {

    /* HEADER & NAV */
    header {
        flex-wrap: wrap;
        height: auto;
        padding: 12px 5%;
        gap: 10px;
    }
    nav ul {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }
    nav ul li a { font-size: 11px; }
    .logo-img { height: 60px; }
    .logo-text h2 { font-size: 14px; }

    /* HERO */
    .hero {
        padding-top: 40px;
        padding-bottom: 40px;
        text-align: center;
    }
    .hero h1 { font-size: 30px; letter-spacing: 0; }
    .hero-desc { font-size: 15px; }
    .hero-bullets {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .btn-main { width: 100%; text-align: center; }
    .pill-tag { font-size: 10px; }

    /* ABOUT / PROFILE */
    .profile-section { padding: 60px 0; }
    .profile-title { font-size: 30px; }
    .profile-stats-grid { grid-template-columns: 1fr 1fr; gap: 15px; }
    .profile-stat-box { padding: 20px 10px; }
    .profile-stat-box h2 { font-size: 24px; }
    .quality-card { padding: 30px 20px; }
    .quality-card h2 { font-size: 24px; }

    /* PRODUCTS GRID */
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 30px 0;
    }
    .cat-img { height: 110px; }
    .category-card h3 { font-size: 12px; }

    /* WHY US */
    .why-us { padding: 60px 0; }
    .advantage-grid { grid-template-columns: 1fr; gap: 15px; }
    .adv-card { padding: 25px 20px; }
    .section-title { font-size: 30px; }
    .cert-pills-row { gap: 10px; }
    .cert-pill { font-size: 11px; padding: 8px 15px; }

    /* RFQ / CONTACT */
    .rfq-section { padding: 50px 0; }
    .rfq-grid { grid-template-columns: 1fr; }
    .rfq-form-card { padding: 25px 20px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }

    /* FOOTER */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .footer-logo-area { justify-content: center; }
    .footer-logo-img { height: 80px; }
    .contact-item { justify-content: center; }
    .footer-bottom { flex-direction: column; align-items: center; gap: 10px; }
}

/* =========================
   HAMBURGER MENU (BASE)
========================= */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 3px;
}


@media (max-width: 768px) {

	header {
        display: flex;
        align-items: center;
    }

    .menu-toggle {
        margin-left: auto;   /* PUSHES ICON TO RIGHT */
    }


    nav {
        width: 100%;
    }

    nav ul {
        display: none;
        flex-direction: column;
        background: linear-gradient(90deg, #ff5757, #e64545);
        width: 100%;
        padding: 15px 0;
        border-radius: 12px;
    }

    nav ul.show {
        display: flex;
    }

    nav ul li {
        text-align: center;
    }
}

/* --- SMALL MOBILE (max 400px) --- */
@media (max-width: 400px) {
    .hero h1 { font-size: 24px; }
    .category-grid { grid-template-columns: 1fr; }
    .profile-stats-grid { grid-template-columns: 1fr; }
    nav ul { gap: 8px; }
    nav ul li a { font-size: 10px; }
	
	
}



@media (max-width: 768px) {

    header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }

    /* LOGO stays left */
    .logo-area {
        display: flex;
        align-items: center;
    }

    /* HAMBURGER → RIGHT SIDE */
    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;

        position: absolute;
        right: 20px;   /* FORCE RIGHT */
        top: 50%;
        transform: translateY(-50%);
    }

    /* NAV dropdown stays hidden by default */
    nav {
        width: 100%;
    }

    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background: linear-gradient(90deg, #ff5757, #e64545);
        padding: 15px 0;
        border-radius: 12px;
    }

    nav ul.show {
        display: flex;
    }
}



/* Mobile view only */
@media (max-width: 768px) {
    .footer-logo {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .footer-logo img {
        margin: 0 auto;
        display: block;
    }
}
