* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
}

.section-container {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(to right, #ccf0ff, #edd8ff);
  color: #000;
}

.item {
  max-width: 240px;
}

.icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 20px;
  position: relative;
}

.icon::before,
.icon::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.icon::before {
  top: 0;
  left: 0;
}

.icon::after {
  bottom: 0;
  left: 0;
}

h2 {
  font-size: 2rem;
  font-weight: 900;
  margin: 10px 0;
}

/* p {
      font-size: 1rem;
      font-weight: 400;
      color: #222;
      line-height: 1.5;
    } */

.about-brisyn {
  padding: 60px 0;
  background-color: #f1f3f5;
}

.about-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  padding: 0 20px;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-content {
  flex: 1;
  min-width: 300px;
}

.about-content h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #000;
}

.about-content h2 span {
  display: inline-block;
}

.about-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 30px;
  max-width: 500px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 20px 40px;
}

.stat-box h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  color: #000;
}

.stat-box p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #444;
}

header {
  position: relative;
  padding: 4rem 2rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(
      90deg,
      rgba(2, 0, 36, 0.7) 0%,
      rgba(9, 9, 121, 0.7) 45%,
      rgba(0, 212, 255, 0.7) 100%
    ),
    url("https://cdn.pixabay.com/photo/2024/08/22/09/07/ai-generated-8988762_1280.jpg")
      no-repeat center center / cover;
  color: white;
}

header h1 {
  font-size: 3rem;
  font-weight: 700;
}

.top-right {
  position: absolute;
  top: 1rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.top-right a {
  color: white;
  text-decoration: none;
  margin: 0.2rem 0;
}

.social-icons {
  margin-top: 0.5rem;
  display: flex;
  gap: 0.5rem;
}

.social-icons i {
  font-size: 1.2rem;
  cursor: pointer;
}

.contact-btn {
  border: 1px solid white;
  padding: 0.5rem 1rem;
  margin-top: 0.5rem;
  background: transparent;
  color: white;
  border-radius: 8px;
  cursor: pointer;
}

.main-content {
  margin-top: 4rem;
  max-width: 600px;
  color: white;
}

.main-content p:first-child {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.8);
}

.main-content h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: white;
}

.main-content p:last-child {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #eee;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.8);
}

.buttons {
  margin-top: 20px;
  display: flex;
  gap: 1rem;
}

