/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0d1036;
}

html, body {
  height: 100%;
  width: 100%;
  font-family: 'Segoe UI', 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  display: flex;
  flex-direction: column;
}

body {
  position: relative;
}

::selection {
  background: #1b1b1b;
  color: #fff;
}

/* Navbar styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 1rem 2rem;
  background-color: #0d1036;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: #cbbc14;
  font-family: 'Segoe UI', sans-serif;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: #fff;
}

.link-container {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.link-item .link {
  text-decoration: none;
  font-size: 1rem;
  color: #ffffff;
  font-weight: 500;
  transition: color 0.3s;
}

.link-item .link:hover {
  color: #FFD700;
}

/* Responsive navbar */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .link-container {
    display: none;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    margin-top: 1rem;
  }

  .navbar.active .link-container {
    display: flex;
  }
}

/* Headings */
h1 {
  font-size: 2rem;
  color: #cbbc14;
  margin-left: 10px;
}

h2 {
  text-align: center;
  font-size: 1.5rem;
  margin: 2rem 0;
  color: #ffffff;
}

/* Social icons */
.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 100%;
  flex-wrap: wrap;
}

.icon img {
  width: 60px;
  height: 60px;
}

.icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.icon:hover {
  transform: scale(1.1);
}

@media (max-width: 600px) {
  h1, h2 {
    font-size: 1.25rem;
  }

  .logo {
    width: 40px;
  }

  .icon {
    width: 50px;
    height: 50px;
  }

  .icon img {
    width: 40px;
    height: 40px;
  }
}

/* Blog Card Styles (Modified - image removed) */
.blog-card {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.2s ease;
  background-color: rgba(128, 128, 128, 0.2);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.blog-card:hover {
  transform: scale(1.02);
}

.blog-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #cbbc14;
}
.blog-overview {
  font-size: 1rem;
  color: white;
  display: -webkit-box;
  -webkit-line-clamp: 12; /* Show only 8 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  line-height: 1.5em;
}

/* Blog section layout */
.blog-section {
  width: 100%;
  padding: 50px 5vw;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 2rem;
}

/* Removed: .blog-image */

/* Header section */
.content {
  text-align: center;
  padding: 2rem 1rem;
}

.heading {
  color: #cbbc14;
  text-transform: capitalize;
  font-size: 3rem;
  line-height: 3.5rem;
  margin-bottom: 2rem;
}

.heading .small {
  display: block;
  font-size: 2rem;
}

.heading .no-fill {
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 2px #fff;
}

.btn {
  padding: 10px 20px;
  border-radius: 10px;
  background: rgba(255, 200, 255, 0.7);
  color: #000;
  text-decoration: none;
  text-transform: capitalize;
}

.btn.dark {
  background: #1b1b1b;
  color: #fff;
}

/* Layout wrapper */
.main-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Footer */
.footer {
  background-color: #000000;
  color: #fff;
  padding: 2rem 1rem;
  font-size: 0.9rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 1.5rem;
}

.contact-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.contact-section p {
  font-weight: bold;
  color: #cbbc14;
}

.social-link {
  display: inline-block;
  transition: transform 0.3s ease;
}

.social-link:hover {
  transform: scale(1.1);
}

.social-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* Admin/Vivaspiral Link */
.footer-admin-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  text-decoration: none;
  color: #fff;
}

.admin-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.admin-text {
  font-size: 0.9rem;
  font-weight: bold;
  color: #cbbc14;
  text-align: center;
}

@media (max-width: 600px) {
  .footer-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .social-icon {
    width: 35px;
    height: 35px;
  }

  .admin-icon {
    width: 40px;
    height: 40px;
  }

  .admin-text {
    font-size: 0.8rem;
  }
}

.footer-about {
  max-width: 800px;
  margin: 1rem auto;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ccc;
  padding: 0 1rem;
}

/* Extra class */
.abt {
  align-items: center;
  color: #cbbc14;
}

