/* =====================================================
   RESET & BASE
===================================================== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family: 'Inter', Arial, sans-serif;
    background:#FFFFFF;
    color:#2E2E2E;
    line-height:1.6;
}

/* =====================================================
   CONTAINER
===================================================== */
.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* =====================================================
   TOP BAR
===================================================== */
.top-bar{
    background:#fff;
    color:#000;
    border-bottom:1px solid #eee;
    font-size:14px;
    padding:8px 0;
}

.top-bar-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.top-bar a{
    color:#000;
}


.top-bar a:hover{
    color:#F5A623;
}

.top-tag{
    font-weight:600;
}

/* =====================================================
   MAIN HEADER
===================================================== */
.main-header{
    background:#fff;
    border-bottom:1px solid #eee;
}


.nav-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 0;
}

.logo img{
    height:58px;
    width:auto;
}


/* NAVIGATION */
.main-nav{
    display:flex;
    align-items:center;
    gap:25px;
}
.main-nav a{
    color:#000;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.main-nav a:hover{
    color:#F5A623;
}

/* CTA BUTTON */
.btn-quote{
    background:#000;
    color:#fff !important;
    border:2px solid #000;
    padding:8px 18px;
    border-radius:4px;
    font-weight:700;
}

.btn-quote:hover{
    background:#fff;
    color:#000 !important;
}


/* =====================================================
   HERO SECTION
===================================================== */
.hero{
    height:90vh;
    background:
        linear-gradient(rgba(11,60,93,0.75), rgba(11,60,93,0.75)),
        url("../assets/images/hero/hero-1.jpg") center/cover no-repeat;
    display:flex;
    align-items:center;
    text-align:center;
    color:#fff;
}

.hero-content{
    width:100%;
}

.hero h1{
    font-family:'Playfair Display', serif;
    font-size:56px;
    margin-bottom:15px;
    color:#fff;
}

.hero p{
    font-size:20px;
    margin-bottom:30px;
}
/* =====================
   HERO BUTTON
===================== */

.hero .btn-primary{
    background:#F5A623;
    color:#000;
    padding:14px 34px;
    border-radius:4px;
    text-decoration:none;
    font-weight:700;
    margin:0 10px;
    display:inline-block;
    animation:pulse 2s infinite;
    transition:background 0.3s ease;
}

/* HOVER EFFECT */
.hero .btn-primary:hover{
    background:#ffb84d;
}

/* PULSE ANIMATION */
@keyframes pulse{
    0%{
        box-shadow:0 0 0 0 rgba(245,166,35,0.6);
    }
    70%{
        box-shadow:0 0 0 15px rgba(245,166,35,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(245,166,35,0);
    }
}

/* =====================================================
   TRUST BAR
===================================================== */
.trust-bar{
    background:#F6F7F9;
    padding:30px 0;
}

.trust-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    text-align:center;
    font-weight:600;
    color:#0B3C5D;
    gap:20px;
}

/* =====================================================
   SECTION BASE
===================================================== */
section{
    padding:80px 0;
}

.section-light{
    background:#F8F9FA;
}

.section-dark{
    background:#0B3C5D;
    color:#fff;
}

.section-dark h2{
    color:#fff;
}

/* =====================================================
   HEADINGS
===================================================== */
h2{
    font-family:'Playfair Display', serif;
    font-size:38px;
    text-align:center;
    margin-bottom:30px;
    color:#0B3C5D;
}

/* =====================================================
   ABOUT SNAPSHOT
===================================================== */
.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
}

.about-grid img{
    width:100%;
    border-radius:6px;
}

.about-stats{
    display:flex;
    gap:30px;
    margin-top:20px;
}

.stat{
    font-size:22px;
    font-weight:700;
    color:#0B3C5D;
}

/* =====================================================
   PRODUCTS GRID
===================================================== */
.home-products{
    background:#F6F7F9;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    margin-top:40px;
}
/* ================= PRODUCT CARD PREMIUM ================= */

