:root {
  --bg: #f7f9fb;
  --card: #ffffff;
  --text: #1c1c1c;
  --accent: #3b82f6;
  --icon: #6b7280;
  --highlight: #d1fae5;
}

html, body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #f7f9fb;
  color: var(--text);
  scroll-padding-top: 50px;
}

p {font-family: "Open Sans", sans-serif;}

.mainheading {
  justify-content: left;
  align-items: center;
  padding: 0rem;
}

header h1 {
  font-size: 32px !important;

}

.search-container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0 0rem;
  margin: 0 auto 2rem;
  max-width: 1200px;
  width: 100%;
  box-sizing: border-box;
}

.search-container input {
  width: 100%;
  height:60px;
  padding: 0.75rem 1rem;
  font-size: 20px;
  border-radius: 2px;
  border: 1px solid #ccc;
  background: var(--card);
  color: var(--text);
  box-sizing: border-box;
}

#cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: auto;
  padding: 0 1rem 3rem;
}

.card {
  background: var(--card);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  position: relative;
  transition: background-color 0.3s ease, border 0.3s ease;
  cursor: pointer;
  overflow: hidden;
  user-select: text;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin:20px;
}

.card.expanded {
  background-color: #e6f0ff;
  border: 1px solid var(--accent);
}

.card h2 {
  margin: 0 0 0.3rem 0;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: text;
}

.service-container {
  margin: 0.4rem 0 0.9rem;
}

.service-label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--icon);
  display: block;
  margin-bottom: 0.1rem;
  user-select: text;
}

.service {
  font-size: 0.95rem;
  margin: 0;
  user-select: text;
}

.desc {
  font-size: 0.95rem;
  margin: 0 0 0.8rem;
  user-select: text;
}

.expand {
  max-height: 0;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  overflow: hidden;
  margin-top: 0.5rem;
}

.card.expanded .expand {
  max-height: 400px;
  opacity: 1;
}

.card a.website-link {
  color: #fff;
  text-decoration: none;
  word-break: break-word;
  font-weight: 600;
  display: inline-block;
  margin-top: 0.5rem;
  user-select: text;
padding: 0.4rem 0.8rem;
background: var(--accent);
border-radius: 6px;
}

.share-btn {
  margin-top: 0.8rem;
  font-size: 0.9rem;
  color: #3b82f6;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  align-self: flex-start;
  user-select: text;
  background-color: var(--bg);
}

.toggle-icon {
  margin-left: 0.5rem;
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s ease;
  color: var(--icon);
  flex-shrink: 0;
  pointer-events: none;
}

.toggle-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--icon);
  transition: transform 0.3s ease;
}

.card.expanded .toggle-icon svg {
  transform: rotate(180deg);
}

.copy-message {
  display: none;
  font-size: 0.8rem;
  background-color: var(--highlight);
  color: var(--text);
  margin-top: 0.5rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  user-select: text;
  max-width: fit-content;
}

.card.expanded .copy-message.show {
  display: block;
}

.pagination {
  text-align: center;
  margin-bottom: 3rem;
}

.pagination button {
  margin: 0 0.25rem;
  padding: 0.5rem 0.9rem;
  border: none;
  background: var(--accent);
  color: white;
  border-radius: 8px;
  cursor: pointer;
  user-select: select;
}

.pagination button.active {
  background: #174ea6;
}

/* Hamburger Menu Layout */

.nav-toggle-container {
  display: none;
  align-items: center;
  justify-content: space-between;
  background: var(--card);
  padding: 1rem 1.5rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  position: relative;
  z-index: 1000;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.menu-logo-img {
  height: 36px;
  display: block;
}

.menu-logo-text {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text);
}

.hamburger-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}

.hamburger-toggle span {
  width: 100%;
  height: 3px;
  background-color: var(--text);
  transition: 0.3s;
}

.hamburger-nav-links {
  display: none;
  flex-direction: column;
  background: var(--card);
  position: absolute;
  top: 100%;
  left: 0;
  width: 88%;
  padding: 1rem 1.5rem;
  border-top: 1px solid #eee;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.hamburger-nav-links.open {
  display: flex; /* or block, depending on your layout */
  flex-direction: column;
}

.hamburger-nav-links a {
  text-decoration: none;
  color: var(--text);
  padding: 0.5rem 0;
  font-weight: 600;
}

