/* style.css */

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background-color: #fff;
  color: #111;
}

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

.header {
  padding-top: 40px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
}

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

.nav-container{
  width: "100%";
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.hero-text h2 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.2rem;
  color: #555;
  max-width: 500px;
}

.hero-image img {
  max-width: 300px;
  border-radius: 16px;
}

.brands ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 40px 0;
  list-style: none;
  justify-content: center;
  font-weight: 500;
  color: #777;
}

.about {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  padding: 60px 0;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.metrics {
  display: flex;
  gap: 40px;
  font-size: 1.2rem;
  color: #333;
}

.metrics div strong {
  display: block;
  font-size: 2rem;
  color: #000;
}

.services h2,
.timeline h2,
.portfolio h2,
.contact h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

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

.card {
  background: #fafafa;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.timeline ul li {
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
  color: #444;
}

.timeline ul li span {
  font-weight: 600;
  color: #000;
}

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

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

.testimonial blockquote {
  font-style: italic;
  background: #f5f5f5;
  padding: 40px;
  border-left: 4px solid #ccc;
  margin: 60px 0;
  font-size: 1.1rem;
  color: #444;
}

.testimonial footer {
  margin-top: 10px;
  font-weight: 600;
}

.contact {
  text-align: center;
  padding: 80px 0;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background: #000;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 20px;
  transition: background 0.3s;
}

.btn:hover {
  background: #333;
}



.links a {
  margin-right: 15px;
  text-decoration: none;
  color: #4a00e0;
  font-weight: 500;
  transition: color 0.2s;
}

.links a:hover {
  color: #7c2ae8;
}

.navlink-footer{
  color:#fff
}
.support-block {
  margin-bottom: 40px;
}

.cgv-content section {
  margin-bottom: 30px;
}

.cgv-content hr {
  margin: 30px 0;
  border: none;
  border-top: 1px solid #ccc;
}

.cgv-content a {
  color: #4a00e0;
  text-decoration: none;
  font-weight: 500;
}

.cgv-content a:hover {
  text-decoration: underline;
}

.footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  font-size: 0.9rem;
}