{
margin:0;
padding:0;
box sizing:border-box;
front-family:'poppins', sans-sarif;
}


 




body
{
    /* vertical centering */
/* Full-screen background video */
.background-video {
    position: fixed;
    top: 0;
    left: 0;

    width: 100vw;
    height: 100vh;

    object-fit: cover;
    object-position: center;

    z-index: -2;
}

/* Dark overlay */
.video-overlay {
    position: fixed;
    top: 0;
    left: 0;

    width: 100vw;
    height: 100vh;

    background: rgba(0, 0, 0, 0.45);

    z-index: -1;
}

/* Your website content */
.page-content {
    position: relative;
    z-index: 1;
}
.topic{
  align: center;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}



/* HERO SECTION */
.hero {
  background: url('') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 100px 20px;
  position: relative;
    
}

/* DARK OVERLAY FOR VISIBILITY */
/*.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba();
  z-index: 0;
}

.hero * {
  position: relative;
  z-index: 1;
}
*/
/* LOGO */
.logo {
  position: absolute;
  top: 20px;
  left: 20px;
}

.logo img {
  height: 60px;
}

/* NAVBAR */
.navbar {
  margin-top: 20px;
}

.navbar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.navbar li {
  display: inline-block;
  margin: 0 15px;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  padding: 8px 14px;
  border-radius: 5px;
  transition: 0.3s;
}

.navbar a:hover {
  background-color: #FFD700;
  color: black;
}

.navbar a.active {
  background-color: #FFD700;
  color: black;
}

/* HERO TEXT */
.hero-content {
  margin-top: 40px;
}

/* INDUSTRIES SECTION */
.impact {
  padding: 40px 20px;
}

.impact h2 {
  text-align: center;
}

/* CARDS */
.cards {
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
  flex-wrap: wrap;
}

.card-link {
  text-decoration: none;
  color: inherit;
  width: 30%;
  min-width: 250px;
}

.card {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 15px;
}

/* FOOTER */
footer {
  background: #FFD700;
  color: black;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

/* SOCIAL ICONS */
.social img {
  width: 30px;
  margin: 0 10px;
  transition: 0.3s;
}

.social img:hover {
  transform: scale(1.3);
}

    .center-text {
      text-align: center;        /* center inside the block */
      color: #fff;
      background: rgba(); /* overlay for readability */
      padding: 2rem;
      border-radius: 10px;
      max-width: 700px;
    }

    .center-text h1 {
      font-size: 3rem;
      margin-bottom: 1rem;
      text-transform: uppercase;
      letter-spacing: 2px;
    }

    .center-text p {
      font-size: 1.2rem;
      line-height: 1.6;
    }

    .dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown content */
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%; /* Start from the center of the parent */
  transform: translateX(-50%); /* Move it back by half its width */
  background-color: #fff;
  min-width: 220px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  overflow: hidden;
  z-index: 1000;
}

/* Dropdown links */
.dropdown-content a {
  color: #333;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-size: 14px;
  transition: background-color 0.3s ease, padding-left 0.3s ease;
}

/* Hover effect */
.dropdown-content a:hover {
  background-color: #f5f5f5;
  padding-left: 20px;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}


/* ── ABOUT PAGE ── */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f8f6f1;
  color: #1a1a2e;
}

.about-section {
  max-width: 860px;
  margin: 80px auto;
  padding: 60px 48px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
  border-top: 5px solid #7c3aed;
}

.about-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #7c3aed;
  margin-bottom: 12px;
  text-align: center;
}

.about-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #a855f7, #ec4899);
  border-radius: 999px;
  margin: 0 auto 36px;
}

.about-section p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #4b5563;
  margin-bottom: 20px;
  text-align: justify;
}

.about-section p:last-child {
  margin-bottom: 0;
  color: #7c3aed;
  font-weight: 500;
  text-align: center;
  font-style: italic;
}



/* ── SECTION TITLE ── */
.section-title {
  text-align: center;
  padding: 3rem 2rem 1.5rem;
}

.section-title h2 {
  font-family: 'Noto Serif Display', serif;
  font-size: 1.9rem;
  margin-bottom: 0.4rem;
}

.section-title p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* ── CATEGORY GRID ── */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1rem 3rem 3rem;
}

.cat-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  background: #e5e5e5;
}

.cat-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.cat-card:hover img { transform: scale(1.05); }

.cat-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(15,15,26,0.75), transparent);
  color: white;
  padding: 1.5rem 1rem 1rem;
}

.cat-label h3 {
  font-family: 'Noto Serif Display', serif;
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.cat-label span {
  font-size: 0.78rem;
  opacity: 0.8;
}

/* ── FEATURED GRID ── */
.featured-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: 320px 320px;
  gap: 1rem;
  padding: 0 3rem 3rem;
}

.feat-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #ddd;
}

.feat-card.tall { grid-row: span 2; }

.feat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.feat-card:hover img { transform: scale(1.04); }

.feat-overlay {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  color: white;
}

.feat-overlay .tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  margin-bottom: 0.5rem;
}

.feat-overlay h3 {
  font-family: 'Noto Serif Display', serif;
  font-size: 1.4rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.feat-overlay p {
  font-size: 0.85rem;
  opacity: 0.85;
  margin-top: 0.3rem;
}






/* Gojo Tech Footer Styling - Cream Edition */
.gt-footer {
  background-color: #FDFBF7; /* Elegant Cream */
  color: #334155; /* Deep Slate */
  padding: 80px 5% 40px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  position: relative;
  border-top: 1px solid #e2e8f0;
}

.gt-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.gt-brand-name {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  color: #1e293b; /* Darker Slate */
  background: linear-gradient(to right, #92400e, #b45309); /* Bronze Gradient */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gt-brand-tagline {
  color: #64748b;
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 24px;
}

.gt-social-row {
  display: flex;
  gap: 12px;
}

.gt-social-btn {
  padding: 8px 16px;
  border-radius: 8px;
  background: #ffffff;
  color: #475569;
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.gt-social-btn:hover {
  background: #f8fafc;
  color: #92400e;
  transform: translateY(-2px);
  border-color: #92400e;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.gt-col-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #1e293b;
  position: relative;
}

.gt-col-title::after {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  background: #92400e;
  margin-top: 8px;
  border-radius: 2px;
}

.gt-col-links {
  list-style: none;
  padding: 0;
}

.gt-col-links li {
  margin-bottom: 12px;
}

.gt-col-links a {
  color: #64748b;
  text-decoration: none;
  transition: all 0.2s;
  font-weight: 500;
}

.gt-col-links a:hover {
  color: #92400e;
  padding-left: 4px;
}

.gt-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.gt-contact-item span {
  font-size: 1.2rem;
  filter: grayscale(0.5);
}

.gt-contact-text a {
  color: #475569;
  text-decoration: none;
  font-weight: 500;
}

.gt-contact-text a:hover {
  color: #92400e;
}

.gt-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, #e2e8f0, transparent);
  margin: 60px 0 30px;
}

.gt-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.gt-copyright {
  color: #94a3b8;
  font-size: 0.875rem;
}

.gt-copyright span {
  color: #64748b;
  font-weight: 600;
}

.gt-industries {
  display: flex;
  gap: 10px;
}

.gt-badge {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.gt-badge.fur { background: #fef3c7; color: #92400e; border: 1px solid #fde68a; }
.gt-badge.agr { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.gt-badge.min { background: #f1f5f9; color: #475569; border: 1px solid #e2e8f0; }

@media (max-width: 768px) {
  .gt-footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .gt-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}


