:root {
  --bg: white;
  --dark: black;
  --text-muted: #888888;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  max-width: 100%;
}

body {
  overflow-x: hidden;
  font-family: Arial, Helvetica, sans-serif;
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;

    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--bg);
    color: var(--dark);
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    padding: 0 1rem;
    height: 56px;
}

.logo-box {
    width: 7rem;
    padding: 0;
    margin: 0;
}

.header-left svg {
    width: 35px;
    height: 35px;
}

.hamburgerbtn {
    display: flex;
    justify-content: center;
    align-items: center;
  width: 42px;
  height: 42px;
  color: black;

}

.header-right {
    position: relative;
    width: 42px;
    height: 42px;
}

.close-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    cursor: pointer;
    color: #333;
    width: 35px;
    height: 35px;
}

.close-icon.show-close {
    display: flex;
}

.hide-icon {
  display: none;
}

.show-close {
  display: block;
}

.menu-panel {
    position: fixed;
    top: 56px;
    right: 0;
    width: 100%;
    height: calc(100% - 56px);
    background-color: #0a0a0a;
    transform: translateX(100%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    width: 85%;
    box-shadow: -4px 0 24px rgba(0,0,0,0.5);
}

.menu-panel.open {
    transform: translateX(0);
}

.menu-logo {
    width: 7rem;
    height: auto;
    
}

.menu-search {
    padding-top: 24px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 10px;
    width: 100%;
}

.menu-search-inner {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    overflow: hidden;
}

.menu-search input {
    flex: 1;
    padding: 10px 16px;
    background: transparent;
    border: none;
    border-radius: 0;
    font-size: 15px;
    color: white;
    outline: none;
    width: 100%;
}


.menu-search input::placeholder {
    color: rgba(255,255,255,0.4);
}

.menu-search:focus {
   color: white;
}

.icon {
    background: none;
    border: red;
    cursor: pointer;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    align-self: stretch;
    color: rgba(255,255,255,0.4);
    transition: color 0.2s ease;
}

.menu-nav {
    padding: 1px 0;
    flex: 1;
}

.menu-nav a {
    display: block;
    padding: 16px 20px;
    color: rgba(255,255,255,0.75);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    letter-spacing: 0.02em;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.menu-nav a.active {
    color: white;
    border-left: 6px solid white;
    padding-left: 17px;
}

.menu-nav a:hover {
    color: white;
    background: rgba(255,255,255,0.04);
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 998;
}

.menu-overlay.active {
    display: block;
}

.menu-footer {
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.menu-footer p {
    color: rgba(255,255,255,0.3);
    font-size: 0.75rem;
}

.close-icon.show-close {
    display: flex;
}

/* CONTENT */
.about-body {
  padding: 0 1.2rem;
}

.about-block {
  padding: 1.1rem 0;
  border-bottom: 1px solid #e0e0e0;
}
.about-block:last-child {
  border-bottom: none;
}


.about-block h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0a0a0a;
  line-height: 1.2;
  margin-bottom: 0.7rem;
}
.about-block h3 {
  font-size: 1.2rem;
  color: default;
}
.about-block p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #444;
}

/* PULL QUOTE */
.pull-quote {
  background: black;
  margin: 0 0;
  padding: 1rem 1rem;
  margin-right: -120px;
  border-left: 4px solid gray;
}
.pull-quote p {
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  font-style: italic;
}
.pull-quote cite {
  display: block;
  margin-top: 0.8rem;
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: whitesmoke;
  font-style: normal;
}

/* VALUES GRID */
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: 1rem;
}
.value-item {
  background: #fff;
  border-top: 3px solid red;
  padding: 1rem 0.8rem;
}
.value-item strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: black;
  margin-bottom: 0.4rem;
}
.value-item p {
  font-size: 0.8rem;
  color: #666;
  line-height: 1.4;
}

/* CONTACT BLOCK */
.contact-block {
  background: #0a0a0a;
  margin: 0rem 0 0;
  padding: 1.1rem 1.1rem;
}
.contact-block .label {
  color: red;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.contact-block h2 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.contact-block p {
  color: #aaa;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.contact-block a.contact-email {
  display: inline-block;
  background: white;
  color: black;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.5rem 0.5rem;
  text-decoration: none;
  letter-spacing: 0.5px;
  border-radius: 6px;
}

footer {
  display: block;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 1rem 0;
  border-top: 1px solid black;
}

.Aboutus {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 0 0.8rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.aboutus-logo {
  margin-right: 1rem;
  width: 8rem;
  height: auto;
}

footer .socials {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
footer .socials p {
  font-size: 0.9rem;
  padding-bottom: 0.55rem;
}
footer .social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

footer .social-links a {
  text-decoration: none;
  color: black;
  font-size: 1.7rem;

  opacity: 0.6;
  transition: all 0.3s ease;
}

footer .social-links a:hover {
  opacity: 1;
}

.footer-bottom {
  padding: 0.9rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

.footer-bottom a {
  display: flex;
  text-decoration: none;
  color: #333;
  white-space: nowrap;
  font-size: 0.7rem;
  align-items: center;
  font-weight: bold;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.footer-bottom-p {
  display: flex;
  justify-content: center;
  gap: 1rem;
  opacity: 0.8;
  font-size: 0.8rem;
  padding-bottom: 2rem;
}

.footer-bottom i {
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  opacity: 0.5;
}

.footer-bottom a i {
  margin-left: 4px;
  position: relative;
  top: -1px;
}
