:root {
    --primary: #2563eb;
    --dark: #0f172a;
    --light-bg: #f6f7f9;
    --card-bg: #ffffff;
    --shadow: 0 0 10px rgba(0,0,0,0.05);
    --radius: 6px;
}


/* =====================
   GLOBAL STYLES
===================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: #f6f7f9;
    color: #222;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* =====================
   HEADER
===================== */

.main-header {
    background: #0b132b;
    padding: 15px 0;
}

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

/* Logo */
.logo img {
     height: 45px;
    width: auto;
    object-fit: contain;
    display: block;
}


/* Navigation */
.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links li a {
    color: white;
    font-weight: 500;
    position: relative;
}

/* Hover underline */
.nav-links li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-links li a:hover::after {
    width: 100%;
}

/* Cart button */
.cart-btn {
    background: var(--primary);
    padding: 6px 14px;
    border-radius: 6px;
}


/* =====================
   HERO SECTION
===================== */

.hero {
    background: #1e293b;
    color: #fff;
    padding: 50px 0;
    text-align: center;
    margin-top: 0;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
}

.btn {
    background: var(--primary);
    color: white;
    padding: 10px 22px;
    border-radius: var(--radius);
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
    display: inline-block;
}

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

.btn:active {
    transform: scale(0.98);
}



/* =====================
   CATEGORIES (CLEAN RESET)
===================== */

.categories {
  padding: 60px 8%;
}

.categories h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 28px;
}

/* GRID */
.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 5 in one row */
  gap: 20px;
}

/* CARD */
.category-card {
  background: #ffffff;
  padding: 25px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
}

/* IMAGE */
.category-card img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 15px;
}

/* TEXT */
.category-card h3 {
  font-size: 14px;
  font-weight: 600;
}

