/* Global Styles */
:root {
  --primary-color: #2465b0; /* Main blue color from the image */
  --secondary-color: #f39c12;
  --accent-color: #e74c3c;
  --light-color: #f4f4f4;
  --dark-color: #333;
  --text-color: #555;
  --white: #fff;
  --grey: #ddd;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

body {
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-color);
}

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

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

h1,
h2,
h3,
h4 {
  color: var(--dark-color);
  margin-bottom: 15px;
}

section {
  padding: 60px 0;
}

.btn-app {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  padding: 12px 25px;
  border-radius: 30px;
  margin: 10px 5px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.btn-app:hover {
  background: #1a4c8a; /* Darker shade of the primary color */
  transform: translateY(-2px);
}

.btn-app i {
  margin-right: 8px;
}

/* Header */
header {
  background-color: var(--primary-color);
  padding: 10px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}

.logo-container {
  display: flex;
  align-items: center;
  height: 40px;
}

.logo {
  height: 40px;
  max-width: 100%;
  margin-right: 15px;
  transform: scale(2.5);
  transform-origin: left center;
}

header h1 {
  color: var(--white);
  margin: 0;
  font-size: 24px;
}

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

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

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  color: var(--white);
  transition: all 0.3s ease;
}

nav ul li a:hover {
  color: #ddd;
}

/* Hero Section */
.hero {
  padding: 120px 0 60px;
  background: linear-gradient(to bottom, var(--primary-color), #1a4c8a);
  color: var(--white);
}

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

.hero-content {
  flex: 1;
  padding-right: 30px;
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero h1 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 20px;
}

.hero p {
  margin-bottom: 30px;
  font-size: 1.2rem;
}

/* Features Section */
.features {
  background-color: var(--white);
  text-align: center;
}

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

.feature-card {
  background: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  background: var(--primary-color);
  color: var(--white);
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50%;
  margin: 0 auto 20px;
  font-size: 28px;
}

.feature-card h3 {
  margin: 15px 0;
}

.learn-more {
  display: inline-block;
  margin-top: 15px;
  color: var(--primary-color);
  font-weight: 500;
}

.learn-more:hover {
  text-decoration: underline;
}

/* Benefits Section */
.benefits {
  background-color: #f9f9f9;
  text-align: center;
}

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

.benefit-item {
  padding: 20px;
}

.benefit-item i {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

/* Screenshots Section */
.screenshots {
  background-color: var(--white);
  text-align: center;
}

.screenshot-carousel {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 30px 0;
  gap: 20px;
}

.screenshot {
  flex: 0 0 auto;
  width: 250px;
}

.screenshot img {
  width: 100%;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.carousel-controls {
  margin-top: 20px;
}

.carousel-controls button {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}

/* Download Section */
.download {
  background: linear-gradient(to bottom, #f9f9f9, var(--white));
  text-align: center;
  padding: 80px 0;
}

.app-qr {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  gap: 50px;
}

.qr-code img {
  width: 150px;
  height: 150px;
  border: 1px solid var(--grey);
  border-radius: 10px;
}

/* Footer */
footer {
  background: var(--dark-color);
  color: var(--light-color);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-logo img {
  height: 40px;
  margin-bottom: 15px;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: var(--light-color);
}

.footer-links ul li a:hover {
  color: var(--grey);
}

.footer-contact p {
  margin-bottom: 10px;
}

.footer-contact a {
  color: var(--white);
  text-decoration: none;
}

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

.social-icons {
  margin-top: 20px;
}

.social-icons a {
  color: var(--white);
  margin-right: 15px;
  font-size: 20px;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #444;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero .container {
    flex-direction: column;
  }

  .hero-content {
    padding-right: 0;
    text-align: center;
    margin-bottom: 30px;
  }

  .feature-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .app-qr {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  nav ul {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  section {
    padding: 40px 0;
  }
}

/* About Section Styles */
.about {
  padding: 80px 0;
  background-color: #f8f9fa;
  text-align: center;
}

.about h2 {
  margin-bottom: 50px;
  color: #1a237e;
  font-size: 2.5rem;
  font-weight: 700;
}

.about-grid {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.about-text {
  padding: 20px;
}

.about-text h3 {
  color: #1a237e;
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px;
}

.stat-item {
  text-align: center;
  padding: 30px 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-item h4 {
  color: #1a237e;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a237e;
  margin: 10px 0;
}

.stat-item p {
  color: #666;
  font-size: 1rem;
}

.about-values {
  padding: 40px 0;
}

.about-values h3 {
  text-align: center;
  color: #1a237e;
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 600;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.value-item {
  text-align: center;
  padding: 30px 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.value-item:hover {
  transform: translateY(-5px);
}

.value-item i {
  font-size: 2.5rem;
  color: #1a237e;
  margin-bottom: 20px;
}

.value-item h4 {
  color: #1a237e;
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.value-item p {
  color: #666;
  font-size: 1rem;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-stats {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .about h2 {
    font-size: 2rem;
  }

  .about-text h3 {
    font-size: 1.5rem;
  }
}

/* Section Intro Styles */
.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.2rem;
  color: #666;
  line-height: 1.6;
}

/* Download Section Styles */
.download-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.download-text h3 {
  color: #1a237e;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.download-text ul {
  list-style: none;
  text-align: left;
  padding-left: 128px;
}

.download-text ul li {
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: #333;
}

.download-text ul li i {
  color: #1a237e;
  margin-right: 10px;
}

/* Social Links Styles */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-link {
  color: #1a237e;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #0d47a1;
}
