body {
  transition: all 0.3s ease;
}

/* Navigation Bar Styles */
.navbar {
  position: fixed;
  top: 10px;
  left: 50%;
  width: 80%;
  transform: translate(-50%);
  /* height: 80px; */
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
  border-radius: 30px;
  /* border: 1px solid rgba(0, 0, 0, 0.5); */
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);

  /* transform: translateY(10px); */
}

.navbar.shrink {
  width: 30%;
  /* max-width: 1200px; */
  left: 50%;
  transform: translateX(-50%);
  /* height: 60px; */
  /* border-radius: 30px; */
  margin-top: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  /* border: 1px solid rgba(255, 255, 255, 0.2); */
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 50px;
  width: 100%;
}

.navbar.shrink .nav-container {
  padding: 0 30px;
}

.logo h2 {
  font-size: 24px;
  font-weight: 700;
  color: #33658a;
  margin: 0;
  transition: all 0.3s ease;
}

.logo h2 a {
  text-decoration: none;
  color: rgba(51, 101, 138);
  font-size: 18px;
}

.navbar.shrink .logo h2 {
  font-size: 20px;
}

.logo h2 img {
  width: 15%;
}

.mode-toggle {
  display: flex;
  align-items: center;
}

.mode-btn {
  background: none;
  border: none;
  font-size: 20px;
  color: #33658a;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
}

.mode-btn:hover {
  background-color: rgba(51, 101, 138, 0.1);
  transform: scale(1.1);
}

.navbar.shrink .mode-btn {
  width: 40px;
  height: 40px;
  font-size: 18px;
}

/* Dark mode styles */

body.dark-mode {
  background-color: rgb(0, 0, 0);
  color: white;
}

/* body.dark-mode > * {
  background-color: inherit !important;
  color: inherit !important;
}

body.dark-mode .timeline-content {
  background-color: inherit !important;
 }
body.dark-mode .timeline-content h3{
  color: #2a5478 !important;
 }
body.dark-mode .timeline-content *{
  color: white !important;

 } */
body.dark-mode .navbar {
  background-color: rgb(0, 0, 0);
  /* border: 1px solid rgba(255, 255, 255, 0.5); */
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.4);
}

body.dark-mode .navbar.shrink {
  background-color: rgb(0, 0, 0);
  /* border: 1px solid rgba(255, 255, 255, 0.5); */
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.4);
}

body.dark-mode .logo h2 a {
  color: #ffffff;
}

body.dark-mode .mode-btn {
  color: #ffffff;
}

body.dark-mode .mode-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive navbar */
@media (max-width: 768px) {
  .navbar {
    height: 70px;
  }

  .navbar.shrink {
    width: 95%;
    height: 55px;
    margin-top: 10px;
  }

  .nav-container {
    padding: 0 20px;
  }

  .navbar.shrink .nav-container {
    padding: 0 15px;
  }

  .logo h2 {
    font-size: 20px;
  }

  .navbar.shrink .logo h2 {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .navbar {
    height: 60px;
  }

  .navbar.shrink {
    width: 90%;
    height: 50px;
  }

  .logo h2 {
    font-size: 18px;
  }

  .navbar.shrink .logo h2 {
    font-size: 16px;
  }

  .mode-btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

section.Landing {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: calc((100vh) - 130px);
  padding-top: 170px;
  gap: 7px;
}

section.Landing span {
  font-size: 20px;
  background-color: #33658a;
  color: white;
  padding: 2px 10px;
  border-radius: 20px;
}

section.Landing h2 {
  font-size: 60px;
}

section.Landing p {
  font-size: 22px;
}

section.Landing .MediaIcons {
  gap: 10px;
  display: flex;
}

section.Landing .MediaIcons a {
  padding: 10px;
  /* background-color: #33658a; */
  color: #33658a;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 22px;
  position: relative;
  transition: 0.4s;
}

section.Landing .MediaIcons a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 0;
  height: 0;
  border-radius: 10px;
  border: 3px solid #ddd;
  transition: 0.4s;
}

section.Landing .MediaIcons a:hover::before {
  opacity: 1;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 600px) {
  section.Landing h2 {
    font-size: 45px;
  }
}

.MyData {
  padding: 150px 0 100px;
}

.MyData .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.MyData .container .photo {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40%;
}

.MyData .container .photo .imageWrapper {
  position: relative;
  width: 80%;
}

/* 993 */
.MyData .container .photo .imageWrapper img {
  width: 100%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  position: relative;
  z-index: 1;
}

.MyData .container .photo .imageWrapper::after {
  content: "";
  position: absolute;
  top: -30px;
  left: -30px;
  width: 100%;
  height: 100%;
  border: 8px solid #33658a;
  border-radius: 20px;
  transition: 0.4s;
}

.MyData .container .photo .imageWrapper:hover::after {
  background-color: rgba(0, 0, 0, 0.2);
  border: 8px solid transparent;
  top: 0;
  left: 0;
  z-index: 1000;
}

.MyData .container .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  /* background-color: red; */
  width: 50%;
}