/* HOVER */
.category-card:hover {
  transform: translateY(-5px);
}
@media (max-width: 768px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* =====================
   PRODUCTS
===================== */

.products {
    padding: 50px 0;
}

.products h2 {
    text-align: center;
    margin-bottom: 30px;
}

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

.product-card {
    background: var(--card-bg);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.product-card h4 {
    margin-bottom: 10px;
}

.product-card a {
    display: inline-block;
    margin-top: 10px;
    color: #2563eb;
    font-weight: bold;
}



/* =====================
   FOOTER
===================== */

footer {
    background: var(--dark);
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}

/* =====================
   PRODUCTS PAGE
===================== */

.page-title {
    background: #f1f5f9;
    padding: 40px 0;
    text-align: center;
}

.page-title h1 {
    margin-bottom: 10px;
}

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-bottom: 10px;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.product-card .category {
    font-size: 14px;
    color: #555;
}

.product-card .price {
    font-weight: bold;
    margin: 8px 0;
}

/* =====================
   PRODUCT DETAIL PAGE
===================== */

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

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.product-image img {
    width: 100%;
    border-radius: var(--radius);
}

.product-info h1 {
    margin-bottom: 10px;
}

.product-info .price {
    font-size: 22px;
    color: #2563eb;
    margin-bottom: 15px;
}

.product-info .description {
    margin-bottom: 15px;
    color: #444;
}

.specs {
    margin-bottom: 20px;
}

.specs li {
    margin-bottom: 6px;
}

.product-actions {
    display: flex;
    gap: 15px;
}

/* .product-actions .btn {
    padding: 10px 20px;
    cursor: pointer;
} */

.product-actions .secondary {
    background: var(--dark);
}



/* =====================
   HEADER & NAV FIX
===================== */

.main-header {
    background: #0b132b;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* =====================
   HERO SECTION (HOME)
===================== */

.hero {
    background: linear-gradient(
        rgba(11, 19, 43, 0.85),
        rgba(11, 19, 43, 0.85)
    ),
    url("../images/broadcasting.png") center/cover no-repeat;
    padding: 120px 0;
    text-align: center;
    color: #fff;
}

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

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn {
    background: #2563eb;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 16px;
}
.login-btn {
  padding: 8px 16px;
  border: 1px solid #fff;
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.login-btn:hover {
  background-color: #2563eb;
  border-color: #2563eb;
}


/* ================= HERO SECTION ================= */

.hero {
    position: relative;
    height: 90vh;
    background: linear-gradient(
        rgba(5, 15, 35, 0.75),
        rgba(5, 15, 35, 0.75)
    ),
    url('../images/broadcasting.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
   min-height: 90vh
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn {
    padding: 14px 30px;
    background: #2f6df6;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #1e4ed8;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* ================= BRANDS PAGE ================= */

.brands-page {
    padding: 80px 0;
    background-color: #f8f9fb;
    text-align: center;
}

.brands-page h1 {
    font-size: 36px;
    margin-bottom: 50px;
    font-weight: 600;
    color: #0a1a3c;
}

/* Grid Layout */
.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    align-items: center;
}

/* Brand Logos */
.brand-grid img {
    width: 100%;
    max-width: 160px;
    margin: 0 auto;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Hover Effect */
.brand-grid img:hover {
    filter: grayscale(0%);
    transform: scale(1.08);
}
/* ================= ADVANCED BRANDS PAGE ================= */

.brands-page {
    padding: 100px 0;
    background: #f8f9fb;
    text-align: center;
}

.brands-page h1 {
    margin-bottom: 60px;
    font-size: 36px;
    font-weight: 700;
    color: #0b1c3d;
}

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

.brand-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.brand-card img {
    width: 100%;
    height: 160px;
    object-fit: contain;
    margin-bottom: 20px;
}

.brand-card h3 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #0b1c3d;
    position: relative;
}

.brand-card h3::after {
    content: "";
    width: 40px;
    height: 3px;
    background: #0b1c3d;
    display: block;
    margin: 10px auto 0;
    border-radius: 5px;
}

/* =========================
   BRAND PAGE STYLING
========================= */

.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: auto;
}

.brand-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);

    transition: all 0.3s ease;
    cursor: pointer;

    /* Important for clickable card */
    text-decoration: none;
    color: inherit;
    display: block;
    text-align: center;
}

.brand-card img {
    width: 100%;
    max-width: 170px;
    height: 120px;
    object-fit: contain;
    margin: 0 auto 20px auto;
    display: block;
    background: #ffffff;
    transition: transform 0.3s ease;
}

.brand-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

/* Hover Effect */
.brand-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.09);
}
.brand-card:hover img {
    transform: scale(1.08);
}


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

@media (max-width: 576px) {
    .brand-grid {
        grid-template-columns: 1fr;
    }
}
footer {
    background: #0b1c3d;
    color: #fff;
}

/* =========================
   BRAND PRODUCTS PAGE
========================= */

.brand-products {
    padding: 60px 40px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: auto;
}

.product-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    margin-bottom: 20px;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

/* ===== TASCAM Product Styling ===== */

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

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

.product-card {
    background: #f5f5f5;
    padding: 18px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s ease;
}

.product-card img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    background: #ffffff;
    margin-bottom:12px;
    padding: 15px;
    transition:transform 0.3s ease;
}

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

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

.product-card h4 {
    margin-top: 15px;
    font-size: 17px;
}

.product-card p {
    font-weight: bold;
    margin-top: 8px;
    color: #000;
}

.cart-btn {
    margin-top: 15px;
    padding: 8px 16px;
    border: none;
    background: black;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
}

.cart-btn:hover {
    background: #ff3c3c;
}
/* PRODUCT DETAIL PAGE */

.product-detail-section {
    padding: 60px 0;
}

