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

:root {
  --primary-col: #414141;
  --seconday-col: #ffffff;
}

@font-face {
  font-family: "Cera Godrej Interio";
  src: url("../fonts/CeraGodrejInterio-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Cera Godrej Interio";
  src: url("../fonts/CeraGodrejInterio-medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Cera Godrej Interio";
  src: url("../fonts/CeraGodrejInterio-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

body {
  font-family: "Cera Godrej Interio", Arial, sans-serif;
}

#fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 3;
  padding: 12px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: #ddd;
  color: --primary-col;
}

#fixed-header span {
  font-weight: 500;
  font-size: clamp(18px, 2vw, 25px);
  color: #414141;
  text-decoration: none;
}

#fixed-header img {
  height: 30px;
  width: auto;
}
/* FORCE logo size & alignment */
.right-logo {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

.right-logo img {
  height: 60px !important;   /* increase logo size */
  width: 25% !important;
  display: block !important;
}

.right-logo .brand {
  font-size: 22px !important;
  font-weight: 600;
  line-height: 1;
  display: flex;
  align-items: center;
}

/* ===== TABLET & DESKTOP BREAKPOINT (1200px) ===== */
@media (max-width: 1200px) {
  #fixed-header {
    padding: 12px 24px;
  }

  #fixed-header span {
    font-size: clamp(16px, 1.8vw, 22px);
  }

  #fixed-header img {
    height: 35px;
  }

  .right-logo img {
    height: 50px;
  }

  .right-logo .brand {
    font-size: 20px;
  }
}

/* ===== TABLET BREAKPOINT (900px) ===== */
@media (max-width: 900px) {
  #fixed-header {
    padding: 10px 20px;
  }

  #fixed-header span {
    font-size: clamp(14px, 1.5vw, 18px);
  }

  #fixed-header img {
    height: 32px;
  }
}

/* ===== MOBILE BREAKPOINT (520px) ===== */
@media (max-width: 520px) {
  #fixed-header {
    padding: 8px 16px;
  }

  #fixed-header span {
    font-size: 12px;
  }

  #fixed-header img {
    height: 28px;
  }

  body {
    font-size: 14px;
  }
}

/* ===== SMALL MOBILE BREAKPOINT (375px) ===== */
@media (max-width: 375px) {
  #fixed-header {
    padding: 6px 12px;
  }

  #fixed-header span {
    font-size: 11px;
  }

  #fixed-header img {
    height: 24px;
  }

  body {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .right-logo img {
    height: 44px;
  }

  .right-logo .brand {
    font-size: 18px;
  }

   .right-logo {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .right-logo img {
    width: 40px !important;
    height: auto !important;
  }

  .right-logo .brand {
    font-size: 14px !important;
    font-weight: 600;
    line-height: 1.2;
  }
}

@media (max-width: 480px) {
  .right-logo img {
    height: 38px;
  }

  .right-logo .brand {
    font-size: 16px;
  }
}


