/* General */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #333;
  background: linear-gradient(to top, #f7b7c3 0%, #ffffff 100%);
  background-attachment: fixed;
  scroll-behavior: smooth;
}

.bonbon-regular {
  font-family: "Bonbon", cursive;
  font-weight: 400;
  font-style: normal;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  padding: 15px 40px;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.logo img {
  height: 40px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
  margin: 0; 
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #e67a92;
  font-weight: 600;
  transition: color 0.2s;
  display: flex; 
  align-items: center;
}

.nav-links a:hover {
  color: #7cbf6e;
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  border-radius: 10px;
  min-width: 150px;
  top: 35px;
  left: 50%; 
  transform: translateX(-50%);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  list-style: none;
  padding: 0;
}

.dropdown-content li {
  padding: 10px;
  text-align: center;
}

.dropdown-content li a {
  color: #e67a92;
}

.dropdown-content li a:hover {
  color: #7cbf6e;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -10px;
  right: -10px;
  height: 20px;
}

/* ===== HAMBURGER ICON ===== */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #e67a92;
  margin-left: auto;   
  background: none;
  border: none;   
  z-index: 1001; 
}

/* ===== RESPONSIVE MENU ===== */
@media (max-width: 768px) {
  .hamburger {
    display: block !important;
    position: fixed;
    right: 30px;    
    top: 22px; 
  }

  /* Hide normal nav layout */
  nav {
    display: block;
  }

  .nav-links {
    position: fixed !important;
    top: 0 !important;
    right: -100%;
    flex-direction: column !important;
    align-items: flex-start !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    width: 250px !important;
    height: 100vh !important;
    padding: 80px 30px 30px !important;
    gap: 20px !important;
    box-shadow: -4px 0 12px rgba(0,0,0,0.1) !important;
    transition: right 0.3s ease !important;
    font-family: 'Montserrat', sans-serif !important;
    z-index: 1000 !important;
  }

  /* When menu is active */
  .nav-links.active {
    right: 0 !important;
  }

  /* Make dropdown simpler in mobile */
  .dropdown {
    margin: 0;
    padding: 0;
    width: 100%;
  }

  .dropdown a {
    display: block;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  .dropdown-content {
    position: relative !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 0 0 10px !important; /* indent for sub-items */
    margin-top: -30px;
    margin-bottom: 15px;
    display: none !important;
    gap: 4px !important; /* space between sub-links */
    line-height: 1.4 !important;
  }

  .dropdown.active .dropdown-content {
    display: flex !important;
    flex-direction: column;
    padding-top: 4px;
  }

  .dropdown-content a {
    padding: 5px 0;
    line-height: 1.6;
    color: #e67a92 !important;
    font-size: 16px;
    text-align: left;
  }

  .dropdown-content a:hover {
    color: #7cbf6e !important;
  }

  /* Add slight separation between each main menu item */
  .nav-links > li {
    margin-bottom: 12px;
  }
}

/* Hero */
.hero {
  text-align: center;
  padding: 160px 20px 10px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #a8e072;
  color: white;
  border-radius: 999px;
  padding: 8px 20px;
  font-weight: 600;
  font-size: 14px;
}

.tag .year {
  background: #e67a92;
  padding: 4px 10px;
  border-radius: 999px;
}

.title {
  font-size: 72px;
  color: #e67a92;
  font-weight: 800;
  margin-top: 30px;
  letter-spacing: -1px;
}

.supertitle {
font-family: "bonbon";
  font-size: 150px;
  color: #a8e072;
  font-weight: 800;
  margin-top: 5px;
  letter-spacing: 1px;
  text-align: center;
}

.subtitle {
  font-size: 20px;
  color: white;
  font-weight: 500;
}

.mylogo {
  font-style: none;
  font-size: 25px;
  font-family: "bonbon";
  display: flex;
  gap: 30px;
  align-items: center;
  color: #e67a92;
  font-weight: 600;
  transition: color 0.2s;
}

.mylogo a {
  text-decoration: none;
  color: #e67a92;
  font-weight: 600;
  transition: color 0.2s;
}

.mylogo a:hover {
  color: #7cbf6e;
  text-decoration: none;
}

/* Sections */
.content-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 120px 20px;
  text-align: center;
}

.content-section h2 {
  color: #c76a82;
  font-size: 32px;
  margin-bottom: 20px;
}

