.top{
    text-align:center;
    background-color: bisque;
    padding: 50px 20px;
}

/* about section */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(120deg, #eef2f3, #dfe9f3);
}

.about-wrapper {
  max-width: 1100px;
  margin: 60px auto;
  padding: 20px;
}

.about-card {
  display: flex;
  flex-wrap: wrap;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.image-section {
  flex: 1;
  min-width: 280px;
}

.image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-section {
  flex: 2;
  padding: 40px;
}

h1 {
  margin-top: 0;
  color: #111;
}

h2 {
  color: #444;
  margin-bottom: 10px;
}

p {
  color: #666;
  line-height: 1.7;
}

.block {
  margin-bottom: 25px;
  padding: 15px;
  border-left: 4px solid #4a90e2;
  background: #f9fbff;
  border-radius: 8px;
}

.mission {
  border-left-color: #27ae60;
}

.vision {
  border-left-color: #e67e22;
}

@media (max-width: 768px) {
  .about-card {
    flex-direction: column;
  }

  .content-section {
    padding: 25px;
  }
}

/* skill section */
.skills{
background:#f9f9f9;
padding:60px;
text-align:center;
font-size: 15px;
}

.skill-container{
display:flex;
gap:30px;
margin-top:30px;
justify-content:center;
font-size: 12px;

}

.skill{
background:white;
padding:20px;
width:200px;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
}


/* Services Section */
.services {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.section-title {
  font-size: 32px;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #777;
  margin-bottom: 40px;
}

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

/* Service Card */
.service-card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.service-card h3 {
  margin-bottom: 10px;
}

.service-card p {
  color: #555;
  font-size: 14px;
}

/* Hover Effect */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* portfolio section */
.container {
  display: flex;
  width: 85%;
  margin: 0 auto;
  padding: 60px 0;
}

.containe {
  width: 85%;
  margin: 0 auto;
  padding: 60px 0;
}

.process-text {
  justify-content: space-between;
  padding-right: 200px;
  padding-left: 20px;
  text-align: left;
  margin-top: 200px;
  margin-left: 100px;
  width: 2000px;
}

.process-card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-sizing: 200px;
  transition: 0.3s;
  margin-right: 20px;
}

.process-card:hover {
  transform: translateY(-5px);
}

.portfolio-top {
  text-align: center;
  margin-bottom: 40px;
  padding: 0px 300px;
}

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

.portfolio-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

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

.portfolio-item-2 {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.portfolio-item-2:hover {
  transform: translateY(+5px);
}

.img-placeholder {
  height: 250px;
  width: 100%;
}

.port-content {
  padding: 20px;
}

.port-content span {
  font-size: 0.8rem;
  color: #888;
}

.case-study {
  display: inline-block;
  margin-top: 10px;
  color: var(--purple);
  text-decoration: none;
  font-weight: bold;
}

.cta {
  background-color: #0d1b2a;
  color: white;
  text-align: center;
  padding: 80px 300px;
  justify-content: space-between;
}
.contain {
  justify-content: space-between;
  padding-top: 10px;
}

.btn-2 {
  display: flex;
  background-color: #7b3fe4;
  border-radius: 05px;
  padding: 12px 30px;
  color: rgb(246, 246, 246);
  font-size: 20px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  border: 0px;
  cursor: pointer;
}

/* Experience & Education Section */
body {
  font-family: Arial, sans-serif;
  background: #f5f5f5;
}

.timeline-section {
  padding: 50px;
  text-align: center;
}

.timeline-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background-color: #007bff;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
}

.timeline-item {
  padding: 20px;
  position: relative;
  width: 50%;
}

.timeline-item:nth-child(odd) {
  left: 0;
}

.timeline-item:nth-child(even) {
  left: 50%;
}

.timeline-content {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.timeline-content h3 {
  margin-top: 0;
}

.timeline-content .date {
  color: #007bff;
  font-weight: bold;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .timeline::after {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 50px;
    padding-right: 25px;
  }

  .timeline-item:nth-child(even),
  .timeline-item:nth-child(odd) {
    left: 0;
  }
}

/* testimonial */
.testimonials {
  text-align: center;
  padding: 40px;
  background: #f9f9f9;
}

.card {
  background: #fff;
  margin: 15px auto;
  padding: 20px;
  width: 280px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.card p {
  font-style: italic;
}

.card h4 {
  margin-top: 10px;
  color: #333;
}


/* contact section */
.contact {
  text-align: center;
  padding: 50px 20px;
  background: #f5f5f5;
}

.contact h2 {
  margin-bottom: 30px;
}

.contact-info p {
  margin: 5px 0;
  font-weight: bold;
}

.contact-form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-form input,
.contact-form textarea {
  width: 300px;
  padding: 10px;
  margin: 8px 0;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 16px;
}

.contact-form button {
  padding: 10px 25px;
  border: none;
  background-color: #007bff;
  color: white;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #0056b3;
}

/* Responsive */
@media screen and (max-width: 500px) {
  .contact-form input,
  .contact-form textarea {
    width: 90%;
  }
}

/* footer section */
.footer {
  background-color: #222;
  color: #fff;
  text-align: center;
  padding: 30px 20px;
}

.footer .social-links {
  margin-bottom: 15px;
}

.footer .social-links a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.footer .social-links a:hover {
  color: #007bff;
}

.footer p {
  font-size: 14px;
  margin: 0;
}













