@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
--bg-light: rgba(255, 255, 255, 1);
--bg-dark: rgba(0, 0, 0, 1);
--shadow-light: 0 10px 30px rgba(0, 0, 0, 0.15);
--shadow-dark: 0 10px 30px rgba(255, 255, 255, 0.1);
--text-light: rgba(17, 17, 17, 1);
--text-dark: rgba(245, 245, 245, 1);
--primary: rgba(0, 128, 128, 1);
--section-light: rgba(247, 247, 247, 1);
--section-dark: rgba(31, 31, 31, 1);
--border-light: rgba(51, 51, 51, 1);
--border-dark:  rgba(221, 221, 221, 1);
--overlay-light: rgba(0, 0, 0, 0.4);
--overlay-dark: rgba(255, 255, 255, 0.05);
}

[data-theme="light"] {
  --bg-nav: var(--bg-light);
  --text-color: var(--text-light);
  --section-bg: var(--section-light);
  --border-color: var(--border-light);
  --overlay-bg: var(--overlay-light);
  --bg-button:var(--primary);
  --shadow: var(--shadow-light);
}

[data-theme="dark"] {
  --bg-nav: var(--bg-dark);
  --text-color: var(--text-dark);
  --section-bg: var(--section-dark);
  --border-color: var(--border-dark);
  --overlay-bg: var(--overlay-dark);
  --bg-button:var(--section-dark);
  --shadow: var(--shadow-dark);
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: none;
  outline: none;
  text-decoration: none;
  scroll-behavior: smooth;
  font-family: 'Poppins', sans-serif;
}

body {
  font-size: 16px;
  background: var(--bg-nav);
  color: var(--text-color);
  transition: background 0.3s, color 0.3s;
}

h1, h2, h3, h4 {
  font-weight: 600;
  color: var(--text-color);
}

/* =========================================================
   NAVBAR
========================================================= */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1001;
  background: var(--bg-nav);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transition: background 0.3s, box-shadow 0.3s;
}

/* ---------- LOGO ---------- */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 70px;
  height: 50px;
}

.logo a {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text-color);
  transition: color 0.3s;
}

[data-theme="dark"] .logo a {
  color: #ffffff;
}

/* ---------- NAV LINKS ---------- */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  color: var(--text-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 16px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--primary);
}

/* =========================================================
   DROPDOWN
========================================================= */
.dropdown {
  position: relative;
}

.dropdown-content {
  position: absolute;
  top: 40px;
  left: 0;
  display: none;
  flex-direction: column;
  min-width: 280px;
  background: var(--bg-nav);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  z-index: 999;
}

.dropdown-content a {
  padding: 0.6rem 1rem;
  transition: background 0.2s;
}

.dropdown-content a:hover {
  background: var(--section-bg);
}

.dropdown.open .dropdown-content {
  display: flex;
}

/* =========================================================
   BUTTONS (Theme Toggle, Carousel Controls)
========================================================= */
.theme-toggle,
.carousel-button {
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  cursor: pointer;
  background: var(--primary);
  color: white;
  transition: background 0.3s, transform 0.2s;
}

.theme-toggle:hover,
.carousel-button:hover {
  background: var(--primary);
  color: #fff;
  transform: scale(1.08);
}

.menu-toggle,
.menu-close {
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--text-color);
  display: none;
}

/* ---------- SEARCH MODAL ---------- */
.overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--overlay-bg);
    z-index: 1000;
}

.search-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--overlay-bg);
    backdrop-filter: blur(4px);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.search-modal.show {
    display: flex;
}

.search-modal-content {
    background: var(--bg-nav);
    color: var(--text-color);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 10px;
    width: 80%;
    max-width: 550px;
    position: relative;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
/* Header: label left, close right */
.search-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.close-btn {
    padding: 6px 10px;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    background-color: red;
    transition: 0.2s ease;
}

.close-btn:hover {
    opacity: 0.8;
}

/* Input + Select with Icons */
.input-icon {
  position: relative;
  width: 100%;
}

.input-icon i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 1rem;
  pointer-events: none;
  transition: color var(--transition);
}

.input-icon input,
.input-icon select {
  width: 100%;
  padding: 10px 12px 10px 38px;
  border: 1px solid teal;
  font-size: 0.95rem;
  background: var(--bg);
  border-radius: 6px;
  color: var(--text);
  transition: all 0.25s ease;
  box-sizing: border-box;
}

.input-icon input::placeholder {
  color: var(--muted);
}

/* Focus state */
.input-icon input:focus,
.input-icon select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 5px color-mix(in srgb, var(--container-shadow) 60%, transparent);
  outline: none;
}

