body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  color: #333;
  scroll-behavior: smooth;
}

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

.navbar {
  background: #333;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  height: 50px;
  background: linear-gradient(to right, #89A8B2, #E5E1DA);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
}

.nav-links li {
  display: flex;
  align-items: center;
}
.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-links i {
  font-size: 18px; 
}


.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 20px;
  color: white;
  background: linear-gradient(to right, #89A8B2, #E5E1DA);
  text-align: center;
}

.hero-content {
  max-width: 50%;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  text-align: center;
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  background: #9694FF;
  color: #6200ea;
  text-decoration: none;
  font-weight: bold;
  border-radius: 25px;
  font-size: 1rem;
  transition: all 0.3s ease;
  gap: 8px;
}

.btn i {
  font-size: 1.2rem;
}

.btn:hover {
  background: #6200ea;
  color: #ffffff;
}

.btn.secondary {
  background: #6200ea;
  color: #EBEAFF;
}

.btn.secondary:hover {
  background: #ffffff;
  color: #6200ea;
}

@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }
}


.about-section {
  padding: 50px 20px;
  background: linear-gradient(to right, #89A8B2, #E5E1DA);
  color: #333;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.about-text {
  flex: 2;
  background: rgba(255, 255, 255, 0.9); 
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
}

.about-text h2 {
  font-size: 2.5rem;
  color: #4335A7; 
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #444; 
}

.about-text ul {
  list-style: disc;
  padding-left: 20px;
}

.about-text ul li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #555; 
}

.about-image {
  max-width: 50%;
  border-radius: 30px 75px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.ab-text {
  background-color: #4335A7;
  color: white;
  border-radius: 50px 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.about-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #333;
  text-transform: uppercase;
  font-weight: bold;
}

.about-section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #007bff;
  margin: 10px auto;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-image {
    max-width: 80%;
  }

  .about-text {
    padding: 15px;
  }
}


.projects-section {
  background: #f4f4f4;
  padding: 50px 20px; 
  background: linear-gradient(to right, #89A8B2, #E5E1DA);

}

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

.project-card {
  background: #EBEAFF;
  padding: 20px;
  border: 1px solid #ddd;
  text-align: center;
  border-radius: 25px;
}
.project-card img {
  width: 100%;
  height: 200px; 
  object-fit: cover; 
  border-radius: 20px; 
}

/* Contact Section */
.contact-section {
  background: linear-gradient(to right, #89A8B2, #E5E1DA);
  color: white;
  padding: 50px 20px;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
}

/* Contact Info */
.contact-info {
  flex: 1;
  max-width: 400px;
  text-align: left;
}

.contact-info p {
  font-size: 1.2rem;
  margin: 10px 0;
}

.social-icons a {
  color: white;
  font-size: 1.5rem;
  margin: 0 10px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #ffd700;
}

.btn-download {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: #1F509A;
  color: #4b0082; 
  font-weight: bold;
  border-radius: 15px;
  text-decoration: none;
}

.btn-download:hover {
  background: white;
}

/* Contact Form */
.contact-form {
  flex: 1;
  max-width: 500px;
}

.contact-form input, .contact-form textarea {
  width: 80%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 5px;
  border: none;
  background: #f1f1f1;
  font-size: 1rem;
}

.contact-form button {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  background: #1F509A;
  color: #4b0082; 
  font-weight: bold;
  font-size: 1.2rem;
  border: none;
  border-radius: 15px;
  cursor: pointer;
}

.contact-form button:hover {
  background: white;
}

/* Responsiveness */
@media screen and (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
  }

  .contact-info {
    max-width: 100%;
    text-align: center;
  }

  .contact-form {
    max-width: 100%;
  }

  .contact-form input, .contact-form textarea {
    width: 100%;
  }

  .contact-form button {
    width: 100%;
  }

  .social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
  }

  .btn-download {
    margin-top: 30px;
    padding: 12px 25px;
  }
}



/* Section Container */
.section {
  width: 100%;
  margin: auto;
  padding: 50px 20px;
  background: linear-gradient(to right, #89A8B2, #E5E1DA);
  color: #333;
}

/* Title Styling */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #2c3e50;
  text-transform: uppercase;
  font-weight: bold;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #3498db;
  margin: 10px auto;
  border-radius: 2px;
}

/* Skills Grid */
.skills {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* Individual Skill Card */
.skill {
  background: #ffffff;
  border-radius: 15px;
  text-align: center;
  padding: 30px 20px;
  width: 250px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #ddd;
}

.skill:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Skill Icon Styling */
.skill .icon {
  margin-bottom: 15px;
}

.skill .icon img {
  width: 250px;
  height: 150px;
  border-radius: 10px;
}

/* Text Inside Cards */
.skill h3 {
  font-size: 1.5rem;
  color: #34495e;
  margin-bottom: 10px;
}

.skill p {
  font-size: 1rem;
  color: #7f8c8d;
  line-height: 1.6;
}

/* Responsiveness */
@media screen and (max-width: 768px) {
  .skills {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .skill {
    width: 100%;
    max-width: 300px;
  }
}

.footer{
  background: linear-gradient(to right, #89A8B2, #E5E1DA);
} 

.container{
  padding: 10px;
}