.product-card{
    display:block;
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    text-decoration:none;
    color:#000;
    transition:all 0.4s ease;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

.product-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.product-info{
    padding:20px;
    text-align:left;
}

.product-info h3{
    font-size:20px;
    margin-bottom:8px;
    font-weight:600;
}

.product-info p{
    font-size:14px;
    color:#555;
    margin-bottom:15px;
}

.enquire-text{
    font-weight:600;
    font-size:14px;
    letter-spacing:1px;
    color:#000;
    transition:0.3s;
}

.product-card:hover .enquire-text{
    letter-spacing:2px;
}

.product-card:hover{
    transform:translateY(-8px);
}

.product-card img{
    width:100%;
    height:200px;
    object-fit:cover;
}

.product-card h3{
    margin:15px 0;
    color:#0B3C5D;
}

.product-card a{
    display:inline-block;
    margin-bottom:20px;
    background:#F5A623;
    color:#000;
    padding:10px 22px;
    border-radius:4px;
    text-decoration:none;
    font-weight:700;
}

.product-card a:hover{
    background:#ffb84d;
}

/* =====================================================
   WHY CHOOSE US
===================================================== */
.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
    margin-top:40px;
}

.why-card{
    background:#fff;
    padding:30px;
    border-radius:8px;
    box-shadow:0 6px 18px rgba(0,0,0,0.1);
    text-align:center;
    font-weight:600;
}

/* =====================================================
   GLOBAL CTA
===================================================== */
.cta-section{
    background:#0B3C5D;
    color:#fff;
    text-align:center;
}

.cta-section h2{
    color:#fff;
}

.cta-section a{
    background:#F5A623;
    color:#000;
    padding:14px 34px;
    border-radius:4px;
    text-decoration:none;
    font-weight:700;
}

/* =====================================================
   FOOTER
===================================================== */
footer{
    background:#111;
    color:#ccc;
    padding:50px 0 20px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
}

footer h4{
    color:#fff;
    margin-bottom:15px;
}

footer a{
    color:#ccc;
    text-decoration:none;
    display:block;
    margin-bottom:8px;
}

footer a:hover{
    color:#F5A623;
}

