/* Furakan Landing Page CSS */
:root {
  --primary-color: #00A19D; /* Teal accent color */
  --secondary-color: #0F3057;
  --text-color: #333;
  --light-color: #f9f9f9;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
}

a {
  text-decoration: none;
  color: var(--primary-color);
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
  line-height: 1.2;
}

p {
  margin-bottom: 1rem;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background-color: #fff;
  box-shadow: var(--box-shadow);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 1.5rem;
}

.nav-links a {
  color: var(--text-color);
  transition: color 0.3s ease;
}

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

.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 5px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn:hover {
  background-color: #008c89;
  transform: translateY(-3px);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: #fff;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 161, 157, 0.05), rgba(0, 161, 157, 0.1));
  height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero-content {
  max-width: 600px;
  margin-right: 2rem;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
}

.hero h1 span {
  color: var(--primary-color);
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.hero-image {
  max-width: 500px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

/* Intro Section */
.intro {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2rem;
  color: var(--secondary-color);
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}

.section-title h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  height: 4px;
  width: 50px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.intro-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* Features Section */
.features {
  padding: 5rem 0;
  background-color: rgba(0, 161, 157, 0.05);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  background-color: rgba(0, 161, 157, 0.1);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1.5rem;
}

.feature-icon i {
  font-size: 2rem;
  color: var(--primary-color);
}

.feature-card h3 {
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

/* Screenshots Section */
.screenshots {
  padding: 5rem 0;
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.screenshot-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  background-color: #eee;
  aspect-ratio: 9/16;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  color: #777;
}

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

/* Get Code Section */
.get-code {
  padding: 5rem 0;
  background-color: rgba(0, 161, 157, 0.05);
  text-align: center;
}

.get-code-content {
  max-width: 700px;
  margin: 0 auto;
}

.get-code .btn {
  margin-top: 2rem;
}

/* Contact Section */
.contact {
  padding: 5rem 0;
}

.contact-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-form {
  margin-top: 2rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-control {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

textarea.form-control {
  height: 150px;
}

/* Footer */
.footer {
  background-color: var(--secondary-color);
  color: #fff;
  padding: 2rem 0;
  text-align: center;
}

.footer a {
  color: #fff;
}

.social-icons {
  display: flex;
  justify-content: center;
  margin: 1.5rem 0;
}

.social-icons a {
  color: #fff;
  margin: 0 0.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
}

.social-icons a:hover {
  background-color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 991px) {
  .hero {
    height: auto;
    padding: 120px 0 60px;
  }
  
  .hero-content {
    margin-right: 0;
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .hero-flex {
    flex-direction: column;
  }
  
  .hero-image {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    padding: 1rem;
  }
  
  .logo {
    margin-bottom: 1rem;
  }
  
  .nav-links li {
    margin: 0 0.5rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .feature-card {
    padding: 1.5rem;
  }
}

.lang-switch{display:flex;gap:.25rem;margin-left:1rem}
.lang-btn{
  background:none;border:none;font-weight:600;cursor:pointer;
  padding:.25rem .5rem
}
.lang-btn:hover{color:var(--primary-color)}
