*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* .first-phase {
    background: lightgreen;
    height: 100vh;
    width: 100%;
}
.Role{
    margin-top: 70px;
} */

body, html {
  height: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Hero Section */
.hero {
  display: flex;
  height: 100vh;
  color: #CCF381;
}

/* Left side - Purple */
.left-side {
  background-color: #5C2EFF; /* Vibrant Purple */
  flex: 1;
  color: #ffffff;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  padding: 30px 40px;
}

.left-side h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.left-side p {
  font-size: 1.2rem;
  max-width: 400px;

}

/* Right side - Light Green */
.right-side {
  background-color: #D7F75B; /* Light Green */
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.right-side img {
  max-width: 80%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.logo {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
}
/* ...existing code... */
.skills-section {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  margin: 60px 0;
  gap: 40px;
}

.skill-card {
  background: #f8f8ff;
  border-radius: 16px;
  padding: 32px 28px;
  max-width: 420px;
  box-shadow: 0 2px 12px rgba(90, 63, 251, 0.06);
  flex: 1;
}

.skill-title {
  color: #5a3ffb;
  font-size: 3rem;
  font-weight: 700;
  margin: 16px 0 12px 0;
}

.skill-desc {
  background: #e5e1fa;
  color: #222;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.icon {
  margin-bottom: 8px;
}
/* ...existing code... */

.services {
  padding: 60px 20px;
  text-align: center;
  background-color: #f7f9fb;
}

.services h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #222;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  background-color: white;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.service-card h3 {
  margin-bottom: 15px;
  color: #333;
  font-size: 20px;
}

.service-card p {
  color: #555;
  font-size: 16px;
}

.contact {
  padding: 60px 20px;
  text-align: center;
  background-color: #f2f6f9;
}

.contact h2 {
  font-size: 30px;
  margin-bottom: 10px;
  color: #222;
}

.contact p {
  font-size: 16px;
  color: #444;
}

.contact-info {
  margin-top: 20px;
}

.contact-info a {
  color: #4a00e0;
  text-decoration: none;
  font-weight: 600;
}

.social-links {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  color: #333;
}

.social-links a:hover {
  background-color: #e0e7ff;
  color: #000;
}

.social-links i {
  font-size: 18px;
}

.projects {
  padding: 60px 20px;
  text-align: center;
  background-color: #f9fbff;
}

.projects h2 {
  font-size: 30px;
  margin-bottom: 10px;
  color: #333;
}

.projects p {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

.project-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  padding: 0 10px;
}

.project-card {
  background-color: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-card h3 {
  margin-bottom: 10px;
  color: #4a00e0;
}

.project-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.project-card a {
  display: inline-block;
  text-decoration: none;
  background-color: #4a00e0;
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.project-card a:hover {
  background-color: #6a00f0;
}

.more-projects {
  margin-top: 40px;
  text-align: center;
}

.more-projects p {
  font-size: 16px;
  color: #444;
  margin-bottom: 10px;
}

.more-projects a {
  color: #4a00e0;
  font-weight: bold;
  text-decoration: none;
  border: 2px solid #4a00e0;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.more-projects a:hover {
  background-color: #4a00e0;
  color: white;
}
/* Footer */
.site-footer {
  background-color: #f0f0f0;
  padding: 30px 20px;
  text-align: center;
  margin-top: 60px;
}

.footer-links {
  margin-bottom: 10px;
}

.footer-links a {
  margin: 0 12px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #4a00e0; /* Adjust to your brand color */
}

.footer-credit {
  font-size: 14px;
  color: #777;
}
/* ===========================
   RESPONSIVE DESIGN - ALL PAGES
   =========================== */

/* Mobile phones (max-width: 768px) */
@media (max-width: 768px) {
  /* General body adjustments */
  body {
    padding: 10px;
    font-size: 16px;
  }

  /* HERO SECTION */
  .hero {
    flex-direction: column;
    height: auto;
  }
  .left-side, .right-side {
    flex: 1 1 100%;
    padding: 20px;
  }
  .left-side h1 {
    font-size: 2rem;
  }
  .left-side p {
    font-size: 1rem;
    max-width: 100%;
  }
  .right-side img {
    width: 90%;
    height: auto;
    margin: 20px auto;
  }
  .logo {
    position: static;
    margin-bottom: 15px;
  }

  /* SKILLS SECTION */
  .skills-section {
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
    padding: 0 10px;
  }
  .skill-card {
    max-width: 100%;
  }
  .skill-title {
    font-size: 2rem;
  }

  /* SERVICES */
  .service-grid {
    grid-template-columns: 1fr;
  }

  /* PROJECTS */
  .project-grid {
    grid-template-columns: 1fr;
  }

  /* CONTACT */
  .social-links {
    flex-direction: column;
    gap: 10px;
  }

  /* FOOTER */
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}

/* Tablets (max-width: 1024px) */
@media (max-width: 1024px) {
  .hero {
    flex-wrap: wrap;
    height: auto;
  }
  .services .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .projects .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}