.footer-bottom{
    text-align:center;
    margin-top:30px;
    font-size:14px;
    color:#777;
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media(max-width:768px){

    .about-grid{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:38px;
    }

    .main-nav{
        display:none;
    }
}
/* =====================
   MOBILE MENU
===================== */

.menu-toggle{
    display:none;
    font-size:28px;
    color:#fff;
    cursor:pointer;
}

/* MOBILE VIEW */
@media(max-width:768px){

    .menu-toggle{
        display:block;
    }

    .main-nav{
        position:absolute;
        top:100%;
        right:0;
        background:#0B3C5D;
        width:100%;
        flex-direction:column;
        align-items:center;
        gap:20px;
        padding:20px 0;
        display:none;
    }

    .main-nav a{
        margin:0;
        font-size:18px;
    }

    .main-nav.active{
        display:flex;
    }
}
/* =====================
   HERO ANIMATION
===================== */

.hero-content{
    animation: fadeUp 1.2s ease-in-out;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
/* =====================
   ENQUIRY FORM
===================== */

.enquiry-form{
    max-width:800px;
    margin:auto;
    background:#fff;
    padding:40px;
    border-radius:8px;
    box-shadow:0 6px 20px rgba(0,0,0,0.1);
}

.form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-bottom:20px;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea{
    width:100%;
    padding:12px;
    border:1px solid #ccc;
    border-radius:4px;
    font-size:15px;
}

.enquiry-form textarea{
    height:120px;
    resize:none;
    margin-bottom:20px;
}

.enquiry-form button{
    background:#F5A623;
    color:#000;
    border:none;
    padding:14px 30px;
    font-weight:700;
    cursor:pointer;
    border-radius:4px;
}

.enquiry-form button:hover{
    background:#ffb84d;
}

/* MOBILE */
@media(max-width:768px){
    .form-grid{
        grid-template-columns:1fr;
    }
}
.phone-group{
    display:flex;
    gap:10px;
}

.phone-group select{
    width:120px;
}

.phone-group input{
    flex:1;
}
/* ================= PRODUCTS PAGE ================= */

.products-page{
    max-width:1200px;
    margin:auto;
    padding:40px 20px;
}

.page-title{
    margin-bottom:30px;
    font-size:32px;
    text-align:center;
}

/* Category Box */

.product-category{
    margin-bottom:25px;
    border-radius:8px;
    overflow:hidden;
    box-shadow:0 3px 10px rgba(0,0,0,0.08);
}

/* Header */

.category-header{
    background:linear-gradient(135deg,#0B3C5D,#156FA3);
    color:#fff;
    padding:18px 25px;
    font-size:18px;
    font-weight:600;

    display:flex;
    justify-content:space-between;
    align-items:center;

    cursor:pointer;
}

.category-header:hover{
    background:#0B3C5D;
}

/* Arrow */

.arrow{
    transition:0.3s ease;
    font-size:16px;
}

.arrow.rotate{
    transform:rotate(180deg);
}

/* Content */

.category-content{
    max-height:0;
    overflow:hidden;
    transition:max-height 0.4s ease;
    background:#f9f9f9;
}

/* Grid */

.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
    padding:25px;
}

/* Cards */

.product-card{
    background:#fff;
    border-radius:8px;
    overflow:hidden;
    text-align:center;
    box-shadow:0 2px 6px rgba(0,0,0,0.1);
    transition:0.3s;
}

.product-card:hover{
    transform:translateY(-5px);
}

.product-card img{
    width:100%;
    height:180px;
    object-fit:cover;
}

.product-card h4{
    padding:12px;
    color:#0B3C5D;
}

.enquire-btn{
    display:inline-block;
    margin:10px 0 15px;
    padding:8px 18px;
    background:#0B3C5D;
    color:#fff;
    text-decoration:none;
    border-radius:4px;
    font-size:14px;
}

.enquire-btn:hover{
    background:#156FA3;
}

/* PRODUCTS PAGE */

.products-page{
    max-width:1200px;
    margin:auto;
    padding:40px 20px;
}

.page-title{
    margin-bottom:30px;
    font-size:32px;
}

/* Category Box */

.product-category{
    margin-bottom:25px;
    border-radius:8px;
    overflow:hidden;
    box-shadow:0 3px 10px rgba(0,0,0,0.08);
}

/* Header Button */

.category-header{
    background:linear-gradient(135deg,#0B3C5D,#156FA3);
    color:#fff;
    padding:18px 25px;
    font-size:18px;
    font-weight:600;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
}

.category-header:hover{
    background:#0B3C5D;
}

/* Arrow */

.arrow{
    transition:0.3s ease;
}

.arrow.rotate{
    transform:rotate(180deg);
}

/* Content */

.category-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #f9f9f9;
    padding: 0 20px;
}


/* Grid */

.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
    padding:25px;
}

/* Cards */

.product-card{
    background:#fff;
    border-radius:8px;
    overflow:hidden;
    text-align:center;
    box-shadow:0 2px 6px rgba(0,0,0,0.1);
    transition:0.3s;
}

.product-card:hover{
    transform:translateY(-5px);
}

.product-card img{
    width:100%;
    height:180px;
    object-fit:cover;
}

.product-card h4{
    padding:12px;
    color:#0B3C5D;
}
/* ================= BLACK & WHITE HEADER ================= */

/* Top Bar */

.bw-top{
    background:#000;
    color:#fff;
    font-size:13px;
}

/* Header */

.bw-header{
    background:#fff;
    border-bottom:1px solid #e5e5e5;
    position:sticky;
    top:0;
    z-index:1000;
}

/* Nav */

.bw-nav a{
    color:#000;
    font-weight:600;
}

.bw-nav a:hover{
    color:#555;
}

/* Button */

.bw-btn{
    background:#000 !important;
    color:#fff !important;
    border-radius:2px;
}

.bw-btn:hover{
    background:#222 !important;
}
/* ================= BLACK & WHITE HERO ================= */

.hero-bw{
    height:85vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    background:#f7f7f7;
}

.hero-bw-content{
    max-width:900px;
    padding:0 20px;
}

.hero-bw h1{
    font-size:54px;
    font-weight:700;
    color:#000;
    margin-bottom:20px;
    line-height:1.25;
}

.hero-bw p{
    font-size:18px;
    color:#555;
    margin-bottom:35px;
    max-width:700px;
    margin-left:auto;
    margin-right:auto;
}

/* Buttons */

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}

.bw-btn-primary{
    background:#000;
    color:#fff;
    padding:14px 34px;
    text-decoration:none;
    font-weight:600;
    border-radius:4px;
    transition:0.3s ease;
}

.bw-btn-primary:hover{
    background:#222;
}

.bw-btn-outline{
    border:2px solid #000;
    color:#000;
    padding:12px 32px;
    text-decoration:none;
    font-weight:600;
    border-radius:4px;
    transition:0.3s ease;
}

.bw-btn-outline:hover{
    background:#000;
    color:#fff;
}

