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

html {
  scroll-behavior: smooth;
}

body {
  background: #111;
  color: #fff;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-top: 30px;
}

/* TYPOGRAPHY SPACING */
h1, h2, h3, h4, h5, h6, p {
  margin-bottom: 1em;
}

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

/* NAVBAR */
.viar-navbar {
  position: sticky;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  padding: 0.5rem 2rem;   /* changed from 1rem to 0.5rem */
  z-index: 1000;
  text-transform: uppercase;
}


.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 2px;
  color: #fff;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
}

/* Distortion Hover Effect */
.distort {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  position: relative;
  display: inline-block;
  transition: all 0.2s ease;
}

.distort::before {
  content: attr(href);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #2196f3;
  transform: scale(1.1) rotate(1deg);
  opacity: 0;
  z-index: -1;
  transition: 0.3s;
  filter: blur(1px);
}

.distort:hover::before {
  opacity: 0.5;
  transform: scale(1.2) rotate(-2deg);
}

.distort:hover {
  color: #fff;
  letter-spacing: 1px;
}

/* Hamburger toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle .bar {
  width: 25px;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #111;
    flex-direction: column;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
  }

  .nav-menu.active {
    max-height: 500px;
    padding: 1rem 0;
  }

  .nav-menu li {
    text-align: center;
    padding: 10px 0;
  }
}

/* HERO SECTION */
.hero-section {
  height: 100vh;
  background: linear-gradient(145deg, #0e0e0e, #1a1a1a);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(33, 150, 243, 0.2), transparent 70%);
  animation: pulse 6s infinite alternate;
  z-index: 0;
}

@keyframes pulse {
  from {
    transform: scale(1);
    opacity: 0.4;
  }
  to {
    transform: scale(1.2);
    opacity: 0.7;
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1000px;
  padding: 0 20px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 400;
  text-transform: none;
  opacity: 0;
  animation: fadeIn 2s ease-out forwards;
}

.hero-line2 {
  font-size: 2.5rem;
  color: #2196f3;
  margin-top: 10px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0);}
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #ccc;
  opacity: 0;
  animation: fadeIn 2.5s ease-out forwards;
  animation-delay: 0.5s;
}

.hero-btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: #2196f3;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-family: 'Playfair Display SC', serif;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px #2196f3;
}

.hero-btn:hover {
  background: #fff;
  color: #2196f3;
  box-shadow: 0 0 20px #2196f3;
}

.hero-btn.small {
  padding: 0.5rem 1.2rem;
  font-size: 0.9rem;
}

/* HOW WE HELP SECTION */
.how-we-help {
  background: #121212;
  padding: 60px 20px;
  text-align: center;
}

.how-we-help h2 {
  font-family: 'Playfair Display SC', serif;
  color: #2196f3;
  font-size: 3rem;
}

.how-we-help p {
  max-width: 800px;
  margin: 0 auto 40px;
  color: #ccc;
  font-size: 1.2rem;
  line-height: 1.6;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .grid-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .grid-container {
    grid-template-columns: 1fr;
  }
}

.grid-card {
  background: #1e1e1e;
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #333;
}

.grid-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #2196f3;
}

.grid-card img {
  width: 60px;
  margin-bottom: 15px;
}

.grid-card h3 {
  font-family: 'Playfair Display SC', serif;
  font-size: 1.3rem;
  color: #2196f3;
}

.grid-card p {
  color: #ccc;
  font-size: 0.95rem;
}

.grid-card.learn-more {
  background: #2196f3;
  color: #fff;
}

.grid-card.learn-more h3,
.grid-card.learn-more p {
  color: #fff;
}

/* CONTACT SECTION */
.contact-section {
  background: #121212;
  padding: 80px 20px;
  text-align: center;
}

.contact-section h2 {
  font-family: 'Playfair Display SC', serif;
  color: #2196f3;
  font-size: 3rem;
}

.contact-section p {
  color: #ccc;
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border-radius: 8px;
  border: none;
  background: #1e1e1e;
  color: #fff;
  font-size: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #777;
}

.contact-form button {
  background: #2196f3;
  color: #fff;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 50px;
  font-family: 'Playfair Display SC', serif;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background: #fff;
  color: #2196f3;
  box-shadow: 0 0 20px #2196f3;
}

/* ABOUT US SECTION */
.about-us {
  background: #121212;
  padding: 60px 20px;
  color: #ccc;
  text-align: center;
}

.about-us h2 {
  font-family: 'Playfair Display SC', serif;
  color: #2196f3;
  font-size: 3rem;
}

.about-us .intro {
  font-size: 1.2rem;
  color: #ddd;
}

.about-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.about-box {
  background: #1e1e1e;
  padding: 30px;
  border-radius: 8px;
  border: 1px solid #333;
  transition: transform 0.3s ease;
}

