/* General Reset */
html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  box-sizing: border-box;
  max-width: 100%;
  overflow-x: hidden;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: calc(100vh - 70px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 2;
  background-color: #fdfaf6;
  font-family: 'Segoe UI', sans-serif;
  padding: 40px 15px;
  box-sizing: border-box;
}

.hero-text {
  font-size: 3.5rem;
  font-weight: bold;
  color: #222;
  line-height: 1.2;
  max-width: 90%;
  margin: 0;
  padding: 0 15px;
  z-index: 3;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

/* Responsive Design for Hero Section */
@media (max-width: 1024px) {
  .hero-text {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 50px 10px;
    min-height: auto;
  }

  .hero-text {
    font-size: 2rem;
    max-width: 100%;
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 40px 10px;
  }

  .hero-text {
    font-size: 1.8rem;
  }
}

@media (max-width: 360px) {
  .hero-text {
    font-size: 1.6rem;
  }
}

/* Review Section */
.review-section {
  background-color: #fdfaf6;
  color: #222;
  padding: 60px 15px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  box-sizing: border-box;
}

/* Review Title */
.review-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #913000;
  letter-spacing: 1px;
  margin-bottom: 40px;
  position: relative;
}

.review-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  margin: 15px auto 0;
  border-radius: 4px;
  background-color: #913000;
}

/* Review Container */
.review-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0 10px;
}

/* Review Cards */
.review-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 20px;
  width: 100%;
  max-width: 320px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  color: #333;
  box-sizing: border-box;
}

.review-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Review Header */
.review-header {
  margin-bottom: 20px;
}

.stars {
  color: #f4b400;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.review-header h3 {
  font-size: 1.6rem;
  margin: 0;
  color: #000;
}

.review-role {
  font-size: 1rem;
  font-style: italic;
  color: #444;
}

/* Review Body */
.review-body p {
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 10px;
  color: #555;
}

/* Responsive Design for Review Section */
@media (max-width: 768px) {
  .review-section {
    padding: 40px 10px;
  }

  .review-container {
    flex-direction: column;
    gap: 15px;
    padding: 0 5px;
  }

  .review-card {
    width: 100%;
    max-width: 100%;
    padding: 15px;
  }

  .review-title {
    font-size: 2rem;
  }

  .review-header h3 {
    font-size: 1.4rem;
  }

  .review-body p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .review-section {
    padding: 30px 5px;
  }

  .review-title {
    font-size: 1.8rem;
  }

  .review-title::after {
    width: 40px;
  }

  .review-card {
    padding: 10px;
  }

  .review-header h3 {
    font-size: 1.2rem;
  }

  .stars {
    font-size: 1.2rem;
  }

  .review-body p {
    font-size: 0.85rem;
    line-height: 1.5;
  }
}

@media (max-width: 360px) {
  .review-title {
    font-size: 1.6rem;
  }

  .review-card {
    padding: 8px;
  }

  .review-header h3 {
    font-size: 1.1rem;
  }

  .stars {
    font-size: 1rem;
  }

  .review-body p {
    font-size: 0.8rem;
  }
}

/* Podcast Section */
.podcast-section {
  padding: 60px 15px;
  background-color: #fdfaf6;
  font-family: 'Segoe UI', sans-serif;
  color: #222;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

/* Podcast Container */
.podcast-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 10px;
}

/* Podcast Title */
.podcast-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #913000;
  letter-spacing: 1px;
  margin-bottom: 40px;
  position: relative;
  text-align: center;
}

.podcast-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: #913000;
  border-radius: 4px;
}

/* Scroll Buttons */
.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #913000;
  color: white;
  border: none;
  font-size: 24px;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  opacity: 0.8;
  transition: background 0.3s ease;
}

.scroll-btn:hover {
  background-color: #6c2300;
}

.scroll-btn.left {
  left: 10px;
}

.scroll-btn.right {
  right: 10px;
}

/* Scroll Wrapper */
.podcast-scroll-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* Scroll Container */
.podcast-scroll-container {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 0;
  justify-content: flex-start;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
  scrollbar-width: none;
  will-change: scroll-position;
}

.podcast-scroll-container::-webkit-scrollbar {
  display: none;
}

