/* ===== BASE STYLES ===== */
:root {
  --primary: #BAFF2A;
  --primary-dark: #89b134;
  --secondary: #6C00FF;
  --dark: #0A0A0A;
  --light: #F5F5F5;
  --accent: #FF00E4;
  --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
}

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

body {
  font-family: 'Rajdhani', 'Orbitron', sans-serif;
  background-color: var(--dark);
  color: var(--light);
  overflow-x: hidden;
  position: relative;
}

/* ===== ANIMATIONS ===== */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
}

@keyframes neon-glow {
  0%, 100% { text-shadow: 0 0 5px var(--primary), 0 0 10px var(--primary), 0 0 15px var(--primary); }
  50% { text-shadow: 0 0 10px var(--primary), 0 0 20px var(--primary), 0 0 30px var(--primary); }
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ===== BACKGROUND EFFECTS ===== */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(107, 255, 42, 0.1) 0%, transparent 20%),
    radial-gradient(circle at 80% 70%, rgba(108, 0, 255, 0.1) 0%, transparent 20%);
  z-index: -2;
  animation: rotate 120s linear infinite;
}

.crypto-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.particle {
  position: absolute;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0.6;
  animation: float 15s infinite ease-in-out;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(10, 10, 10, 0.8);
  border-bottom: 1px solid rgba(186, 255, 42, 0.2);
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--light);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  position: relative;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
  width: 100%;
}

.contact-btn {
  background: var(--primary);
  color: var(--dark);
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.contact-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--primary-dark);
  transition: width 0.3s ease;
  z-index: -1;
}

.contact-btn:hover::before {
  width: 100%;
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

}

.background-image img{
  position: absolute;
  width: 100vw;
  height: 100vh;
  overflow: visible;
  opacity: 0.4 ;
  z-index: -1;
}

.hero-title {
  font-size: 5rem;
  font-weight: 800;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 2rem;
  text-transform: uppercase;
  background: linear-gradient(to right, var(--primary), var(--light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: neon-glow 3s infinite alternate;
  padding-top: 300px;
}

/* ===== PROFILE CARD ===== */
 @media (max-width: 800px) {
    .profile{
        position: absolute;
        top: 10%;
        display: none;
        /* margin-top: 200px; */

        
    }
    .artcil{
        position: absolute;
        display: none;
      
    }
 }
.profile {
  position: absolute;
top: 8%;
  left: 41%;
  width: 300px;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 10;
}
.artcil{
 position: relative;
 left: 340px;
 top: 94px;
 font-size: 35px;
 color: white;
 padding: 5px;
 font-weight: bolder;
 border-radius: 10px;
 background: #89b134;
 width:fit-content;
 /* box-shadow: 0 15px 40px rgba(186, 255, 42, 0.4); */
}
.profile:hover {
  transform: translateY(-10px);
}

.profile-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.profile-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary);
}

.profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}

/* ===== CONTENT LAYOUT ===== */
.content-container {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  padding: 5rem 2rem;
  position: relative;
  margin-top: 500px;
}

.sidebar {
  width: 300px;
  position: sticky;
  top: 120px;
  height: fit-content;
  padding: 2rem;
  background: rgba(15, 15, 15, 0.8);
  border-radius: 15px;
  border: 1px solid rgba(186, 255, 42, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.sidebar-title {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.sidebar-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary);
}

.sidebar-link {
  display: block;
  color: var(--light);
  margin-bottom: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  
}
.sidebar-link p a{
    text-decoration: none;
    color: white;
}
.sidebar-link:hover {
  background: rgba(186, 255, 42, 0.1);
  color: var(--primary);
  transform: translateX(10px);
}

.main-content {
  flex: 1;
  padding: 0 3rem;
}

/* ===== PROMO CARD ===== */
.promo-card {
  margin-top: 3rem;
  padding: 1.5rem;
  background: rgba(10, 10, 10, 0.6);
  border-radius: 12px;
  border: 1px solid rgba(186, 255, 42, 0.3);
  transition: all 0.3s ease;
}

.promo-card:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(186, 255, 42, 0.2);
}

.rating-bars {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.rating-bar {
  width: 30px;
  height: 5px;
  background: var(--primary);
  border-radius: 5px;
  animation: pulse 2s infinite;
}

.rating-bar:nth-child(2) { animation-delay: 0.2s; }
.rating-bar:nth-child(3) { animation-delay: 0.4s; }
.rating-bar:nth-child(4) { animation-delay: 0.6s; }
.rating-bar:nth-child(5) { animation-delay: 0.8s; }
.rating-bar:nth-child(6) { animation-delay: 1s; }

.promo-text {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.promo-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.promo-logo img {
  height: 40px;
}

.promo-btn{
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}


.promo-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--primary);
  transition: width 0.3s ease;
  z-index: -1;
}

.promo-btn:hover {
  color: var(--dark);
}

.promo-btn:hover::before {
  width: 100%;
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  font-size: 1.1rem;
}