.about-box:hover {
  transform: scale(1.03);
  box-shadow: 0 0 15px #2196f3;
}

.about-box h3 {
  color: #2196f3;
  font-family: 'Playfair Display SC', serif;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.about-box p,
.about-box ul li,
.about-extra p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
}

.about-box ul {
  list-style: none;
  padding: 0;
}

.about-box ul li {
  margin-bottom: 10px;
}

.about-extra h3 {
  color: #2196f3;
  font-family: 'Playfair Display SC', serif;
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.7rem;
}

/* FAQS SECTION */
.faqs-section {
  background: #121212;
  padding: 60px 20px;
  text-align: center;
}

.faqs-section h2 {
  font-family: 'Playfair Display SC', serif;
  color: #2196f3;
  font-size: 3rem;
}

.faq-item {
  margin-bottom: 15px;
  text-align: left;
}

.faq-question {
  width: 100%;
  background: #1e1e1e;
  color: #2196f3;
  font-family: 'Playfair Display SC', serif;
  font-size: 1.2rem;
  padding: 15px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-align: left;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #2196f3;
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #1e1e1e;
  border-radius: 0 0 5px 5px;
  transition: max-height 0.3s ease;
  padding: 0 20px;
}

.faq-answer p {
  color: #ccc;
  margin: 15px 0;
  font-size: 1rem;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 15px 20px;
}

/* FAQ Form */
.faq-form {
  margin-top: 50px;
  text-align: center;
}

.faq-form h3 {
  color: #2196f3;
  font-family: 'Playfair Display SC', serif;
  margin-bottom: 20px;
  font-size: 2rem;
}

.faq-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
}

.faq-form input,
.faq-form textarea {
  padding: 12px 15px;
  border-radius: 5px;
  border: none;
  background: #1e1e1e;
  color: #fff;
  font-size: 1rem;
}

.faq-form textarea {
  resize: vertical;
  min-height: 120px;
}

.faq-form button {
  padding: 12px 25px;
  background: #2196f3;
  color: #fff;
  border: none;
  font-family: 'Playfair Display SC', serif;
  font-size: 1.1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-form button:hover {
  background: #fff;
  color: #2196f3;
  box-shadow: 0 0 15px #2196f3;
}

/* BLOGS SECTION */
.blogs-section {
  background: #121212;
  padding: 60px 20px;
  text-align: center;
}

.blogs-section h2 {
  font-family: 'Playfair Display SC', serif;
  color: #2196f3;
  font-size: 3rem;
}

.blogs-section .coming-soon {
  color: #ccc;
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.5;
}

.coming-soon-box {
  display: inline-block;
  padding: 15px 40px;
  background: #1e1e1e;
  color: #2196f3;
  border: 2px solid #2196f3;
  font-family: 'Playfair Display SC', serif;
  font-size: 1.5rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.coming-soon-box:hover {
  background: #2196f3;
  color: #fff;
  cursor: default;
}

/* NEWSLETTER SECTION */
.newsletter-section {
  background: #1a1a1a;
  padding: 60px 20px;
  text-align: center;
}

.newsletter-section h2 {
  font-family: 'Playfair Display SC', serif;
  color: #2196f3;
  font-size: 3rem;
}

.newsletter-section p {
  color: #ccc;
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.5;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.newsletter-form input[type="email"] {
  padding: 12px 20px;
  width: 100%;
  max-width: 400px;
  border-radius: 50px;
  border: none;
  font-size: 1rem;
}

.newsletter-form button {
  background: #2196f3;
  color: #fff;
  border: none;
  padding: 12px 40px;
  border-radius: 50px;
  font-family: 'Playfair Display SC', serif;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: #fff;
  color: #2196f3;
  box-shadow: 0 0 15px #2196f3;
}

/* FOOTER */
.viar-footer {
  background: #111;
  color: #fff;
  padding: 2rem;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-container > div {
  flex: 1 1 200px;
}

.footer-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.footer-contact-icon,
.social-icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 5px;
}

.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  margin-top: 1rem;
  border-top: 1px solid #333;
  padding-top: 1rem;
}

.footer-bottom a {
  color: #2196f3;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* PRIVACY POLICY & LEGAL PAGES */
.privacy-section {
  background: #f5f4fa;
  color: #333;
  padding: 80px 20px;
  text-align: center;
}

.privacy-container {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  text-align: left;
}

.privacy-container h1,
.privacy-container h2 {
  color: #2196f3;
  font-family: 'Playfair Display SC', serif;
  margin-bottom: 20px;
}

.privacy-container p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}

.privacy-container ul {
  list-style: disc inside;
  margin-bottom: 20px;
}

.privacy-container ul li {
  margin-bottom: 10px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 1rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 15px 20px;
}

