* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "Poppins", sans-serif;
}

.navbar {
  width: 100%;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgb(255, 255, 255);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 20px 0 rgba(31, 38, 135, 0.301);
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.name {
  color: #333;
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}

.nav-content {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-content li a {
  color: #555;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 0;
  transition: color 0.3s ease;
  position: relative;
}

.nav-content li a:hover {
  color: #9b59b6;
}

.nav-content li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #222;
  transition: width 0.3s ease;
}

.nav-content li a:hover::after {
  width: 100%;
}

.profile {
  height: 50px;
  width: 50px;
  border: 2px solidrgb(112, 108, 108) 0;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: gray;
}

.profile-con {
  position: relative;
}

.profile-img {
  width: 50px;
  object-fit: cover;
  border-radius: 50%;
  margin-top: 6px;
}
.profile-span {
  padding: 4px 10px;
  background-color: rgb(242, 247, 248);
  box-shadow: 0 4px 20px 0 rgba(31, 38, 135, 0.301);
  font-size: 14px;
  position: absolute;
  bottom: -35px;
  border-radius: 5px;
  left: -4px;
}

.profile-img:hover {
  background-color: burlywood;
}

.profileText {
  display: none;
}

/* Mobile menu button (hidden by default) */
.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 24px;
  color: #333;
}