.product-detail-container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.product-detail-image img {
    width: 450px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-detail-info {
    max-width: 500px;
}

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

.product-description {
    margin: 20px 0;
    line-height: 1.6;
    color: #555;
}

.product-features {
    margin: 20px 0;
    padding-left: 20px;
}

.product-features li {
    margin-bottom: 8px;
}

.add-to-cart-btn {
    padding: 12px 25px;
    background: black;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
}

.add-to-cart-btn:hover {
    background: #ff3c3c;
}


/* FOOTER */

.main-footer {
    background: #111;
    color: white;
    padding: 20px 0;
    text-align: center;
    margin-top: 60px;
}

.product-link {
    text-decoration: none;
    color: inherit;
}

/* ================= NAVBAR ================= */
.main-header {
    background: #0b1c3d;
    padding: 15px 0;

    position: sticky;
    top: 0;
    z-index: 1000;

    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.header-flex {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links li a {
    text-decoration: none;
    color: white;
    font-weight: 500;
}

.nav-links li a:hover {
    color: #ff7a00;
}

.cart-btn-nav {
    background: #ff7a00;
    padding: 6px 12px;
    border-radius: 5px;
    color: white !important;
}

/* ================= PAGE TITLE ================= */
.page-title {
    text-align: center;
    padding: 50px 0;
}

/* ================= FOOTER ================= */
.main-footer {
    background: #0b1c3d;
    color: white;
    padding: 20px 0;
    margin-top: 60px;
}

.footer-container {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links a {
    color: white;
    margin-left: 15px;
    text-decoration: none;
}

.footer-links a:hover {
    color: #ff7a00;
}

/* ================= PRODUCT LINK FIX ================= */
.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* ================= PRODUCT DETAIL PAGE ================= */

.product-detail-image {
    flex: 1;
}

.product-detail-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.product-detail-image img:hover {
    transform: scale(1.05);

}

.product-detail-info {
    flex: 1;
}

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



.price {
    font-size: 16px;
    font-weight: bold;
    color: #0d6efd;
    margin-bottom: 20px;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.product-features li::before {
    content: "✔";
    color: #0d6efd;
    font-weight: bold;
}

.product-features li:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    background: #f8fbff;
}

.product-features li {
    margin-bottom: 8px;
}

.product-summary h1 {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 25px;
}

.cart-btn {
    width: 180px;
    padding: 12px;
    border-radius: 8px;
    border: none;
    background: #0F172A;
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-btn:hover {
    background: #1E293B;
}


.details-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 20px;
    background: #0F172A;
    color: #ffffff;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.details-btn:hover {
    background: #1E293B;
}

.view-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #0b1a33;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

/* Hover Effect */
.view-btn:hover {
    background-color: #ff7a00;
}

/* Active (when clicked) */
.view-btn:active {
    background-color: #ff7a00;
}


.product-info h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.price {
    font-size: 22px;
    color: #1e6bff;
    font-weight: 600;
    margin-bottom: 20px;
}

.description {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 25px;
}

/* GET QUOTE BUTTON */
.quote-btn {
    background: linear-gradient(135deg, #ff6a00, #ff8c1a);
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 17px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(255,106,0,0.4);
}

.quote-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(255,106,0,0.6);
}

/* SPEC LINK */
.spec-link {
    display: inline-block;
    margin-top: 15px;
    color: #555;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
}

.spec-link:hover {
    color: #1e6bff;
}


/* Button */
.quote-btn {
    background: #ff6600;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 20px;
}

.quote-btn:hover {
    background: #e65c00;
}

/* Specifications Section */

.specifications-section {
    background: #f9f9f9;
    padding: 70px 0;
}

.specifications-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.spec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.spec-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
}

/* ===== PRODUCT THUMBNAILS ===== */

.thumbnail-images {
    margin-top: 40px;
    justify-content: center;
}

.thumbnail-images img {
    width: 90px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.thumbnail-images img:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    width: 80%;
    max-width: 800px;
    border-radius: 12px;
    padding: 20px;
}


.view-spec {
    margin-top: 15px;
    cursor: pointer;
    color: #555;
    font-weight: 500;
    transition: 0.3s;
}

.view-spec.active {
    color: blue;
}

/* ===== PRODUCT FEATURES - PREMIUM ===== */

.product-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.product-features li {
    position: relative;
    padding: 18px 22px 18px 55px;
    background: linear-gradient(145deg, #ffffff, #f1f1f1);
    border-radius: 16px;
    font-weight: 500;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.product-features li:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.product-detail-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;

    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    padding: 70px;
    border-radius: 24px;
    box-shadow: 
        0 30px 60px rgba(0,0,0,0.08),
        0 5px 15px rgba(0,0,0,0.04);
}



/* clean check icon */
.product-features li::before {
    content: "✓";
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: #ff6a00;
    color: white;
    font-size: 13px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 520px;   /* fixed image area */
}

.main-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 30px 40px rgba(0,0,0,0.2));
}

.main-image img:hover {
    transform: scale(1.05);
}           

.view-spec {
    display: inline-block;
    margin-top: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-spec:hover {
    color: #007bff;
    transform: translateY(-3px);
}

.view-spec:active {
    color: #0056b3;
}

/* Stack Request Quote & View Specification */
.product-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}


/* ===== MOBILE RESPONSIVE ===== */

@media (max-width: 768px) {

    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-features {
        grid-template-columns: 1fr;
    }

    .main-image {
        height: auto;
    }

    .product-summary h1 {
        font-size: 24px;
    }

    .quote-btn {
        width: 100%;
        text-align: center;
    }

}


/* ================= MODERN DYNAMIC FOOTER ================= */

.footer {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #fff;
    padding: 80px 20px 0;
    position: relative;
    overflow: hidden;
}

/* Subtle animated background glow */
.footer::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59,130,246,0.15), transparent 70%);
    top: -200px;
    right: -200px;
    animation: floatGlow 8s infinite alternate ease-in-out;
}

