/* Base Styles */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap");

:root {
  --primary-color: #8b0000;
  --primary-light: #c41e3a;
  --primary-dark: #5c0000;
  --secondary-color: #d4af37;
  --secondary-light: #f5d76e;
  --accent-color: #f8f0e3;
  --dark-color: #1a1a1a;
  --light-color: #ffffff;
  --text-color: #333333;
  --text-light: #666666;
  --gray-color: #f5f5f5;
  --gray-dark: #e0e0e0;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.1), 0 6px 6px rgba(0, 0, 0, 0.1);
  --border-radius: 8px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-color);
  overflow-x: hidden;
  position: relative;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-padding {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-subtitle {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 1rem; /* Space between subtitle and title */
  position: relative;
  padding: 0 50px;
}

.section-subtitle::before,
.section-subtitle::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background-color: var(--primary-color);
}

.section-subtitle::before {
  left: -40px; /* Position the line to the left of the text */
}

.section-subtitle::after {
  right: -40px; /* Position the line to the right of the text */
}

.section-title {
  font-size: 2.5rem;
  color: var(--dark-color);
  position: relative;
  display: block;
  margin-top: 0.5rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  border-radius: 3px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
  color: var(--light-color);
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  z-index: 1;
}

.btn span {
  position: relative;
  z-index: 2;
  transition: var(--transition);
}

.btn i {
  margin-left: 10px;
  position: relative;
  z-index: 2;
  transition: var(--transition);
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(45deg, var(--primary-dark), var(--primary-color));
  transition: var(--transition);
  z-index: 1;
}

.btn:hover::before {
  width: 100%;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn:hover i {
  transform: translateX(5px);
}

/* Custom Cursor */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--primary-color);
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
  transform: translate(-50%, -50%);
}

.cursor-follower {
  position: fixed;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--primary-color);
  pointer-events: none;
  z-index: 9998;
  opacity: 0;
  transition: transform 0.1s ease, opacity 0.3s ease;
  transform: translate(-50%, -50%);
}

/* Background Animation */
.bg-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.bg-animation-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(139, 0, 0, 0.05), rgba(212, 175, 55, 0.05));
  animation: float 15s infinite ease-in-out;
}

.bg-animation-shape:nth-child(1) {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.bg-animation-shape:nth-child(2) {
  width: 300px;
  height: 300px;
  bottom: -50px;
  left: -50px;
  animation-delay: 5s;
}

.bg-animation-shape:nth-child(3) {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  animation-delay: 10s;
}

@keyframes float {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(100px, 100px) rotate(180deg);
  }
  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: var(--transition);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.logo h1 {
  font-size: 1.8rem;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}

.nav-links {
  display: flex;
}

.nav-links li {
  margin-left: 2rem;
}

.nav-link {
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 5px 0;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  height: 100vh;
  background-color: var(--light-color);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  padding: 0 1rem;
}

.hero-text {
  flex: 1;
  padding-right: 2rem;
}

.hero-text h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.gradient-text {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero-image {
  flex: 1;
  position: relative;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  box-shadow: var(--shadow-lg);
  animation: morphing 10s infinite;
}

.hero-image-decoration {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--secondary-color);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: -1;
  animation: morphing 10s infinite 0.5s;
}

@keyframes morphing {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  25% {
    border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
  }
  50% {
    border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
  }
  75% {
    border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
  }
  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-light);
  animation: bounce 2s infinite;
}

.scroll-indicator span {
  font-size: 0.8rem;
  margin-bottom: 5px;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-10px) translateX(-50%);
  }
  60% {
    transform: translateY(-5px) translateX(-50%);
  }
}

/* About Section */
.about {
  background-color: var(--accent-color);
  position: relative;
  overflow: hidden;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}

.about-image {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.about-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
}

.about-image-decoration {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius);
  z-index: -1;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 2rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 150px;
}

.highlight-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  box-shadow: var(--shadow-sm);
}

.highlight-text h4 {
  font-size: 1.5rem;
  margin-bottom: 0;
  color: var(--primary-color);
}

.highlight-text p {
  font-size: 0.9rem;
  margin: 0;
}

/* Gallery Section */
.gallery {
  background-color: var(--light-color);
  position: relative;
}

.gallery-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  gap: 10px;
}

.filter-btn {
  padding: 8px 20px;
  background-color: transparent;
  border: 1px solid var(--gray-dark);
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
  color: white;
  border-color: transparent;
  box-shadow: var(--shadow-sm);
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  height: 300px;
  transform-origin: center;
}

.gallery-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-lg);
  z-index: 1;
}

.gallery-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

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

.gallery-item:hover .gallery-image img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(139, 0, 0, 0.9), rgba(139, 0, 0, 0.2), transparent);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-info {
  color: white;
  transform: translateY(20px);
  transition: transform 0.3s ease 0.1s;
}

.gallery-item:hover .gallery-info {
  transform: translateY(0);
}