/* Podcast Cards */
.podcast-card {
  flex: 0 0 auto;
  width: 480px;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  box-sizing: border-box;
}

.podcast-card:hover {
  transform: scale(1.05);
}

.podcast-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block;
  border-radius: 12px 12px 0 0;
}

/* Dragging State */
.podcast-scroll-container.dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.podcast-scroll-container.dragging .podcast-card {
  pointer-events: none;
}

/* Responsive Design for Podcast Section */
@media (max-width: 1024px) {
  .podcast-card {
    width: 360px;
  }

  .podcast-card img {
    max-height: 240px;
    aspect-ratio: 3/2;
    object-fit: cover;
  }
}

@media (max-width: 768px) {
  .podcast-section {
    padding: 40px 10px;
  }

  .podcast-container {
    padding: 0 5px;
  }

  .podcast-scroll-container {
    gap: 15px;
  }

  .podcast-section h2 {
    font-size: 2rem;
    margin-bottom: 25px;
  }

  .podcast-card {
    width: 300px;
  }

  .podcast-card img {
    max-height: 200px;
    aspect-ratio: 3/2;
    object-fit: cover;
  }

  .scroll-btn {
    font-size: 18px;
    padding: 8px;
  }
}

@media (max-width: 480px) {
  .podcast-section {
    padding: 30px 5px;
  }

  .podcast-container {
    padding: 0 5px;
  }

  .podcast-scroll-container {
    gap: 10px;
  }

  .podcast-card {
    width: 240px;
  }

  .podcast-card img {
    max-height: 160px;
    aspect-ratio: 3/2;
    object-fit: cover;
  }

  .scroll-btn {
    font-size: 16px;
    padding: 6px;
  }

  .podcast-section h2 {
    font-size: 1.8rem;
  }

  .podcast-section h2::after {
    width: 40px;
  }
}

@media (max-width: 360px) {
  .podcast-card {
    width: 200px;
  }

  .podcast-card img {
    max-height: 133px;
    aspect-ratio: 3/2;
    object-fit: cover;
  }

  .scroll-btn {
    font-size: 14px;
    padding: 5px;
  }

  .podcast-section h2 {
    font-size: 1.6rem;
  }
}

/* What We Do Section */
.what-we-do {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 60px 15px;
  background-color: #fdfaf6;
  color: #222;
  justify-content: center;
  align-items: stretch;
  font-family: 'Segoe UI', sans-serif;
  box-sizing: border-box;
}

/* Common Panel Styling */
.panel {
  flex: 1;
  max-width: 300px;
  padding: 25px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.panel:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Left Panel Styling */
.left-panel {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.left-panel:hover {
  transform: scale(1.05);
}

.left-panel h2 {
  font-size: 2.2rem;
  font-weight: bold;
  color: #913000;
}

.left-panel .question-mark {
  font-size: 2rem;
  color: #913000;
  font-weight: bold;
}

/* Headings for Middle & Right Panels */
.middle-panel h3,
.right-panel h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
}

/* Underline Accent */
.middle-panel .underline,
.right-panel .underline {
  width: 60px;
  height: 4px;
  background: #913000;
  margin: 10px auto;
  border-radius: 4px;
}

/* Paragraph Text */
.middle-panel p,
.right-panel p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  padding: 0 5px;
}

.middle-panel p em,
.right-panel p em {
  font-style: italic;
  font-weight: 500;
  color: #444;
}