.hamburger-nav-links a:hover {
  color: var(--accent);
}

.hamburger-nav-links.show {
  display: flex;
}

/* Desktop: horizontal nav aligned right */
@media (min-width: 768px) {
  .nav-toggle-container {
    gap: 2rem;
  }

  .hamburger-toggle {
    display: none;
  }

  .hamburger-nav-links {
    display: flex !important;
    flex-direction: row;
    position: relative;
    padding: 0;
    gap: 1.5rem;
    box-shadow: none;
    border-top: none;
    margin-left: auto;
    align-items: center;
    width:280px;
    z-index: 100;
  }

  .hamburger-nav-links a {
    padding: 0;
  }
}

/* Additional UI Responsiveness */

@media (max-width: 768px) {
  .search-container {
    flex-direction: column;
    padding: 20px 1rem 0 1rem;
    width: 100%;

  }

  .mainheading {
    padding: 0rem 1rem 0;
    text-align: center;
    margin-top:-20px
  }

  header h1 {
    font-size: 32px !important;
  }

  .card {
    padding: 0.75rem;
  }

  .card h2 {
    font-size: 1.05rem;
  }

  .desc, .service {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .cp-title {
    font-size: 1rem;
  }

  .nav-links a {
    font-size: 0.95rem;
  }

  .search-container {
    padding: 0 0.5rem;
    padding-top:50px;
    width:380px;
  }

  .pagination button {
    padding: 0.4rem 0.7rem;
    font-size: 0.85rem;
  }

  .card .share-btn {
    font-size: 0.85rem;
    padding: 0.35rem 0.7rem;
  }
}

/* Back to Top */

#backToTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: none;
  padding: 10px 15px;
  font-size: 18px;
  background-color: #333;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
  z-index: 1000;
}

#backToTopBtn:hover {
  background-color: #555;
}


#cards,
#pagination {
  display: none;
}

#cards.visible,
#pagination.visible {
  display: block;
}
.two-col-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  box-sizing: border-box;
}

.column {
  flex: 1 1 100%;
  padding: 1.5rem;
  border-radius: 12px;
  box-sizing: border-box;
}

.unique-promo {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0rem 1rem;
  border-radius: 10px;
  max-width: 1200px;
  margin: 2rem auto;
}

.unique-promo-content {
  flex: 1;
  align-self: flex-start;
}

.unique-promo-content h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  color: #17243A;
  font-weight: 700;
}

.unique-promo-content p {
  font-size: 1rem;
  line-height: 1.5;
  color: #3b4a6b;
}

.unique-promo-img {
  flex: 1;
  display: flex;
  justify-content: center;
}

.unique-promo-img img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(23, 36, 58, 0.15);
}
.promo-cta-btn {
  margin-top: 1.5rem;
  padding: 0.75rem 2rem;
  background-color: #3b82f6;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.promo-cta-btn:hover {
  background-color: #2563eb;
}

/* Responsive: stack vertically on small screens */
@media (max-width: 768px) {
  .unique-promo {
    flex-direction: column;
    text-align: center;
  }

  .unique-promo-img {
    margin-top: 1.5rem;
  }
}


/* Desktop - 2 columns */
@media (min-width: 768px) {
  .column {
    flex: 1 1 calc(50% - 1rem);
  }
}
img.column-right-img {
    max-width: 100%;
}
.promo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 1rem auto;
  padding: 2rem 1rem;
  border-radius: 12px;
  background: var(--card, #ffffff);
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}


.promo-image,
.promo-text {
  flex: 1 1 100%;
}

.promo-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.promo-text h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--text, #1c1c1c);
}

.promo-text p {
  font-size: 1rem;
  color: var(--icon, #6b7280);
}

/* Desktop alternating layout */
@media (min-width: 768px) {
  .promo {
    flex-wrap: nowrap;
    padding: 3rem 2rem;
  }

  .promo1 .promo-image,
  .promo3 .promo-image,
  .promo2 .promo-text,
  .promo4 .promo-text {
    order: 1;
  }

  .promo1 .promo-text,
  .promo3 .promo-text,
  .promo2 .promo-image,
  .promo4 .promo-image {
    order: 2;
  }

  .promo-image,
  .promo-text {
    flex: 1 1 50%;
  }

  .promo-text {
    padding: 0 2rem;
  }
}


.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.footer-column {
  flex: 1 1 220px;
  min-width: 220px;
}

.footer-column h3 {
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 1.25rem;
}

.footer-column p,
.footer-column ul {
  margin: 0;
  line-height: 1.5;
  font-size: 0.95rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #1c1c1c;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #3b82f6; /* Accent blue */
}

.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  color: #6b7280;
  border-top: 1px solid #eee;
  padding-top: 15px;
  margin-top: 20px;
}