/* ---------- CAROUSEL ---------- */
.carousel-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 600px;
    overflow: hidden;
    z-index: 0;
}
.carousel-slide {
    display: flex;
    height: 100%;
    transition: transform 0.6s ease-in-out;
}
.carousel-item {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}
.carousel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 1rem;
    z-index: 3;
}

.hero-overlay h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: white;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.hero-overlay p {
  font-size: 1.2rem;
  max-width: 600px;
  margin-bottom: 25px;
  opacity: 0.9;
}
    
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,rgba(0,0,0,0.3),rgba(0,0,0,0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}


.hero-btn {
    background:var(--bg-button);
    color: var(--bg);
    padding: 0.8rem 1.6rem;
    font-weight: 600;
    transition: background 0.3s ease, color 0.3s ease;
}

/* ============================
BOTTOM NAVIGATION BAR
============================ */
.bottom-bar {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
background: var(--bg-nav);
color: var(--text-color);
display: flex;
justify-content: space-between;
align-items: center;
padding: 0;
font-size: 14px;
z-index: 2000;
transition: background 0.3s, color 0.3s, opacity 0.5s;
}

/* Hide on scroll */
.bottom-bar.hidden {
opacity: 0;
pointer-events: none;
}

/* ============================
NAV LINKS
============================ */
.bottom-bar a {
flex: 1;
padding: 10px 10px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
text-decoration: none;
font-size: 13px;
color: var(--text-color);
transition: all 0.3s ease;
}

/* Icons */
.bottom-bar a i {
font-size: 18px;
margin-bottom: 3px;
transition: transform 0.3s ease, color 0.3s ease;
color: var(--text-color);
}

/* Hover & Focus */
.bottom-bar a:hover,
.bottom-bar a:focus {
color: var(--primary);
background: rgba(0, 128, 128, 0.1);
}

.bottom-bar a:hover i,
.bottom-bar a:focus i {
transform: scale(1.2);
color: var(--primary);
}

/* Active Page */
.bottom-bar a.active {
color: var(--primary);
background: rgba(0, 128, 128, 0.15);
}

.bottom-bar a.active i {
color: var(--primary);
}





/* ================= MAIN CONTENT ================= */
.main-content {
    position: relative;
    z-index: 1;
    background: var(--bg-nav);
    color: var(--text);
    margin-top: 100vh;
}




.main-content section {
    margin: 0 auto 3rem;
    line-height: 1.8;
}


/* ABOUT */
.about-section {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  
    width: 100%;
    color:var(--text);
    gap: 20px;
    padding: 6rem 1.5rem 4rem;
}

.about-text {
    flex: 1;
    width: 50%;
    padding-right: 20px;
}

.about-text h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color:var(--text);
}

.about-text p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-clients {
    font-weight: 600;
    font-size: 18px;
    border: 1px solid teal;
    color:var(--text);
    background: var(--bg);
    padding: 10px 18px;
    display: inline-block;
    margin-top: 10px;
}

.about-image {
    flex: 1;
    width: 50%;
    text-align: right;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}



/* =========================================================
   SOLUTIONS SECTION (THEME READY + CLEANED)
========================================================= */

.solutions {
    margin-top: 40px;
    padding: 40px 20px;
    text-align: center;
    background: var(--bg);
    color: var(--text);
    transition: background var(--transition), color var(--transition);
}

.solutions h2,
.solutions h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--text);
}

.solutions-intro {
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 50px;
}

/* ==================== GRID ==================== */
.solutions-grid,
.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* =========================================================
   SOLUTION CARD
========================================================= */

.solution-card {
    position: relative;
    display: block;
    background: var(--nav-bg);
    padding: 30px 20px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    border-radius: 0;
    box-shadow: var(--shadow);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
 
    overflow: hidden;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background: var(--bg);
}

/* ---------- Decorative circles ---------- */
.solution-card::before,
.solution-card::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.solution-card::before {
    width: 80px;
    height: 80px;
    top: -20px;
    right: -20px;
    background: rgba(0, 128, 128, 0.22);
}

.solution-card::after {
    width: 60px;
    height: 60px;
    bottom: -15px;
    left: -15px;
    background: rgba(0, 191, 255, 0.15);
}

/* Content above circles */
.solution-card * {
    position: relative;
    z-index: 1;
}

/* =========================================================
   ICON, TITLE & DESCRIPTION
========================================================= */

.solution-card i {
    font-size: 2.2rem;
    color: var(--accent);
    padding: 16px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    margin-bottom: 15px;
    display: inline-block;
}