@keyframes floatGlow {
    from { transform: translateY(0px); }
    to { transform: translateY(40px); }
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    position: relative;
    z-index: 2;
}

/* Columns */
.footer-col h2,
.footer-col h3 {
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col p {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 12px;
}

/* Links */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #cbd5e1;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

/* Animated underline */
.footer-col ul li a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -4px;
    background: #3b82f6;
    transition: 0.3s ease;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-col ul li a:hover::after {
    width: 100%;
}

/* Map */
.footer-col.map iframe {
    width: 100%;
    height: 220px;
    border-radius: 15px;
    border: none;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: transform 0.4s ease;
}

.footer-col.map iframe:hover {
    transform: scale(1.03);
}

/* Bottom Bar */
.footer-bottom {
    margin-top: 60px;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    background: rgba(0,0,0,0.3);
    color: #94a3b8;
    position: relative;
    z-index: 2;
}

/* ================= MOBILE RESPONSIVE ================= */

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

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col.map iframe {
        height: 250px;
    }
}

/* ================= SOCIAL ICONS ================= */

.social-icons {
    margin-top: 20px;
    display: flex;
    gap: 20px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: white;
    font-size: 18px;
    transition: all 0.4s ease;
    text-decoration: none;
}

/* Facebook Hover */
.social-icons a.facebook:hover {
    background: #1877f2;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(24,119,242,0.4);
}

/* Instagram Hover */
.social-icons a.instagram:hover {
    background: linear-gradient(
        45deg,
        #feda75,
        #fa7e1e,
        #d62976,
        #962fbf,
        #4f5bd5
    );
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(214,41,118,0.4);
}

/* YouTube Hover */
.social-icons a.youtube:hover {
    background: #ff0000;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255,0,0,0.4);
}

/* ===== CLEAN SUBTLE PREMIUM ABOUT SECTION ===== */

.about-clean {
    background: #f5f8fc;   /* Soft premium light background */
    padding: 120px 0;
}