/* Responsive */

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 25px;
  }

  .footer-column {
    min-width: 100%;
  }
}
.site-footer {

  color: #17243A;
  padding: 40px 20px 20px;
  font-family: 'Inter', sans-serif;

}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.footer-column {
  flex: 1 1 220px;
  min-width: 220px;
}

.footer-column h3 {
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 1.25rem;
  color: #ffffff;
}

.footer-column p,
.footer-column ul {
  margin: 0;
  line-height: 1.5;
  font-size: 0.95rem;
  color: #17243A; /* lighter text for readability */
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #9ec1ff; /* lighter blue for links */
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #3b82f6; /* brighter blue on hover */
}


.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  color: #a3adc8;
  border-top: 1px solid #2c3a5a;
  padding-top: 15px;
  margin-top: 20px;
}

/* Responsive */

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 25px;
  }

  .footer-column {
    min-width: 100%;
  }
}
.two-col-layout {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.column {
  flex: 1 1 45%;
  box-sizing: border-box;
}

.column img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .two-col-layout {
    flex-direction: column;
    text-align: center;
  }

  .column {
    flex: 1 1 100%;
  }
}
.column-left {
  align-self: flex-start;
}
/* From Uiverse.io by 0xnihilism */
.brutalist-container {
  position: relative;
  width: 100%;
  font-family: monospace;
}

.brutalist-input {
  width: 100%;
  padding: 15px;
  font-size: 18px;
  font-weight: bold;
  color: #000;
  background-color: #fff;
  border: 4px solid #000;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  outline: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 5px 5px 0 #000, 10px 10px 0 #4a90e2;
}

@keyframes glitch {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-2px, 2px);
  }
  40% {
    transform: translate(-2px, -2px);
  }
  60% {
    transform: translate(2px, 2px);
  }
  80% {
    transform: translate(2px, -2px);
  }
  100% {
    transform: translate(0);
  }
}

.brutalist-input:focus {
  animation: focus-pulse 4s cubic-bezier(0.25, 0.8, 0.25, 1) infinite,
    glitch 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) infinite;
}

.brutalist-input:focus::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: white;
  z-index: -1;
}

.brutalist-input:focus::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  z-index: -2;
  clip-path: inset(0 100% 0 0);
  animation: glitch-slice 4s steps(2, end) infinite;
}

@keyframes glitch-slice {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  10% {
    clip-path: inset(0 5% 0 0);
  }
  20% {
    clip-path: inset(0 80% 0 0);
  }
  30% {
    clip-path: inset(0 10% 0 0);
  }
  40% {
    clip-path: inset(0 50% 0 0);
  }
  50% {
    clip-path: inset(0 30% 0 0);
  }
  60% {
    clip-path: inset(0 70% 0 0);
  }
  70% {
    clip-path: inset(0 15% 0 0);
  }
  80% {
    clip-path: inset(0 90% 0 0);
  }
  90% {
    clip-path: inset(0 5% 0 0);
  }
  100% {
    clip-path: inset(0 100% 0 0);
  }
}