.buttons button {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

.buttons .primary {
  background: #00bfff;
  color: white;
}

.buttons .secondary {
  background: transparent;
  border: 1px solid white;
  color: white;
}

.hero-img {
  position: absolute;
  right: 3rem;
  bottom: 0;
  max-width: 400px;
  margin-bottom: 50px;
}

.bottom-bar {
  position: absolute;
  bottom: 1rem;
  left: 2rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  gap: 20px;
}

.service-box {
  flex: 1 1 calc(25% - 20px);
  max-width: calc(25% - 20px);
  text-align: center;
}

.service-box img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.service-box h2 {
  font-size: 20px;
  font-weight: 1000;
  line-height: 1.3;
  margin: 20px 0 10px;
  color: #000;
}

.service-box p {
  font-size: 15px;
  line-height: 1.5;
  color: #333;
}

.contact-section {
  background-color: #f3f4f6;
  padding: 60px 20px;
  text-align: center;
  color: black;
}

.contact-section h5 {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.contact-section h1 {
  font-size: 38px;
  font-weight: 800;
  margin: 0;
  line-height: 1.3;
  color: #8c52ff;
}

.contact-section .subtitle {
  font-size: 16px;
  margin-top: 15px;
  margin-bottom: 40px;
  color: #444;
  margin-bottom: 25px;
}

.contact-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 300px;
}

.contact-card {
  flex: 1 1 250px;
  max-width: 300px;
  text-align: center;
}

.icon {
  font-size: 28px;
  color: #8d5e27;
  /* Brownish-gold */
  margin-bottom: 15px;
}

.contact-card h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-card p {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

.contact-card a {
  color: #2a3364;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

.site-footer {
  background-color: #0c0036;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 60px;
  gap: 40px;
  position: sticky;
  /* Sticky footer */
  flex-shrink: 0;
}

.footer-left h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.footer-left p {
  margin: 0;
  font-size: 14px;
  color: #ccc;
}

.footer-center,
.footer-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-heading {
  font-weight: 600;
  font-size: 13px;
  color: #999;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.footer-center a,
.footer-right a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.footer-center a:hover,
.footer-right a:hover {
  text-decoration: underline;
}

.social-icons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.social-icons a {
  color: #fff;
  font-size: 16px;
}

.consulting-section {
  background: linear-gradient(135deg, #f3f4ff, #f8f0ff);
  padding: 50px 30px;
  font-family: "Segoe UI", sans-serif;
}

.container {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  width: 75%;
  margin: auto;
}

.image-container {
  flex: 1 1 40%;
  max-width: 420px;
}

.image-container img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.content-container {
  flex: 1 1 55%;
}

.content-container h2 {
  font-size: 24px;
  color: #3b0a75;
  margin-bottom: 16px;
}

.content-container p {
  font-size: 15px;
  color: #444;
  line-height: 1.5;
  margin-bottom: 20px;
}

.points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14.5px;
  color: #333;
  line-height: 1.4;
}

.points .icon {
  font-size: 18px;
  color: #5a00b1;
  line-height: 1.5;
}

/* Navbar Styles - Themed */
.navbar {
  background-color: #f6f3ff;
  /* light purple background */
  border-bottom: 1px solid #e0d8ff;
  font-family: "Montserrat", sans-serif;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.navbar-left .logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #8c52ff;
  text-decoration: none;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.navbar-pages a,
.navbar-social a {
  text-decoration: none;
  color: #5d3dbf;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-pages a:hover,
.navbar-social a:hover {
  color: #8c52ff;
}

.navbar-social i {
  font-size: 1.2rem;
}

.navbar-contact {
  padding: 0.5rem 1.2rem;
  background-color: #8c52ff;
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.navbar-contact:hover {
  background-color: #6e3fd9;
}

/* Responsive for small screens */
@media (max-width: 768px) {
  .navbar-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar-right {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0.8rem;
    margin-top: 1rem;
  }

  .navbar-contact {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .about-container,
  .container,
  .services-container {
    flex-direction: column;
    align-items: center;
  }

  .about-image img,
  .image-container img {
    max-width: 100%;
  }

  .about-content,
  .content-container,
  .image-container,
  .service-box {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .section-container {
    flex-direction: column;
    padding: 40px 10px;
    align-items: center;
    text-align: center;
  }

  .contact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .item {
    max-width: 90%;
    margin-bottom: 30px;
  }

  .about-content h2,
  .main-content h2,
  .contact-section h1 {
    font-size: 1.8rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .service-box {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .container {
    width: 90%;
    gap: 20px;
  }

  .navbar-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar-right {
    flex-direction: column;
    width: 100%;
    gap: 0.8rem;
    margin-top: 1rem;
  }

  .navbar-contact {
    width: 100%;
  }
}

@media (max-width: 480px) {
  header h1,
  .main-content h2,
  .about-content h2,
  .contact-section h1 {
    font-size: 1.5rem;
  }

  .buttons {
    flex-direction: column;
    gap: 10px;
  }

  .hero-img {
    position: static;
    max-width: 100%;
    margin-top: 20px;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
    padding: 20px;
  }

  .contact-cards {
    flex-direction: column;
    gap: 20px;
  }
}

@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translate(50px, 20px) rotate(30deg) scale(1.2);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

header h1 {
  animation: fadeSlideUp 1s ease-out forwards;
  animation-delay: 0.8s;
  /* Stagger effect */
}

header .main-content h2 {
  animation: fadeSlideUp 1s ease-out forwards;
  animation-delay: 1s;
  /* Stagger effect */
}

.terms-container {
  max-width: 75%;
  margin: 40px auto;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

.terms-container h1,
.terms-container h2 {
  color: #222;
}

.terms-container h1 {
  text-align: center;
  margin-bottom: 20px;
}

.terms-container h2 {
  margin-top: 20px;
  font-size: 18px;
}

.privacy-container {
  max-width: 75%;
  margin: 20px auto;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

.privacy-container h1,
.privacy-container h2 {
  color: #222;
}

.privacy-container h1 {
  text-align: center;
  margin-bottom: 20px;
}

.privacy-container h2 {
  margin-top: 20px;
  font-size: 18px;
}
.navbar-left img {
  width: 50%;
}

.card-grid {
  /* margin: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
  padding: 24px; */
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 50px 100px;
}
@media (max-width: 768px) {
  .card-grid {
    grid-template-columns: 1fr;
    margin: 20px;
  }
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #f1f1f1;
  overflow: hidden;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px 10px;
  background: #fff;
}

.card-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

.card-header p {
  font-size: 0.9rem;
  color: #666;
  margin: 2px 0 0;
}

.badge {
  background: #2563eb;
  color: white;
  padding: 6px 12px;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 600;
}

.card-image {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 24px;
  min-height: 260px;
}

.card-image img {
  max-width: 100%;
  max-height: 220px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  object-fit: contain;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background: #f9fafb;
  border-top: 1px solid #eee;
}

.card-footer .meta {
  font-size: 0.85rem;
  color: #555;
}

.card-footer .meta span {
  display: block;
  color: #6b7280;
}

.card-footer .actions {
  display: flex;
  gap: 10px;
}

.btn,
.icon-btn {
  border: none;
  cursor: pointer;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.icon-btn {
  padding: 8px 10px;
  background: #e0e7ff;
  color: #2563eb;
}

.btn {
  padding: 8px 14px;
  background: #2563eb;
  color: #fff;
}

.btn:hover {
  background: #1e4ed8;
}
.loader {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.loader img {
  width: 100px; /* adjust size as needed */
  height: 100px;
}