/* CTA Link */
.cta-link {
  display: inline-block;
  margin-top: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #913000;
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.cta-link:hover {
  color: #6e2200;
  text-decoration: underline;
}

/* Responsive Design for What We Do Section */
@media (max-width: 768px) {
  .what-we-do {
    flex-direction: column;
    padding: 40px 10px;
    gap: 15px;
  }

  .panel,
  .left-panel {
    max-width: 100%;
    padding: 20px;
  }

  .left-panel h2 {
    font-size: 1.8rem;
  }

  .middle-panel h3,
  .right-panel h3 {
    font-size: 1.4rem;
  }

  .cta-link {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .what-we-do {
    padding: 30px 5px;
    gap: 10px;
  }

  .panel,
  .left-panel {
    padding: 15px;
  }

  .left-panel h2 {
    font-size: 1.6rem;
  }

  .middle-panel h3,
  .right-panel h3 {
    font-size: 1.3rem;
  }

  .cta-link {
    font-size: 0.85rem;
  }
}

@media (max-width: 360px) {
  .what-we-do {
    padding: 20px 5px;
  }

  .panel,
  .left-panel {
    padding: 10px;
  }

  .left-panel h2 {
    font-size: 1.4rem;
  }

  .middle-panel h3,
  .right-panel h3 {
    font-size: 1.2rem;
  }
}

/* WhatsApp Floating Button */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-button img {
  width: 35px;
  height: 35px;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Responsive Design for WhatsApp Button */
@media (max-width: 768px) {
  .whatsapp-button {
    width: 50px;
    height: 50px;
    right: 15px;
    bottom: 15px;
  }

  .whatsapp-button img {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 480px) {
  .whatsapp-button {
    width: 45px;
    height: 45px;
    right: 10px;
    bottom: 10px;
  }

  .whatsapp-button img {
    width: 25px;
    height: 25px;
  }
}

@media (max-width: 360px) {
  .whatsapp-button {
    width: 40px;
    height: 40px;
  }

  .whatsapp-button img {
    width: 20px;
    height: 20px;
  }
}

/* FAQ Section */
.faq-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 60px 15px;
  background-color: #fdfaf6;
  color: #333;
  box-sizing: border-box;
}

/* FAQ Logo and Heading */
.faq-logo {
  text-align: center;
  flex: 1 1 100%;
}

.faq-logo img {
  max-width: 300px;
  height: auto;
  margin-bottom: 15px;
}

.faq-logo-text {
  font-size: 2rem;
  color: #913000;
  font-weight: bold;
  text-align: center;
}

/* FAQ Container */
.faq-container {
  flex: 1 1 100%;
  max-width: 100%;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  padding: 30px;
  box-sizing: border-box;
}

/* FAQ Title */
.faq-title {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 25px;
  color: #913000;
  text-align: center;
}

/* FAQ Item */
.faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid #ffc42e;
  padding-bottom: 10px;
  transition: all 0.3s ease;
}

/* FAQ Question */
.faq-question {
  font-size: 1.2rem;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 10px 0;
  color: #913000;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #ffc42e;
}

.faq-arrow {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

/* FAQ Answer */
.faq-answer {
  display: none;
  padding: 12px 10px;
  background-color: #913000;
  color: #fff;
  border-radius: 8px;
  margin-top: 8px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

/* Responsive Design for FAQ Section */
@media (max-width: 768px) {
  .faq-section {
    padding: 40px 10px;
    gap: 20px;
  }

  .faq-logo img {
    max-width: 200px;
  }

  .faq-logo-text {
    font-size: 1.8rem;
  }

  .faq-title {
    font-size: 1.8rem;
  }

  .faq-container {
    padding: 20px;
  }

  .faq-question {
    font-size: 1.1rem;
  }

  .faq-answer {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 30px 5px;
    gap: 15px;
  }

  .faq-logo img {
    max-width: 150px;
  }

  .faq-logo-text {
    font-size: 1.6rem;
  }

  .faq-title {
    font-size: 1.6rem;
  }

  .faq-container {
    padding: 15px;
  }

  .faq-question {
    font-size: 1rem;
  }

  .faq-answer {
    font-size: 0.85rem;
  }
}

@media (max-width: 360px) {
  .faq-logo img {
    max-width: 120px;
  }

  .faq-logo-text {
    font-size: 1.4rem;
  }

  .faq-title {
    font-size: 1.4rem;
  }

  .faq-question {
    font-size: 0.95rem;
  }

  .faq-answer {
    font-size: 0.8rem;
  }
}

/* Logo Section */
.logo-section {
  background-color: #fdfaf6;
  color: #222;
  padding: 60px 15px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  box-sizing: border-box;
}

.logo-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #913000;
  letter-spacing: 1px;
  margin-bottom: 50px;
  position: relative;
  text-align: center;
  line-height: 1.2;
}

.logo-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: #913000;
  border-radius: 4px;
}

/* Social Icons Grid */
.social-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
  padding: 0 10px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: #fffaf0;
  border: 2px solid #e6c8a8;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.social-icons a:hover {
  background-color: #ffecca;
  border-color: #ffc42e;
  transform: translateY(-5px) scale(1.05);
}

.social-icons a img {
  width: 35px;
  height: 35px;
  object-fit: contain;
  filter: grayscale(0.2) brightness(0.95);
}

/* Responsive Design for Logo Section */
@media (max-width: 768px) {
  .logo-section {
    padding: 40px 10px;
  }

  .logo-header h2 {
    font-size: 2rem;
  }

  .social-icons {
    gap: 15px;
  }

  .social-icons a {
    width: 60px;
    height: 60px;
  }

  .social-icons a img {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 480px) {
  .logo-section {
    padding: 30px 5px;
  }

  .logo-header h2 {
    font-size: 1.8rem;
  }

  .social-icons a {
    width: 50px;
    height: 50px;
  }

  .social-icons a img {
    width: 25px;
    height: 25px;
  }
}

@media (max-width: 360px) {
  .logo-section {
    padding: 20px 5px;
  }

  .logo-header h2 {
    font-size: 1.6rem;
  }

  .social-icons a {
    width: 45px;
    height: 45px;
  }

  .social-icons a img {
    width: 20px;
    height: 20px;
  }
}

/* Wrapper for both sections */
.store-sections-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  padding: 60px 15px;
  background-color: #fdfaf6;
  box-sizing: border-box;
}

/* PMP Store Section */
.pmp-store-section {
  flex: 1;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  color: #222;
  box-sizing: border-box;
}

/* Explore Rajasthan Section */
.explore-rajasthan-section {
  flex: 1;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  color: #222;
  box-sizing: border-box;
}

/* Store Container (used by PMP Store) */
.store-container {
  flex: 1;
  max-width: 600px;
  margin: 0 auto;
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eee;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Explore Container (used by Explore Rajasthan) */
.explore-container {
  flex: 1;
  max-width: 600px;
  margin: 0 auto;
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eee;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effects for Both Containers */
.store-container:hover,
.explore-container:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Store Logo (used by both sections) */
.store-logo {
  width: 180px;
  margin-bottom: 20px;
  object-fit: contain;
}

/* Store Heading (used by both sections) */
.pmp-store-section h2,
.explore-rajasthan-section h2 {
  font-size: 2.2rem;
  font-weight: bold;
  color: #913000;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

/* Underline Accent (used by both sections) */
.store-container .underline,
.explore-container .underline {
  width: 70px;
  height: 4px;
  background: #913000;
  margin: 15px auto;
  border-radius: 4px;
}

/* Store Description (used by both sections) */
.store-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin: 20px 0;
  padding: 0 10px;
}

.store-description em {
  font-style: italic;
  font-weight: 500;
  color: #444;
}

/* CTA Link (used by both sections) */
.store-container .cta-link,
.explore-container .cta-link {
  display: inline-block;
  margin-top: 15px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #913000;
  text-decoration: none;
  padding: 10px 20px;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.store-container .cta-link:hover,
.explore-container .cta-link:hover {
  color: #6e2200;
  text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .store-sections-wrapper {
    flex-direction: column;
    gap: 40px;
    padding: 60px 10px;
  }

  .store-container,
  .explore-container {
    max-width: 90%;
    padding: 20px;
  }

  .store-logo {
    width: 150px;
  }

  .pmp-store-section h2,
  .explore-rajasthan-section h2 {
    font-size: 2rem;
  }

  .store-description {
    font-size: 1.1rem;
  }

  .store-container .underline,
  .explore-container .underline {
    width: 60px;
  }

  .store-container .cta-link,
  .explore-container .cta-link {
    font-size: 0.95rem;
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .store-sections-wrapper {
    padding: 40px 10px;
  }

  .store-container,
  .explore-container {
    max-width: 100%;
    padding: 20px;
  }

  .store-logo {
    width: 120px;
  }

  .pmp-store-section h2,
  .explore-rajasthan-section h2 {
    font-size: 1.8rem;
  }

  .store-description {
    font-size: 1rem;
  }

  .store-container .underline,
  .explore-container .underline {
    width: 50px;
  }

  .store-container .cta-link,
  .explore-container .cta-link {
    font-size: 0.9rem;
    padding: 8px 18px;
  }
}

@media (max-width: 360px) {
  .pmp-store-section {
    padding: 30px 5px;
  }

  .store-container {
    padding: 10px;
  }

  .store-logo {
    width: 100px;
  }

  .pmp-store-section h2,
  .explore-rajasthan-section h2 {
    font-size: 1.6rem;
  }

  .store-description {
    font-size: 0.9rem;
  }

  .store-container .cta-link,
  .explore-container .cta-link {
    padding: 8px 12px;
    font-size: 0.85rem;
  }
}

/* Portfolio Title */
.portfolio-title {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  font-family: 'Segoe UI', sans-serif;
}

.portfolio-title h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #913000;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
  position: relative;
}

.portfolio-title h2::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: #913000;
  border-radius: 4px;
}

/* Portfolio Section */
.portfolio-section {
  background: #fdfaf6;
  padding: 60px 15px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  font-family: 'Segoe UI', sans-serif;
  box-sizing: border-box;
  width: 100%;
}

/* Portfolio Row */
.portfolio-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

/* Image Wrapper for Animation */
.image-wrapper {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  width: max-content;
  will-change: transform, scroll-position;
}

/* Horizontal Images */
.horizontal-images .portfolio-image {
  flex: 0 0 auto;
  width: 300px;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.horizontal-images .portfolio-image:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border: 2px solid #913000;
}

/* Dragging State */
.image-wrapper.dragging {
  cursor: grabbing;
  animation: none;
}

.image-wrapper.dragging .portfolio-image {
  pointer-events: none;
}

/* Animations */
@keyframes moveLeftToRight {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-1340px);
  }
}

@keyframes moveRightToLeft {
  0% {
    transform: translateX(-1340px);
  }

  100% {
    transform: translateX(0);
  }
}

/* Apply Animations to Rows */
.row-1 .image-wrapper,
.row-3 .image-wrapper {
  animation: moveLeftToRight 20s infinite linear;
}

.row-2 .image-wrapper {
  animation: moveRightToLeft 20s infinite linear;
}

/* Responsive Design for Portfolio Section */
@media (max-width: 1024px) {
  .portfolio-row {
    gap: 15px;
  }

  .horizontal-images .portfolio-image {
    width: 240px;
    aspect-ratio: 3/2;
    max-height: 160px;
    object-fit: cover;
  }
}

@media (max-width: 768px) {
  .portfolio-section {
    padding: 40px 10px;
  }

  .portfolio-row {
    gap: 5px;
    flex-wrap: nowrap;
  }

  .image-wrapper {
    gap: 5px;
  }

  .horizontal-images .portfolio-image {
    width: 180px;
    aspect-ratio: 3/2;
    max-height: 120px;
    object-fit: cover;
    border-radius: 8px;
  }

  .portfolio-title {
    margin-bottom: 20px;
  }

  .portfolio-title h2 {
    font-size: 2rem;
  }

  .portfolio-title h2::before {
    width: 40px;
    height: 2px;
  }

  @keyframes moveLeftToRight {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-835px);
    }
  }

  @keyframes moveRightToLeft {
    0% {
      transform: translateX(-835px);
    }

    100% {
      transform: translateX(0);
    }
  }
}

