/* Blue Dolphin Building Materials Trading L.L.C — stylesheet */
:root {
  --navy: #0b2545;
  --navy-dark: #071a33;
  --blue: #0a72b8;
  --blue-light: #1a9bd7;
  --amber: #f5a623;
  --ink: #16202e;
  --grey: #5b6b7f;
  --line: #e2e8f0;
  --bg-soft: #f4f7fa;
  --white: #ffffff;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(11, 37, 69, 0.10);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Barlow", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
}
.has-dropdown { position: relative; display: inline-block; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 210px;
  background: #fff;
  list-style: none;
  margin: 0;
  padding: 8px 0;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .2s ease;
  z-index: 1000;
}

/* Show on hover (desktop) */
.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 9px 18px;
  color: #14395c;          /* match your navy brand colour */
  text-decoration: none;
  white-space: nowrap;
  font-size: 15px;
}

.dropdown-menu li a:hover {
  background: #f0f5fa;
  color: #0a2540;
}

h1, h2, h3, h4 { font-family: "Oswald", "Barlow", Arial, sans-serif; line-height: 1.2; font-weight: 600; letter-spacing: .5px; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: min(1180px, 92%); margin: 0 auto; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy-dark);
  color: #cfe0f0;
  font-size: 14px;
  padding: 8px 0;
}
.topbar .container { display: flex; flex-wrap: wrap; gap: 8px 22px; align-items: center; justify-content: space-between; }
.topbar a:hover { color: var(--amber); }
.topbar .tb-list { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.topbar .tb-list span { white-space: nowrap; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 12px rgba(11, 37, 69, .06);
}
.header .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 0; }
.logo img { height: 54px; width: auto; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a { font-weight: 600; font-size: 15px; color: var(--navy); padding: 6px 0; border-bottom: 2px solid transparent; }
.nav a:hover, .nav a.active { color: var(--blue); border-bottom-color: var(--amber); }

.btn {
  display: inline-block; padding: 12px 26px; border-radius: 6px;
  font-weight: 700; font-size: 15px; letter-spacing: .4px; border: 2px solid transparent;
  transition: .2s ease; cursor: pointer;
}
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--navy); }
.btn-amber { background: var(--amber); color: var(--navy-dark); }
.btn-amber:hover { background: #dd9110; }
.btn-ghost { border-color: #fff; color: #fff; }
.btn-ghost:hover { background: #fff; color: var(--navy); }

.menu-toggle { display: none; background: var(--navy); color: #fff; border: 0; border-radius: 6px; padding: 10px 14px; font-size: 18px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #fff;
  background: linear-gradient(rgba(7,26,51,.82), rgba(7,26,51,.72)), url("../images/hero.jpg") center/cover no-repeat;
}
.hero-inner { padding: 110px 0 120px; max-width: 760px; }
.eyebrow { display: inline-block; background: rgba(245,166,35,.15); color: var(--amber); border: 1px solid rgba(245,166,35,.5); padding: 6px 14px; border-radius: 40px; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.6rem); margin: 20px 0 16px; text-transform: uppercase; }
.hero h1 span { color: var(--amber); }
.hero p { font-size: 1.1rem; color: #d6e3f0; max-width: 620px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

/* ---------- Feature strip ---------- */
.strip { background: var(--blue); color: #fff; }
.strip .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.2); }
.strip .cell { background: var(--blue); padding: 26px 22px; }
.strip h4 { font-size: 1.05rem; text-transform: uppercase; }
.strip p { font-size: 14px; color: #dcefff; margin-top: 4px; }

/* ---------- Sections ---------- */
section { padding: 80px 0; }
.section-soft { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-head .kicker { color: var(--blue); font-weight: 700; letter-spacing: 3px; text-transform: uppercase; font-size: 13px; }
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin: 10px 0 12px; text-transform: uppercase; color: var(--navy); }
.section-head p { color: var(--grey); }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.about-grid img { border-radius: var(--radius); box-shadow: var(--shadow); }
.about h2 { color: var(--navy); font-size: clamp(1.6rem, 3.2vw, 2.3rem); text-transform: uppercase; margin-bottom: 16px; }
.about p { color: var(--grey); margin-bottom: 14px; }
.tick { list-style: none; margin: 18px 0 26px; }
.tick li { position: relative; padding-left: 30px; margin-bottom: 10px; color: var(--ink); font-weight: 500; }
.tick li::before { content: "✔"; position: absolute; left: 0; color: var(--blue); font-weight: 700; }

/* ---------- Stats ---------- */
.stats { background: var(--navy); color: #fff; padding: 56px 0; }
.stats .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stats .num { font-family: "Oswald", sans-serif; font-size: 2.6rem; color: var(--amber); }
.stats p { color: #c6d6e6; text-transform: uppercase; letter-spacing: 1px; font-size: 13px; }

/* ---------- Products ---------- */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 26px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: .25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: #cbd9e8; }
.card .thumb { aspect-ratio: 4/3; overflow: hidden; background: #eef2f6; }
.card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: .4s ease; }
.card:hover .thumb img { transform: scale(1.06); }
.card .body { padding: 18px 20px 22px; }
.card h3 { font-size: 1.12rem; color: var(--navy); text-transform: uppercase; }
.card p { font-size: 14px; color: var(--grey); margin-top: 6px; min-height: 42px; }
.card .more { display: inline-block; margin-top: 10px; font-weight: 700; font-size: 14px; color: var(--blue); }

/* ---------- Divisions ---------- */
.div-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; }
.div-card { background: #fff; border-top: 4px solid var(--blue); border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow); }
.div-card h3 { color: var(--navy); text-transform: uppercase; font-size: 1.15rem; margin-bottom: 10px; }
.div-card p { color: var(--grey); font-size: 15px; }

/* ---------- Testimonials ---------- */
.t-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.t-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.t-card .quote { color: var(--grey); font-style: italic; }
.t-card .who { margin-top: 18px; font-weight: 700; color: var(--navy); }
.t-card .role { font-size: 13px; color: var(--grey); }
.stars { color: var(--amber); letter-spacing: 2px; margin-bottom: 10px; }

/* ---------- CTA ---------- */
.cta { background: linear-gradient(120deg, var(--navy), var(--blue)); color: #fff; padding: 64px 0; }
.cta .wrap { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between; }
.cta h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); text-transform: uppercase; }
.cta p { color: #d5e6f5; margin-top: 6px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; }
.info-item { display: flex; gap: 16px; margin-bottom: 24px; }
.info-item .ico { flex: 0 0 46px; height: 46px; border-radius: 8px; background: var(--blue); color: #fff; display: grid; place-items: center; font-size: 20px; }
.info-item h4 { color: var(--navy); text-transform: uppercase; font-size: .95rem; }
.info-item a, .info-item span { color: var(--grey); display: block; font-size: 15px; }
.info-item a:hover { color: var(--blue); }
form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
form label { display: block; font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 6px; text-transform: uppercase; }
form input, form textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 6px;
  font-family: inherit; font-size: 15px; margin-bottom: 16px; background: #fbfdff;
}
form input:focus, form textarea:focus { outline: 2px solid var(--blue-light); border-color: transparent; }
.map { border: 0; width: 100%; height: 320px; border-radius: var(--radius); margin-top: 40px; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-dark); color: #b9cade; padding: 60px 0 0; }
.footer .grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; }
.footer h4 { color: #fff; text-transform: uppercase; font-size: 1rem; margin-bottom: 16px; }
.footer a:hover { color: var(--amber); }
.footer ul { list-style: none; }
.footer li { margin-bottom: 8px; font-size: 15px; }
.footer .logo-box { background: #fff; padding: 10px; border-radius: 8px; display: inline-block; margin-bottom: 16px; }
.footer .bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 40px; padding: 20px 0; font-size: 14px; text-align: center; }

/* ---------- Floating buttons ---------- */
.floaters { position: fixed; right: 18px; bottom: 18px; display: grid; gap: 10px; z-index: 80; }
.floaters a {
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  color: #fff; box-shadow: 0 6px 18px rgba(0,0,0,.28); font-size: 22px;
}
.fl-wa { background: #25d366; }
.fl-call { background: var(--blue); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .strip .grid { grid-template-columns: repeat(2, 1fr); }
  .stats .grid { grid-template-columns: repeat(2, 1fr); }
  .footer .grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .menu-toggle { display: block; }
  .nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; flex-direction: column; align-items: flex-start;
    padding: 16px 6%; gap: 6px; border-bottom: 1px solid var(--line);
  }
  .nav.open { display: flex; }
  .header .container { position: relative; }
  .header .btn { display: none; }
  .hero-inner { padding: 70px 0 80px; }
  .topbar { font-size: 13px; }
}
@media (max-width: 520px) {
  .strip .grid, .stats .grid, .footer .grid { grid-template-columns: 1fr; }
}

/* ---------- Breadcrumbs ---------- */
.crumbs { background: var(--bg-soft); border-bottom: 1px solid var(--line); font-size: 14px; }
.crumbs .container { padding: 14px 0; color: var(--grey); }
.crumbs a:hover { color: var(--blue); }
.crumbs span { margin: 0 8px; color: #a9b6c6; }
.crumbs strong { color: var(--navy); font-weight: 600; }

/* ---------- Product detail ---------- */
.pd { padding: 46px 0 10px; }
.pd-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 44px; align-items: start; }
.gallery { position: sticky; top: 20px; }
.gal-main { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #eef2f6; aspect-ratio: 4/3; }
.gal-main img { width:350px; height:350px;margin-left:120px;margin-top:50px; }
.gal-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 12px; }
.gal-thumb { padding: 0; border: 2px solid var(--line); border-radius: 8px; overflow: hidden; background: none; cursor: pointer; aspect-ratio: 4/3; }
.gal-thumb img { width: 100%; height:100%}
.gal-thumb.active, .gal-thumb:hover { border-color: var(--blue); }
.pd-info h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); color: var(--navy); text-transform: uppercase; margin: 6px 0 12px; }
.pd-info .lead { font-size: 18px; color: var(--navy); font-weight: 500; margin-bottom: 14px; }
.pd-info p { color: var(--grey); margin-bottom: 12px; }
.pd-info .hero-actions { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 12px; }

ul.tick { list-style: none; margin: 14px 0 4px; display: grid; gap: 8px; }
ul.tick li { position: relative; padding-left: 26px; color: var(--grey); }
ul.tick li::before { content: "\2713"; position: absolute; left: 0; top: 0; color: var(--blue); font-weight: 700; }

.soft { background: var(--bg-soft); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.sec-title { color: var(--navy); text-transform: uppercase; font-size: 1.4rem; margin-bottom: 16px; }

table.spec { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
table.spec th, table.spec td { text-align: left; padding: 12px 16px; border-bottom: 1px solid var(--line); font-size: 15px; }
table.spec th { width: 40%; background: #fbfdff; color: var(--navy); font-weight: 600; }
table.spec td { color: var(--grey); }
table.spec tr:last-child th, table.spec tr:last-child td { border-bottom: 0; }

.btn-ghost-dark { border: 2px solid var(--navy); color: var(--navy); }
.btn-ghost-dark:hover { background: var(--navy); color: #fff; }

@media (max-width: 900px) {
  .pd-grid, .two-col { grid-template-columns: 1fr; gap: 28px; }
  .gallery { position: static; }
}
 @media only screen and (max-width: 600px) {
   .gal-main img {
    width: 97%!important;
    height: 97%!important;
    margin-left:0px!important;
    margin-top:5px!important;
   }
 }
     
     
     