.content-section p {
  color: #555;
  line-height: 1.6;
}

/* Contact Button */
.contact-btn {
  display: inline-block;
  margin-top: 20px;
  background: #c76a82;
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.contact-btn:hover {
  background: #a5586a;
}

/* Footer */
footer {
  text-align: center;
  padding: 40px;
  color: #888;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    justify-content: space-between;
  }

  .hero .title {
    font-size: 50px;
  }

  .content-section {
    padding: 80px 20px;
  }
}

/* Scattered Images Section */
.scattered-images {
  position: relative;
  max-width: 1200px;
  margin: -100px auto 60px;
  padding: 100px 20px;
  min-height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.image-link {
  display: inline-block;
  transition: transform 0.3s ease, z-index 0.3s ease;
  position: relative;
}

.image-link img {
  max-width: 200px;
  height: auto;
  border-radius: 5px;
}

.image-link:hover {
  transform: scale(1.15) !important;
  z-index: 100;
}

/* Individual rotations for scattered effect */
.image-link:nth-child(1) {
  transform: rotate(-8deg) translateY(-20px);
}

.image-link:nth-child(2) {
  transform: rotate(5deg) translateY(10px);
}

.image-link:nth-child(3) {
  transform: rotate(-3deg) translateY(-10px);
}

.image-link:nth-child(4) {
  transform: rotate(7deg) translateY(15px);
}

.image-link:nth-child(5) {
  transform: rotate(-6deg) translateY(-5px);
}

.image-link:nth-child(6) {
  transform: rotate(4deg) translateY(20px);
}

/* About Section */
.about-section {
  padding: 140px 40px 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.about-container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.about-left {
  width: 450px;
  position: sticky;
  top: 120px;
  flex-shrink: 0;
  display: flex; 
  flex-direction: column;
  gap: 30px; 
}
.about-right {
  flex: 1;
  display: flex; 
  flex-direction: column;
  gap: 30px; 
}

/* Education & Experience Boxes */
.education-box,
.experience-box {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 40px;
}

.sectioncv-title {
  color: #a8e072;
  font-size: 32px;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 30px;
}

/* Education Items */
.edu-item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.year {
  color: #e67a92;
  font-weight: 600;
  min-width: 100px;
}

.edu-details h3 {
  color: #e67a92;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.department {
  color: #e67a92;
  font-style: italic;
  font-size: 16px;
}

/* Experience Items */
.exp-item {
  margin-bottom: 30px;
}

.exp-item h3 {
  color: #e67a92;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}

.exp-subtitle {
  color: #e67a92;
  font-style: italic;
  font-size: 14px;
  margin-bottom: 10px;
}

.exp-list {
  list-style: none;
  padding-left: 20px;
  color: #e67a92;
  font-size: 14px;
  line-height: 1.6;
}

.exp-list li {
  margin-bottom: 8px;
  position: relative;
}

.exp-list li:before {
  content: "—";
  position: absolute;
  left: -20px;
}

/* Profile Card */
.profile-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 30px;
  position: relative;
}

.name-tag {
  background: #a8e072;
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.profile-image {
  width: 100%;
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-bio {
  color: #e67a92;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: center;
}

.contact-info {
  color: #e67a92;
  font-size: 14px;
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 8px;
}

.email {
  font-weight: 600;
}

.skills-icons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
}

.skills-icons img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 1024px) {
  .about-container {
    flex-direction: column;
  }

  .about-left { /* ADD THIS */
    width: 100%;
    position: relative;
    top: 0;
  }

  .about-right {
    width: 100%;
    position: relative; /* ADD THIS if not there */
    top: 0; /* ADD THIS if not there */
  }
}

/* Carousel Section */
.carousel-section {
  max-width: 1400px;
  margin-top: 0px;
  margin-bottom: 20px;
  padding: 0px 20px;
  align-items: center;
}

.carousel-title {
  text-align: center;
  font-size: 48px;
  color: #c76a82;
  font-weight: 800;
  margin-bottom: 50px;
}

/* CSS Carousel */
.css-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
}

/* Hide radio buttons */
.css-carousel input[type="radio"] {
  display: none;
}

/* Cards Container */
.carousel-cards {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 500px;
  position: relative;
}

/* Individual Card */
.card {
  position: absolute;
  width: 350px;
  height: 350px;
  background: white;
  border-radius: 25px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  cursor: pointer;
  transition: all 0.5s ease;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.card img {
  width: 100%;
  flex: 1;
  object-fit: cover;
}

.card-info {
  padding: 20px;
  text-align: center;
}

.card-info h3 {
  color: #c76a82;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

.card-info p {
  color: #7cbf6e;
  font-size: 16px;
}

/* Card positions - default state (item 1 selected) */
#item1:checked ~ .carousel-cards #card1,
#item2:checked ~ .carousel-cards #card2,
#item3:checked ~ .carousel-cards #card3,
#item4:checked ~ .carousel-cards #card4,
#item5:checked ~ .carousel-cards #card5,
#item6:checked ~ .carousel-cards #card6,
#item7:checked ~ .carousel-cards #card7,
#item8:checked ~ .carousel-cards #card8 {
  transform: translateX(0) scale(1.1);
  opacity: 1;
  z-index: 5;
  filter: brightness(1);
}

/* Left card (previous) */
#item1:checked ~ .carousel-cards #card8,
#item2:checked ~ .carousel-cards #card1,
#item3:checked ~ .carousel-cards #card2,
#item4:checked ~ .carousel-cards #card3,
#item5:checked ~ .carousel-cards #card4,
#item6:checked ~ .carousel-cards #card5,
#item7:checked ~ .carousel-cards #card6,
#item8:checked ~ .carousel-cards #card7 {
  transform: translateX(-400px) scale(0.85);
  opacity: 0.7;
  z-index: 3;
  filter: brightness(0.8);
}

/* Right card (next) */
#item1:checked ~ .carousel-cards #card2,
#item2:checked ~ .carousel-cards #card3,
#item3:checked ~ .carousel-cards #card4,
#item4:checked ~ .carousel-cards #card5,
#item5:checked ~ .carousel-cards #card6,
#item6:checked ~ .carousel-cards #card7,
#item7:checked ~ .carousel-cards #card8,
#item8:checked ~ .carousel-cards #card1 {
  transform: translateX(400px) scale(0.85);
  opacity: 0.7;
  z-index: 3;
  filter: brightness(0.8);
}