.brutalist-label {
  position: absolute;
  left: -3px;
  top: -35px;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  background-color: #E53935;
  padding: 5px 10px;
  transform: rotate(-1deg);
  z-index: 1;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.brutalist-input:focus + .brutalist-label {
  transform: rotate(0deg) scale(1.05);
  background-color: #000;
}

.smooth-type {
  position: relative;
  overflow: hidden;
}

.smooth-type::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.smooth-type:focus::before {
  opacity: 1;
  animation: type-gradient 2s linear infinite;
}

@keyframes type-gradient {
  0% {
    background-position: 300px 0;
  }
  100% {
    background-position: 0 0;
  }
}

.brutalist-input::placeholder {
  color: #888;
  transition: color 0.3s ease;
}

.brutalist-input:focus::placeholder {
  color: transparent;
}

.brutalist-input:focus {
  animation: focus-pulse 4s cubic-bezier(0.25, 0.8, 0.25, 1) infinite;
}

@keyframes focus-pulse {
  0%,
  100% {
    border-color: #000;
  }
  50% {
    border-color: #4a90e2;
  }
}

.column.column-right {
    width: 100%;
}
.about-section {
  background-color: #E1F5FE;
  padding: 3rem 1rem;
}

/* Layout Container */
.about-container {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: left;
}

@media (min-width: 768px) {
  .about-container {
    flex-direction: row;
  }

  .about-text {
    text-align: left;
    width: 50%;
  }

  .about-image {
    width: 50%;
  }
}

/* Text Styling */
.about-text {
  text-align: left;
}

.about-heading {
  font-size: 1.875rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 1rem;
}

.about-paragraph {
  font-size: 1.125rem;
  color: #4b5563;
  margin-bottom: 1rem;
}

/* Image Styling */
.about-img {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.contactcontainer {
    padding: 40px;
}


/* NEW NAV */
/* General Reset */


/* Header */
.header {
  background-color: #fff;
  border-bottom: 2px solid var(--color-bg2);
  width: 100%;
  z-index: 3;
}

.header a {
  color: var(--color-text);
  text-decoration: none;
}

/* Nav container */
.header nav.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  flex-wrap: wrap;
}

/* Logo */
.menu-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.menu-logo-img {
  height: 40px;
  width: auto;
}

.menu-logo-text {
  font-size: 1.2rem;
  font-weight: bold;
}

/* Menu button */
.menu-btn {
  display: none;
}

.menu-icon {
  display: block;
  cursor: pointer;
  padding: 28px 20px;
  position: relative;
  z-index: 2;
}

.menu-icon .navicon {
  background: #000;
  display: block;
  height: 2px;
  width: 18px;
  position: relative;
  transition: background 0.2s ease-out;
}

.menu-icon .navicon:before,
.menu-icon .navicon:after {
  background: #000;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  width: 100%;
}

.menu-icon .navicon:before {
  top: 5px;
}

.menu-icon .navicon:after {
  top: -5px;
}

/* Nav Menu */
.menu {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background: #fff;
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu li {
  border-top: 1px solid var(--color-bg2);
}

.menu li a {
  display: block;
  padding: 15px 20px;
}

/* Open state */
.menu-btn:checked ~ .menu {
  max-height: 300px;
}

.menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

.menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.menu-btn:checked ~ .menu-icon .navicon:before,
.menu-btn:checked ~ .menu-icon .navicon:after {
  top: 0;
}

/* Desktop styles */
@media (min-width: 768px) {
  .menu {
    display: flex;
    max-height: none !important;
    width: auto;
    align-items: center;
    gap: 20px;
  }

  .menu li {
    border: none;
  }

  .menu li a {
    padding: 20px 15px;
  }

  .menu-icon {
    display: none;
  }
}
.search-box {
  max-width: 600px;
  margin: 0 auto 2rem;
  padding: 0 20px;
}

input[type="search"] {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
}
.hidden {
  display: none;
}
.h1-style {
  text-align:center;
  font-family: "Noto Sans", sans-serif;
font-size: clamp(1.5rem, 5vw, 2rem);
font-optical-sizing: auto;
font-style: normal;
font-variation-settings:
  "wdth" 100;
}
.main-home-image{
  width: 100%;
  margin-top:50px;
}

.highlight-menu-btn {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  text-align: center;
  font-weight: bold;
  padding: 0.7em 2em;
  border: 3px solid #0084ff;
  border-radius: 2px;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.1);
  color: #0084ff;
  text-decoration: none;
  transition: 0.3s ease all;
  z-index: 1;
}

.highlight-menu-btn:before {
  transition: 0.5s all ease;
  position: absolute;
  top: 0;
  left: 50%;
  right: 50%;
  bottom: 0;
  opacity: 0;
  content: '';
  background-color: #0084ff;
  z-index: -1;
}

.highlight-menu-btn:hover, .highlight-menu-btn:focus {
  color: white;
}

.highlight-menu-btn:hover:before, .highlight-menu-btn:focus:before {
  transition: 0.5s all ease;
  left: 0;
  right: 0;
  opacity: 1;
}

.highlight-menu-btn:active {
  transform: scale(0.9);
}