/* Buttons */

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.bw-btn-primary{
    background:#000;
    color:#fff;
    padding:14px 30px;
    text-decoration:none;
    font-weight:600;
    border-radius:3px;
}

.bw-btn-primary:hover{
    background:#222;
}

.bw-btn-outline{
    border:2px solid #000;
    color:#000;
    padding:12px 28px;
    text-decoration:none;
    font-weight:600;
    border-radius:3px;
}

.bw-btn-outline:hover{
    background:#000;
    color:#fff;
}
/* ================= BUSINESS VERTICALS ================= */

.verticals-section{
    padding:80px 0;
    background:#fff;
    text-align:center;
}

.verticals-section h2{
    font-size:38px;
    margin-bottom:50px;
}

/* Grid */

.verticals-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:40px;
}

/* Card */

.vertical-card{
    position:relative;
    height:350px;
    border-radius:10px;
    overflow:hidden;
    text-decoration:none;
    box-shadow:0 6px 20px rgba(0,0,0,0.12);
    transition:0.3s ease;
}

.vertical-card:hover{
    transform:translateY(-8px);
}

/* Image */

.vertical-card img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* Overlay */

.vertical-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.6);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    color:#fff;
    text-align:center;
    padding:20px;
    transition:0.3s;
}

.vertical-card:hover .vertical-overlay{
    background:rgba(0,0,0,0.75);
}

.vertical-overlay h3{
    font-size:28px;
    margin-bottom:10px;
}

.vertical-overlay p{
    font-size:16px;
    max-width:260px;
}
/* ================= PRODUCTS PREMIUM ================= */

.products-page{
    max-width:1200px;
    margin:auto;
    padding:60px 20px;
}

.page-title{
    text-align:center;
    font-size:38px;
    margin-bottom:50px;
    font-weight:700;
}

/* Category Box */

.product-category{
    margin-bottom:25px;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

/* Header */

.category-header{
    background:#000;
    color:#fff;
    padding:20px 25px;
    font-size:20px;
    font-weight:600;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
}

/* Arrow */

.arrow{
    transition:0.3s ease;
}

.arrow.rotate{
    transform:rotate(180deg);
}

/* Content */

.category-content{
    max-height:0;
    overflow:hidden;
    transition:max-height 0.4s ease;
    background:#fafafa;
}

/* Grid */

.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:25px;
    padding:30px;
}

/* Cards */

.product-card{
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    text-align:center;
    box-shadow:0 3px 10px rgba(0,0,0,0.1);
    transition:0.3s;
}

.product-card:hover{
    transform:translateY(-6px);
}

.product-card img{
    width:100%;
    height:200px;
    object-fit:cover;
}

.product-card h4{
    padding:12px 10px 5px;
    color:#000;
    font-size:18px;
}

.product-card p{
    font-size:14px;
    padding:0 15px;
    color:#666;
}

/* Button */

.enquire-btn{
    display:inline-block;
    margin:12px 0 18px;
    padding:8px 18px;
    background:#000;
    color:#fff;
    text-decoration:none;
    border-radius:4px;
    font-size:14px;
}

.enquire-btn:hover{
    background:#333;
}
/* ================= TRUST SECTION ================= */

.trust-section{
    background:#f7f7f7;
    padding:90px 20px;
    text-align:center;
}

.trust-section h2{
    font-size:38px;
    font-weight:700;
    margin-bottom:15px;
    color:#000;
}

.trust-subtitle{
    max-width:700px;
    margin:0 auto 55px;
    color:#555;
    font-size:17px;
    line-height:1.6;
}

/* Grid */

.trust-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

/* Card */

.trust-card{
    background:#fff;
    padding:40px 25px;
    border-radius:12px;
    box-shadow:0 6px 20px rgba(0,0,0,0.08);
    transition:0.35s ease;
}

.trust-card:hover{
    transform:translateY(-8px);
    box-shadow:0 12px 30px rgba(0,0,0,0.15);
}

/* Icon */

.trust-icon{
    font-size:40px;
    margin-bottom:15px;
}

.trust-card h4{
    font-size:20px;
    margin-bottom:10px;
    color:#000;
}

.trust-card p{
    font-size:14px;
    color:#666;
    line-height:1.6;
}
/* ================= GLOBAL STATS ================= */

.stats-section{
    background:#000;
    color:#fff;
    padding:90px 20px;
    text-align:center;
}

.stats-section h2{
    font-size:38px;
    margin-bottom:15px;
}