@media (max-width: 993px) {
  .MyData .container {
    flex-direction: column;
  }

  .MyData .container .photo {
    width: 100%;
  }

  .MyData .container .info {
    width: 100%;
  }
}

.MyData .container .info .hello {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-bottom: 1px dashed red;
}

.MyData .container .info .hello h2 {
  position: relative;
}

.MyData .container .info .hello h2::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 2px;
  width: 6%;
  height: 3px;
  background-color: #33658a;
  border-radius: 10px;
}

.MyData .container .info .data {
  display: flex;
  align-items: center;
  gap: 20px;
}

.MyData .container .info .data ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0;
  padding: 0;
  font-weight: 700;
  flex-grow: 1;
}

.MyData .container .info .data ul span {
  font-weight: 300;
}

.MyData .container .info .btns {
  display: flex;
  align-items: center;
  gap: 20px;
}

.MyData .container .info .btns a {
  padding: 12px 20px;
  background-color: #33658a;
  text-decoration: none;
  color: white;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
  gap: 10px;
  transition: 0.4s;
}

.MyData .container .info .btns a:hover {
  color: #33658a;
  background-color: #ddd;
}

/* Portfolio Section Styles */
.portfolio {
  padding: 100px 0;
  background-color: #f8f9fa;
}

.portfolio .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.portfolio .section-header h2 {
  font-size: 42px;
  color: #333;
  margin-bottom: 15px;
  position: relative;
}

.portfolio .section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #33658a;
  border-radius: 10px;
}

.portfolio .section-header p {
  font-size: 18px;
  color: #666;
  margin-bottom: 0;
}

.portfolio-filter {
  text-align: center;
  margin-bottom: 50px;
}

.filter-btn {
  background: transparent;
  border: 2px solid #33658a;
  color: #33658a;
  padding: 10px 25px;
  margin: 5px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: #33658a;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(51, 101, 138, 0.3);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  background: white;
}