.solution-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.solution-card p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.5;
}
.statistics {
  min-height: 300px;
  width: 97%;
  margin: 20px auto; /* uniform spacing around the block */
  padding: 20px;      /* inner spacing */
  background: linear-gradient(135deg, #17A2B8, #008080);
  box-sizing: border-box;
  border-radius: 8px; /* optional: smooth corners */
}


.statistics h1 {
  text-align: center;
}

/* Table styling */
table.completed-projects {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
}

table.completed-projects th,
table.completed-projects td {
  padding: 10px;
  text-align: left;
  vertical-align: top; /* now correctly applied */
  border-bottom: 1px solid #ccc; /* uniform border */
}

table.completed-projects tr:last-child th,
table.completed-projects tr:last-child td {
  border-bottom: none; /* remove bottom border for last row */
}

/* ================================
   BLOGS & EVENTS LAYOUT
================================ */
.blogs-events {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin: 30px 0;
  padding: 0 20px;
  gap: 2%;
  box-sizing: border-box;
}

.blogs-events h1 {
  text-align: left;
  font-size: 25px;
  margin-bottom: 20px;
}

.blogs {
  flex: 0 0 calc(70% - 1%);
  box-sizing: border-box;
}

.events {
  flex: 0 0 calc(30% - 1%);
  background: var(--bg);
  padding: 20px;
  border-radius: 0;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  box-sizing: border-box;
}


/* ================================
   BLOG ARTICLES GRID
================================ */
.blog-articles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  width: 100%;
  box-sizing: border-box;
}

.article {
  position: relative;
  min-height: 320px;
  border-radius: 0;
  overflow: hidden;
  background: #000;
  color: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.article img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.article:hover img {
  transform: scale(1.05);
}

.article .overlay {
  position: absolute;
  inset: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, rgba(0,0,0,0.4), rgba(0,0,0,0.8));
}

.article h3 {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  z-index: 2;
  color: #fff;
}

.article p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.article a {
  font-size: 14px;
  font-weight: 600;
  color: #00c2b5;
  text-decoration: none;
  transition: color 0.3s;
}

.article a:hover {
  color: #fff;
}


/* ================================
   EVENTS
================================ */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.event {
  position: relative;
  padding: 15px;
  border-radius: 0;
  background: #008080;
  color: #fff;
  height: auto;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.event:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}

.event h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 600;
}

.event-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
}

.event-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.event-meta i {
  color: #fff;
}

.more-events {
  display: inline-block;
  margin-top: 10px;
  font-weight: 600;
  color: #008080;
  text-decoration: none;
  transition: color 0.3s;
}

.more-events:hover {
  color: #005f5f;
}

.event-status {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.event-status.upcoming {
  background: #28a745;
  color: #fff;
}

.event-status.past {
  background: #dc3545;
  color: #fff;
}


/* ================================
   CONTACT SECTION
================================ */
.contact-section {
  width: 100%;
  padding: 1rem 1.5rem 4rem;
  color: var(--text);
  gap: 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 100%;
}

.contact-item {
  display: flex;
  gap: 15px;
  padding: 25px;
  align-items: stretch;
  border: 1px solid #eee;
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  font-size: 26px;
  color: var(--text);
}

.contact-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: var(--text);
}

.contact-content {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
}


/* ================================
   BACK TO TOP BUTTON
================================ */
#scrollTopBtn {
  position: fixed;
  bottom: 40px;
  right: 25px;
  display: none;
  padding: 12px 14px;
  font-size: 18px;
  background-color: teal;
  color: white;
  border: none;
  cursor: pointer;
  outline: none;
  z-index: 999;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: background 0.3s ease;
}

#scrollTopBtn:hover {
  background-color: #006666;
}


/* ================================
   FLOATING CONTACT BUTTONS
================================ */
.floating-contact {
  position: fixed;
  bottom: 80px;
  left: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999999;
  pointer-events: auto;
}

.contact-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  font-size: 22px;
  border-radius: 50%;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
  background-color: #25D366;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: transform 0.2s ease, background 0.3s ease;
}

.call-btn {
  background-color: #007bff;
}

.contact-btn:hover {
  transform: scale(1.1);
  opacity: 0.9;
}


/* ================================
   PAGE LAYOUT
================================ */
html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  font-family: 'Segoe UI', sans-serif;
}

main {
  flex: 1;
}


