/* ------------------------------
           Gallery Section
        --------------------------------*/
.gallery-wrapper {
  width: min(1120px, 92%);
  margin: auto;
  padding-top: 20px;
}



.carousel-wrapper {
  position: relative;
  width: 100%;
  margin: auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  background-color: #fff;
}

.carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-item {
  min-width: 25%;
  transition: transform 0.3s ease-in-out;
  padding: 0 10px;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease-in-out;
}

.carousel-item img:hover {
  transform: scale(1.1);
}

.nav-button {
  position: absolute;
  top: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 30px;
  padding: 10px;
  border: none;
  cursor: pointer;
  transform: translateY(-50%);
  z-index: 10;
  border-radius: 50%;
  transition: background-color 0.3s;
}

.prev-button {
  left: 20px;
}

.next-button {
  right: 20px;
}

.nav-button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Media Queries for responsiveness */

@media (max-width: 767px) {
  .carousel-item {
    min-width: 100%;
    padding: 0;
  }

  .nav-button {
    font-size: 25px;
  }

  h1 {
    font-size: 1.5rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .carousel-item {
    min-width: 33.33%;
  }

  .nav-button {
    font-size: 30px;
  }

  h1 {
    font-size: 1.8rem;
  }
}

@media (min-width: 1024px) and (max-width: 1439px) {
  .carousel-item {
    min-width: 25%;
  }

  .nav-button {
    font-size: 30px;
  }

  h1 {
    font-size: 2rem;
  }
}

@media (min-width: 1440px) {
  .carousel-item {
    min-width: 25%;
  }

  .nav-button {
    font-size: 30px;
  }

  h1 {
    font-size: 2rem;
  }
}

/* Testimonials Section */
.testimonials {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #f5f5f0 0%, #e8e8e0 100%);
  padding: 80px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Decorative Background Images */
.testimonials::before {
  content: "";
  position: absolute;
  left: -50px;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  height: 400px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 300"><g opacity="0.15" stroke="%23333" fill="none" stroke-width="1"><path d="M100,50 Q80,70 70,90 Q60,110 60,130 Q60,150 70,170 Q80,190 100,200 M100,50 Q120,70 130,90 Q140,110 140,130 Q140,150 130,170 Q120,190 100,200"/><ellipse cx="100" cy="180" rx="60" ry="80"/></g></svg>')
    no-repeat center;
  background-size: contain;
  opacity: 0.3;
  pointer-events: none;
}

.testimonials::after {
  content: "";
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  height: 400px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 300"><g opacity="0.15" stroke="%23333" fill="none" stroke-width="1"><ellipse cx="100" cy="150" rx="70" ry="90"/><circle cx="100" cy="100" r="40"/><path d="M80,180 Q90,200 100,210 Q110,200 120,180"/></g></svg>')
    no-repeat center;
  background-size: contain;
  opacity: 0.3;
  pointer-events: none;
}

.testimonials-container {
  max-width: 900px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 1;
}

.testimonials-title {
  font-size: 48px;
  font-weight: 700;
  color: #2d2d2d;
  margin-bottom: 60px;
  letter-spacing: -1px;
}

.testimonial-card {
  background: white;
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.quote-icon {
  font-size: 80px;
  color: #dc2626;
  line-height: 1;
  margin-bottom: 30px;
  font-family: Georgia, serif;
}

.testimonial-name {
  font-size: 22px;
  font-weight: 700;
  color: #2d2d2d;
  margin-bottom: 25px;
}

.testimonial-text {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
  max-width: 700px;
  margin: 0 auto 40px;
}

.testimonial-nav {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #2d2d2d;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 20px;
  color: #2d2d2d;
}

.nav-btn:hover {
  background: #dc2626;
  border-color: #dc2626;
  color: white;
  transform: scale(1.1);
}

.nav-btn:active {
  transform: scale(0.95);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .testimonials {
    padding: 60px 20px;
    min-height: auto;
  }

  .testimonials::before,
  .testimonials::after {
    width: 150px;
    height: 200px;
  }

  .testimonials-title {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .testimonial-card {
    padding: 40px 25px;
  }

  .quote-icon {
    font-size: 60px;
    margin-bottom: 20px;
  }

  .testimonial-name {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
  }

  .nav-btn {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}

@media screen and (max-width: 480px) {
  .testimonials {
    padding: 40px 15px;
  }

  .testimonials-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .testimonial-card {
    padding: 30px 20px;
    border-radius: 15px;
  }

  .quote-icon {
    font-size: 50px;
  }

  .testimonial-name {
    font-size: 18px;
  }

  .testimonial-text {
    font-size: 15px;
    line-height: 1.6;
  }

  .nav-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

/* Tablet View */
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .testimonials {
    padding: 70px 30px;
  }

  .testimonials-title {
    font-size: 42px;
  }

  .testimonial-card {
    padding: 50px 35px;
  }

  .testimonial-text {
    font-size: 17px;
  }
}

/* Large Desktop Views */
@media screen and (min-width: 1440px) {
  .testimonials-container {
    max-width: 1100px;
  }

  .testimonials-title {
    font-size: 56px;
    margin-bottom: 70px;
  }

  .testimonial-card {
    padding: 70px 50px;
  }

  .testimonial-text {
    font-size: 20px;
    max-width: 800px;
  }

  .quote-icon {
    font-size: 90px;
  }

  .testimonial-name {
    font-size: 24px;
  }
}

@media screen and (min-width: 2560px) {
  .testimonials {
    padding: 120px 40px;
  }

  .testimonials-container {
    max-width: 1400px;
  }

  .testimonials-title {
    font-size: 72px;
    margin-bottom: 90px;
  }

  .testimonial-card {
    padding: 90px 70px;
  }

  .testimonial-text {
    font-size: 24px;
    max-width: 1000px;
    line-height: 1.9;
  }

  .quote-icon {
    font-size: 110px;
  }

  .testimonial-name {
    font-size: 28px;
    margin-bottom: 35px;
  }

  .nav-btn {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}


 /* Experience */

 /* Experience Section Styles */
.experience {
  background-color: #ffffff;
  padding: 60px 20px;
  overflow: hidden;
}

.experience-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.experience-images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding-left: 40px;
}

.vertical-line {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background-color: #d6001c;
  border-radius: 3px;
}

.image-left,
.image-right {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-left {
  margin-top: 80px;
}

.image-right {
  margin-bottom: 80px;
}

.experience-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 300px;
}

.experience-content {
  padding: 0 20px;
}

.experience-title {
  font-size: 48px;
  font-weight: 800;
  color: #000000;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.experience-title .highlight {
  color: #d6001c;
}

.experience-subtitle {
  font-size: 20px;
  font-weight: 600;
  color: #d6001c;
  margin: 0 0 40px 0;
}

.experience-features {
  list-style: none;
  padding: 0;
  margin: 0 0 50px 0;
}

.experience-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 20px;
}

.check-icon {
  width: 24px;
  height: 24px;
  color: #DC143C;
  flex-shrink: 0;
}

.experience-footer {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
}

.discover-btn {
  background-color: #d6001c;
  color: #ffffff;
  border: none;
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.discover-btn:hover {
  background-color: #d6001c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
}

.arrow-icon {
  width: 20px;
  height: 20px;
}

.since-badge {
  width: 100px;
  height: 100px;
  background-color: #2c2c2c;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* .since-badge::before {
  content: '';
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 4px;
  background-color: #d6001c;
} */

.since-text {
  font-size: 14px;
  color: #ffffff;
  font-weight: 400;
  margin-bottom: 2px;
}

.since-year {
  font-size: 24px;
  color: #ffffff;
  font-weight: 700;
}

/* Tablet View - 768px to 1023px */
@media (max-width: 1023px) {
  .experience {
    padding: 50px 20px;
  }

  .experience-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .experience-images {
    padding-left: 30px;
    max-width: 600px;
    margin: 0 auto;
  }

  .image-left {
    margin-top: 60px;
  }

  .image-right {
    margin-bottom: 60px;
  }

  .experience-title {
    font-size: 40px;
  }

  .experience-subtitle {
    font-size: 18px;
  }

  .experience-content {
    text-align: left;
  }
}

/* Mobile View - up to 767px */
@media (max-width: 767px) {
  .experience {
    padding: 40px 16px;
  }

  .experience-container {
    gap: 40px;
  }

  .experience-images {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-left: 20px;
  }

  .vertical-line {
    width: 4px;
  }

  .image-left,
  .image-right {
    margin: 0;
  }

  .experience-images img {
    min-height: 250px;
  }

  .experience-title {
    font-size: 32px;
  }

  .experience-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .experience-features li {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .check-icon {
    width: 20px;
    height: 20px;
  }

  .experience-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .discover-btn {
    padding: 14px 28px;
    font-size: 13px;
    width: 100%;
    justify-content: center;
  }

  .since-badge {
    width: 90px;
    height: 90px;
  }

  .since-badge::before {
    left: -30px;
    width: 20px;
    height: 3px;
  }

  .since-text {
    font-size: 13px;
  }

  .since-year {
    font-size: 22px;
  }
}

/* Large Desktop - 1440px */
@media (min-width: 1440px) {
  .experience {
    padding: 80px 40px;
  }

  .experience-container {
    gap: 80px;
  }

  .experience-title {
    font-size: 54px;
  }

  .experience-subtitle {
    font-size: 22px;
  }
}

/* Extra Large Desktop - 2560px */
@media (min-width: 2560px) {
  .experience {
    padding: 120px 60px;
  }

  .experience-container {
    max-width: 2000px;
    gap: 120px;
  }

  .experience-images {
    padding-left: 60px;
  }

  .experience-images img {
    min-height: 500px;
  }

  .experience-title {
    font-size: 72px;
  }

  .experience-subtitle {
    font-size: 28px;
    margin-bottom: 60px;
  }

  .experience-features li {
    font-size: 24px;
    margin-bottom: 28px;
  }

  .check-icon {
    width: 32px;
    height: 32px;
  }

  .discover-btn {
    padding: 20px 40px;
    font-size: 16px;
  }

  .since-badge {
    width: 130px;
    height: 130px;
  }

  .since-text {
    font-size: 16px;
  }

  .since-year {
    font-size: 32px;
  }
}



/* High Quality */


/* High Quality Section Styles */
.high-quality {
  background-image: url('https://images.unsplash.com/photo-1596040033229-a0b4c3f3e92e?w=1920');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  padding: 80px 20px;
  min-height: 600px;
}

.high-quality::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.3) 100%); */
}

.high-quality-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.high-quality-left {
  padding-right: 40px;
}

.main-title {
  font-size: 48px;
  font-weight: 800;
  color: #000000;
  margin: 0 0 40px 0;
  line-height: 1.2;
}

.main-title .highlight {
  color: #d6001c;
}

.contact-info {
  margin-bottom: 60px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.whatsapp-icon {
  width: 60px;
  height: 60px;
  color: #000000;
  background-color: #d6001c;
  padding: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-label {
  font-size: 14px;
  color: #000000;
  opacity: 0.9;
}

.contact-number {
  font-size: 24px;
  font-weight: 700;
  color: #000000;
}

.progress-bars {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.progress-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.progress-label {
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  letter-spacing: 1px;
}

.progress-percentage {
  font-size: 16px;
  font-weight: 700;
  color: #000000;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background-color: #d6001c;
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background-color: #d6001c;
  border-radius: 4px;
  transition: width 1s ease-in-out;
}

.high-quality-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background-color: #ffffff;
  border: 1px solid #ffffff;
  max-width: 600px;
  width: 100%;
}

.stat-card {
  background-color: #d6001c;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.stat-card:hover {
  background-color: #d6001c;
  transform: scale(1.02);
}

.stat-icon {
  width: 50px;
  height: 50px;
  color: #ffffff;
  margin-bottom: 8px;
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  line-height: 1;
}

.stat-description {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  margin: 0;
  line-height: 1.4;
}

/* Tablet View - 768px to 1023px */
@media (max-width: 1023px) {
  .high-quality {
    padding: 60px 20px;
  }

  .high-quality-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .high-quality-left {
    padding-right: 0;
  }

  .main-title {
    font-size: 40px;
  }

  .contact-number {
    font-size: 20px;
  }

  .stats-grid {
    max-width: 100%;
  }

  .stat-card {
    padding: 35px 25px;
  }
}

/* Mobile View - up to 767px */
@media (max-width: 767px) {
  .high-quality {
    padding: 40px 16px;
    background-attachment: scroll;
  }

  /* .high-quality::before {
    background: rgba(0, 0, 0, 0.75);
  } */

  .high-quality-container {
    gap: 40px;
  }

  .main-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .contact-info {
    margin-bottom: 40px;
  }

  .whatsapp-icon {
    width: 50px;
    height: 50px;
    padding: 10px;
  }

  .contact-label {
    font-size: 12px;
  }

  .contact-number {
    font-size: 18px;
  }

  .progress-bars {
    gap: 25px;
  }

  .progress-label,
  .progress-percentage {
    font-size: 14px;
  }

  .progress-bar {
    height: 6px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .stat-card {
    padding: 30px 20px;
  }

  .stat-icon {
    width: 40px;
    height: 40px;
  }

  .stat-number {
    font-size: 28px;
  }

  .stat-description {
    font-size: 14px;
  }
}

/* Small Mobile - up to 374px */
@media (max-width: 374px) {
  .main-title {
    font-size: 24px;
  }

  .contact-number {
    font-size: 16px;
  }

  .stat-card {
    padding: 25px 15px;
  }

  .stat-number {
    font-size: 24px;
  }
}

/* Large Desktop - 1440px */
@media (min-width: 1440px) {
  .high-quality {
    padding: 100px 40px;
  }

  .high-quality-container {
    gap: 80px;
  }

  .main-title {
    font-size: 56px;
    margin-bottom: 50px;
  }

  .whatsapp-icon {
    width: 70px;
    height: 70px;
  }

  .contact-number {
    font-size: 28px;
  }

  .progress-label,
  .progress-percentage {
    font-size: 18px;
  }

  .progress-bar {
    height: 10px;
  }

  .stat-card {
    padding: 50px 40px;
  }

  .stat-icon {
    width: 60px;
    height: 60px;
  }

  .stat-number {
    font-size: 38px;
  }

  .stat-description {
    font-size: 18px;
  }
}

/* Extra Large Desktop - 2560px */
@media (min-width: 2560px) {
  .high-quality {
    padding: 150px 60px;
  }

  .high-quality-container {
    max-width: 2000px;
    gap: 120px;
  }

  .main-title {
    font-size: 72px;
    margin-bottom: 70px;
  }

  .whatsapp-icon {
    width: 90px;
    height: 90px;
  }

  .contact-label {
    font-size: 18px;
  }

  .contact-number {
    font-size: 36px;
  }

  .progress-label,
  .progress-percentage {
    font-size: 22px;
  }

  .progress-bar {
    height: 12px;
  }

  .stats-grid {
    max-width: 800px;
    gap: 2px;
  }

  .stat-card {
    padding: 70px 60px;
  }

  .stat-icon {
    width: 80px;
    height: 80px;
  }

  .stat-number {
    font-size: 48px;
  }

  .stat-description {
    font-size: 22px;
  }
}







/* Aboutstoy Section Styles */
.aboutstoy {
  background-color: #ffffff;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.aboutstoy-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 150px 1fr 150px;
  gap: 40px;
  align-items: center;
  position: relative;
}

.decor-left,
.decor-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.decor-left img,
.decor-right img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.decor-left img {
  max-width: 120px;
}

.decor-right img {
  max-width: 140px;
}

.aboutstoy-content {
  text-align: center;
}

.aboutstoy-title {
  font-size: 42px;
  font-weight: 800;
  color: #000000;
  margin: 0 0 20px 0;
  line-height: 1.3;
}

.aboutstoy-title .highlight {
  color: #d6001c;
}

.aboutstoy-description {
  font-size: 15px;
  color: #666666;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 30px;
}

.aboutstoy-btn {
  background-color: #d6001c;
  color: #ffffff;
  border: none;
  padding: 14px 32px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  margin-bottom: 50px;
}

.aboutstoy-btn:hover {
  background-color: #d6001c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(184, 98, 27, 0.3);
}

.aboutstoy-btn svg {
  width: 18px;
  height: 18px;
}

.aboutstoy-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.aboutstoy-card {
  background-color: #f5f5f5;
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.aboutstoy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.card-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}

.card-badge {
  display: inline-block;
  padding: 6px 14px;
  background-color: #FFE5CC;
  color: #d6001c;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 20px;
  width: fit-content;
  letter-spacing: 0.5px;
}

.card-title {
  font-size: 24px;
  font-weight: 800;
  color: #000000;
  margin: 0;
  line-height: 1.2;
}

.card-text {
  font-size: 13px;
  color: #666666;
  margin: 0;
  line-height: 1.6;
}

.card-btn {
  background-color: #d6001c;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.card-btn:hover {
  background-color: #d6001c;
  transform: translateX(4px);
}

.card-btn svg {
  width: 14px;
  height: 14px;
}

.card-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* Tablet View - 768px to 1023px */
@media (max-width: 1023px) {
  .aboutstoy {
    padding: 60px 20px;
  }

  .aboutstoy-container {
    grid-template-columns: 100px 1fr 100px;
    gap: 30px;
  }

  .decor-left img {
    max-width: 90px;
  }

  .decor-right img {
    max-width: 100px;
  }

  .aboutstoy-title {
    font-size: 36px;
  }

  .aboutstoy-description {
    font-size: 14px;
    max-width: 600px;
  }

  .aboutstoy-btn {
    margin-bottom: 40px;
  }

  .aboutstoy-cards {
    gap: 24px;
  }

  .aboutstoy-card {
    padding: 24px;
  }

  .card-title {
    font-size: 22px;
  }

  .card-image {
    width: 100px;
    height: 100px;
  }
}

/* Mobile View - up to 767px */
@media (max-width: 767px) {
  .aboutstoy {
    padding: 40px 16px;
  }

  .aboutstoy-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .decor-left,
  .decor-right {
    display: none;
  }

  .aboutstoy-title {
    font-size: 28px;
  }

  .aboutstoy-description {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .aboutstoy-btn {
    padding: 12px 28px;
    font-size: 12px;
    width: 100%;
    justify-content: center;
    margin-bottom: 35px;
  }

  .aboutstoy-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .aboutstoy-card {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 16px;
  }

  .card-info {
    text-align: center;
    align-items: center;
  }

  .card-title {
    font-size: 20px;
  }

  .card-text {
    font-size: 13px;
  }

  .card-btn {
    width: 100%;
    justify-content: center;
  }

  .card-image {
    width: 100%;
    height: 150px;
    order: -1;
  }

  .card-image img {
    width: 100%;
    height: 100%;
  }
}

/* Large Desktop - 1440px */
@media (min-width: 1440px) {
  .aboutstoy {
    padding: 100px 40px;
  }

  .aboutstoy-container {
    grid-template-columns: 180px 1fr 180px;
    gap: 60px;
  }

  .decor-left img {
    max-width: 150px;
  }

  .decor-right img {
    max-width: 170px;
  }

  .aboutstoy-title {
    font-size: 48px;
    margin-bottom: 25px;
  }

  .aboutstoy-description {
    font-size: 16px;
    max-width: 800px;
    margin-bottom: 35px;
  }

  .aboutstoy-btn {
    padding: 16px 36px;
    font-size: 14px;
    margin-bottom: 60px;
  }

  .aboutstoy-cards {
    gap: 35px;
    max-width: 1000px;
  }

  .aboutstoy-card {
    padding: 35px;
    gap: 25px;
  }

  .card-badge {
    padding: 7px 16px;
    font-size: 12px;
  }

  .card-title {
    font-size: 28px;
  }

  .card-text {
    font-size: 14px;
  }

  .card-btn {
    padding: 11px 22px;
    font-size: 12px;
  }

  .card-image {
    width: 140px;
    height: 140px;
  }
}

/* Extra Large Desktop - 2560px */
@media (min-width: 2560px) {
  .aboutstoy {
    padding: 150px 60px;
  }

  .aboutstoy-container {
    max-width: 2000px;
    grid-template-columns: 250px 1fr 250px;
    gap: 80px;
  }

  .decor-left img {
    max-width: 200px;
  }

  .decor-right img {
    max-width: 220px;
  }

  .aboutstoy-title {
    font-size: 64px;
    margin-bottom: 35px;
  }

  .aboutstoy-description {
    font-size: 18px;
    max-width: 1000px;
    margin-bottom: 45px;
  }

  .aboutstoy-btn {
    padding: 20px 45px;
    font-size: 16px;
    margin-bottom: 80px;
  }

  .aboutstoy-btn svg {
    width: 22px;
    height: 22px;
  }

  .aboutstoy-cards {
    gap: 50px;
    max-width: 1400px;
  }

  .aboutstoy-card {
    padding: 50px;
    gap: 35px;
    border-radius: 20px;
  }

  .card-badge {
    padding: 10px 20px;
    font-size: 14px;
  }

  .card-title {
    font-size: 36px;
  }

  .card-text {
    font-size: 16px;
  }

  .card-btn {
    padding: 14px 28px;
    font-size: 14px;
  }

  .card-btn svg {
    width: 18px;
    height: 18px;
  }

  .card-image {
    width: 180px;
    height: 180px;
  }
}






/* Aboutstoy2 Section Styles */
.aboutstoy2 {
  background-color: #ffffff;
  padding: 80px 20px;
  overflow: hidden;
}

.aboutstoy2-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.aboutstoy2-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.image-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-box img {
  max-width: 100%;
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
  border-radius: 12px;
}

.image-box img:hover {
  transform: scale(1.05);
}

.content-box {
  padding: 20px;
}

.content-title {
  font-size: 38px;
  font-weight: 800;
  color: #000000;
  line-height: 1.3;
  margin: 0 0 20px 0;
}

.content-title .highlight {
  color: #d6001c;
}

.content-text {
  font-size: 15px;
  color: #666666;
  line-height: 1.8;
  margin: 0;
}

/* Tablet View - 768px to 1023px */
@media (max-width: 1023px) {
  .aboutstoy2 {
    padding: 60px 20px;
  }

  .aboutstoy2-container {
    gap: 70px;
  }

  .aboutstoy2-row {
    gap: 50px;
  }

  .content-box {
    padding: 15px;
  }

  .content-title {
    font-size: 32px;
  }

  .content-text {
    font-size: 14px;
  }
}

/* Mobile View - up to 767px */
@media (max-width: 767px) {
  .aboutstoy2 {
    padding: 40px 16px;
  }

  .aboutstoy2-container {
    gap: 50px;
  }

  .aboutstoy2-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .aboutstoy2-row.reverse {
    direction: ltr;
  }

  .aboutstoy2-row.reverse .image-box {
    order: 2;
  }

  .aboutstoy2-row.reverse .content-box {
    order: 1;
  }

  .content-box {
    padding: 0;
  }

  .image-box img {
    max-width: 300px;
    margin: 0 auto;
  }

  .content-title {
    font-size: 26px;
    margin-bottom: 16px;
  }

  .content-text {
    font-size: 14px;
  }
}

/* Small Mobile - up to 480px */
@media (max-width: 480px) {
  .aboutstoy2 {
    padding: 35px 16px;
  }

  .aboutstoy2-container {
    gap: 40px;
  }

  .aboutstoy2-row {
    gap: 25px;
  }

  .image-box img {
    max-width: 250px;
  }

  .content-title {
    font-size: 24px;
  }

  .content-text {
    font-size: 13px;
  }
}

/* Large Desktop - 1440px */
@media (min-width: 1440px) {
  .aboutstoy2 {
    padding: 100px 40px;
  }

  .aboutstoy2-container {
    gap: 120px;
  }

  .aboutstoy2-row {
    gap: 100px;
  }

  .content-box {
    padding: 30px;
  }

  .content-title {
    font-size: 44px;
    margin-bottom: 25px;
  }

  .content-text {
    font-size: 16px;
  }

  .image-box img {
    border-radius: 16px;
  }
}

/* Extra Large Desktop - 2560px */
@media (min-width: 2560px) {
  .aboutstoy2 {
    padding: 150px 60px;
  }

  .aboutstoy2-container {
    max-width: 2000px;
    gap: 160px;
  }

  .aboutstoy2-row {
    gap: 120px;
  }

  .content-box {
    padding: 40px;
  }

  .content-title {
    font-size: 56px;
    margin-bottom: 35px;
  }

  .content-text {
    font-size: 18px;
    line-height: 2;
  }

  .image-box img {
    border-radius: 20px;
  }
}

/* Laptop/Desktop - 1024px */
@media (min-width: 1024px) and (max-width: 1439px) {
  .aboutstoy2 {
    padding: 80px 30px;
  }

  .aboutstoy2-container {
    gap: 100px;
  }

  .aboutstoy2-row {
    gap: 80px;
  }

  .content-box {
    padding: 20px;
  }

  .content-title {
    font-size: 38px;
  }

  .content-text {
    font-size: 15px;
  }
}