.portfolio-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.portfolio-img {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.portfolio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-img img {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(51, 101, 138, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-content {
  text-align: center;
  color: white;
  padding: 20px;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-content {
  transform: translateY(0);
}

.portfolio-content h3 {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 600;
}

.portfolio-content p {
  font-size: 16px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.portfolio-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.portfolio-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: white;
  color: #33658a;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 18px;
}

.portfolio-link:hover {
  background: #33658a;
  color: white;
  transform: scale(1.1);
}

body.dark-mode .portfolio {
  background-color: black;
}

body.dark-mode .portfolio .section-header h2 {
  color: white;
}

body.dark-mode .portfolio .section-header p {
  color: rgba(255, 255, 255, 0.5);
}

body.dark-mode .portfolio .portfolio-filter button {
  color: white;
}

/* Experience Section Styles */
.experience {
  padding: 100px 0;
  background-color: #f8f9fa;
}

.experience .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.experience .section-header h2 {
  font-size: 42px;
  color: #333;
  margin-bottom: 15px;
  position: relative;
}

.experience .section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #33658a;
  border-radius: 10px;
}

.experience .section-header p {
  font-size: 18px;
  color: #666;
  margin-bottom: 0;
}

.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(transparent, #33658a, transparent);
}

.timeline-item {
  position: relative;
  margin-bottom: 50px;
  width: 50%;
}

.timeline-item:nth-child(odd) {
  left: 0;
  padding-right: 60px;
}

.timeline-item:nth-child(even) {
  left: 50%;
  padding-left: 60px;
}

.timeline-icon {
  position: absolute;
  top: 0;
  width: 50px;
  height: 50px;
  background-color: #33658a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  z-index: 10;
}

.timeline-item:nth-child(odd) .timeline-icon {
  right: -25px;
}

.timeline-item:nth-child(even) .timeline-icon {
  left: -25px;
}

.timeline-content {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  position: relative;
}

.timeline-content h3 {
  color: #33658a;
  font-size: 24px;
  margin-bottom: 10px;
}

.timeline-content .company {
  color: #666;
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}

.timeline-content .duration {
  color: #999;
  font-size: 14px;
  display: block;
  margin-bottom: 15px;
}

.timeline-content p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.achievements {
  list-style: none;
  padding: 0;
  margin: 0;
}

.achievements li {
  color: #666;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.achievements li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #33658a;
  font-weight: bold;
}

/* Skills Section Styles */
.skills {
  padding: 100px 0;
  background-color: white;
}

.skills .section-header {
  text-align: center;
  margin-bottom: 60px;
  color: white;
}

.skills .section-header h2 {
  font-size: 42px;
  color: #333;
  margin-bottom: 15px;
  position: relative;
}

body.dark-mode .experience {
  color: white;
  background-color: rgb(0, 0, 0);
}

body.dark-mode .experience .section-header h2 {
  color: white;
}

body.dark-mode .experience .section-header p {
  color: rgba(255, 255, 255, 0.5);
}

body.dark-mode .experience .timeline-content {
  background-color: black;
  box-shadow: 0px 8px 32px rgba(255, 255, 255, 0.4);
}

body.dark-mode .experience .timeline-content *:not(h3) {
  color: white;
}

.skills .section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #33658a;
  border-radius: 10px;
}

.skills .section-header p {
  font-size: 18px;
  color: #666;
  margin-bottom: 0;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.skill-category {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.skill-category h3 {
  color: #33658a;
  font-size: 24px;
  margin-bottom: 25px;
  text-align: center;
}

.skill-item {
  margin-bottom: 20px;
}

.skill-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-weight: 600;
}

.skill-info span:first-child {
  color: #333;
}

.skill-info .percentage {
  color: #33658a;
}

.skill-bar {
  height: 8px;
  background-color: #e9ecef;
  border-radius: 4px;
  overflow: hidden;
}

.skill-progress {
  height: 100%;
  background-color: #33658a;
  border-radius: 4px;
  transition: width 1s ease;
  width: 0;
}

body.dark-mode .skills {
  background-color: black;
  /* border-top: 1px solid white; */
}

body.dark-mode .skills .section-header h2 {
  color: white;
}

body.dark-mode .skills .section-header p {
  color: rgba(255, 255, 255, 0.5);
}

body.dark-mode .skills .skill-category {
  background-color: black;
  box-shadow: 0px 8px 32px rgba(255, 255, 255, 0.4);
}

body.dark-mode .skills .skill-category *:not(h3) {
  color: white;
}

/* Responsive Design for Experience & Skills */
@media (max-width: 768px) {
  .timeline::before {
    left: 30px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    left: 0;
    padding-left: 70px;
  }

  .timeline-icon {
    left: 5px !important;
  }

  .skills-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .experience .section-header h2,
  .skills .section-header h2 {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .timeline-content {
    padding: 20px;
  }

  .experience .section-header h2,
  .skills .section-header h2 {
    font-size: 28px;
  }

  .skill-category {
    padding: 20px;
  }
}

/* Services Section Styles */
.services-section {
  padding: 100px 0;
  background-color: white;
}

.services-section .section-title {
  font-size: 42px;
  color: #333;
  margin-bottom: 15px;
  position: relative;
}

.services-section .section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #33658a;
  border-radius: 10px;
}

.services-section .section-subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 50px;
}

.service-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.service-icon {
  width: 80px;
  height: 80px;
  background-color: #33658a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: white;
  font-size: 32px;
}

.service-card h3 {
  color: #333;
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 600;
}

.service-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
}

.service-card .btn-primary {
  background-color: #33658a;
  border-color: #33658a;
  padding: 12px 30px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.service-card .btn-primary:hover {
  background-color: #2a5478;
  border-color: #2a5478;
  transform: translateY(-2px);
}

body.dark-mode .services-section {
  background-color: black;
}

body.dark-mode .services-section h2 {
  color: white;
}

body.dark-mode .services-section p {
  color: rgba(255, 255, 255, 0.5);
}

body.dark-mode .services-section .service-card {
  background-color: black;
  box-shadow: 0px 8px 32px rgba(255, 255, 255, 0.4);
}

body.dark-mode .services-section .service-card h3 {
  color: rgba(255, 255, 255, 0.5);
}

body.dark-mode .services-section .service-card p {
  color: white;
}

/* Blog Section Styles */
.blog-section {
  padding: 100px 0;
  background-color: rgba(216, 223, 245, 0.082);
}

.blog-section .section-title {
  font-size: 42px;
  color: #333;
  margin-bottom: 15px;
  position: relative;
}

.blog-section .section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #33658a;
  border-radius: 10px;
}

.blog-section .section-subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 50px;
}