.content-title {
  font-size: 2.5rem;
  margin: 3rem 0 1.5rem;
  color: var(--primary);
  position: relative;
  padding-bottom: 0.5rem;
  line-height: 0.9;

  font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.content-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 3px;
  background: var(--primary);
}

.content-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.7);
}

.influencer-title {
  font-size: 1.8rem;
  margin: 3rem 0 1rem;
  color: var(--light);
  background: linear-gradient(to right, var(--primary), var(--light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.influencer-image {
  width: 100%;
  border-radius: 15px;
  margin: 1.5rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.influencer-image:hover {
  transform: scale(1.01);
  box-shadow: 0 15px 40px rgba(186, 255, 42, 0.3);
}

.influencer-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  position: relative;
}

.influencer-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.influencer-link:hover::after {
  width: 100%;
}

.section-title {
  font-size: 2.2rem;
  margin: 4rem 0 1.5rem;
  color: var(--primary);
}

.faq-title {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  color: var(--light);
}

/* ===== RATING STARS ===== */
.rating-stars {
  display: flex;
  gap: 0.5rem;
  margin: 2rem 0;
}

.star {
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.star:hover {
  color: var(--primary);
  transform: scale(1.2);
}

/* ===== FOOTER ===== */
.footer {
  background: #0A0A0A;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(107, 255, 42, 0.05) 0%, transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(108, 0, 255, 0.05) 0%, transparent 30%);
  z-index: 0;
}

.footer-hero img {
  width: 100%;
  height: auto;
  display: block;
}

.footer-content {
  padding: 5rem 2rem;
  position: relative;
  z-index: 1;
}

.text-center {
  text-align: center;
}

.footer-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(to right, var(--primary), var(--light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.footer-btn {
  background: var(--primary);
  color: var(--dark);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.footer-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--primary-dark);
  transition: width 0.3s ease;
  z-index: -1;
}

.footer-btn:hover::before {
  width: 100%;
}

.divider-text {
  color: var(--primary);
  font-size: 1.2rem;
  margin: 3rem 0;
  position: relative;
}

.divider-text::before, .divider-text::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30%;
  height: 1px;
  background: rgba(186, 255, 42, 0.3);
}

.divider-text::before {
  left: 0;
}

.divider-text::after {
  right: 0;
}

/* ===== ARTICLE CARDS ===== */
.article-cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 3rem 0;
}

.article-card {
  flex: 1;
  min-width: 300px;
  max-width: 350px;
  background: rgba(15, 15, 15, 0.8);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(186, 255, 42, 0.1);
}

.article-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(186, 255, 42, 0.2);
  border-color: rgba(186, 255, 42, 0.3);
}

.article-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.article-card:hover .article-image {
  transform: scale(1.05);
}

.article-text {
  padding: 1.5rem;
}

.article-text p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.article-link a{
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  position: relative;
}

.article-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.article-link:hover::after {
  width: 100%;
}

/* ===== NEWSLETTER ===== */
.newsletter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin: 5rem auto;
  max-width: 1000px;
  background: rgba(15, 15, 15, 0.8);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(186, 255, 42, 0.2);
}

.newsletter-image {
  width: 250px;
  height: auto;
  animation: float 6s ease-in-out infinite;
}

.newsletter-content {
  flex: 1;
}

.newsletter-title {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.newsletter-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
}

.newsletter-input {
  flex: 1;
  padding: 0.8rem 1.2rem;
  border: none;
  border-bottom: 2px solid var(--primary);
  background: transparent;
  color: white;
  font-size: 1rem;
  outline: none;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-submit {
  background: var(--primary);
  color: var(--dark);
  padding: 0.8rem 1.8rem;
  border: none;
  border-radius: 0 5px 5px 0;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-submit:hover {
  background: var(--primary-dark);
}

/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
  max-width: 1400px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  height: 40px;
}

.footer-brand {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-left: 1rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--primary);
  transform: translateY(-5px);
}

.social-icon img {
  width: 60%;
  height: 60%;
  filter: brightness(0) invert(1);
}

.social-icon:hover img {
  filter: brightness(0) invert(0);
}

/* ===== UTILITY CLASSES ===== */
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }
.mt-100 { margin-top: 100px; }

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
  .content-container {
    flex-direction: column;
  }
  
  .sidebar {
    width: 100%;
    position: static;
    margin-bottom: 3rem;
  }
  
  .main-content {
    padding: 0;
  }
}