/* ================================
   FOOTER
================================ */
footer {
  width: 100%;
  background: #0d1b2a;
  color: #fff;
  padding: 30px 0;
  font-size: 16px;
  position: relative;
  bottom: 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-resources {
  flex: 1;
  min-width: 220px;
}

.footer-resources h4 {
  margin: 0 0 10px;
  font-size: 18px;
  color: #e0e1dd;
}

.footer-resources a {
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 5px;
  font-size: 16px;
  color: #adb5bd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-resources a:hover {
  color: #fff;
}

.footer-copy {
  flex: 1;
  min-width: 220px;
  text-align: right;
  font-size: 15px;
  color: #adb5bd;
}


/* =================== RESPONSIVE =================== */
@media (max-width: 1024px) {
  .blogs-events {
    flex-direction: column;
    gap: 20px;
  }

  .blogs, .events { width: 100%; }

  /* MAIN CONTENT */
  .main-content { margin-top: 40vh; }

  .blog-articles { grid-template-columns: 1fr; }

  .event { padding: 12px; }
  .event h3 { font-size: 16px; }
  .event-meta { font-size: 13px; }
  .event-status { font-size: 10px; padding: 3px 8px; }

  .carousel-container { height: 600px; }

  .hero-overlay {
    padding: 10px 20px;
  }

  .hero-overlay h1 {
    font-size: 2.4rem;
    margin-bottom: 4.8rem;
  }

  .hero-overlay p {
    font-size: 1.2rem;
    margin-bottom: 3.8rem;
  }

  .content { margin-top: 300px !important; }
}

@media (max-width: 768px) {
  /* Carousel */
  .carousel-container { height: 500px; }

  .hero-overlay {
    padding: 10px 20px;
  }

  .hero-overlay h1 {
    font-size: 1.7rem;
    margin-bottom: 3.5rem;
  }

  .hero-overlay p {
    font-size: 1.2rem;
    padding: 0 40px;
    margin-bottom: 3.8rem;
  }

  /* MAIN CONTENT */
  .main-content { margin-top: 20vh; }
}

/* Bottom bar */
@media (max-width: 600px) {
  .bottom-bar a span { font-size: 11px; }
  .bottom-bar a i { font-size: 16px; }
}

/* ================= ABOUT SECTION ================= */
@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
    padding: 20px 15px;
  }

  .about-text, .about-image {
    width: 100%;
    padding-right: 0;
  }

  .about-text h2 { font-size: 20px; }
  .about-text p { font-size: 15px; }

  .about-image {
    margin-top: 20px;
    text-align: center;
  }

  .about-image img { max-width: 100%; }
}

/* ================= BLOGS SECTION ================= */
.nbe-wrapper {
  width: 100%;
  padding: 60px 20px;
  background: #f0f4f9;
  font-family: 'Poppins', sans-serif;
  color: #333;
}

.nbe-header {
  text-align: center;
  margin-bottom: 40px;
}

.nbe-header h2 {
  font-size: 32px;
  font-weight: 600;
  color: #222;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.nbe-header h2::before,
.nbe-header h2::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #007bff, #00c2b5);
}

.nbe-header h2::before { left: -70px; }
.nbe-header h2::after { right: -70px; }

.nbe-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 25px;
}

.nbe-side {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.nbe-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.nbe-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.nbe-card:hover img { transform: scale(1.07); }

.nbe-card .overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.85));
  color: #fff;
  padding: 20px;
}

.nbe-card h3 { font-size: 18px; margin-bottom: 8px; font-weight: 600; }
.nbe-card p { font-size: 14px; line-height: 1.5; margin-bottom: 8px; }
.nbe-card a { font-size: 13px; font-weight: 600; color: teal; text-decoration: none; }