.stats-subtitle{
    max-width:650px;
    margin:0 auto 50px;
    color:#ccc;
    font-size:17px;
}

/* Grid */

.stats-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
}

/* Box */

.stat-box{
    border:1px solid rgba(255,255,255,0.2);
    padding:35px 20px;
    border-radius:10px;
    transition:0.3s ease;
}

.stat-box:hover{
    background:rgba(255,255,255,0.05);
}

.stat-box h3{
    font-size:42px;
    font-weight:700;
    margin-bottom:8px;
}

.stat-box p{
    font-size:15px;
    color:#ddd;
}
/* ================= CERTIFICATIONS ================= */

.cert-section{
    background:#fff;
    padding:90px 20px;
    text-align:center;
}

.cert-section h2{
    font-size:38px;
    margin-bottom:15px;
    color:#000;
}

.cert-subtitle{
    max-width:650px;
    margin:0 auto 50px;
    color:#555;
    font-size:17px;
    line-height:1.6;
}

/* Grid */

.cert-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:30px;
}

/* Card */

.cert-card{
    border:1px solid #ddd;
    padding:40px 25px;
    border-radius:10px;
    transition:0.3s ease;
    background:#fafafa;
}

.cert-card:hover{
    border-color:#000;
    background:#fff;
}

.cert-card h4{
    font-size:20px;
    margin-bottom:10px;
    color:#000;
}

.cert-card p{
    font-size:14px;
    color:#666;
    line-height:1.6;
}
/* ================= FINAL CTA ================= */

.final-cta{
    background:#000;
    color:#fff;
    padding:90px 20px;
    text-align:center;
}

.final-cta h2{
    font-size:40px;
    margin-bottom:15px;
}

.final-cta p{
    max-width:650px;
    margin:0 auto 35px;
    font-size:17px;
    color:#ccc;
}

/* Buttons */

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.cta-primary{
    background:#fff;
    color:#000;
    padding:14px 34px;
    text-decoration:none;
    font-weight:600;
    border-radius:4px;
}

.cta-primary:hover{
    background:#eee;
}

.cta-outline{
    border:2px solid #fff;
    color:#fff;
    padding:12px 32px;
    text-decoration:none;
    font-weight:600;
    border-radius:4px;
}

.cta-outline:hover{
    background:#fff;
    color:#000;
}
/* =========================
   PREMIUM PRODUCT CARDS
========================= */

.product-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 6px 20px rgba(0,0,0,0.08);
    transition:all 0.3s ease;
    position:relative;
}

.product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 12px 30px rgba(0,0,0,0.15);
}

/* Image */

.product-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

/* Content */

.product-card h3,
.product-card h4{
    padding:15px 15px 5px;
    font-size:18px;
    color:#000;
}

.product-card p{
    padding:0 15px 10px;
    font-size:14px;
    color:#555;
}

/* Button */

.product-card a,
.enquire-btn{
    display:inline-block;
    margin:10px 15px 20px;
    padding:8px 18px;
    background:#000;
    color:#fff;
    text-decoration:none;
    border-radius:4px;
    font-size:14px;
    font-weight:600;
    transition:0.3s;
}

.product-card a:hover,
.enquire-btn:hover{
    background:#333;
}
/* =========================
   PREMIUM HERO BUTTONS
========================= */

.hero-buttons{
    margin-top:30px;
    display:flex;
    gap:20px;
    justify-content:center;
    flex-wrap:wrap;
}

.bw-btn-primary{
    background:#000;
    color:#fff;
    padding:14px 32px;
    border-radius:6px;
    font-weight:600;
    text-decoration:none;
    transition:0.3s;
    border:2px solid #000;
}

.bw-btn-primary:hover{
    background:#222;
}

.bw-btn-outline{
    background:transparent;
    color:#000;
    padding:14px 32px;
    border-radius:6px;
    font-weight:600;
    text-decoration:none;
    border:2px solid #000;
    transition:0.3s;
}

.bw-btn-outline:hover{
    background:#000;
    color:#fff;
}
/* =========================
   HERO TEXT ANIMATION
========================= */

.hero-bw-content{
    animation:heroFade 1.2s ease forwards;
}

