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

/* Body and Basic Styles */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #000;
    color: white;
    text-align: center;
    padding-top: 100px;
}

/* Header and Navigation */
header {
    background-color: #111;
    padding: 30px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; 
    border-bottom: 1px solid white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    color: white;
    font-size: 24px;
    font-weight: bold;
    margin-left: 40px;
}

.nav-container {
    flex-grow: 1;  
    display: flex;
    justify-content: center;
    margin-left: -100px;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 100;
    font-size: 16px;
}

/* Language Toggle Button */
#language-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 10px;
    background-color: #fff;
    color: black;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    margin-right: 20px;
}

/* Hero Section */
.hero {
    background-image: url('assets/landing-page-main-image.png');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.hero h1 {
    font-weight: bold;
    font-size: 48px;
    margin-bottom: 20px;
}
.hero h2 {
    font-weight: bold;
    font-size: 48px;
    margin-bottom: 20px;
}
.hero p {
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #fff;
    color: black;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    border-radius: 20px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #ddd;
}
/* About Section */
.about {
  text-align: center;
  padding: 4rem 2rem;
  background: #000;
}

.about-title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.about-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.card {
  background: #222;
  padding: 1rem;
  border-radius: 10px;
  max-width: 300px;
  flex: 1;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.5);
}

.card h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.card img {
  width: 100%;
  border-radius: 8px;
}

.about-closing {
  font-size: 2.5rem;
  font-weight: bold;
  margin-top: 2rem;
  color: #fff;
}

/*How It Works Section*/
.how-it-works {
  padding: 80px 20px;
  text-align: center;
  background: #000;
  color: #fff;
}

.how-it-works h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.how-it-works .subtitle {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 40px;
}

.how-it-works .cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.how-it-works .card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.how-it-works .card:hover {
  transform: translateY(-5px);
}

.how-it-works .card img {
  width: 100%;
  max-width: 180px;
  margin: 0 auto 20px;
  display: block;
  border-radius: 8px;
}

.how-it-works .card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000;
}

.how-it-works .card p {
  font-size: 1rem;
  color: #555;
}
/* Pricing Section */
.pricing {
  padding: 80px 20px;
  text-align: center;
  background: url("assets/pricing-font.png") no-repeat center center/cover;
  color: #000;
}

.pricing h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #fff;
}

.pricing-container {
  display: flex;
  justify-content: center;
  gap: 80px; 
  flex-wrap: wrap;
}

.pricing-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 25px;
  width: 300px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  text-align: left;
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
}

.pricing-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.pricing-card .tag {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 8px;
  margin-bottom: 15px;
}

.pricing-card .tag.basic {
  background: #e0e0e0;
  color: #333;
}

.pricing-card .tag.advanced {
  background: #28a745;
  color: #fff;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  margin: 15px 0;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.pricing-card ul li {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #444;
}

.btn {
  display: block;
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
  text-align: center;
}

.btn-gray {
  background: #6c757d;
  color: #fff;
}

.btn-gray:hover {
  background: #5a6268;
}

.btn-green {
  background: #28a745;
  color: #fff;
}

.btn-green:hover {
  background: #218838;
}
/* Contact Section */

.contact {
  padding: 80px 20px;
  text-align: center;
  background: url("assets/Contact-font.png") no-repeat center center/cover;
  gap: 80px;
  margin-top: 10px;
}
.content h1 {
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
  margin: 0 auto 6px auto;
}
.content p {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-bottom: -10px;
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #fff;
}

.content .buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.content .buttons a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  display: block;
  text-align: center;
  color: white;
  padding: 18px 32px 14px 32px;
  border-radius: 30px;
  font-size: 1.2em;
  font-weight: 500;
  transition: background-color 0.3s;
  min-width: 180px;
  box-sizing: border-box;
}
.content .buttons .whatsapp-btn {
    background-color: #25D366;
}

.content .buttons .telegram-btn {
    background-color: #0088cc;
}

.content .buttons .telegram-btn:hover {
    background-color: #006db3;
}

.contact-logo {
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
  display: block;
}
/* Footer */
footer {
    background-color: #111;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
    text-align: center;
}

footer a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}