@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    padding: 1rem;
  }
  
  .nav-links {
    margin: 1rem 0;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .profile {
    position: static;
    margin: 2rem auto;
  }
  
  .newsletter {
    flex-direction: column;
    text-align: center;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-submit {
    border-radius: 5px;
    margin-top: 1rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.checknow{
  width: auto;
  margin: auto;
  /* border: 2px solid black; */
  justify-content: center;
  display: flex;
  flex-direction: column;
  width: fit-content;
  align-items: center;
  gap: 10px;
}
.checknow button{
  padding: 10px 15px;
  border-radius: 20px;
  font-size: 20px;
  border: none;
  background: #89b134;

  color: black;
  transition: all;
  transition-duration: 0.31s;
}
.mobile-menu-btn{
  display: none;
}
.checknow button:hover{
  cursor: pointer;
  background: rgb(0, 0, 0);
color: #89b134;
  font-weight: bolder;
}
.checknow a i{
  font-size: 30px;
  color: white;
}
/* ===== MOBILE RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
  /* General adjustments */
  :root {
    font-size: 14px;
  }

  /* Navbar adjustments */
  .nav-container {
    padding: 1rem;
  }

  .nav-links {
    gap: 1rem;
  }

  /* Hero section */
  .hero-title {
    font-size: 3.5rem;
    padding-top: 200px;
  }

  /* Content layout */
  .content-container {
    padding: 3rem 1rem;
    margin-top: 300px;
  }

  .main-content {
    padding: 0 1rem;
  }

  /* Profile card */
  .profile {
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
  }

  /* Footer */
  .footer-content {
    padding: 3rem 1rem;
  }

  .footer-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  /* Navbar becomes hamburger menu */
  .nav-links {
    display: none; /* Will be shown by mobile menu toggle */
  }

  .mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: var(--light);
    font-size: 1.8rem;
    cursor: pointer;
  }

  /* Hero section */
  .hero-title {
    font-size: 2.8rem;
    padding-top: 150px;
  }

  /* Content layout */
  .content-container {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    position: static;
    margin-bottom: 2rem;
  }

  /* Profile card */
  .profile {
    top: 5%;
  }

  /* Newsletter */
  .newsletter {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-input {
    border-radius: 5px 5px 0 0;
  width: 100%;
  }

  .newsletter-submit {
    border-radius: 0 0 5px 5px;
    width: 100%;
  }

  /* Footer bottom */
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

@media (max-width: 576px) {
  /* Tiny mobile devices */
  .hero-title {
    font-size: 2.2rem;
    padding-top: 120px;
  }

  .content-title {
    font-size: 2rem;
  }

  .profile {
    width: 90%;
    padding: 1rem;
  }

  .profile-content {
    flex-direction: column;
    text-align: center;
  }

  .profile-img {
    margin-bottom: 1rem;
  }

  /* Article cards */
  .article-cards {
    flex-direction: column;
    align-items: center;
  }

  .article-card {
    min-width: 100%;
  }

  /* Promo card */
  .promo-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  /* Footer */
  .footer-title {
    font-size: 2rem;
  }

  .footer-subtitle {
    font-size: 1rem;
  }
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--dark);
  z-index: 2000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

.mobile-menu-links a {
  color: var(--light);
  font-size: 1.5rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-menu-links a:hover {
  color: var(--primary);
}

.mobile-menu-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--light);
  font-size: 2rem;
  cursor: pointer;
}

/* ===== TOUCH DEVICE ADJUSTMENTS ===== */
@media (hover: none) {
  /* Remove hover effects for touch devices */
  .nav-links a:hover::after,
  .influencer-link:hover::after,
  .article-link:hover::after {
    width: 0;
  }

  .contact-btn:hover::before,
  .promo-btn:hover::before,
  .footer-btn:hover::before {
    width: 0;
  }

  /* Make click targets larger */
  a, button {
    min-height: 48px;
    min-width: 48px;
  }
}

/* ===== LANDSCAPE ORIENTATION ===== */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-section {
    height: auto;
    padding: 5rem 0;
  }

  .hero-title {
    padding-top: 100px;
  }

  .content-container {
    margin-top: 200px;
  }
}

/* ===== HIGH DPI DEVICES ===== */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  /* Use higher resolution assets */
  .logo, .profile-img img, .promo-logo img, .footer-logo {
    background-image: url('images/[email protected]');
    background-size: contain;
  }
}

/* ===== PRINT STYLES ===== */
@media print {
  /* Hide unnecessary elements when printing */
  .navbar, .profile, .sidebar, .footer {
    display: none;
  }

  body {
    background: white;
    color: black;
    font-size: 12pt;
  }

  .content-container {
    margin-top: 0;
    padding: 0;
  }

  a {
    color: #0000EE;
    text-decoration: underline;
  }

  /* Add URL after links */
  a[href^="http"]:after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    font-weight: normal;
  }
}
.mobile-menu{
  display: none;
}

@media (max-width: 768px) {
.nav-links{
  display: none;
}  
.nav-container{
  display: flex;
  /* background: #000; */
  flex-direction: row;

}
.contact-btn{
  width: auto;
}
.contact-btn{
  height: 100px;
margin-right: 40px;
display: none;
}
.mobile-menu-btn{
  display: block;
  /* background: #000; */
 
  margin-left: 100px;
}
.checknow a{
  margin-left: 30px;
  /* background: #000; */
  text-decoration: none;
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: center;
}
.head1{
  font-size: 10px;
}
.section-title h1{
  font-size: 40px;
}
.faq-title h1{
  font-size: 20px;
}
.content-title h1{
  font-size: 35px;
}
.background-image img{
  height: 450px;
}


}
/* ===== PARTICLE JS ===== */
/* This would be implemented with JavaScript, but here's the CSS for it */