@media (max-width: 600px) {
  .portfolio-section {
    padding: 35px 8px;
  }

  .portfolio-row {
    gap: 4px;
  }

  .image-wrapper {
    gap: 4px;
  }

  .horizontal-images .portfolio-image {
    width: 150px;
    aspect-ratio: 3/2;
    max-height: 100px;
    object-fit: cover;
    border-radius: 6px;
  }

  .portfolio-title h2 {
    font-size: 1.8rem;
  }

  .portfolio-title h2::before {
    width: 35px;
  }

  @keyframes moveLeftToRight {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-748px);
    }
  }

  @keyframes moveRightToLeft {
    0% {
      transform: translateX(-748px);
    }

    100% {
      transform: translateX(0);
    }
  }
}

@media (max-width: 480px) {
  .portfolio-section {
    padding: 30px 5px;
  }

  .portfolio-row {
    gap: 3px;
  }

  .image-wrapper {
    gap: 3px;
  }

  .horizontal-images .portfolio-image {
    width: 120px;
    aspect-ratio: 3/2;
    max-height: 80px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  }

  .portfolio-title h2 {
    font-size: 1.6rem;
  }

  .portfolio-title h2::before {
    width: 30px;
    height: 2px;
  }

  @keyframes moveLeftToRight {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-661px);
    }
  }

  @keyframes moveRightToLeft {
    0% {
      transform: translateX(-661px);
    }

    100% {
      transform: translateX(0);
    }
  }
}