/* Responsive styles */
@media (max-width: 768px) {
  .navbar-container {
    padding: 0 15px;
  }

  .nav-content {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 80%;
    height: calc(100vh - 70px);
    background: white;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    padding-top: 30px;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  }

  .nav-content.active {
    left: 0;
  }

  .menu-toggle {
    display: block;
    order: 1;
  }

  .name {
    order: 2;
    margin-right: auto;
    margin-left: 20px;
    font-size: 20px;
  }

  .profile {
    order: 3;
    height: 35px;
    width: 35px;
  }

  .fa-user {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .name {
    font-size: 18px;
  }

  .navbar {
    padding: 10px 0;
  }

  .nav-content {
    top: 60px;
    height: calc(100vh - 60px);
  }
}

.Banner-Section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 40px 0;
  gap: 50px;
  padding: 40px;
  background: linear-gradient(135deg, #f9f9ff 0%, #f0f2ff 100%);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.image img {
  width: 400px;
  height: 400px;
  border-radius: 10px;
  object-fit: cover;
  /* border-radius: 50%; */
  border: 8px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.design {
  width: 100%;
}

.content {
  margin-bottom: 30px;
}

.ui {
  color: #6c63ff;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.intro {
  font-size: 42px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 5px;
  line-height: 1.2;
}

.name-highlight {
  color: #6c63ff;
}

.sub-intro {
  font-size: 18px;
  color: #718096;
  font-weight: 500;
}

.description {
  font-size: 16px;
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 30px;
}

.action-buttons {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.cv {
  background-color: #5a52d5;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 50px;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
}
.contact {
  background-color: #5a52d5;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 50px;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
}

.cv:hover {
  background-color: #53b56f;
  transform: translateY(-2px);

  box-shadow: 0 6px 20px rgba(108, 99, 255, 0.4);
}

.contact:hover {
  background-color: #53b56f;
  transform: translateY(-2px);

  box-shadow: 0 6px 20px rgba(108, 99, 255, 0.4);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .Banner-Section {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .image img {
    width: 250px;
    height: 250px;
  }

  .action-buttons {
    justify-content: center;
  }
}
.about-section {
  width: 100%;
  display: flex;
  margin: 50px 0px;
  gap: 30px;
  background: linear-gradient(135deg, rgb(235, 231, 231));
  /* #ff9a9e 0%, 
    #fad0c4 25%, 
    #fbc2eb 50%, 
    #a6c1ee 75%, 
    #a18cd1 100%); */
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background-color: #f8f1f1;
}

.about-container {
  width: 70%;
  padding: 20px;
}

.about {
  color: #2c3e50;
  font-size: 32px;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 2px solid #3498db;
  display: inline-block;
}

.about-image {
  width: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  margin-top: 100px;
}

.about-img {
  width: 100%;
  max-width: 300px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 5px solid white;
  border-radius: 50%;
  filter: contrast(500px);
}

.skill-section {
  display: flex;
  justify-content: flex-start;
  gap: 30px;
  list-style-type: none;
  margin-bottom: 30px;
  padding: 0;
  border-bottom: 3px solid #d4d2d2;
  font-size: 18px;
}

.tab-link {
  padding: 10px 20px;
  cursor: pointer;
  font-weight: 600;
  color: #7f8c8d;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}

.tab-link:hover {
  color: #3498db;
}

.active-tab {
  color: #3498db;
  /* border-bottom: 3px solid #3498db; */
}

.tab-content {
  background-color: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  display: none;
}

.activeLink {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.content-heading {
  color: #2c3e50;
  font-size: 24px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

/* Skills Grid */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 15px;
}

.skill-item {
  background-color: #3498db;
  color: white;
  padding: 10px 15px;
  border-radius: 20px;
  text-align: center;
  font-weight: 500;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.skill-item:hover {
  transform: translateY(-3px);
  background-color: #2980b9;
}

/* Experience List */
.experience-list {
  list-style-type: none;
  padding: 0;
}

.experience-list li {
  padding: 10px 0;
  border-bottom: 1px dashed #eee;
  display: flex;
  align-items: flex-start;
}

.experience-icon {
  color: #3498db;
  margin-right: 10px;
  font-weight: bold;
}

/* Education Section */
.education-item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.education-item:last-child {
  border-bottom: none;
}

.education-title {
  color: #3498db;
  font-size: 18px;
  margin-bottom: 5px;
}

.education-details {
  color: #555;
  margin: 5px 0;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
  }

  .about-container,
  .about-image {
    width: 100%;
  }

  .about-image {
    order: -1;
    margin-bottom: 30px;
  }

  .skill-section {
    justify-content: space-around;
    gap: 10px;
  }

  .tab-link {
    padding: 8px 10px;
    font-size: 14px;
  }
}

.service-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
}

.service-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.3)" d="M0,0 L100,0 L100,100 L0,100 Z"></path></svg>');
  opacity: 0.1;
  z-index: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 700;
}

.section-subtitle {
  text-align: center;
  color: #7f8c8d;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 60px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  text-align: left;
  z-index: 1;
}

.backend,
.backend-subheader {
  text-align: left;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.card-icon {
  height: 120px;
  display: flex;
  align-items: center;

  background: linear-gradient(135deg, #6e8efb 0%, #a777e3 100%);
  padding: 20px;
  overflow: hidden;
}

.card-icon img {
  width: 100%;
  object-fit: cover;
}

.service-card:nth-child(2) .card-icon {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.service-card:nth-child(3) .card-icon {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.service-card h3 {
  padding: 0px 25px;
  color: #2c3e50;
  font-size: 1.5rem;
  margin: 20px 0 10px;
}

.card-content {
  padding: 0 25px 30px;
}

.card-content h4 {
  color: #3498db;
  font-size: 1.1rem;
  text-align: left;
  margin-bottom: 15px;
}

.card-content p {
  color: #7f8c8d;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  padding: 8px 0;
  color: #34495e;
  position: relative;
  padding-left: 25px;
}

.service-features li::before {
  content: "✓";
  color: #2ecc71;
  position: absolute;
  left: 0;
  font-weight: bold;
}

@media (max-width: 768px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2rem;
  }
}

.footer-section {
  width: 100%;
  display: flex;
  justify-content: space-around;
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 40px 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  flex-wrap: wrap;
  gap: 20px;
  border-radius: 5px;
}

.footer {
  flex: 1;
  min-width: 250px;
  padding: 0 15px;
}

.footer-title {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  color: #fff;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: #3498db;
}

.footer-text {
  margin: 10px 0;
  color: #bdc3c7;
  line-height: 1.6;
}

.linkdinLink, .githubLink{
  text-decoration: none;
  color: #0a66c2;
  font-size: 14px;
}

.Mobile-title,
.email-title {
  font-weight: 600;
}

.social-link {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-link:hover {
  color: #3498db;
}

.fa-github,
.fa-linkedin,
.fa-phone,
.fa-envelope {
  width: 20px;
  text-align: center;
}

/* For Font Awesome icons */
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css");

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer-section {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 40px 20px;
  }

  .footer {
    text-align: left;
    margin-bottom: 20px;
    width: 100%;
    padding: 0;
  }

  .footer-title {
    text-align: left;
    width: 100%;
  }

  .footer-title::after {
    left: 0;
    transform: none;
  }

  .social-link {
    justify-content: flex-start;
  }
}

/* ---------------------profile-section------------------------------- */

.profile-container {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.profile-card {
  width: 600px;
  background-color: whitesmoke;
  border-radius: 12px;

  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.profile-image {
  display: flex;
  justify-content: center;
  align-items: center;
  /* margin: 20px 0; */
  gap: 50px;
  padding: 15px;

  border-radius: 15px;
}

.profile-image img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 8px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.profile-content {
  padding: 25px;
  text-align: center;
}

.profile-content h1 {
  margin: 0;
  font-size: 28px;
  color: #333;
  font-weight: 600;
}

.profile-content .title {
  color: #666;
  font-size: 18px;
  margin: 5px 0;
}

.profile-content .description {
  color: #777;
  font-size: 16px;
  line-height: 1.5;
  margin: 15px 0;
}

/* .social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  color: #555;
  font-size: 20px;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #00a8ff;
}

/* For Font Awesome icons (add this link in your HTML head) */
/* @import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css"); */

 .social-media {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
  padding: 20px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border-radius: 6px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  background-color: white;
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.social-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
} 

 .about-content {
  text-align: center;
  margin: 8px 0;
  color: rgb(73, 69, 69);
  margin-top: 10px;
} 
.about-content h1 {
  margin-bottom: 10px;
  color: rgb(117, 114, 114);
  margin-top: 10px;
}  

.project-container {
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 20px;
  margin: 8px 0;
  color: rgb(73, 69, 69);
 
}


/* Specific styles for each platform */
.linkedin {
  color: #0a66c2;
}
.linkedin:hover {
  background-color: #eff6fe;
}

.github {
  color: #333;
}
.github:hover {
  background-color: #f5f5f5;
}

.gmail {
  color: #d44638;
}
.gmail:hover {
  background-color: #fee8e6;
}

.call {
  color: #34b7f1;
}
.call:hover {
  background-color: #e8f7fe;
}

.aboutDesc{
  
  font-weight: bolder;
  color: rgb(107, 104, 104);
 
}


