* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* home */
.home {
  animation: fadeIn 1s ease-in-out;
}
.hero {
  position: relative;
  background-color: transparent;
  width: 100%;
  margin: auto;
  padding: 20px 20px;
  overflow: hidden;
}
.hero-container {
  width: 100%;
  margin: auto;
  display: flex;
  padding: 50px;
  background-color: transparent;
  animation: fadeIn 1s ease-in-out;
  flex-direction: column-reverse;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}
.hero-text {
  flex: 1;
  text-align: center;
  padding: 0 px;
}
.hero-text h1 {
  font-size: clamp(33px, 6vw, 43px);
  color: #468d8c;
  margin-bottom: 15px;
}
.hero-text h1 span {
  color: #5fa9a8;
}
.hero-text p {
  font-size: clamp(17px, 3vw, 20px);
  line-height: 1.5;
  max-width: 90%;
  margin: auto;
  color: #468d8c;
}
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: clamp(26px, 5vw, 34px);
  }
  .hero-text p {
    font-size: clamp(15px, 2.8vw, 16px);
    max-width: 95%;
  }
}
@media (max-width: 480px) {
  .hero-text h1 {
    font-size: clamp(28px, 8vw, 30px);
    margin-bottom: 10px;
  }
  .hero-text p {
    font-size: clamp(15px, 3.5vw, 16px);
    max-width: 100%;
    line-height: 1.4;
  }
  .hero-text {
    padding: 0 15px;
  }
}
@media (min-width: 320px) and (max-width: 450px) {
  .hero-text h1 {
    font-size: clamp(30px, 7vw, 40px);
  }
}
.hero-buttons {
  display: flex;
  margin-top: 30px;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.btn.primary {
  background-color: #5fa9a8;
  color: #fff;
}

.btn.primary:hover {
  text-decoration: 2px underline #ffffff;
}

.btn.outline {
  border: 2px solid #5fa9a8;
  color: #5fa9a8;
  background: transparent;
}
.btn.outline:hover {
  background-color: #5fa9a8;
  box-shadow: 5px 5px 5px #5fa9a8;
  color: white;
}

.btn .icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
@media (max-width: 480px) {
  .btn {
    font-size: 0.9rem;
    padding: 10px 20px;
  }

  .btn .icon {
    width: 18px;
    height: 18px;
    margin-right: 6px;
  }
}
.hero-image .image-wrapper {
  position: relative;
  width: 100%;
  max-width: 280px;
  height: auto;
}
.hero-image img {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #5fa9a8;
  box-shadow: 3px 5px 24px #5fa9a8;
}
.svg-icons .icon {
  border: 0px solid black;
  box-shadow: 3px 2px 10px #5fa9a8;
}
.svg-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.svg-icons .icon {
  position: absolute;
  width: 40px;
  height: 40px;
  animation: float 6s ease-in-out infinite;
  opacity: 0.8;
}
@media (max-width: 480px) {
  .svg-icons .icon {
    width: 30px;
    height: 30px;
  }
  .hero-buttons {
    justify-content: center;
    display: flex;
  }
}
@media (max-width: 768px) {
  .hero-buttons {
    justify-content: center;
    display: flex;
  }
}
.svg-icons .top-left {
  top: -15px;
  left: -15px;
}
.svg-icons .top-right {
  top: -15px;
  right: -15px;
}
.svg-icons .bottom-left {
  bottom: -15px;
  left: -15px;
}
.svg-icons .bottom-right {
  bottom: -15px;
  right: -15px;
}
.cta-section {
  text-align: center;
  padding: 80px 20px;
  background: #5fa9a8;
  color: #fff;
  opacity: 0.7;
}
.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #fff;
}
.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}
.cta-section .btn.primary {
  padding: 12px 30px;
  background-color: #fff;
  color: #5fa9a8;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
}
.cta-section .btn.primary:hover {
  background-color: #5fa9a8;
  color: #fff;
  border: 4px solid #fff;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@media (min-width: 768px) {
  .hero-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .hero-text {
    text-align: left;
  }
  .hero-text p {
    margin-left: 0;
  }
}
.linkedin-contact a.btn {
  margin-top: 10px;
  display: inline-block;
  text-decoration: none;
  color: #0077b5;
  border: 2px solid #0077b5;
  padding: 10px 20px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.linkedin-contact a.btn:hover {
  background-color: #0077b5;
  color: white;
}

/* about */
.container {
  width: 100%;
  margin: auto;
  height: min-content;
  padding: 25px 20px;
  animation: fadeIn 1s ease-in-out;
}
h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 50px;
  color: #003b73;
}
.about-wrapper {
  display: flex;
  flex-direction: column-reverse;
  gap: 40px;
  align-items: center;
  background-color: transparent;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  padding: 40px;
  animation: fadeIn 1s ease-in-out;
}
.about-text {
  flex: 1;
}
.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 15px;
}
.about-text strong {
  color: #5fa9a8;
}
.about-img img {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #5fa9a8;
  box-shadow: 3px 5px 24px #5fa9a8;
}
.skills {
  text-align: center;
  margin-top: 40px;
  width: 100%;
}
.skills h3 {
  font-size: 40px;
  margin-bottom: 30px;
  color: #5fa9a8;
}
.skills-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.skills-list span:hover {
  background-color: transparent;
  color: #5fa9a8;
  border: 2px solid #5fa9a8;
}
.skills-list span {
  background-color: #5fa9a8;
  color: #fff;
  padding: 12px 15px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
}
@media (min-width: 768px) {
  .about-wrapper {
    flex-direction: row;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* project , home*/
.projects {
  background-color: transparent;
  padding: 0px 20px;
}
:root {
  --primary-seagreen: #5fa9a8;
  --light-grey-bg: #f8f8f8;
  --dark-text: #333333;
  --medium-text: #666666;
  --white: #ffffff;
  --shadow-base: rgba(0, 0, 0, 0.1);
  --shadow-hover: rgba(0, 0, 0, 0.2);
}
.projects-section {
  padding: 80px 0;
}
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  flex-wrap: nowrap;
}
.section-tagline {
  font-size: 1em;
}
.section-heading {
  font-size: 25px;
  color: #468d8c;
  font-weight: 700;
}
.view-all-services-btn {
  padding: 14px 23px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 2px solid #5fa9a8;
  background-color: #5fa9a8;
  transition: all 0.3s ease;
  color: white;
  border-radius: 50px;
  transition: background-color 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: auto;
}
.view-all-services-btn .arrow-icon {
  background-color: #5fa9a8;
  color: #fff;
  border-radius: 50%;
  width: 23px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2em;
  font-weight: bold;
  color: white;
  transition: background-color 0.3s ease;
}
.view-all-services-btn:hover {
  transform: scale(1.06);
}
.view-all-services-btn:hover {
  background-color: transparent;
  border: 2px solid #5fa9a8;
  color: #5fa9a8;
}
.view-all-services-btn:hover .arrow-icon {
  background-color: #fff;
  color: #5fa9a8;
  font-size: 25px;
  font-weight: 900;
  margin-bottom: 5px;
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 3%;
  animation: fadeIn 1s ease-in-out;
}
@media (min-width: 768px) {
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .project-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.project-card {
  background-color: transparent;
  border-radius: 10px;
  overflow: hidden;
  animation: fadeIn 1s ease-in-out;
  box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
  box-shadow: 0.4s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  position: relative;
}
.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px var(--shadow-hover);
}
.project-category-top {
  background-color: var(--primary-seagreen);
  color: var(--white);
  padding: 25px 20px;
  text-align: center;
}
.project-category-top h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}
.project-content-bottom {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.project-content-bottom img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}
.project-content-bottom p {
  font-size: 0.95rem;
  color: var(--medium-text);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
  text-align: center;
}
.project-btn {
  display: inline-block;
  background-color: #5fa9a8;
  transition: all 0.3s ease;
  color: white;
  padding: 10px 18px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  text-decoration: none;
}
.project-card:hover {
  transform: scale(1.06);
}
.project-btn:hover {
  background-color: transparent;
  border: 2px solid #5fa9a8;
  color: #5fa9a8;
}
@media (max-width: 992px) {
  .services-header {
    flex-direction: column;
    align-items: center;
  }
  .section-heading {
    font-size: 25px;
    text-align: center;
    width: 100%;
  }
  .view-all-services-btn {
    max-width: 160px;
    padding: 10px 23px;
    margin-top: 8px;
    font-size: 0.95em;
    margin-left: 0;
  }
  .view-all-services-btn .arrow-icon {
    width: 23px;
    height: 20px;
  }
  .projects-section {
    padding: 60px 0;
  }
  .project-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .project-category-top h3 {
    font-size: 1.3rem;
  }
  .project-content-bottom img {
    height: 180px;
  }
  .project-content-bottom p {
    font-size: 0.9rem;
  }
  .project-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
  .contact-me-btn {
    padding: 12px 30px;
    font-size: 1.1rem;
  }
}
@media (max-width: 768px) {
  .services-header {
    margin-bottom: 30px;
    gap: 15px;
  }
  .section-heading {
    font-size: 20px;
  }
  .view-all-services-btn {
    max-width: 280px;
    margin-top: 1px;
    padding: 12px 25px;
    font-size: 0.9em;
  }
  .view-all-services-btn .arrow-icon {
    width: 22px;
    height: 22px;
  }
}
@media (max-width: 480px) {
  .services-header {
    margin-bottom: 25px;
    gap: 10px;
  }
  .section-heading {
    font-size: 14px;
  }
  .view-all-services-btn {
    max-width: 250px;
    padding: 10px 20px;
    font-size: 0.85em;
  }
  .view-all-services-btn .arrow-icon {
    width: 20px;
    height: 20px;
  }
  .projects-section {
    padding: 40px 0;
  }
  .project-category-top {
    padding: 20px 15px;
  }
  .project-content-bottom {
    padding: 15px;
  }
  .project-content-bottom img {
    height: 150px;
  }
  .contact-me-btn {
    padding: 10px 25px;
    font-size: 1rem;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hori {
  color: #5fa9a8;
  margin-bottom: 30px;
  box-shadow: 2px 2px 15px 5px #5fa9a8;
  opacity: 0.9;
}

/* contact */
.contact h2 {
  text-align: center;
  font-size: 2rem;
  color: #5fa9a8;
  margin-bottom: 15px;
}
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  animation: fadeIn 1s ease-in-out;
  flex-direction: column-reverse;
  flex-direction: column;
  gap: 15px;
}
.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}
.contact-form .btn {
  background-color: #5fa9a8;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: medium;
  text-align: center;
  align-items: center;
  padding: 15px 15px;
  cursor: pointer;
}
.contact-form .btn:hover {
  border: 2px solid #5fa9a8;
  border-radius: 5px;
  color: #5fa9a8;
  font-weight: 600;
  background-color: transparent;
  text-decoration: underline #5fa9a8;
}
.contact-info {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
}
.contact-info a {
  color: #5fa9a8;
  margin-top: 2px;
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}