@media (max-width: 360px) {
  .portfolio-section {
    padding: 25px 5px;
  }

  .portfolio-row {
    gap: 2px;
  }

  .image-wrapper {
    gap: 2px;
  }

  .horizontal-images .portfolio-image {
    width: 100px;
    aspect-ratio: 3/2;
    max-height: 67px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }

  .portfolio-title h2 {
    font-size: 1.4rem;
  }

  .portfolio-title h2::before {
    width: 25px;
    height: 1.5px;
  }

  @keyframes moveLeftToRight {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-574px);
    }
  }

  @keyframes moveRightToLeft {
    0% {
      transform: translateX(-574px);
    }

    100% {
      transform: translateX(0);
    }
  }
}

/* Contact Section */
.contact-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 15px;
  background: #fdfaf6;
  color: #222;
  font-family: 'Segoe UI', sans-serif;
  gap: 30px;
  flex-wrap: wrap;
  box-sizing: border-box;
}

/* Contact Content */
.contact-content {
  flex: 1;
  padding: 25px;
  max-width: 100%;
  text-align: left;
}

/* Contact Heading */
.contact-heading {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.3;
  color: #913000;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
}

.contact-heading::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 70px;
  height: 3px;
  background-color: #913000;
  border-radius: 4px;
}

/* Contact Subtext */
.contact-subtext {
  font-size: 1.3rem;
  margin-bottom: 12px;
  font-weight: 600;
  color: #913000;
}

