* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  padding: 0;
  margin: 0;
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Cursor Trail (optional) */
.cursor-trail {
  position: fixed;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(114, 137, 218, 0.3);
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s ease;
  border: 2px solid rgba(114, 137, 218, 0.5);
}

/* Navigation */
nav {
  padding: 15px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: rgba(117, 117, 182, 0.25) 0px 2px 5px -1px,
    rgba(98, 102, 156, 0.685) 0px 1px 3px -1px;
  z-index: 1000;
  background-color: rgb(114, 137, 218);
  position: relative;
}

nav .logo {
  display: flex;
  align-items: center;
}

nav .logo img {
  height: 50px;
  width: auto;
  margin-right: 10px;
}

nav .logo h1 {
  font-size: 1.4rem;
  color: white;
  margin: 0;
}

nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin-left: 1.5rem;
}

nav ul li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 110%;
  font-weight: 400;
  padding: 4px 8px;
  border-radius: 5px;
  transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}

nav ul li a:hover {
  background-color: #6177c9;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger .line {
  width: 25px;
  height: 1px;
  background-color: #ffffff;
  display: block;
  margin: 7px auto;
  transition: all 0.3s ease-in-out;
}

.hamburger-active {
  transition: all 0.3s ease-in-out;
  transition-delay: 0.6s;
  transform: rotate(45deg);
}

.hamburger-active .line:nth-child(2) {
  width: 0px;
}

.hamburger-active .line:nth-child(1),
.hamburger-active .line:nth-child(3) {
  transition-delay: 0.3s;
}

.hamburger-active .line:nth-child(1) {
  transform: translateY(12px);
}

.hamburger-active .line:nth-child(3) {
  transform: translateY(-5px) rotate(90deg);
}

.menubar {
  position: fixed;
  top: 0;
  left: -60%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 60%;
  height: 100vh;
  padding: 20% 0;
  background: rgba(255, 255, 255, 0.98);
  transition: all 0.5s ease-in;
  z-index: 999;
}

.menubar.active {
  left: 0;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.menubar ul {
  padding: 0;
  list-style: none;
}

.menubar ul li {
  margin-bottom: 32px;
}

.menubar ul li a {
  text-decoration: none;
  color: #000;
  font-size: 95%;
  font-weight: 400;
  padding: 5px 10px;
  border-radius: 5px;
}

.menubar ul li a:hover {
  background-color: #f5f5f5;
}

/* Home Section */
.home {
  height: 93vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #23272a;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.hero-content img.hero-logo {
  height: 400px;
  border-radius: 20px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-content h1 {
  color: #ffffff;
  font-size: 5rem;
  margin: 0;
  margin-bottom: -20px;
  text-align: left;
  text-shadow: 0px 0px 5px rgba(226, 226, 226, 1);
}

.hero-text span {
  color: #7289da;
  text-shadow: 0px 0px 5px #7289da;
}

.hero-content p {
  color: #99aab5;
  width: 600px;
  text-align: left;
  margin-top: 20px;
}

.hero-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #ffffff;
  font-size: 21px;
  border-radius: 15px;
  width: 180px;
  height: 56px;
  font-weight: bold;
  transition: 0.3s;
  box-shadow: 0px 0px 3px 2px rgba(114, 137, 218, 0.5);
  background-color: #7289da;
  margin-top: 20px;
}

.hero-contact:hover {
  opacity: 0.7;
}

/* Scroll Down Animation */
.scrolldown {
  --color: #7289da;
  --sizeX: 30px;
  --sizeY: 50px;
  position: relative;
  width: var(--sizeX);
  height: var(--sizeY);
  border: calc(var(--sizeX) / 10) solid #7289da;
  border-radius: 50px;
  cursor: pointer;
}

.scrolldown::before {
  content: "";
  position: absolute;
  bottom: 30px;
  left: 50%;
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: var(--color);
  border-radius: 100%;
  animation: scrolldown-anim 2s infinite;
  box-shadow: 0px -5px 3px 1px #2a547066;
}

@keyframes scrolldown-anim {
  0% {
    opacity: 0;
    height: 6px;
  }
  40% {
    opacity: 1;
    height: 10px;
  }
  80% {
    transform: translate(0, 20px);
    height: 10px;
    opacity: 0;
  }
  100% {
    height: 3px;
    opacity: 0;
  }
}

.chevrons {
  padding: 6px 0 0 0;
  margin-left: -3px;
  margin-top: 48px;
  width: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.chevrondown {
  margin-top: -6px;
  position: relative;
  border: solid #7289da;
  border-width: 0 3px 3px 0;
  display: inline-block;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
}

.chevrondown:nth-child(odd) {
  animation: pulse 500ms ease infinite alternate;
}

.chevrondown:nth-child(even) {
  animation: pulse 500ms ease infinite alternate 250ms;
}

@keyframes pulse {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.5;
  }
}

/* Skills Section */
.skills {
  position: relative;
  padding: 120px 0;
  background-color: #23272a;
  min-height: 100vh;
}

.skills-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: #2c2f33;
  transform: skewY(-3deg);
  transform-origin: top left;
  z-index: 0;
}
:root{
  --primary-color: #7289da;
  --secondary-color: #99aab5;
  --background-color: #23272a;
  --background-color-alt: #2c2f33;
  --text-color: #ffffff;
}
.skills-content {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  gap: 60px;
  align-items: center;
}

