/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f9f9f9;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Buttons */
a {
  text-decoration: none;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #1e90ff, #00bcd4);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 1rem;
  transition: background 0.3s ease;
  text-align: center;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #00bcd4, #1e90ff);
}

.btn-secondary {
  display: inline-block;
  background: #333;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 1rem;
  transition: background 0.3s ease;
  text-align: center;
}

.btn-secondary:hover {
  background: #555;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #1e90ff, #00bcd4);
  color: white;
  text-align: center;
  padding: 100px 20px;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.cta-buttons a {
  margin: 0 10px;
}

/* Features Section */
.features {
  padding: 60px 20px;
  background: #f4f4f4;
  text-align: center;
}

.features h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #333;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.card {
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.card .icon {
  font-size: 2rem;
  color: #00bcd4;
  margin-bottom: 10px;
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.card p {
  font-size: 1rem;
  color: #555;
}

/* Portfolio Section */
.portfolio {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.portfolio h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #333;
}

.projects {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.project {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.project img {
  width: 100%;
  height: auto;
}

.project h3 {
  font-size: 1.2rem;
  margin: 10px 0;
}

.project p {
  font-size: 1rem;
  color: #555;
}

/* Testimonials Section */
.testimonials {
  padding: 60px 20px;
  background: #f4f4f4;
  text-align: center;
}

.testimonials h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #333;
}

.testimonial-slider {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.testimonial {
  max-width: 400px;
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.testimonial p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 10px;
  font-style: italic;
}

.testimonial h4 {
  font-size: 1.2rem;
  color: #333;
}

/* About Section */
.about {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.about .container {
  max-width: 1200px;
  margin: 0 auto;
}

.about h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #333;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  text-align: left;
  justify-content: center;
}

.about-content img {
  width: 300px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.about-text {
  flex: 1;
  font-size: 1.2rem;
  color: #555;
  line-height: 1.8;
}

.about-text h3 {
  font-size: 1.5rem;
  color: #00bcd4;
  margin-top: 15px;
}

.about-text p {
  margin-bottom: 20px;
}

.about-text strong {
  color: #1e90ff;
}


/* Contact Section */
.contact {
  padding: 60px 20px;
  background: #f4f4f4;
  text-align: center;
}

.contact form {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact input,
.contact textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.contact button {
  width: 100%;
  background: #00bcd4;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact button:hover {
  background: #1e90ff;
}

/* Footer */
footer {
  padding: 20px;
  background: #333;
  color: white;
  text-align: center;
}

footer .socials a {
  color: #00bcd4;
  margin: 0 10px;
  text-decoration: none;
}

footer .socials a:hover {
  text-decoration: underline;
}