.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.blog-image {
  overflow: hidden;
  height: 200px;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-content {
  padding: 25px;
}

.blog-date {
  color: #33658a;
  font-size: 14px;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

.blog-card h3 {
  color: #333;
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}

.blog-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.read-more {
  color: #33658a;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #2a5478;
}

.read-more i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.read-more:hover i {
  transform: translateX(5px);
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.info-item i {
  width: 50px;
  height: 50px;
  background-color: #33658a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  margin-right: 20px;
  flex-shrink: 0;
}

.info-item h4 {
  color: #333;
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: 600;
}

.info-item p {
  color: #666;
  margin: 0;
}

body.dark-mode .blog-section {
  background-color: black;
}

body.dark-mode .blog-section h2 {
  color: white;
}

body.dark-mode .blog-section p {
  color: rgba(255, 255, 255, 0.5);
}

body.dark-mode .blog-section .blog-card {
  box-shadow: 0px 8px 32px rgba(255, 255, 255, 0.4);
  background-color: black;
}

body.dark-mode .blog-section .blog-card .blog-content *:not(span, a) {
  color: white;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
  .services-section .section-title,
  .blog-section .section-title,
  .contact-section .section-title {
    font-size: 32px;
  }

  .service-card {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .services-section .section-title,
  .blog-section .section-title,
  .contact-section .section-title {
    font-size: 28px;
  }

  .service-card {
    padding: 25px 15px;
  }
}

/* Hire Me Section Styles */
.hire-me-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  position: relative;
  /* overflow: hidden; */
}

.benefit-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #ffd700;
}

.benefit-card h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.benefit-card p {
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 0;
}

.contact-info {
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.contact-item i {
  margin-right: 10px;
  color: #ffd700;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  flex-grow: 1;
  cursor: pointer;
  margin: 10px 5px;
  padding: 12px 30px;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: block;
}

.cta-buttons .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

body.dark-mode #hire-me {
  background-image: linear-gradient(to right, blue, black 50%);
}

#hire-me .contact-info .contact-item {
  display: flex;
  gap: 20px;
  justify-content: center;
}

@media (max-width: 768px) {
  .benefit-card,
  .service-offer-card {
    margin-bottom: 20px;
  }

  .cta-buttons .btn {
    display: block;
    width: 100%;
    margin: 10px 0;
  }
}

body > *:not(.navbar) {
  border-bottom: 1px solid white;
}

/* .blob {
  width: 400px; height: 400px;
  overflow: hidden;
  border-radius: 33% 67% 70% 30% / 30% 30% 70% 70%;
  animation: morph 8s ease-in-out infinite;

}

@keyframes morph {
  0%   { border-radius: 33% 67% 70% 30% / 30% 30% 70% 70%; }
  50%  { border-radius: 57% 43% 30% 70% / 60% 40% 60% 40%; }
  100% { border-radius: 33% 67% 70% 30% / 30% 30% 70% 70%; }
} */

/* Section Container */
#Clients-Feedback {
  padding: 60px 0;
  background-color: #f9f9f9;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Section Header */
.Clients-Feedback-header {
  text-align: center;
  margin-bottom: 50px;
}

.Clients-Feedback-header h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 15px;
}

.Clients-Feedback-header .lins {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.Clients-Feedback-header .lins hr {
  width: 50px;
  border: 1px solid rgba(51, 101, 138);
  border-radius: 5px;
}

body.dark-mode .FeedBackCard {
  background-color: black;
  box-shadow: 0 5px 25px rgba(255, 255, 255, 0.363);
}

body.dark-mode .Clients-Feedback h2 {
  color: white;
}

body.dark-mode #Clients-Feedback {
  background-color: black;
}

body.dark-mode .clint-info h3 {
  color: white;
}

body.dark-mode .clint-info span {
  color: #dadada;
}

body.dark-mode .clint-info p {
  color: #cacaca;
}

#Clients-Feedback h2 {
  text-align: center;
  margin-bottom: 40px;
}

/* Feedback Cards Grid */
.FeedBackCards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 0 20px;
}

/* Individual Card */
.FeedBackCard {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.FeedBackCard:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

/* Client Info */
.clint-info {
  padding: 20px;
}

.clint-info h3 {
  margin-bottom: 5px;
  color: rgba(51, 101, 138);
  font-size: 1.2rem;
}

.clint-info span {
  display: block;
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 15px;
}

.clint-info p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #555;
  margin-bottom: 15px;
}

/* Stars */
.stars {
  color: #fcd34d;
  font-size: 1rem;
}

/* Pagination Dots */
#Clients-Feedback ul {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  list-style: none;
  padding: 0;
  gap: 10px;
}

#Clients-Feedback ul li {
  width: 12px;
  height: 12px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

#Clients-Feedback ul li.active-icon {
  background-color: rgba(51, 101, 138);
}