.skills-left {
  flex: 1;
  max-width: 500px;
}

.skills-left h2 {
  color: #ffffff;
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 0px 0px 5px rgba(226, 226, 226, 0.5);
}

.skills-left h2 span {
  color: #7289da;
  text-shadow: 0px 0px 5px #7289da;
}

.skills-left p {
  color: #99aab5;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.see-more-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #7289da;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(114, 137, 218, 0.3);
}

.see-more-btn:hover {
  background-color: #6177c9;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(114, 137, 218, 0.4);
}

.skills-right {
  flex: 1;
}

/* Skills List */
.skills-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.skill-item {
  background: rgba(114, 137, 218, 0.1);
  border-radius: 15px;
  padding: 20px 25px;
  transition: all 0.3s ease;
  border-left: 4px solid #7289da;
}

.skill-item:hover {
  background: rgba(114, 137, 218, 0.15);
  transform: translateX(10px);
}

.skill-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.skill-item h3 {
  color: #ffffff;
  font-size: 1.3rem;
  margin: 0;
  font-weight: 600;
}

.skill-percentage {
  color: #7289da;
  font-size: 1.1rem;
  font-weight: 600;
}

.skill-bar {
  height: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.skill-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #7289da 0%, #5b6eae 100%);
  border-radius: 10px;
  transition: width 1s ease;
  box-shadow: 0 0 10px rgba(114, 137, 218, 0.5);
}

/* Projects Section */
.projects {
  position: relative;
  padding: 120px 0;
  background-color: var(--background-color);
  min-height: 100vh;
}