.gallery-info h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.gallery-info p {
  font-size: 0.9rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.gallery-pagination {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.load-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 25px;
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.load-more-btn span {
  margin-right: 8px;
}

.load-more-btn:hover {
  background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* Contact Section */
.contact {
  background-color: var(--accent-color);
  position: relative;
  overflow: hidden;
}

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

.contact-info,
.contact-form {
  flex: 1;
  min-width: 300px;
}

.contact-info h3 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.info-item i {
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  box-shadow: var(--shadow-sm);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.social-icon:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.form-group {
  position: relative;
  margin-bottom: 30px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 0;
  font-size: 1rem;
  color: var(--text-color);
  border: none;
  border-bottom: 1px solid var(--gray-dark);
  outline: none;
  background-color: transparent;
  transition: var(--transition);
}

.form-group label {
  position: absolute;
  top: 15px;
  left: 0;
  color: var(--text-light);
  pointer-events: none;
  transition: var(--transition);
}

.form-group input:focus ~ label,
.form-group textarea:focus ~ label,
.form-group input:valid ~ label,
.form-group textarea:valid ~ label {
  top: -10px;
  font-size: 0.8rem;
  color: var(--primary-color);
}

.focus-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  transition: var(--transition);
}

.form-group input:focus ~ .focus-border,
.form-group textarea:focus ~ .focus-border {
  width: 100%;
}

.form-group textarea {
  height: 100px;
  resize: none;
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: white;
  padding: 30px 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo h2 {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 5px;
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin: 0;
}

/* Animation Classes */
.reveal-text {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-text.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-image {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-image.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-stagger {
  opacity: 1;
}

.reveal-stagger .gallery-item {
  opacity: 0;
  transform: translateY(30px);
  animation: staggerFade 0.5s forwards;
}

.reveal-stagger.active .gallery-item:nth-child(1) {
  animation-delay: 0.1s;
}

.reveal-stagger.active .gallery-item:nth-child(2) {
  animation-delay: 0.2s;
}

.reveal-stagger.active .gallery-item:nth-child(3) {
  animation-delay: 0.3s;
}

.reveal-stagger.active .gallery-item:nth-child(4) {
  animation-delay: 0.4s;
}

.reveal-stagger.active .gallery-item:nth-child(5) {
  animation-delay: 0.5s;
}

.reveal-stagger.active .gallery-item:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes staggerFade {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
  html {
    font-size: 14px;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .hero-image {
    max-width: 400px;
    margin: 0 auto;
  }

  .hero-text h1 {
    font-size: 3rem;
  }
}

@media screen and (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: white;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links li {
    margin: 15px 0;
  }

  .hamburger {
    display: block;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .about-content,
  .contact-content {
    flex-direction: column;
  }

  .about-image {
    margin-bottom: 30px;
  }

  .gallery-container {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 576px) {
  .section-subtitle {
    padding: 0;
  }

  .section-subtitle::before,
  .section-subtitle::after {
    width: 20px; /* Shorter lines on small screens */
  }

  .section-subtitle::before {
    left: -30px;
  }

  .section-subtitle::after {
    right: -30px;
  }

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

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text h2 {
    font-size: 1.2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .about-highlights {
    flex-direction: column;
  }

  .gallery-container {
    grid-template-columns: 1fr;
  }

  .cursor,
  .cursor-follower {
    display: none;
  }
}
/* today code updtae */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}

.about-section {
  /* padding: 0 80px 0 0;  */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.section-badge {
  display: inline-block;
  background: #fff;
  border: 2px solid #e2e8f0;
  color: #64748b;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}

.section-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.about-main-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: start;
}

.profile-section {
  position: relative;
}

.profile-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  aspect-ratio: 4/5;
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-decoration-1 {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f97316, #ec4899);
  border-radius: 50%;
  opacity: 0.2;
}

.profile-decoration-2 {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 50%;
  opacity: 0.2;
}

.bio-content {
  space-y: 30px;
}

.bio-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 25px;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
  width: 100%;
}

.achievement-card {
  background: white;
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.achievement-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.achievement-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  background: linear-gradient(135deg, #fed7aa, #fecaca);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.achievement-icon i {
  font-size: 20px;
  color: #ea580c;
}

.achievement-number {
  font-size: 2rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 5px;
}

.achievement-label {
  font-size: 0.9rem;
  color: #64748b;
}

.events-section {
  margin-bottom: 60px;
}

.events-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
  color: #1a202c;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.event-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #f1f5f9;
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

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

.event-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a202c;
}

.event-badge {
  background: linear-gradient(135deg, #fed7aa, #fecaca);
  color: #ea580c;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid #fed7aa;
}

.event-content {
  color: #4a5568;
  line-height: 1.7;
}

.philanthropy-section {
  background: linear-gradient(135deg, #fef3e2, #fce7f3);
  border: 2px solid #fed7aa;
  border-radius: 20px;
  padding: 50px;
  margin-bottom: 60px;
}

.philanthropy-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.philanthropy-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #f97316, #ec4899);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.philanthropy-icon i {
  color: white;
  font-size: 20px;
}

.philanthropy-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a202c;
}

.philanthropy-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 25px;
}

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

.cause-tag {
  background: white;
  border: 1px solid #e2e8f0;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  color: #64748b;
}

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

.recognition-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #fed7aa, #fecaca);
  padding: 15px 25px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.recognition-badge i {
  color: #ea580c;
  margin-right: 10px;
}

.recognition-text {
  color: #ea580c;
  font-weight: 500;
}

.recognition-description {
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-main-grid {
      grid-template-columns: 1fr;
      gap: 40px;
  }

  .achievements-grid {
      grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .section-title {
      font-size: 2.5rem;
  }

  .achievements-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
  }

  .achievement-card {
      padding: 20px 15px;
  }

  .event-card {
      padding: 25px;
  }

  .philanthropy-section {
      padding: 30px 25px;
  }

  .philanthropy-header {
      flex-direction: column;
      text-align: center;
  }

  .philanthropy-icon {
      margin-right: 0;
      margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .achievements-grid {
      grid-template-columns: 1fr;
  }

  .section-title {
      font-size: 2rem;
  }

  .events-title {
      font-size: 2rem;
  }
}