/* Second left card */
#item1:checked ~ .carousel-cards #card7,
#item2:checked ~ .carousel-cards #card8,
#item3:checked ~ .carousel-cards #card1,
#item4:checked ~ .carousel-cards #card2,
#item5:checked ~ .carousel-cards #card3,
#item6:checked ~ .carousel-cards #card4,
#item7:checked ~ .carousel-cards #card5,
#item8:checked ~ .carousel-cards #card6 {
  transform: translateX(-750px) scale(0.7);
  opacity: 0.4;
  z-index: 2;
}

/* Second right card */
#item1:checked ~ .carousel-cards #card3,
#item2:checked ~ .carousel-cards #card4,
#item3:checked ~ .carousel-cards #card5,
#item4:checked ~ .carousel-cards #card6,
#item5:checked ~ .carousel-cards #card7,
#item6:checked ~ .carousel-cards #card8,
#item7:checked ~ .carousel-cards #card1,
#item8:checked ~ .carousel-cards #card2 {
  transform: translateX(750px) scale(0.7);
  opacity: 0.4;
  z-index: 2;
}

/* Hide remaining cards (far left) */
#item1:checked ~ .carousel-cards #card6,
#item1:checked ~ .carousel-cards #card5,
#item1:checked ~ .carousel-cards #card4,
#item2:checked ~ .carousel-cards #card7,
#item2:checked ~ .carousel-cards #card6,
#item2:checked ~ .carousel-cards #card5,
#item3:checked ~ .carousel-cards #card8,
#item3:checked ~ .carousel-cards #card7,
#item3:checked ~ .carousel-cards #card6,
#item4:checked ~ .carousel-cards #card1,
#item4:checked ~ .carousel-cards #card8,
#item4:checked ~ .carousel-cards #card7,
#item5:checked ~ .carousel-cards #card2,
#item5:checked ~ .carousel-cards #card1,
#item5:checked ~ .carousel-cards #card8,
#item6:checked ~ .carousel-cards #card3,
#item6:checked ~ .carousel-cards #card2,
#item6:checked ~ .carousel-cards #card1,
#item7:checked ~ .carousel-cards #card4,
#item7:checked ~ .carousel-cards #card3,
#item7:checked ~ .carousel-cards #card2,
#item8:checked ~ .carousel-cards #card5,
#item8:checked ~ .carousel-cards #card4,
#item8:checked ~ .carousel-cards #card3 {
  transform: translateX(-1100px) scale(0.6);
  opacity: 0;
  z-index: 1;
}

