:root {
  --accent: #ff002e;
  --bg1: #0f1724;
  --bg2: #2c003e;
  --muted: #9aa4b2;
}

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

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: #e6eef6;
  background: linear-gradient(180deg, var(--bg1), var(--bg2));
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

/* HERO SECTION */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding: 40px 0;
}

.hero-text {
  flex: 1;
  min-width: 320px;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 18px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.6);
  transform: scale(0.95);
  transition: transform 0.5s ease;
}

.hero-image img:hover {
  transform: scale(1);
}

.eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
}

.h-title {
  font-size: 34px;
  font-weight: 700;
  margin: 14px 0;
  color: #fff;
}

.muted {
  color: var(--muted);
  line-height: 1.7;
  font-size: 16px;
  margin-bottom: 20px;
}

.cta {
  display: inline-block;
  padding: 12px 20px;
  background: var(--accent);
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.cta:hover {
  background: #ff3355;
  transform: translateY(-2px);
}

/* BLOG SECTION */
.blog-content {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 14px;
  padding: 24px;
  backdrop-filter: blur(10px);
  line-height: 1.8;
}

.blog-content h2 {
  color: #fff;
  margin: 30px 0 10px;
  font-size: 22px;
  border-left: 4px solid var(--accent);
  padding-left: 10px;
}

.blog-content h3 {
  color: #ff8b8b;
  margin-top: 20px;
}

ul, ol {
  margin-left: 20px;
}

footer {
  text-align: center;
  margin-top: 30px;
  color: var(--muted);
  font-size: 14px;
}

/* SCROLL ANIMATION */
[data-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

[data-animate].animated {
  opacity: 1;
  transform: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-image img {
    max-width: 90%;
  }

  .h-title {
    font-size: 26px;
  }

  .muted {
    font-size: 15px;
  }

  .cta {
    font-size: 15px;
    padding: 10px 18px;
  }
}

@media (max-width: 480px) {
  .h-title {
    font-size: 22px;
  }

  .muted {
    font-size: 14px;
  }
}
/* ======================== */
/* ===== FOOTER STYLES ===== */
/* ======================== */

.footer {
    background: rgba(255, 255, 255, 0.05); /* Slightly lighter than the main content for contrast */
    padding-top: 50px;
    color: var(--muted);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px 40px; /* Padding for the top section */
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap; /* Allows columns to wrap on smaller screens */
}

/* --- Footer Column Headings --- */
.footer-logo h2,
.footer-contact h3,
.footer-social h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

/* --- Footer Logo/About Section --- */
.footer-logo {
    flex: 2; /* Takes up more space on wide screens */
    min-width: 250px;
}

.footer-logo p {
    font-size: 14px;
    line-height: 1.6;
}

/* --- Footer Contact Section --- */
.footer-contact {
    flex: 1;
    min-width: 180px;
}

.footer-contact p {
    font-size: 15px;
    margin-bottom: 8px;
}

.footer-contact a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--accent);
}

/* --- Footer Social Section --- */
.footer-social {
    flex: 1;
    min-width: 180px;
}

.footer-social a {
    color: #fff;
    font-size: 22px;
    margin-right: 15px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

.footer-social i {
    /* To ensure icons are consistent */
    display: inline-block;
}

/* --- Terms and Conditions Link --- */
.footer-social .term {
    margin-top: 20px;
}

.footer-social .term a {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--muted);
    text-decoration: none;
}

.footer-social .term a:hover {
    color: var(--accent);
    transform: none; /* Override the icon hover transform for the text link */
}

.footer-social .term i {
    margin-right: 8px;
}


/* --- Footer Bottom Bar (Copyright) --- */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2); /* Darker bottom bar */
    text-align: center;
    padding: 15px 20px;
    font-size: 13px;
    color: var(--muted);
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column; /* Stack columns vertically on mobile */
        text-align: center;
        gap: 30px;
    }
    
    .footer-logo,
    .footer-contact,
    .footer-social {
        min-width: 100%; /* Full width for stacked columns */
    }

    .footer-contact p,
    .footer-logo p {
        padding: 0 10%; /* Center text slightly */
    }

    .footer-social {
        /* Center social icons */
      
        flex-direction: column;
        align-items: center;
    }
    
    .footer-social h3 {
        width: 100%; /* Center the heading */
    }
    
    .footer-social > a {
        /* Align icons in a row under the heading */
        margin: 0 10px;
    }

    .footer-social .term {
        margin-top: 25px;
    }
    
    .footer-social .term a {
        justify-content: center; /* Center the Terms link */
    }
}