.about-clean-wrapper {
    width: 85%;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

/* Image */
.about-clean-image {
    flex: 1;
}

.about-clean-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* Text */
.about-clean-text {
    flex: 1;
}

.section-line {
    width: 60px;
    height: 4px;
    background: #2a5298;
    margin-bottom: 20px;
}

.about-clean-text h2 {
    font-size: 38px;
    color: #0f1e35;
    margin-bottom: 20px;
}

.about-intro {
    font-size: 18px;
    color: #2a5298;
    margin-bottom: 20px;
    font-weight: 500;
}

.about-clean-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

.about-clean-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.about-clean-text ul li {
    margin-bottom: 12px;
    color: #333;
    position: relative;
    padding-left: 18px;
}

.about-clean-text ul li::before {
    content: "•";
    color: #2a5298;
    position: absolute;
    left: 0;
}

/* Button */
.about-clean-btn {
    display: inline-block;
    padding: 10px 28px;
    border: 2px solid #2a5298;
    color: #2a5298;
    text-decoration: none;
    border-radius: 30px;
    transition: 0.3s ease;
    font-weight: 500;
}

.about-clean-btn:hover {
    background: #2a5298;
    color: white;
}

/* Responsive */
@media (max-width: 992px) {
    .about-clean-wrapper {
        flex-direction: column;
    }
}

/* ===== MOBILE DESIGN IMPROVEMENT ===== */

@media (max-width: 768px){

/* container spacing */
.container{
padding:15px;
}

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

/* category cards */
.category-card{
background:#fff;
border-radius:10px;
padding:10px;
text-align:center;
box-shadow:0 3px 10px rgba(0,0,0,0.08);
transition:0.3s;
}

/* category images */
.category-card img{
width:100%;
height:120px;
object-fit:contain;
margin-bottom:8px;
}

/* category title */
.category-card h3{
font-size:14px;
font-weight:600;
color:#333;
}

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

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

/* product images */
.product-card img{
width:100%;
height:140px;
object-fit:contain;
}

/* product name */
.product-card h4{
font-size:14px;
margin-top:8px;
}

/* buttons */
.product-card button{
width:100%;
padding:8px;
border-radius:6px;
background:#ff6600;
color:#fff;
border:none;
font-size:13px;
}

/* navigation fix */
.navbar{
flex-direction:column;
align-items:center;
}

}

/* ===== PREMIUM DESIGN IMPROVEMENTS ===== */

/* PRODUCT CARDS */
.product-card{
background:#ffffff;
border-radius:12px;
padding:15px;
box-shadow:0 4px 12px rgba(0,0,0,0.08);
text-align:center;
transition:all 0.3s ease;
}

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

/* PRODUCT IMAGES */
.product-card img{
width:100%;
height:160px;
object-fit:contain;
padding:10px;
}

/* PRODUCT TITLE */
.product-card h4{
font-size:15px;
margin-top:10px;
color:#333;
}

/* BUTTON STYLE */
button,
.btn{
background:#ff6600;
color:#ffffff;
padding:10px 16px;
border:none;
border-radius:6px;
font-weight:600;
cursor:pointer;
transition:0.3s;
}

button:hover,
.btn:hover{
background:#e65c00;
}

/* CATEGORY CARDS */
.category-card{
background:#ffffff;
border-radius:12px;
padding:15px;
text-align:center;
box-shadow:0 4px 12px rgba(0,0,0,0.08);
transition:0.3s;
}

.category-card:hover{
transform:translateY(-4px);
box-shadow:0 10px 20px rgba(0,0,0,0.12);
}

/* CATEGORY IMAGES */
.category-card img{
width:100%;
height:120px;
object-fit:contain;
margin-bottom:10px;
}

/* PAGE SPACING */
section{
margin:60px 0;
}

/* ===== MOBILE RESPONSIVE DESIGN ===== */

@media (max-width:768px){

.container{
padding:15px;
}

/* CATEGORY GRID */
.category-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:15px;
}

/* PRODUCT GRID */
.product-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:15px;
}

/* PRODUCT IMAGE MOBILE */
.product-card img{
height:140px;
}

/* NAVBAR MOBILE */
.navbar{
flex-direction:column;
align-items:center;
}

}

/* =========================================================
   CSS FOR POP-UP BOX OF SUBMIT QUOTE SUCCESSFULLY
   ========================================================= */

/* POPUP BACKGROUND */
.popup-overlay{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* POPUP BOX */
.popup-box{
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    width: 340px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
    animation: popupFade 0.4s ease;
    font-family: Arial, sans-serif;
}

/* GREEN TITLE */
.popup-box h2{
    color: #28a745;
    margin-bottom: 10px;
    font-size: 22px;
}

/* TEXT */
.popup-box p{
    color: #444;
    font-size: 15px;
    line-height: 1.5;
}

/* BUTTON */
.popup-box button{
    background: #28a745;
    color: white;
    border: none;
    padding: 10px 22px;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 18px;
    font-size: 14px;
}

.popup-box button:hover{
    background: #218838;
}

/* ANIMATION */
@keyframes popupFade{
    from{
        transform: scale(0.8);
        opacity: 0;
    }
    to{
        transform: scale(1);
        opacity: 1;
    }
}





















   