/* Hide remaining cards (far right) */
#item1:checked ~ .carousel-cards #card4,
#item1:checked ~ .carousel-cards #card5,
#item1:checked ~ .carousel-cards #card6,
#item2:checked ~ .carousel-cards #card5,
#item2:checked ~ .carousel-cards #card6,
#item2:checked ~ .carousel-cards #card7,
#item3:checked ~ .carousel-cards #card6,
#item3:checked ~ .carousel-cards #card7,
#item3:checked ~ .carousel-cards #card8,
#item4:checked ~ .carousel-cards #card7,
#item4:checked ~ .carousel-cards #card8,
#item4:checked ~ .carousel-cards #card1,
#item5:checked ~ .carousel-cards #card8,
#item5:checked ~ .carousel-cards #card1,
#item5:checked ~ .carousel-cards #card2,
#item6:checked ~ .carousel-cards #card1,
#item6:checked ~ .carousel-cards #card2,
#item6:checked ~ .carousel-cards #card3,
#item7:checked ~ .carousel-cards #card2,
#item7:checked ~ .carousel-cards #card3,
#item7:checked ~ .carousel-cards #card4,
#item8:checked ~ .carousel-cards #card3,
#item8:checked ~ .carousel-cards #card4,
#item8:checked ~ .carousel-cards #card5 {
  transform: translateX(1100px) scale(0.6);
  opacity: 0;
  z-index: 1;
}

/* Show/hide arrows based on current slide */
#item1:checked ~ .carousel-arrows #prev1,
#item1:checked ~ .carousel-arrows #next1,
#item2:checked ~ .carousel-arrows #prev2,
#item2:checked ~ .carousel-arrows #next2,
#item3:checked ~ .carousel-arrows #prev3,
#item3:checked ~ .carousel-arrows #next3,
#item4:checked ~ .carousel-arrows #prev4,
#item4:checked ~ .carousel-arrows #next4,
#item5:checked ~ .carousel-arrows #prev5,
#item5:checked ~ .carousel-arrows #next5,
#item6:checked ~ .carousel-arrows #prev6,
#item6:checked ~ .carousel-arrows #next6,
#item7:checked ~ .carousel-arrows #prev7,
#item7:checked ~ .carousel-arrows #next7,
#item8:checked ~ .carousel-arrows #prev8,
#item8:checked ~ .carousel-arrows #next8 {
  display: flex;
}

/* Active dots */
#item1:checked ~ .carousel-dots label[for="item1"],
#item2:checked ~ .carousel-dots label[for="item2"],
#item3:checked ~ .carousel-dots label[for="item3"],
#item4:checked ~ .carousel-dots label[for="item4"],
#item5:checked ~ .carousel-dots label[for="item5"],
#item6:checked ~ .carousel-dots label[for="item6"],
#item7:checked ~ .carousel-dots label[for="item7"],
#item8:checked ~ .carousel-dots label[for="item8"] {
  background: #c76a82;
  width: 30px;
  border-radius: 6px;
}