.nbe-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: teal;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive blog grid */
@media (max-width: 900px) {
  .nbe-grid { grid-template-columns: 1fr; }
  .nbe-side { flex-direction: row; flex-wrap: wrap; gap: 20px; margin-top: 20px; }
  .nbe-card { flex: 1 1 calc(50% - 10px); }
  .nbe-feature h3 { font-size: 22px; }
  .nbe-feature p { font-size: 15px; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .nbe-side { flex-direction: column; gap: 15px; }
  .nbe-card { flex: 1 1 100%; }
  .nbe-header h2 { font-size: 24px; letter-spacing: 1px; }
  .nbe-feature h3 { font-size: 20px; }
  .nbe-feature p, .nbe-card p { font-size: 14px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-item { padding: 18px; gap: 12px; }
  .contact-icon { font-size: 22px; min-width: 40px; }
  .contact-label { font-size: 12px; }
  .contact-content { font-size: 14px; }
}

/* ================= FOOTER ================= */
footer {
  background: #0d1b2a;
  color: #fff;
  padding: 30px;
  font-family: 'Segoe UI', sans-serif;
  font-size: 16px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-resources {
  flex: 1;
  min-width: 200px;
  margin-bottom: 10px;
}

.footer-resources h4 {
  margin: 0 0 10px;
  font-size: 18px;
  color: #e0e1dd;
}

.footer-resources a {
  color: #adb5bd;
  text-decoration: none;
  margin-right: 15px;
  font-size: 16px;
}

.footer-resources a:hover { color: #fff; }

.footer-copy {
  flex: 1;
  min-width: 200px;
  text-align: right;
  font-size: 16px;
  color: #adb5bd;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .footer-copy { text-align: center; }
  .footer-resources { text-align: center; width: 100%; }
  .footer-resources a { display: block; margin: 5px 0; }

  .main-content { margin-top: 60vh; }
}

/* ================= NAVIGATION (MOBILE) ================= */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: 80%;
    background: var(--bg-nav);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: -4px 0 15px rgba(0,0,0,0.2);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1002;
    display: none;
  }

  .nav-links.show {
    display: flex;
    transform: translateX(0%);
  }

  .menu-toggle { display: block; }
  .menu-toggle.hide { display: none; }

  .menu-close {
    display: block;
    align-self: flex-end;
    margin-bottom: 1rem;
  }

  .overlay.show { display: block; }

  .dropdown-content {
    margin-top: 10px;
    position: relative;
    box-shadow: none;
    border: none;
    width: 100%;
  }

  .dropdown.open .dropdown-content { display: flex; }
}

@media (min-width: 769px) {
  .nav-links a i { display: none; }
}



/* ---------- ABOUT US SECTION (PAGE 2) ---------- */
.about-us {
  padding: 80px 20px;
  background-color: var(--bg-color);
  color: var(--text-color);
}

.about-us-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.about-us-image {
  flex: 1 1 400px;
  text-align: center;
}

.about-us-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.about-us-image img:hover {
  transform: scale(1.05);
}

.about-us-content {
  flex: 1 1 500px;
}

.about-us-content h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
}

.about-us-content h2 span {
  color: var(--accent-color);
}

.about-us-content p {
  line-height: 1.7;
  margin-bottom: 15px;
}

.about-us-stats {
  display: flex;
  gap: 30px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.stat-box {
  flex: 1 1 120px;
  text-align: center;
}

.stat-box h3 {
  font-size: 2rem;
  color: var(--accent-color);
}

.about-btn {
  display: inline-block;
  background: var(--accent-color);
  color: #fff;
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.about-btn:hover {
  background: var(--accent-color-hover);
}


/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .about-us-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .about-us-stats {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .about-us {
    padding: 60px 15px;
  }
  .about-us-content h2 {
    font-size: 2rem;
  }
  .about-us-content p {
    font-size: 0.95rem;
  }
  .about-us-stats {
    gap: 20px;
  }
  .stat-box h3 {
    font-size: 1.5rem;
  }
  .about-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 400px) {
  .about-us {
    padding: 40px 10px;
  }
  .about-us-content h2 {
    font-size: 1.75rem;
  }
  .about-us-content p {
    font-size: 0.9rem;
  }
  .about-us-stats {
    flex-direction: column;
    gap: 15px;
  }
  .stat-box h3 {
    font-size: 1.25rem;
  }
  .about-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
  .about-us-image img {
    max-width: 300px;
  }
}


/* ---------- BRANDS SECTION ---------- */
.brands-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 10px 0 5px;
  letter-spacing: 1px;
}

.brands-section {
  display: flex;
  justify-content: center;
}

.brands-grid {
  width: 100%;
  padding:20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
}

/* ---------- BRAND CARD ---------- */
.brand-card {

  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border-radius: 6px;
  padding: 25px 20px;
  text-align: center;
  cursor: pointer;
  transition: 
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.brand-card:hover {
 
  box-shadow: 0 6px 10px rgba(13, 148, 136, 0.25);
}

/* ---------- BRAND LOGO ---------- */
.brand-card img {
  max-width: 90px;
  height: auto;
  margin-bottom: 12px;
  filter: grayscale(100%) brightness(0.9);
  transition: filter 0.35s ease, transform 0.35s ease;
}

.brand-card:hover img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.08);
}

/* ---------- BRAND NAME ---------- */
.brand-card span {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: #d1d5db;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 600px) {
  .brands-title {
    font-size: 1.6rem;
  }

  .brand-card img {
    max-width: 70px;
  }
}



