/* Reset default browser styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Global styles */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #953bd1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

h1, h2, h3 {
  margin-bottom: 20px;
}

p {
  margin-bottom: 10px;
}

a {
  color: #953bd1;
  text-decoration: none;
}

ul {
  list-style: none;
}

.companyHeading {
    font-size: 50px;
    font-weight: 900;
}

/* Header */
header {
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

nav ul {
  display: flex;
  justify-content: flex-end;
  padding: 10px;
}

nav ul li {
  margin-right: 20px;
}

/* Hero Section */
#hero {
  background: url('hero-image.jpg') center/cover no-repeat;
  height: 400px;
  display: flex;
  align-items: center;
  text-align: center;
}

#hero h1 {
  color: #fff;
  font-size: 36px;
  margin-bottom: 20px;
}

#hero p {
  color: #fff;
  margin-bottom: 30px;
}

.btn {
  background-color: #337ab7;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #23527c;
}

/* Services Section */
#services {
  background-color: #f9f9f9;
  padding: 50px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service {
  background-color: #fff;
  border-radius: 4px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.service img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

/* About Section */
#about {
  background-color: #fff;
  padding: 50px 0;
}

/* Free Help Section */
#free-help {
  background-color: #f9f9f9;
  padding: 50px 0;
  text-align: center;
}

/* Brands section styles */
#brands {
  background-color: #fff;
  padding: 80px 0;
  text-align: center;
}

.brands-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  overflow: hidden;
}

.brands-grid img {
  width: 120px;
  height: auto;
  margin: 0 10px;
  animation: slideLeft 10s linear infinite;
}

@keyframes slideLeft {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
/* About Founder Section */
#about-founder {
  background-color: #fff;
  padding: 50px 0;
  text-align: center;
}

.social-links img {
  width: 30px;
  height: 30px;
  margin: 0 10px;
}

/* Contact Section */
#contact {
  background-color: #f9f9f9;
  padding: 50px 0;
  text-align: center;
}

form input,
form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

form textarea {
  height: 120px;
}

.btn {
  background-color: #337ab7;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #23527c;
}

/* Footer */
footer {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

footer p {
  margin-bottom: 0;
}