/* Navigation Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 0px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(199, 106, 130, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot:hover {
  background: rgba(199, 106, 130, 0.6);
  transform: scale(1.2);
}

#item1:checked ~ .carousel-dots label[for="item1"],
#item2:checked ~ .carousel-dots label[for="item2"],
#item3:checked ~ .carousel-dots label[for="item3"],
#item4:checked ~ .carousel-dots label[for="item4"],
#item5:checked ~ .carousel-dots label[for="item5"],
#item6:checked ~ .carousel-dots label[for="item6"],
#item7:checked ~ .carousel-dots label[for="item7"],
#item8:checked ~ .carousel-dots label[for="item8"] {
  background: #c76a82;
  width: 30px;
  border-radius: 6px;
}

/* Responsive */
@media (max-width: 768px) {
  .scattered-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    grid-template-rows: repeat(2, auto);   /* 2 rows */
    column-gap: 0px;
    row-gap: 30px; /* space between shapes */
    justify-items: center;
    align-items: center;
  }

  .card {
    width: 280px;
    height: 380px;
  }
  
  #item1:checked ~ .carousel-cards #card5,
  #item1:checked ~ .carousel-cards #card6,
  #item1:checked ~ .carousel-cards #card7,
  #item1:checked ~ .carousel-cards #card8,
  #item2:checked ~ .carousel-cards #card1,
  #item3:checked ~ .carousel-cards #card2,
  #item4:checked ~ .carousel-cards #card3,
  #item5:checked ~ .carousel-cards #card4 {
    transform: translateX(-320px) scale(0.85);
  }
  
  #item1:checked ~ .carousel-cards #card2,
  #item2:checked ~ .carousel-cards #card3,
  #item3:checked ~ .carousel-cards #card4,
  #item4:checked ~ .carousel-cards #card5,
  #item4:checked ~ .carousel-cards #card6,
  #item4:checked ~ .carousel-cards #card7,
  #item4:checked ~ .carousel-cards #card8,
  #item5:checked ~ .carousel-cards #card1 {
    transform: translateX(320px) scale(0.85);
  }
  
  .carousel-title {
    font-size: 36px;
  }
}

/* Make cards work as both labels and links */
.card {
  text-decoration: none;
  display: block;
}

.card:hover {
  box-shadow: 0 12px 40px rgba(199, 106, 130, 0.3);
}

/* Navigation Arrows */
.carousel-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
  z-index: 10;
}

.arrow {
  background: linear-gradient(135deg, #a8e072, #7cbf6e);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 32px;
  text-align: center;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  pointer-events: auto;
  user-select: none;
}

.arrow:hover {
  transform: scale(1.1);
  background: linear-gradient(135deg, #7cbf6e, #a8e072);
}

.arrow:active {
  transform: scale(0.95);
}

.arrow.prev {
  position: absolute;
  left: 20px;
}

.arrow.next {
  position: absolute;
  right: 20px;
}

/* Show/hide arrows based on current slide */
#item1:checked ~ .carousel-arrows #prev1,
#item1:checked ~ .carousel-arrows #next1 {
  display: flex;
}

#item2:checked ~ .carousel-arrows #prev2,
#item2:checked ~ .carousel-arrows #next2 {
  display: flex;
}

#item3:checked ~ .carousel-arrows #prev3,
#item3:checked ~ .carousel-arrows #next3 {
  display: flex;
}

#item4:checked ~ .carousel-arrows #prev4,
#item4:checked ~ .carousel-arrows #next4 {
  display: flex;
}

#item5:checked ~ .carousel-arrows #prev5,
#item5:checked ~ .carousel-arrows #next5 {
  display: flex;
}

/* Responsive arrows */
@media (max-width: 768px) {
  .arrow {
    width: 40px;
    height: 40px;
    font-size: 28px;
  }
  
  .arrow.prev {
    left: 10px;
  }
  
  .arrow.next {
    right: 10px;
  }
}

/* Project Section */
.project-section {
  padding: 140px 40px 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.project-container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* Left Column - Project Info */
.project-left {
  width: 600px;
  position: sticky;
  top: 120px;
  flex-shrink: 0;
}

.project-info-box {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 40px;
}

.section-title {
  color: #a8e072;
  font-size: 32px;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 30px;
  text-align: center;
}

/* Project Description */
.project-description h3 {
  color: #e67a92;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 20px;
}

.project-description h3:first-child {
  margin-top: 0;
}

.project-description p {
  color: #e67a92;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.deliverables-list {
  list-style: none;
  padding-left: 0;
  color: #e67a92;
  font-size: 14px;
  line-height: 1.8;
}

.deliverables-list li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.deliverables-list li:before {
  content: "—";
  position: absolute;
  left: 0;
  color: #e67a92;
}

/* Right Column - Gallery (Scrolling, Wider) */
.project-right {
  flex: 1;
}

.project-gallery {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.gallery-item {
  backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive */
@media (max-width: 1024px) {
  .project-container {
    flex-direction: column;
  }

  .project-left {
    width: 100%;
    position: relative;
    top: 0;
  }

  .project-right {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .project-section {
    padding: 100px 20px 60px;
  }

  .project-info-box {
    padding: 30px;
  }

  .section-title {
    font-size: 28px;
  }

    .supertitle {
    font-size: 100px;
  }
}