.projects-content {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

.projects-header {
  text-align: center;
  margin-bottom: 60px;
}

.projects-title {
  color: var(--text-color);
  font-size: 3.5rem;
  margin-bottom: 10px;
  text-shadow: 0px 0px 5px rgba(226, 226, 226, 0.5);
}

.projects-title span {
  color: var(--primary-color);
  text-shadow: 0px 0px 5px var(--primary-color);
}

.projects-subtitle {
  color: var(--secondary-color);
  font-size: 1.2rem;
}

/* Projects Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.project-card {
  background: var(--background-color-alt);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(114, 137, 218, 0.1);
  cursor: pointer;
}

.project-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(114, 137, 218, 0.3);
  border-color: rgba(114, 137, 218, 0.4);
}

.project-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(114, 137, 218, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-link {
  padding: 12px 30px;
  background: white;
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  transform: translateY(20px);
}

.project-card:hover .project-link {
  transform: translateY(0);
}

.project-link:hover {
  background: var(--background-color);
  color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.project-info {
  padding: 25px;
}

.project-info h3 {
  color: var(--text-color);
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.project-info p {
  color: var(--secondary-color);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 6px 15px;
  background: rgba(114, 137, 218, 0.2);
  color: var(--primary-color);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(114, 137, 218, 0.3);
  transition: all 0.3s ease;
}

.tag:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}
@media screen and (max-width: 790px) {
  .hamburger {
    display: block;
  }
  
  nav ul {
    display: none;
  }
  
  .hero-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .hero-content img.hero-logo {
    height: 250px;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .hero-content p {
    width: 100%;
    max-width: 400px;
  }
  
  .skills-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .skills-left {
    max-width: 100%;
    text-align: center;
  }
  
  .skills-left h2 {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
    margin-bottom: -10px;
  }
  
  .hero-content img.hero-logo {
    height: 180px;
  }
  
  .skills-left h2 {
    font-size: 2rem;
  }
  
  .skill-item {
    padding: 15px 20px;
  }
  
  .skill-item h3 {
    font-size: 1.1rem;
  }
}
/* Reviews Section */
.reviews {
  position: relative;
  padding: 120px 0;
  background-color: var(--background-color-alt);
  min-height: 70vh;
  overflow: hidden;
}
.reviews-content {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

.reviews-header {
  text-align: center;
  margin-bottom: 60px;
}

.reviews-title {
  color: var(--text-color);
  font-size: 3.5rem;
  margin-bottom: 10px;
  text-shadow: 0px 0px 5px rgba(226, 226, 226, 0.5);
}

.reviews-title span {
  color: var(--primary-color);
  text-shadow: 0px 0px 5px var(--primary-color);
}

.reviews-subtitle {
  color: var(--secondary-color);
  font-size: 1.2rem;
}

/* Marquee Container */
.marquee-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.marquee-track {
  display: flex;
  gap: 30px;
  animation: marquee 40s linear infinite;
  width: fit-content;
}

/* Pause animation on hover */
.marquee-container:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Review Card */
.review-card {
  min-width: 400px;
  max-width: 400px;
  background: rgba(114, 137, 218, 0.08);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(114, 137, 218, 0.2);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.review-card:hover {
  background: rgba(114, 137, 218, 0.12);
  border-color: rgba(114, 137, 218, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(114, 137, 218, 0.2);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.reviewer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color) 0%, #5b6eae 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.reviewer-details h3 {
  color: var(--text-color);
  font-size: 1.2rem;
  margin: 0 0 5px 0;
  font-weight: 600;
}

.reviewer-role {
  color: var(--secondary-color);
  font-size: 0.9rem;
  margin: 0;
}

.review-date {
  color: var(--secondary-color);
  font-size: 0.85rem;
  font-weight: 500;
  background: rgba(114, 137, 218, 0.1);
  padding: 5px 12px;
  border-radius: 20px;
}

.review-stars {
  font-size: 1.2rem;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.review-text {
  color: var(--secondary-color);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media screen and (max-width: 790px) {
  .reviews-title {
    font-size: 2.5rem;
  }
  
  .review-card {
    min-width: 320px;
    max-width: 320px;
    padding: 25px;
  }

  .marquee-track {
    animation: marquee 30s linear infinite;
  }
}

@media screen and (max-width: 480px) {
  .reviews-title {
    font-size: 2rem;
  }
  
  .review-card {
    min-width: 280px;
    max-width: 280px;
    padding: 20px;
  }

  .reviewer-avatar {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .reviewer-details h3 {
    font-size: 1.1rem;
  }

  .marquee-track {
    animation: marquee 25s linear infinite;
  }
}
footer {
  background-color: #1a1d20;
  color: var(--text-color);
  padding: 60px 0 30px;
  position: relative;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-section p {
  color: var(--secondary-color);
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 50px;
  width: auto;
  margin-right: 15px;
}

.footer-logo h2 {
  color: var(--text-color);
  font-size: 1.5rem;
  margin: 0;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
/* Contact Section */

.contact {
  background-color: #23272a;
  padding: 120px 0;
}

.contact-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5%;
}

.contact-title {
  color: white;
  font-size: 3rem;
  margin-bottom: 50px;
}

.contact-container {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}

.contact-left,
.contact-right {
  flex: 1;
  min-width: 300px;
}

.contact-box {
  background: rgba(114, 137, 218, 0.08);
  border: 1px solid rgba(114, 137, 218, 0.2);
  padding: 20px 25px;
  border-radius: 15px;
  margin-bottom: 20px;
}

.contact-label {
  color: #7289da;
  font-weight: 600;
  font-size: 0.9rem;
}

.contact-box p {
  color: #99aab5;
  margin: 5px 0 0 0;
  font-size: 1.1rem;
}

/* Mobile */

@media screen and (max-width: 790px) {

.contact-title {
font-size: 2.2rem;
}

.contact-container {
flex-direction: column;
}

}