/* Contact Details */
.contact-details {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

/* Contact Form */
.contact-form {
  flex: 1;
  max-width: 100%;
  background-color: #fdfaf6;
  padding: 30px;
  border-radius: 12px;
  margin: 0 auto;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
  box-sizing: border-box;
}

/* Form Layout */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Input & Textarea */
input,
textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #913000;
  border-radius: 6px;
  font-size: 1rem;
  background-color: #fff5e9;
  color: #222;
  font-family: 'Segoe UI', sans-serif;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  box-sizing: border-box;
}

input::placeholder,
textarea::placeholder {
  color: #999;
}

input:focus,
textarea:focus {
  border-color: #ffc42e;
  box-shadow: 0 0 8px rgba(255, 196, 46, 0.5);
  transform: scale(1.02);
  outline: none;
}

/* Textarea */
textarea {
  resize: none;
  height: 90px;
}

/* Submit Button */
.btn-submit {
  background-color: #ffc42e;
  color: #1A1A1A;
  padding: 12px 18px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s, transform 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  margin-right: auto;
}

.btn-submit:hover {
  background-color: #913000;
  color: #F2E8C6;
  transform: scale(1.05);
}

/* Responsive Design for Contact Section */
@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
    padding: 40px 10px;
    gap: 20px;
  }

  .contact-content,
  .contact-form {
    max-width: 100%;
    text-align: center;
    padding: 20px;
  }

  .contact-heading {
    font-size: 2rem;
  }

  .contact-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .contact-subtext,
  .contact-details {
    font-size: 0.95rem;
  }

  .contact-form {
    padding: 20px;
  }

  input,
  textarea {
    font-size: 0.95rem;
  }

  .btn-submit {
    width: 100%;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 30px 5px;
    gap: 15px;
  }

  .contact-content,
  .contact-form {
    padding: 15px;
  }

  .contact-heading {
    font-size: 1.8rem;
  }

  .contact-subtext,
  .contact-details {
    font-size: 0.9rem;
  }

  .contact-form {
    padding: 15px;
  }

  input,
  textarea {
    font-size: 0.9rem;
  }

  .btn-submit {
    font-size: 0.9rem;
  }
}

@media (max-width: 360px) {
  .contact-section {
    padding: 20px 5px;
  }

  .contact-heading {
    font-size: 1.6rem;
  }

  .contact-subtext,
  .contact-details {
    font-size: 0.85rem;
  }

  .contact-form {
    padding: 10px;
  }

  .btn-submit {
    font-size: 0.85rem;
  }
}