@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;800&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #FAFAFA;
}

/* Main Container holding the split layout */
.portfolio-container {
  width: 1200px;
  height: 800px;
  background-color: #F8F9FA;
  position: relative;
  display: flex;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  margin: 50px auto;
  /* Centers the container on the page */
}

/* Left Section: Yellow background */
.left-section {
  width: 47%;
  background-color: #FFB800;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

/* Image styling - You will add your image source in index.html */
.hero-image {
  height: 95%;
  width: 100%;
  /* Adjust depending on your image */
  object-fit: contain;
  /* position: absolute; */
  /* right: -80px; */
  /* Uncomment and adjust if you need it to overlap the right section slightly */
}

/* Right Section: White background and text */
.right-section {
  width: 53%;
  background-color: #FAFAFA;
  display: flex;
  align-items: center;
  padding-left: 80px;
}

.content {
  max-width: 450px;
  margin-top: 50px;
}

.content h2 {
  font-size: 2.2rem;
  font-weight: 300;
  color: #333;
  margin-bottom: 5px;
}

.content h1 {
  font-size: 2.0rem;
  font-weight: 800;
  color: #000;
  letter-spacing: 2px;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.content p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* Hire Me Button */
.btn-hire {
  background-color: #FFB800;
  color: #fff;
  border: none;
  padding: 15px 40px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 15px rgba(255, 184, 0, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-hire:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 20px rgba(255, 184, 0, 0.5);
}

/* Floating Navbar */
.portfolio-nav {
  position: fixed;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  max-width: 1000px;
  height: 80px;
  background: white;
  border-radius: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  z-index: 10;
}

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

.nav-links {
  display: flex;
  gap: 35px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #555;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.nav-links a.active {
  background-color: #FFB800;
  color: white;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 600;
}

.nav-links a:hover:not(.active) {
  color: #FFB800;
}

/* Second Section (What I do / Services) */
.services-section {
  width: 1200px;
  margin: 0 auto 100px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 0;
}

.services-content {
  width: 45%;
}

.services-content h3 {
  font-size: 1.5rem;
  font-weight: 400;
  color: #888;
  margin-bottom: 20px;
}

.services-content h2 {
  font-size: 2.8rem;
  font-weight: 500;
  color: #333;
  line-height: 1.2;
  margin-bottom: 30px;
}

.services-content p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* Grid Layout for Cards */
.services-grid {
  width: 50%;
  display: flex;
  gap: 30px;
  position: relative;
}



/* Staggered Columns */
.grid-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 50%;
}

/* Move the right column slightly up to match design */
.col-right {
  transform: translateY(-40px);
}

/* Service Card Styling */
.service-card {
  background: white;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card .icon {
  background-color: #FFF3D6;
  color: #FFB800;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.service-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.6;
}

/* --- Why my client choose me --- */
.achievement-section {
  position: relative;
  background-color: #FAFAFA;
  padding: 80px 0 120px 0;
  overflow: hidden;
}

.achievement-container {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 40px;
}

.section-title {
  margin-bottom: 80px;
}

.section-title h2 {
  font-size: 2.2rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 15px;
}

.section-title .underline {
  width: 80px;
  height: 2px;
  background-color: #FFB800;
}

/*=========================================
        FEATURES WRAPPER
=========================================*/

.features-wrapper {
  margin-top: 70px;
  display: flex;
  justify-content: space-between;
  gap: 70px;
  align-items: flex-start;
}

/*=========================================
        LEFT SIDE
=========================================*/

.features-nav {
  width: 340px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  width: 100%;
  background: #fff;
  border: none;
  border-radius: 20px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  cursor: pointer;
  transition: .35s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.feature-item:hover {
  transform: translateX(10px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, .08);
}

.feature-circle {

  width: 65px;
  height: 65px;

  border-radius: 50%;

  background: #f5f5f5;

  display: flex;

  justify-content: center;

  align-items: center;

  transition: .35s;

  flex-shrink: 0;

}

.feature-circle i {

  font-size: 24px;

  color: #666;

  transition: .35s;

}

.feature-item span {

  font-size: 18px;

  font-weight: 600;

  color: #333;

  transition: .35s;

}

/*=========================================
        ACTIVE
=========================================*/

.feature-item.active {

  background: #1f1f1f;

  transform: translateX(15px);

}

.feature-item.active span {

  color: #fff;

}

.feature-item.active .feature-circle {

  background: #FFB800;

}

.feature-item.active .feature-circle i {

  color: #222;

  transform: rotate(360deg);

}

/*=========================================
        RIGHT CARD
=========================================*/

.feature-card {

  flex: 1;

  background: #fff;

  border-radius: 30px;

  padding: 45px;

  box-shadow: 0 20px 45px rgba(0, 0, 0, .08);

  position: relative;

  overflow: hidden;

}

/*=========================================
        HEADER
=========================================*/

.feature-header {

  display: flex;

  align-items: center;

  gap: 25px;

  margin-bottom: 30px;

}

.feature-icon {

  width: 85px;

  height: 85px;

  background: #FFB800;

  border-radius: 50%;

  display: flex;

  justify-content: center;

  align-items: center;

  flex-shrink: 0;

}

.feature-icon i {

  font-size: 34px;

  color: #222;

  transition: .4s;

}

.feature-header h3 {

  font-size: 34px;

  color: #222;

  margin-bottom: 12px;

}

.feature-line {

  width: 70px;

  height: 4px;

  background: #FFB800;

  border-radius: 10px;

}

/*=========================================
        DESCRIPTION
=========================================*/

.feature-card p {

  font-size: 17px;

  color: #666;

  line-height: 1.8;

  margin-bottom: 35px;

}

/*=========================================
        GRID
=========================================*/

.feature-grid {

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 20px;

}

.feature-point {

  background: #fafafa;

  border-radius: 15px;

  padding: 18px;

  display: flex;

  align-items: center;

  gap: 15px;

  transition: .35s;

}

.feature-point:hover {

  transform: translateY(-6px);

  box-shadow: 0 10px 25px rgba(0, 0, 0, .08);

}

.feature-point i {

  width: 38px;

  height: 38px;

  background: #FFB800;

  border-radius: 50%;

  display: flex;

  justify-content: center;

  align-items: center;

  color: #222;

}

.feature-point span {

  font-weight: 600;

  color: #444;

}

/*=========================================
        ANIMATION
=========================================*/

.feature-card.animate {

  animation: cardFade .45s ease;

}

@keyframes cardFade {

  from {

    opacity: 0;

    transform: translateY(25px);

  }

  to {

    opacity: 1;

    transform: translateY(0);

  }

}

/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:991px) {

  .features-wrapper {

    flex-direction: column;

  }

  .features-nav {

    width: 100%;

  }

  .feature-card {

    width: 100%;

  }

}

@media(max-width:600px) {

  .feature-grid {

    grid-template-columns: 1fr;

  }

  .feature-header {

    flex-direction: column;

    align-items: flex-start;

  }

  .feature-header h3 {

    font-size: 28px;

  }

}

.info-icon {

  width: 90px;
  height: 90px;

  border-radius: 50%;

  background: #FFB800;

  display: flex;

  justify-content: center;

  align-items: center;

  flex-shrink: 0;

}

.info-icon i {

  font-size: 35px;

  color: #222;

}

.info-content {

  flex: 1;

}

.info-content h3 {

  font-size: 30px;

  margin-bottom: 15px;

}

.info-content p {

  color: #666;

  line-height: 1.8;

  margin-bottom: 20px;

}

.info-content ul {

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 12px;

  padding: 0;

  list-style: none;

}

.info-content li {

  position: relative;

  padding-left: 28px;

  color: #444;

}

.info-content li::before {

  content: "✔";

  position: absolute;

  left: 0;

  color: #FFB800;

  font-weight: bold;

}

.fade {

  animation: fade .35s ease;

}

@keyframes fade {

  from {

    opacity: 0;
    transform: translateY(20px);

  }

  to {

    opacity: 1;
    transform: translateY(0);

  }

}

.stat-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.stat-circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 3px solid #D9D9D9;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.stat-circle h6 {
  /* font-size: 2.2rem; */
  font-weight: 500;
  color: #222;
  margin-bottom: 2px;
}

.stat-circle p {
  font-size: 0.75rem;
  font-weight: 500;
  color: #666;
  letter-spacing: 1.5px;
  text-transform: uppercase;

}

/* Active State (Yellow Circle) */
.stat-item.active .stat-circle {
  background-color: #FFB800;
  border-color: transparent;
  box-shadow: 0 0 0 15px #F0F0F0;
}

.stat-item.active .stat-circle h6,
.stat-item.active .stat-circle p {
  color: #111;
  font-size: 20px;
  font-weight: 500;
}

/* Decorative Shapes */
.shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.shape {
  position: absolute;
}

.shape-1 {
  top: 30%;
  left: 5%;
}

.shape-2 {
  bottom: 10%;
  left: 20%;
}

.shape-3 {
  top: 25%;
  left: 40%;
}

.shape-4 {
  top: 20%;
  right: 35%;
}

.shape-5 {
  top: 15%;
  right: 15%;
}

.shape-6 {
  bottom: 15%;
  right: 40%;
}

.shape-7 {
  bottom: 10%;
  right: 10%;
}

/* ===========================
   FEATURED PROJECTS
=========================== */

.projects-section {
  padding: 120px 8%;
  background: #fafafa;
}

.projects-container {

  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 70px;

}

/* ===========================
   LEFT CONTENT
=========================== */

.projects-info {

  width: 35%;
  position: sticky;
  top: 120px;

}

.section-title {

  display: inline-block;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #FFB800;
  margin-bottom: 20px;
  font-weight: 600;

}

.projects-info h2 {

  font-size: 55px;
  line-height: 1.2;
  color: #222;
  margin-bottom: 25px;

}

.projects-info h2 span {

  color: #FFB800;

}

.projects-info p {

  color: #666;
  line-height: 1.8;
  font-size: 17px;
  margin-bottom: 45px;

}


/* ===========================
      FILTER BUTTONS
=========================== */

.project-filter {

  display: flex;
  flex-wrap: wrap;
  gap: 15px;

}

.filter-btn {

  padding: 12px 22px;

  border: none;

  border-radius: 40px;

  background: white;

  cursor: pointer;

  font-size: 14px;

  font-weight: 600;

  transition: .35s;

  box-shadow: 0 8px 25px rgba(0, 0, 0, .05);

}

.filter-btn:hover {

  transform: translateY(-3px);

}

.filter-btn.active {

  background: #FFB800;

  color: white;

}


/* ===========================
      GRID
=========================== */

.projects-grid {

  width: 65%;

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 30px;

}


/* ===========================
      CARD
=========================== */

.project-card {

  position: relative;

  overflow: hidden;

  border-radius: 18px;

  cursor: pointer;

  background: white;

  box-shadow: 0 20px 45px rgba(0, 0, 0, .08);

  transition: .4s;

}

.project-card:hover {

  transform: translateY(-10px);

}

.project-card img {

  width: 100%;

  height: 300px;

  object-fit: cover;

  display: block;

  transition: .5s;

}

.project-card:hover img {

  transform: scale(1.08);

}


/* ===========================
      OVERLAY
=========================== */

.project-overlay {

  position: absolute;

  inset: 0;

  background: rgba(18, 18, 18, .88);

  display: flex;

  flex-direction: column;

  justify-content: center;

  padding: 30px;

  color: white;

  opacity: 0;

  transition: .45s;

}

.project-card:hover .project-overlay {

  opacity: 1;

}


/* ===========================
      CATEGORY
=========================== */

.project-category {

  display: inline-block;

  width: max-content;

  background: #FFB800;

  color: #fff;

  padding: 6px 14px;

  border-radius: 30px;

  font-size: 12px;

  letter-spacing: 1px;

  margin-bottom: 18px;

}


/* ===========================
      TITLE
=========================== */

.project-overlay h3 {

  font-size: 28px;

  margin-bottom: 15px;

}


/* ===========================
      DESCRIPTION
=========================== */

.project-overlay p {

  color: #ddd;

  line-height: 1.7;

  margin-bottom: 22px;

}


/* ===========================
      TECH STACK
=========================== */

.tech-stack {

  display: flex;

  flex-wrap: wrap;

  gap: 10px;

  margin-bottom: 25px;

}

.tech-stack span {

  padding: 8px 14px;

  background: rgba(255, 255, 255, .08);

  border: 1px solid rgba(255, 255, 255, .12);

  border-radius: 30px;

  font-size: 13px;

}


/* ===========================
      BUTTONS
=========================== */

.project-buttons {

  display: flex;

  gap: 15px;

}

.project-buttons a {

  text-decoration: none;

  color: white;

  padding: 10px 20px;

  border-radius: 30px;

  transition: .35s;

  font-size: 14px;

}

.project-buttons a:first-child {

  background: #FFB800;

}

.project-buttons a:last-child {

  border: 1px solid rgba(255, 255, 255, .3);

}

.project-buttons a:hover {

  transform: translateY(-3px);

}


/* ===========================
      RESPONSIVE
=========================== */

@media(max-width:1000px) {

  .projects-container {

    flex-direction: column;

  }

  .projects-info {

    width: 100%;

    position: relative;

    top: 0;

  }

  .projects-grid {

    width: 100%;

  }

}

@media(max-width:700px) {

  .projects-grid {

    grid-template-columns: 1fr;

  }

  .projects-info h2 {

    font-size: 40px;

  }

  .project-card img {

    height: 250px;

  }

  .project-filter {

    justify-content: center;

  }

}

/* --- Skills Section --- */
.skills-section {
  padding: 80px 0;
  background-color: #FAFAFA;
}

.skills-container {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

.skills-grid {
  display: flex;
  justify-content: space-between;
  gap: 80px;
}

.skills-column {
  width: 50%;
}

.skills-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
}

.circle-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 3px solid #FFB800;
  background: linear-gradient(to right, #FFB800 50%, transparent 50%);
}

.skills-header h3 {
  font-size: 0.9rem;
  font-weight: 500;
  color: #555;
  letter-spacing: 1px;
}

.skill-bar {
  margin-bottom: 30px;
}

.skill-info {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.85rem;
  color: #555;
  font-weight: 500;
}

.progress-track {
  width: 100%;
  height: 2px;
  background-color: #EAEAEA;
  position: relative;
}

.progress-fill {
  height: 100%;
  background-color: #FFB800;
  position: absolute;
  top: 0;
  left: 0;
}

.progress-fill::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-color: #FFB800;
  border-radius: 50%;
}

/* --- Resume Section --- */
.resume-section {
  padding: 80px 0;
  background-color: white;
}

.resume-container {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 50px;
  margin-left: 10px;
  justify-content: space-between;
}

.resume-column {
  width: 100%;
}

.resume-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.resume-header h3 {
  font-size: 1.1rem;
  font-weight: 500;
  color: #555;
  letter-spacing: 1px;
}

.resume-list {
  display: flex;
  flex-direction: column;
}

.resume-item {
  display: flex;
  align-items: flex-start;
  padding: 25px 0;
}

.resume-date {
  width: 150px;
  font-size: 0.85rem;
  color: #777;
  font-weight: 500;
}

.resume-details {
  /* border-left: 2px solid #EAEAEA; */
  padding-left: 25px;
}

.resume-details h4 {
  font-size: 1.05rem;
  color: #8DABAC;
  font-weight: 500;
  margin-bottom: 5px;
}

.resume-details p {
  font-size: 0.85rem;
  color: #666;
}

--- Detailed Services Section --- .detailed-services-section {
  padding: 80px 0;
  background-color: white;
}

.services-container {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

.services-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 50px;
  column-gap: 80px;
  margin-top: 50px;
}

.service-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.circle-icon-small {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 3px solid #FFB800;
  background: linear-gradient(to right, #FFB800 50%, transparent 50%);
  flex-shrink: 0;
  margin-top: 2px;
}

.service-text h4 {
  font-size: 0.95rem;
  font-weight: 500;
  color: #555;
  margin-bottom: 15px;
}

.service-text p {
  font-size: 0.85rem;
  color: #888;
  line-height: 1.6;
}

/* --- Testimonials Section --- */
.testimonials-section {
  padding: 80px 0;
  background-color: #FAFAFA;
}

.testimonials-container {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

.testimonials-grid {
  display: flex;
  gap: 50px;
  margin-top: 50px;
}

.testimonial-card {
  width: 50%;
  position: relative;
  display: flex;
  padding-top: 30px;
}

.testimonial-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 20px;
  z-index: 2;
}

.testimonial-content {
  background: white;
  padding: 40px 30px 30px 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-left: 0;
  width: 100%;
}

.testimonial-content p {
  font-size: 0.9rem;
  font-style: italic;
  color: #A0A0A0;
  line-height: 1.6;
}

/* --- Contact Section --- */
.contact-section {
  padding: 80px 0 120px 0;
  background-color: white;
}

.contact-container {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mt-3 {
  margin-top: 15px;
}

.mt-4 {
  margin-top: 30px;
}

.mt-5 {
  margin-top: 50px;
}

.h-100 {
  height: 100%;
}

.contact-info-row {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  margin-bottom: 60px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.contact-item i {
  font-size: 1.5rem;
  color: #333;
}

.contact-item p {
  font-size: 0.9rem;
  color: #666;
}

.contact-form-container {
  background: white;
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.form-row {
  display: flex;
  gap: 40px;
}

.form-col {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-group label {
  font-size: 0.8rem;
  color: #777;
  font-weight: 500;
}

.input-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  padding: 0 15px;
  height: 45px;
  transition: border-color 0.3s;
}

.input-wrapper.active {
  border-color: #FFB800;
}

.input-wrapper i {
  color: #AAA;
  font-size: 0.9rem;
  margin-right: 15px;
}

.input-wrapper input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 0.85rem;
  font-family: inherit;
  color: #555;
}

.form-group textarea {
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  padding: 15px;
  outline: none;
  font-size: 0.85rem;
  font-family: inherit;
  color: #555;
  resize: none;
  height: 100%;
  min-height: 150px;
}

/* --- Scroll to Top --- */
.scroll-to-top {
  position: fixed;
  bottom: 40px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #FFB800;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(255, 184, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 99;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background-color: #e6a600;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 184, 0, 0.6);
}

/* --- RESPONSIVE DESIGN --- */

/* Hamburger Icon */
.hamburger {
  display: none;
  font-size: 1.8rem;
  color: #333;
  cursor: pointer;
}

@media (max-width: 992px) {

  /* General Containers */
  .portfolio-container,
  .services-section,
  .creative-container,
  .skills-container,
  .resume-container,
  .services-container,
  .testimonials-container,
  .contact-container {
    padding: 0 20px;
    width: 100%;
  }

  /* Navbar */
  .portfolio-nav {
    width: 90%;
    top: 20px;
  }

  .hamburger {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    background-color: white;
    flex-direction: column;
    gap: 0;
    padding: 0;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: all 0.3s ease-in-out;
  }

  .nav-links.active {
    max-height: 400px;
    opacity: 1;
    padding: 20px 0;
  }

  .nav-links a {
    padding: 15px 40px;
    width: 100%;
    text-align: center;
  }

  .nav-links a.active {
    border-radius: 0;
    width: 100%;
  }

  /* Hero Section */
  .portfolio-container {
    flex-direction: column;
    height: auto;
    margin: 0;
    box-shadow: none;
  }

  .left-section,
  .right-section {
    width: 100%;
  }

  .left-section {
    height: 50vh;
    min-height: 400px;
  }

  .right-section {
    padding: 60px 20px;
    justify-content: center;
    text-align: center;
  }

  .content {
    margin-top: 0;
  }


  .grid-column {
    width: 50%;
  }

  /* Creative Work */
  .creative-container {
    flex-direction: column;
  }

  .work-gallery,
  .work-content {
    width: 100%;
  }

  /* Skills & Resume */
  .skills-grid,
  .resume-container {
    flex-direction: column;
    gap: 100px;
  }

  .skills-column,
  .resume-column {
    width: 100%;
  }

  /* Contact */
  .form-row {
    flex-direction: column;
  }

  .form-col {
    width: 100%;
  }
}

@media (max-width: 768px) {

  /* Typography */
  .content h2 {
    font-size: 1.8rem;
  }

  .content h1 {
    font-size: 1.6rem;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }


  .grid-column {
    width: 100%;
  }

  .col-right {
    transform: none;
  }

  /* Achievement */
  .stats-row {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }


  /* Contact */
  .contact-info-row {
    flex-direction: column;
    gap: 30px;
  }

  .contact-form-container {
    padding: 30px 20px;
  }

  .skills-grid {
    display: block;
  }
}

.projects-grid {

  transition: .35s;

}

.empty-projects {

  width: 100%;
  grid-column: 1/-1;

  background: white;

  padding: 80px 30px;

  border-radius: 20px;

  text-align: center;

  box-shadow: 0 20px 40px rgba(0, 0, 0, .05);

}

.empty-projects h2 {

  margin-bottom: 15px;

  color: #222;

}

.empty-projects p {

  color: #777;

}

/* ================= CTA SECTION ================= */

.cta-section {
  padding: 120px 40px;
  background: #FFB800;
}

.cta-container {

  max-width: 900px;
  margin: auto;
  text-align: center;
}

.cta-tag {

  display: inline-block;

  padding: 10px 22px;

  background: #fff;

  color: #FFB800;

  border-radius: 30px;

  font-size: .9rem;

  font-weight: 600;

  letter-spacing: 1px;

  margin-bottom: 30px;
}

.cta-container h2 {

  font-size: 3rem;

  color: #222;

  line-height: 1.2;

  margin-bottom: 25px;

  font-weight: 700;
}

.cta-container p {

  max-width: 700px;

  margin: auto;

  color: #333;

  font-size: 1.05rem;

  line-height: 1.9;

  margin-bottom: 50px;
}

.cta-buttons {

  display: flex;

  justify-content: center;

  gap: 20px;

  margin-bottom: 55px;

  flex-wrap: wrap;
}

.cta-primary {

  text-decoration: none;

  background: #222;

  color: white;

  padding: 18px 38px;

  border-radius: 50px;

  transition: .3s;

  font-weight: 600;
}

.cta-primary:hover {

  background: #111;

  transform: translateY(-4px);
}

.cta-secondary {

  text-decoration: none;

  border: 2px solid #222;

  color: #222;

  padding: 18px 38px;

  border-radius: 50px;

  transition: .3s;

  font-weight: 600;
}

.cta-secondary:hover {

  background: #222;

  color: white;

  transform: translateY(-4px);
}

.cta-features {

  display: flex;

  justify-content: center;

  gap: 35px;

  flex-wrap: wrap;

  color: #222;

  font-weight: 600;
}

.cta-features div {

  position: relative;

  padding-left: 18px;
}

.cta-features div::before {

  content: "";

  position: absolute;

  left: 0;

  top: 50%;

  transform: translateY(-50%);

  width: 8px;

  height: 8px;

  background: #222;

  border-radius: 50%;
}

/* =========================================
   CONTACT SECTION
========================================= */

.contact-section {
  padding: 120px 0;
  background: #FAFAFA;
}

.contact-container {

  width: 1200px;
  max-width: 100%;

  margin: auto;

  padding: 0 40px;

  display: grid;

  grid-template-columns: 1fr 1.1fr;

  gap: 80px;

  align-items: center;

}

/* =========================================
   LEFT SIDE
========================================= */

.contact-info .section-tag {

  display: inline-block;

  color: #FFB800;

  font-size: .9rem;

  font-weight: 700;

  letter-spacing: 2px;

  margin-bottom: 20px;

  text-transform: uppercase;

}

.contact-info h2 {

  font-size: 3rem;

  color: #222;

  line-height: 1.2;

  margin-bottom: 25px;

  font-weight: 700;

}

.contact-info p {

  font-size: 1rem;

  line-height: 1.9;

  color: #666;

  margin-bottom: 45px;

  max-width: 500px;

}

/* =========================================
   CONTACT CARDS
========================================= */

.contact-cards {

  display: flex;

  flex-direction: column;

  gap: 20px;

}

.contact-card {

  display: flex;

  align-items: center;

  gap: 20px;

  background: white;

  border-radius: 18px;

  padding: 22px 25px;

  box-shadow: 0 12px 30px rgba(0, 0, 0, .05);

  transition: .35s ease;

}

.contact-card:hover {

  transform: translateY(-6px);

  box-shadow: 0 18px 45px rgba(0, 0, 0, .08);

}

.card-icon {

  width: 60px;

  height: 60px;

  border-radius: 50%;

  background: #FFF5D8;

  color: #FFB800;

  font-size: 1.4rem;

  display: flex;

  align-items: center;

  justify-content: center;

  font-weight: 700;

  flex-shrink: 0;

}

.contact-card h4 {

  font-size: 1rem;

  color: #222;

  margin-bottom: 5px;

}

.contact-card span {

  color: #777;

  font-size: .95rem;

}

/* =========================================
   RESPONSE
========================================= */

.response-time {

  margin-top: 35px;

  color: #666;

  font-size: .95rem;

}

.response-time strong {

  color: #222;

}

/* =========================================
   CONTACT FORM
========================================= */

.contact-form-box {

  background: #fff;

  padding: 50px;

  border-radius: 25px;

  box-shadow: 0 20px 60px rgba(0, 0, 0, .06);

  transition: .4s ease;

}

.contact-form-box:hover {

  transform: translateY(-8px);

  box-shadow: 0 30px 80px rgba(0, 0, 0, .08);

}

/* =========================================
   FORM LAYOUT
========================================= */

.input-row {

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 25px;

  margin-bottom: 25px;

}

.input-group {

  position: relative;

}

.input-group:last-child {

  margin-bottom: 0;

}

/* =========================================
   INPUTS
========================================= */

.input-group input,

.input-group select,

.input-group textarea {

  width: 100%;

  border: 2px solid #ececec;

  border-radius: 15px;

  padding: 18px 20px;

  font-size: 1rem;

  color: #333;

  background: #fff;

  outline: none;

  transition: .35s ease;

  resize: none;

  font-family: inherit;

}

.input-group textarea {

  min-height: 180px;

}

/* =========================================
   PLACEHOLDER
========================================= */

.input-group input::placeholder,

.input-group textarea::placeholder {

  color: transparent;

}

/* =========================================
   LABELS
========================================= */

.input-group label {

  position: absolute;

  left: 18px;

  top: 18px;

  background: #fff;

  padding: 0 8px;

  color: #888;

  font-size: .95rem;

  pointer-events: none;

  transition: .3s ease;

}

/* Floating Labels */

.input-group input:focus+label,

.input-group input:not(:placeholder-shown)+label,

.input-group textarea:focus+label,

.input-group textarea:not(:placeholder-shown)+label,

.input-group select:focus+label,

.input-group select:valid+label {

  top: -10px;

  font-size: .8rem;

  color: #FFB800;

}

/* =========================================
   FOCUS EFFECT
========================================= */

.input-group input:focus,

.input-group textarea:focus,

.input-group select:focus {

  border-color: #FFB800;

  box-shadow: 0 0 0 5px rgba(255, 184, 0, .12);

}

/* =========================================
   SELECT
========================================= */

.input-group select {

  appearance: none;

  cursor: pointer;

}

/* =========================================
   BUTTON
========================================= */

.contact-btn {

  width: 100%;

  border: none;

  outline: none;

  padding: 18px;

  margin-top: 35px;

  border-radius: 50px;

  background: #FFB800;

  color: #fff;

  font-size: 1rem;

  font-weight: 600;

  cursor: pointer;

  transition: .35s ease;

  box-shadow: 0 15px 35px rgba(255, 184, 0, .35);

}

.contact-btn:hover {

  background: #e9a900;

  transform: translateY(-4px);

  box-shadow: 0 22px 45px rgba(255, 184, 0, .45);

}

.contact-btn:active {

  transform: scale(.98);

}

/* =========================================
                FOOTER
========================================= */

.footer {

  background: #181818;

  color: #fff;

  padding: 90px 0 0;

}

.footer-container {

  width: 1200px;

  max-width: 100%;

  margin: auto;

  padding: 0 40px;

  display: grid;

  grid-template-columns: 2fr 1fr 1fr 1fr;

  gap: 60px;

}

.footer-logo {

  text-decoration: none;

  color: #fff;

  font-size: 2rem;

  font-weight: 700;

}

.footer-logo span {

  color: #FFB800;

}

.footer-about p {

  margin: 25px 0;

  line-height: 1.8;

  color: #b8b8b8;

  max-width: 400px;

}

.footer-social {

  display: flex;

  gap: 15px;

}

.footer-social a {

  width: 45px;

  height: 45px;

  border-radius: 50%;

  background: #222;

  display: flex;

  justify-content: center;

  align-items: center;

  color: #fff;

  text-decoration: none;

  transition: .35s;

}

.footer-social a:hover {

  background: #FFB800;

  transform: translateY(-5px);

}

.footer-links h3 {

  margin-bottom: 25px;

  color: #fff;

  font-size: 1.1rem;

}

.footer-links a {

  display: block;

  text-decoration: none;

  color: #b8b8b8;

  margin-bottom: 14px;

  transition: .3s;

}

.footer-links a:hover {

  color: #FFB800;

  padding-left: 8px;

}

.footer-links p {

  color: #b8b8b8;

  line-height: 2;

}

.footer-bottom {

  margin-top: 70px;

  border-top: 1px solid rgba(255, 255, 255, .08);

  display: flex;

  justify-content: space-between;

  align-items: center;

  padding: 25px 40px;

  flex-wrap: wrap;

  gap: 20px;

}

.footer-bottom p {

  color: #aaa;

  font-size: .95rem;

}

.footer-bottom span {

  color: #FFB800;

}

/* ==========================
        Responsive
========================== */

@media(max-width:992px) {

  .footer-container {

    grid-template-columns: 1fr 1fr;

  }

}

@media(max-width:650px) {

  .footer-container {

    grid-template-columns: 1fr;

    text-align: center;

  }

  .footer-about p {

    margin: auto;

    margin-top: 25px;

    margin-bottom: 30px;

  }

  .footer-social {

    justify-content: center;

  }

  .footer-bottom {

    flex-direction: column;

  }

}

/*=========================================
        ICON ROTATION
=========================================*/

#featureIcon {

  transition: transform .5s ease;

}

/*=========================================
        BULLET ANIMATION
=========================================*/

.feature-point {

  opacity: 0;

  transform: translateY(15px);

  animation: none;

}

.feature-card.animate .feature-point {

  animation: pointFade .45s forwards;

}

.feature-card.animate .feature-point:nth-child(1) {

  animation-delay: .15s;

}

.feature-card.animate .feature-point:nth-child(2) {

  animation-delay: .30s;

}

.feature-card.animate .feature-point:nth-child(3) {

  animation-delay: .45s;

}

.feature-card.animate .feature-point:nth-child(4) {

  animation-delay: .60s;

}

@keyframes pointFade {

  from {

    opacity: 0;

    transform: translateY(20px);

  }

  to {

    opacity: 1;

    transform: translateY(0);

  }

}

/* =========================================
   ADDITIONAL RESPONSIVE FIXES 
   (Services & Contact Sections)
========================================= */
@media (max-width: 992px) {
  .services-section {
    flex-direction: column;
    gap: 50px;
    align-items: center;
  }

  .services-content,
  .services-grid {
    width: 100%;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .services-grid {
    flex-direction: column;
  }

  .input-row {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   PROJECT CARDS MOBILE FIX (Touch Devices)
========================================= */
@media (max-width: 992px) {
  .project-overlay {
    position: relative;
    opacity: 1;
    background: #181818;
    padding: 25px 20px;
  }

  .project-card img {
    height: 220px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }
}