@keyframes heroFade{
    from{
        opacity:0;
        transform:translateY(30px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
/* =========================
   PREMIUM PRODUCT CARDS
========================= */

.product-grid{
    margin-top:40px;
}

.product-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
    transition:0.4s ease;
    position:relative;
}

.product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

/* Image */

.product-card img{
    height:220px;
    object-fit:cover;
}

/* Info */

.product-card h3{
    font-size:20px;
    margin:15px 0 5px;
}

.product-card p{
    font-size:14px;
    color:#666;
    padding:0 15px;
}

/* Button */

.product-card a{
    display:inline-block;
    margin:15px 0 20px;
    background:#000;
    color:#fff;
    padding:10px 22px;
    border-radius:6px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.product-card a:hover{
    background:#222;
}
/* =========================
   FEATURED PRODUCTS
========================= */

.featured-section{
    background:#f9f9f9;
    padding:90px 20px;
    text-align:center;
}

.featured-section h2{
    font-size:36px;
    margin-bottom:10px;
}

.featured-subtitle{
    max-width:650px;
    margin:0 auto 40px;
    font-size:16px;
    color:#666;
}
/* ===============================
   PREMIUM PRODUCT CARDS
================================ */

.product-card {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Image zoom */

.product-card img {
    transition: transform 0.5s ease;
}

.product-card:hover img {
    transform: scale(1.08);
}

/* Enquire Button */

.product-card .enquire-btn,
.product-card a {
    background: #000;
    color: #fff;
    border-radius: 30px;
    padding: 10px 22px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.product-card a:hover,
.product-card .enquire-btn:hover {
    background: #222;
}
/* ===============================
   PREMIUM HERO
================================ */

.hero-bw {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
}

.hero-bw h1 {
    font-size: 56px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.hero-bw p {
    max-width: 650px;
    margin: auto;
    font-size: 18px;
    color: #555;
}
/* ===============================
   PREMIUM NAV BUTTON
================================ */

.nav-btn,
.btn-quote {
    background: #000;
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s ease;
}

.nav-btn:hover,
.btn-quote:hover {
    background: #222;
    transform: translateY(-2px);
}
/* ===============================
   PREMIUM HEADINGS
================================ */

section h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
}

section h2::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #000;
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
}
/* ===============================
   HERO IMAGE SLIDER
================================ */

.hero-slider {
    position: relative;
    overflow: hidden;
    min-height: 90vh;
}

/* Slides */

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
}

/* Dark Overlay */

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 2;
}

/* Content Above */

.hero-bw-content {
    position: relative;
    z-index: 3;
    color: #fff;
}

.hero-bw-content h1 {
    color: #fff;
}

.hero-bw-content p {
    color: #ddd;
}
/* ===============================
   GET A QUOTE BUTTON FIX
================================ */

.bw-btn-outline,
.get-quote-btn,
.hero-buttons a:last-child {

    background: #ffffff;
    color: #000000 !important;

    border: 2px solid #000000;

    padding: 12px 28px;
    border-radius: 6px;

    font-weight: 600;
    text-decoration: none;

    transition: all 0.3s ease;
}


/* Hover Effect */

.bw-btn-outline:hover,
.get-quote-btn:hover,
.hero-buttons a:last-child:hover {

    background: #000000;
    color: #ffffff !important;

}
/* ===============================
   HERO SLIDER
================================ */

.hero-slider{
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.hero-slide{
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active{
    opacity: 1;
}

.hero-overlay{
    position: relative;
    z-index: 5;
    height: 100%;
    background: rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
}

.hero-content{
    color: #fff;
    max-width: 700px;
}

.hero-content h1{
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content p{
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero-buttons{
    display: flex;
    gap: 15px;
}

.btn-dark{
    background: #000;
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

.btn-light{
    background: #fff;
    color: #000;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #fff;
}

.btn-dark:hover,
.btn-light:hover{
    opacity: 0.85;
}
/* PRODUCT DETAIL PAGE */

.product-detail {
    padding: 80px 0;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.product-detail-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.product-category {
    display: inline-block;
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}

.product-detail-info h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.product-description {
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.product-actions a {
    padding: 12px 28px;
    background: #000;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
}

.product-actions a:hover {
    background: #333;
}

/* Mobile */
@media(max-width:768px){
    .product-detail-grid{
        grid-template-columns:1fr;
    }
}
/* PRODUCTS PAGE */

.products-page{
    padding: 60px 0;
}

.page-title{
    text-align:center;
    margin-bottom:40px;
}

.product-category{
    margin-bottom:60px;
}

.category-title{
    font-size:28px;
    margin-bottom:20px;
    border-bottom:2px solid #000;
    display:inline-block;
    padding-bottom:5px;
}

.product-grid{
    display:grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.product-card{
    background:#fff;
    border-radius:10px;
    padding:20px;
    text-align:center;
    box-shadow:0 3px 10px rgba(0,0,0,0.1);
}

.product-card img{
    width:100%;
    height:200px;
    object-fit:cover;
    border-radius:8px;
}

.product-card h3{
    margin:15px 0 8px;
}

.product-card p{
    font-size:14px;
    color:#666;
}

.btn-enquire{
    display:inline-block;
    margin-top:12px;
    background:#000;
    color:#fff;
    padding:8px 18px;
    border-radius:6px;
    text-decoration:none;
}

.btn-enquire:hover{
    background:#333;
}
/* PRODUCT ACCORDION */

.category-buttons{
    text-align:center;
    margin-bottom:30px;
}

.category-btn{
    padding:10px 20px;
    margin:5px;
    border:2px solid #000;
    background:#fff;
    cursor:pointer;
    border-radius:6px;
    font-weight:600;
}

.category-btn:hover{
    background:#000;
    color:#fff;
}


/* Hidden by default */
.category-box{
    display:none;
    margin-bottom:50px;
}

/* Show when active */
.category-box.active{
    display:block;
}

.category-box h2{
    margin-bottom:20px;
    border-bottom:2px solid #000;
    display:inline-block;
}


/* Products */

.product-grid{
    display:grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.product-card{
    background:#fff;
    padding:20px;
    border-radius:10px;
    text-align:center;
    box-shadow:0 3px 10px rgba(0,0,0,0.1);
}

.product-card img{
    width:100%;
    height:200px;
    object-fit:cover;
    border-radius:6px;
}

.btn-enquire{
    display:inline-block;
    margin-top:10px;
    background:#000;
    color:#fff;
    padding:8px 16px;
    text-decoration:none;
    border-radius:5px;
}

.btn-enquire:hover{
    background:#333;
}
/* PRODUCT SEARCH */

.product-search-box{
    text-align:center;
    margin-bottom:25px;
}

.product-search-box input{
    width:300px;
    max-width:90%;
    padding:10px 15px;
    border:2px solid #000;
    border-radius:6px;
    font-size:15px;
}
/* SEARCH BUTTON */

.product-search-box{
    display:flex;
    justify-content:center;
    gap:10px;
}

.product-search-box button{
    padding:10px 18px;
    border:none;
    background:#000;
    color:#fff;
    border-radius:6px;
    cursor:pointer;
}

.product-search-box button:hover{
    background:#333;
}
body {
    font-family: 'Segoe UI', sans-serif;
    background: #f4f7fb;
    margin: 0;
}

/* Wrapper */
.contact-wrapper {
    display: flex;
    justify-content: center;
    padding: 50px 20px;
}

/* Card */
.contact-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    width: 100%;
    max-width: 900px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Title */
.contact-card h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #1a2b49;
}

/* Grid */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Form group */
.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full {
    margin-top: 20px;
}

/* Labels */
label {
    font-size: 14px;
    margin-bottom: 6px;
    color: #444;
}

/* Inputs */
input, select, textarea {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
    transition: 0.3s;
}

/* Focus */
input:focus, select:focus, textarea:focus {
    border-color: #007bff;
    outline: none;
}

/* Button */
.submit-btn {
    margin-top: 25px;
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,123,255,0.3);
}

/* Responsive */
@media(max-width: 768px){
    .form-grid {
        grid-template-columns: 1fr;
    }
}
/* Background */
.contact-section {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

/* Container */
.contact-container {
    width: 100%;
    max-width: 1000px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* Header */
.contact-header {
    text-align: center;
    margin-bottom: 30px;
}

.contact-header h1 {
    color: #fff;
    font-size: 32px;
}

.contact-header p {
    color: #ccc;
    font-size: 14px;
}

/* Grid */
.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Input group */
.input-group {
    position: relative;
}

/* Inputs */
.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 14px;
    border: none;
    outline: none;
    border-radius: 8px;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-size: 14px;
}

/* Label */
.input-group label {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    color: #ccc;
    font-size: 13px;
    pointer-events: none;
    transition: 0.3s;
}

/* Floating label effect */
.input-group input:focus + label,
.input-group input:valid + label,
.input-group textarea:focus + label,
.input-group textarea:valid + label,
.input-group select:valid + label {
    top: -8px;
    left: 10px;
    font-size: 11px;
    background: #2c5364;
    padding: 2px 6px;
    border-radius: 4px;
}

/* Full width */
.full {
    margin-top: 20px;
}

/* Textarea */
textarea {
    min-height: 120px;
}

/* Button */
.btn-submit {
    margin-top: 25px;
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,114,255,0.5);
}

/* Responsive */
@media(max-width: 768px){
    .grid {
        grid-template-columns: 1fr;
    }
}

/* SECTION CENTERING */
.enquiry-section {
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f5f7fa;
    padding: 40px 20px;
}

/* FORM BOX */
.enquiry-box {
    width: 100%;
    max-width: 520px;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* TITLE */
.enquiry-box h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #0c2d48;
}

/* ROW GRID */
.row {
    display: flex;
    gap: 10px;
}

/* INPUT STYLING */
.enquiry-box input,
.enquiry-box select,
.enquiry-box textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    background: #fafafa;
}

/* TEXTAREA */
.enquiry-box textarea {
    height: 90px;
    resize: none;
}

/* BUTTON */
.enquiry-box button {
    width: 100%;
    padding: 12px;
    background: #0c2d48;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.enquiry-box button:hover {
    background: #145da0;
}

/* MOBILE FIX */
@media (max-width: 600px) {
    .row {
        flex-direction: column;
    }
}
/* ABOUT PAGE */

.about-page {
    padding: 60px 0;
}

.about-hero {
    text-align: center;
    margin-bottom: 50px;
}

.about-hero h1 {
    font-size: 38px;
    margin-bottom: 15px;
}

.about-hero p {
    max-width: 800px;
    margin: auto;
    color: #555;
    line-height: 1.7;
}

/* GRID */
.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.about-highlight {
    background: #f8f8f8;
    padding: 25px;
    border-radius: 8px;
}

/* SECTION */
.about-section {
    margin-bottom: 50px;
    text-align: center;
}

.section-subtitle {
    color: #777;
    margin-bottom: 25px;
}

/* EXPORT GRID */
.export-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

.export-card {
    background: #fff;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
}

/* PROCESS */
.process-grid {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 15px;
}

.process-step {
    background: #111;
    color: #fff;
    padding: 15px;
    border-radius: 6px;
    font-size: 14px;
}

/* WHY GRID */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 15px;
    text-align: left;
}

/* CTA */
.about-cta {
    text-align: center;
    margin-top: 40px;
}

.about-cta h2 {
    margin-bottom: 10px;
}

.about-cta p {
    margin-bottom: 20px;
    color: #555;
}

/* RESPONSIVE */
@media(max-width: 992px){

    .about-grid {
        grid-template-columns: 1fr;
    }

    .export-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

}

@media(max-width: 576px){

    .export-grid {
        grid-template-columns: 1fr;
    }

}
.cta-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 32px;
    background: #4b2c82; /* your purple tone */
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #371f63;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}
/* FOOTER ENHANCEMENT */

.footer {
    background: #0f172a;
    color: #ddd;
    padding: 50px 0 20px;
}

.footer h4 {
    color: #fff;
    margin-bottom: 15px;
}

.footer p {
    color: #bbb;
    line-height: 1.6;
}

.footer a {
    display: block;
    color: #bbb;
    text-decoration: none;
    margin-bottom: 8px;
    transition: 0.3s;
}

.footer a:hover {
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

/* WhatsApp Button in Footer */
.footer-whatsapp {
    display: inline-block;
    margin-top: 10px;
    background: #25D366;
    color: #fff !important;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 14px;
}

.footer-whatsapp:hover {
    background: #1ebe5d;
}

/* Bottom */
.footer-bottom {
    text-align: center;
    border-top: 1px solid #222;
    margin-top: 30px;
    padding-top: 15px;
    font-size: 14px;
    color: #aaa;
}

/* RESPONSIVE */
@media(max-width: 992px){
    .footer-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width: 576px){
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
.btn-quote {
    background: #4b2c82;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    margin-left: 10px;
}

.btn-quote:hover {
    background: #371f63;
}
/* HEADER CTA BUTTON */

.btn-quote {
    background: #4b2c82;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    margin-left: 15px;
    text-decoration: none;
    display: inline-block;
}

.btn-quote:hover {
    background: #371f63;
}