* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #ffecb2;
}

/* Top Bar Styles */
.top-bar {
  background-color: #ffe8a2;
  display: flex;
  justify-content: space-between;
  padding: 16px 24px;
  font-size: 14px;
  align-items: center;
  flex-wrap: wrap;
  min-height: 60px;
}

.top-bar .left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  min-width: 0;
}

.top-bar .left i {
  margin-right: 5px;
  color: #000;
  flex-shrink: 0;
}

.top-bar .right {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 20px;
  flex-shrink: 0;
}

.top-bar .right i {
  margin-left: 15px;
  cursor: pointer;
  color: #000;
  transition: color 0.3s ease;
  flex-shrink: 0;
}

.top-bar .right i:hover {
  color: #ad8b34;
}

/* Tablet styles */
@media (max-width: 768px) {
  .top-bar {
    padding: 12px 16px;
    font-size: 13px;
  }

  .top-bar .left {
    gap: 15px;
  }

  .top-bar .right {
    padding-right: 10px;
    gap: 8px;
  }

  .top-bar .right i {
    margin-left: 10px;
  }
}

/* Mobile styles */
@media (max-width: 480px) {
  .top-bar {
    padding: 10px 12px;
    font-size: 12px;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }

  .top-bar .left {
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .top-bar .left i {
    margin-right: 3px;
  }

  .top-bar .right {
    padding-right: 0;
    justify-content: center;
    gap: 15px;
  }

  .top-bar .right i {
    margin-left: 0;
  }
}

/* Very small screens */
@media (max-width: 320px) {
  .top-bar {
    padding: 8px 10px;
    font-size: 11px;
  }

  .top-bar .left {
    gap: 8px;
  }

  .top-bar .right {
    gap: 12px;
  }
}

/* Navigation Styles */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1000;
}

.logo img {
  height: 40px;
  max-width: 100%;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
  transition: all 0.3s ease;
}

.nav-links li a {
  text-decoration: none;
  color: black;
  font-weight: 500;
  font-size: 17px;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav-links li a.active,
.nav-links li a:hover {
  color: #ad8734;
}

.menu-toggle {
  display: none;
  border: #000 solid 1px;
  padding: 10px;
  border-radius: 50px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  background: none;
  transition: all 0.3s ease;
}

.menu-toggle:hover {
  background-color: #f0f0f0;
  border-color: #3d34ad;
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
  fill: #333;
  transition: fill 0.3s ease;
}

.menu-toggle:hover svg {
  fill: #3d34ad;
}

/* Tablet styles */
@media (max-width: 1024px) {
  .navbar {
    padding: 15px 20px;
  }

  .nav-links {
    gap: 20px;
  }

  .nav-links li a {
    font-size: 16px;
  }

  .logo img {
    height: 60px;
  }
}

/* Mobile styles */
@media (max-width: 768px) {
  .navbar {
    padding: 15px;
    flex-wrap: wrap;
  }

  .logo img {
    height: 50px;
  }

  .menu-toggle {
    display: flex;
    order: 3;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    flex-direction: column;
    gap: 0;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .nav-links.active {
    max-height: 400px;
    opacity: 1;
    visibility: visible;
    padding: 20px 0;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links li a {
    display: block;
    padding: 15px 20px;
    font-size: 16px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
  }

  .nav-links li:last-child a {
    border-bottom: none;
  }

  .nav-links li a:hover {
    background-color: #f8f8f8;
    color: #ad8b34;
  }
}

/* Small mobile styles */
@media (max-width: 480px) {
  .navbar {
    padding: 10px 15px;
  }

  .logo img {
    height: 45px;
  }

  .menu-toggle {
    width: 45px;
    height: 45px;
  }

  .menu-toggle svg {
    width: 20px;
    height: 20px;
  }

  .nav-links li a {
    font-size: 15px;
    padding: 12px 15px;
  }

  .vision-mission {
    flex-direction: column;
  }
}

/* Demo content */
.content {
  padding: 40px 20px;
  text-align: center;
  background-color: #f9f9f9;
  min-height: calc(100vh - 90px);
}

.content h1 {
  color: #333;
  margin-bottom: 20px;
}

.content p {
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Hero Section Styles */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: white;
  text-align: center;
  overflow: hidden;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -2;
}

.video-background iframe {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.2);
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

.hero-content {
  max-width: 896px;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 4rem;
  font-weight: bold;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.hero-logo-wrapper {
  position: absolute;
  top: 25%;
  left: 50%;
  width: 180px;
  height: 180px;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.circle-text-container {
  width: 100%;
  height: 100%;
  animation: rotate 20s linear infinite;
}

.circle-text-container svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.play-button-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-button-overlay:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}

.play-button-overlay i {
  color: white;
  font-size: 32px;
  margin-left: 3px;
}

.ripple {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  animation: ripple 2s infinite;
}

.ripple:nth-child(3) {
  animation-delay: 0.5s;
}

@keyframes ripple {
  0% {
    width: 70px;
    height: 70px;
    opacity: 1;
  }
  100% {
    width: 140px;
    height: 140px;
    opacity: 0;
  }
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

/* Mobile Responsive Styles */
@media (max-width: 767px) {
  .hero {
    height: 100vh; /* Maintain full viewport height */
  }

  .video-background iframe {
    /* Adjust for mobile aspect ratio */
    width: 100%;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 aspect ratio */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .hero h1 {
    font-size: 2.2rem;
    padding-top: 100px; /* Create space for logo */
  }

  .hero-logo-wrapper {
    width: 120px;
    height: 120px;
    top: 20%;
  }
  .vision-mission {
    flex-direction: column;
    align-items: center;
  }
  .purpose-cards {
    flex-direction: column;
    align-items: center;
  }
}

.video-bottom-curve {
  line-height: 0;
  position: relative;
  top: -80px;
}

.video-bottom-curve img {
  width: 100%;
  display: block;
}

@media (max-width: 767px) {
  .video-bottom-curve {
    display: none;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
  cursor: pointer;
}

.scroll-indicator .mouse {
  width: 30px;
  height: 50px;
  border: 2px solid white;
  border-radius: 20px;
  position: relative;
  margin: 0 auto 10px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
}

.scroll-indicator .mouse .dot {
  width: 6px;
  height: 6px;
  background-color: #ad9134;
  border-radius: 50%;
  animation: scroll-dot 2s infinite;
}

.scroll-indicator span {
  color: white;
  font-size: 14px;
  font-weight: 500;
}

.scroll-indicator:hover .mouse {
  animation: none;
  background-color: #bb8404;
  color: white;
  transition: all 0.3s ease;
}

.scroll-indicator:hover .mouse .dot {
  animation: none;
  background-color: #fff;
  transform: translateY(0);
  transition: all 0.3s ease;
}

@keyframes scroll-dot {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(10px);
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}

/* Legacy Section */

.legacy-section {
  background-color: #ffecb2;
  padding: 40px 0;
}

.legacy-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1300px;
  margin: 0 auto;
  gap: 40px;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.values-animation-section {
  flex: 1 1 100%;
  min-width: 350px;
  border-radius: 20px;
  position: relative;
  height: 350px; /* Fixed height for mobile */
  min-height: 350px;
}

.logo-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.logo-center img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.value-circle {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  color: white;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  left: 40%;
  top: 40%;
  transform: translate(-50%, -50%) scale(0);
  font-size: 11px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.value-circle i {
  font-size: 50px;
  margin-bottom: 5px;
}

.trust {
  background: linear-gradient(135deg, #007bdb, #0066cc);
}

.responsibility {
  background: linear-gradient(135deg, #f5a623, #e8940f);
}

.value {
  background: linear-gradient(135deg, #f7df1e, #e6c700);
  color: #222;
}

.sustainability {
  background: linear-gradient(135deg, #5bd6a1, #48c78e);
}

.legacy-text {
  flex: 1 1 100%;
  min-width: 300px;
  padding: 0 10px;
}

.legacy-text h3 {
  color: #3d34ad;
  font-size: 15px;
  margin-bottom: 10px;
  font-weight: 600;
}

.legacy-text h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a1a1a;
  line-height: 1.3;
}

.legacy-text p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 25px;
}

.legacy-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-dark {
  background-color: #1a1a1a;
  color: #fff;
  padding: 12px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 14px;
  display: inline-block;
}

.btn-dark:hover {
  background-color: #ad8b34;
  transform: translateY(-2px);
}

.consulting-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.consulting-info i {
  font-size: 16px;
  color: #ad8734;
  background: #f5f3f4;
  padding: 8px;
  border-radius: 50%;
  min-width: 34px;
  text-align: center;
}

.consulting-info p {
  margin: 0;
  font-size: 12px;
  color: #666;
}

.consulting-info strong {
  font-size: 14px;
  color: #1a1a1a;
  white-space: nowrap;
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .values-animation-section {
    height: 400px;
    min-height: 400px;
  }
  
  .logo-center img {
    width: 90px;
    height: 90px;
  }
  
  .value-circle {
    width: 90px;
    height: 90px;
    font-size: 12px;
  }
  
  .value-circle i {
    font-size: 22px;
  }
  
  .legacy-text h2 {
    font-size: 30px;
  }
  
  .legacy-actions {
    gap: 20px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .legacy-container {
    gap: 60px;
    padding: 40px 20px;
  }
  
  .values-animation-section {
    height: 500px;
    min-height: 500px;
    flex: 1 1 500px;
  }
  
  .logo-center img {
    width: 180px;
    height: 180px;
  }
  
  .value-circle {
    width: 110px;
    height: 110px;
    font-size: 13px;
  }
  
  .value-circle i {
    font-size: 26px;
  }
  
  .legacy-text {
    flex: 1 1 400px;
    padding: 0 20px;
  }
  
  .legacy-text h2 {
    font-size: 34px;
  }
  
  .legacy-text p {
    font-size: 16px;
  }
  
  .btn-dark {
    padding: 14px 26px;
  }
  
  .consulting-info i {
    font-size: 18px;
    padding: 10px;
  }
  
  .consulting-info p {
    font-size: 13px;
  }
  
  .consulting-info strong {
    font-size: 15px;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .values-animation-section {
    height: 550px;
    min-height: 550px;
  }
  
  .value-circle {
    width: 120px;
    height: 120px;
    font-size: 14px;
  }
  
  .value-circle i {
    font-size: 30px;
  }
  
  .legacy-text h2 {
    font-size: 36px;
  }
  
  .consulting-info i {
    font-size: 20px;
    padding: 12px;
  }
  
  .consulting-info p {
    font-size: 14px;
  }
  
  .consulting-info strong {
    font-size: 16px;
  }
}

/* Process Section Styles */
.process-section {
  background: radial-gradient(#ffecb2, #ffac40);
  padding: 100px 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.process-section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 60px;
  color: rgb(0, 0, 0);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.process-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.purple-bg {
  background: linear-gradient(135deg, #fff7e9, #fef6d6);
  color: #ad8134;
}

.process-card:hover .icon-circle {
  transform: scale(1.1);
}

.process-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #1a1a1a;
  font-weight: 600;
}

.process-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* Projects Slider Section */
.projects-slider-section {
  padding: 80px 20px;
  background-color: #ffecb2;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-content .section-subtitle {
  display: inline-block;
  color: #3d34ad;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.section-content .section-title {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.section-content .section-description {
  color: #666;
  font-size: 16px;
}

.projectsSlider {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}

.projectsSlider .project-card {
  position: relative;
  height: 350px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
}

.projectsSlider .project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.projectsSlider .project-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.7));
  transition: all 0.3s ease;
}

.projectsSlider .project-card:hover::before {
  background: linear-gradient(to bottom, transparent 30%, rgba(0, 0, 0, 0.8));
}

.projectsSlider .project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px;
  color: white;
  z-index: 2;
}

.projectsSlider .project-count {
  font-size: 14px;
  margin-bottom: 8px;
  opacity: 0.9;
}

.projectsSlider .project-location {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.projectsSlider .swiper-pagination {
  position: relative;
  margin-top: 30px;
}

.projectsSlider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #ddd;
  opacity: 1;
  margin: 0 6px;
  transition: all 0.3s ease;
}

.projectsSlider .swiper-pagination-bullet-active {
  background: #ffa600;
  transform: scale(1.2);
}

/* Property Types Section */
.property-types-section {
  padding: 80px 20px;
  background: radial-gradient(circle, #f8f9fa 0%, #ffa600 100%);
}

.property-types-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.property-types-section .section-subtitle {
  display: inline-block;
  color: #ffa600;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.property-types-section .section-title {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

.propertyTypesSlider {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  position: relative;
}

.property-type-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.property-type-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.property-type-card .icon-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #fff9f0, #fff8e6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.property-type-card:hover .icon-circle {
  background: #ffa600;
  transform: scale(1.1);
  color: #ad7434;
}

.property-type-card:hover .icon-circle img {
  filter: brightness(0) invert(1);
}

.property-type-card:hover .icon-circle .icon {
  filter: brightness(0) invert(1);
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
}

.property-type-card .icon-circle img {
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
}

.property-type-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.property-type-card p {
  color: #666;
  font-size: 14px;
  margin: 0;
}

/* Swiper Navigation */


.swiper-button-next:hover,
.swiper-button-prev:hover {
  transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px;
  font-weight: 700;
}

/* Featured Properties Section */
.featured-properties-section {
  padding: 80px 20px;
  background: #fff;
}

.featured-properties-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}

.featured-properties-section .section-content .section-subtitle {
  display: block;
  color: #3d34ad;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.featured-properties-section .section-content .section-title {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

.browse-btn {
  background: #3d34ad;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.browse-btn:hover {
  background: #2d2480;
  transform: translateY(-2px);
}

.featuredPropertiesSlider {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  position: relative;
}

.property-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.property-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.property-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.property-card:hover .property-image img {
  transform: scale(1.05);
}

.property-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #ad8b34;
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
}

.property-price {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.95);
  color: #1a1a1a;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.property-content {
  padding: 25px;
}

.property-title {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.property-location {
  display: flex;
  align-items: center;
  color: #666;
  font-size: 14px;
  margin-bottom: 20px;
}

.property-location i {
  color: #e6a739;
  margin-right: 8px;
}

.property-features {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.property-features span {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #666;
  gap: 6px;
}

.property-features i {
  color: #ad8b34;
  font-size: 14px;
}

.property-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.agent-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.agent-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3d34ad, #5b52d3);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
}

.agent-details {
  display: flex;
  flex-direction: column;
}

.agent-name {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.2;
}

.agent-role {
  font-size: 12px;
  color: #666;
  line-height: 1.2;
}

.view-btn {
  background: #f8f9fa;
  color: #3d34ad;
  border: 1px solid #e9ecef;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-btn:hover {
  background: #3d34ad;
  color: white;
  border-color: #3d34ad;
}

.featuredPropertiesSlider .swiper-pagination {
  position: relative;
  margin-top: 40px;
}

.featuredPropertiesSlider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #ddd;
  opacity: 1;
  margin: 0 6px;
  transition: all 0.3s ease;
}

.featuredPropertiesSlider .swiper-pagination-bullet-active {
  background: #3d34ad;
  transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-logo-wrapper {
    width: 120px;
    height: 120px;
  }

  .video-background iframe {
    transform: translate(-50%, -50%) scale(1.5);
  }

  .legacy-container {
    flex-direction: column;
    gap: 40px;
  }

  .values-animation-section {
    height: 400px;
  }

  .section-title {
    font-size: 28px;
  }

  .legacy-text h2 {
    font-size: 28px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .featured-properties-section .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .property-features {
    flex-wrap: wrap;
    gap: 15px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}


.villa-gallery {
  padding: 4rem 2rem;
  background: #f8f3f2;
  text-align: center;
  font-family: "Inter", sans-serif;
}

.section-heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

.section-heading span {
  display: block;
  font-size: 1rem;
  color: #f7bd4a;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.section-heading span::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 10px;
  background: rgba(61, 52, 173, 0.2);
  z-index: -1;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-card {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  background: #eee;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Large Left Card */
.gallery-card.large {
  grid-row: span 2;
  height: 100%;
}

.gallery-card .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 2rem;
  opacity: 0;
  transition: all 0.4s ease;
}

.gallery-card.large:hover .overlay {
  opacity: 1;
}

.gallery-card.small:hover .overlay {
  opacity: 1;
}

.circle-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150%;
  height: 150%;
  background: #444;
  border-radius: 50%;
  transform: scale(0.8);
  transition: transform 0.4s ease;
  z-index: 0;
}

.gallery-card.large:hover .circle-overlay {
  transform: scale(1);
}

.overlay-content {
  position: relative;
  z-index: 1;
  color: white;
  text-align: left;
  max-width: 70%;
}

.overlay-content h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.overlay-content p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.overlay-content button {
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 2rem;
  background: #5c4af7;
  color: white;
  font-weight: 600;
  cursor: pointer;
}

/* Small Cards with Plus Icon */
.gallery-card.small,
.gallery-card.tall {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.plus-icon {
  position: absolute;
  background: #5c4af7;
  color: white;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  bottom: 1rem;
  right: 1rem;
  transition: transform 0.3s ease;
}

.gallery-card:hover .plus-icon {
  transform: scale(1.3);
}

/* team section */
/* Team Section - Premium Version */
.team-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #fac15e 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.team-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAiIGhlaWdodD0iMTAwIiB2aWV3Qm94PSIwIDAgMTAwIDEwMCI+PHBhdGggZD0iTTAgMGgxMDB2MTAwSDB6IiBmaWxsPSJub25lIi8+PHBhdGggZD0iTTUwIDI1YzEzLjggMCAyNSAxMS4yIDI1IDI1cy0xMS4yIDI1LTI1IDI1LTI1LTExLjItMjUtMjUgMTEuMi0yNSAyNS0yNXoiIGZpbGw9IiNlZWVlZWUiIGZpbGwtb3BhY2l0eT0iMC4xIi8+PC9zdmc+");
  opacity: 0.05;
  z-index: 0;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  display: inline-block;
  color: #c07f25;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  position: relative;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 15px;
  line-height: 1.3;
}

.section-title span {
  color: #805c00;
  position: relative;
}

.section-title span::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 10px;
  background: rgba(197, 144, 37, 0.2);
  z-index: -1;
}

.section-description {
  color: #666;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Team Card Styles */
.team-slider {
  padding: 20px;
  position: relative;
}

.team-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.card-image {
  position: relative;
  height: 300px;
  background-size: cover;
  background-position: center;
  transition: all 0.8s ease;
}

.team-card:hover .card-image {
  transform: scale(1.05);
}

.card-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
  opacity: 0;
  transition: all 0.5s ease;
}

.team-card:hover .card-image::before {
  opacity: 1;
}

.social-links {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 15px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s ease;
}

.team-card:hover .social-links {
  transform: translateY(0);
  opacity: 1;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #b78a22;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #b78a22;
  color: white;
  transform: translateY(-3px);
}

.card-content {
  padding: 25px;
  text-align: center;
}

.card-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #1a1a1a;
}

.position {
  color: #b78a22;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 25px;
}

.stat {
  text-align: center;
}

.number {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
  margin-bottom: 5px;
}

.label {
  font-size: 14px;
  color: #666;
}

.contact-btn {
  background: #b78a22;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.contact-btn:hover {
  background: #806724;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(61, 52, 173, 0.3);
}

/* Swiper Navigation */
.swiper-button-prev,
.swiper-button-next {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50%;
  color: #3d34ad;
  transition: all 0.3s ease;
  top: 50%;
  transform: translateY(-50%);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 20px !important;
  font-weight: bold;
}

.swiper-pagination {
  position: relative;
  margin-top: 40px;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #ddd;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #3d34ad;
  transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .section-title {
    font-size: 42px;
  }

  .card-image {
    height: 280px;
  }
}

@media (max-width: 992px) {
  .team-section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 36px;
  }

  .card-content h3 {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }

  .section-description {
    font-size: 16px;
  }

  .stats {
    gap: 20px;
  }

  .number {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .team-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 14px;
  }

  .card-image {
    height: 250px;
  }
}

/* download section */
.download-app-section {
  color: white;
  padding: 80px 0;
}

.download-content {
  max-width: 1300px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  top: -150px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.left {
  flex: 1;
  min-width: 300px;
}

.section-tag {
  color: #6a5acd;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 10px;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 18px;
  line-height: 1.6;
}

.center {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.circular-button-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
}

.text-circle {
  width: 120px;
  height: 120px;
  animation: rotateText 10s linear infinite;
}

.rotating-circle text {
  font-size: 8px;
  fill: white;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #555;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.play-button i {
  color: white;
  font-size: 20px;
}

.scan-text {
  margin-top: 10px;
  font-size: 16px;
  text-align: center;
}

.arrow {
  width: 80px;
  height: 80px;
  border-left: 3px solid white;
  border-top: 3px solid white;
  transform: rotate(-135deg);
  border-radius: 40px 0 0 0;
  margin-top: 20px;
}

.right .qr-image {
  position: relative;
  left: 30%;
  width: 200px;
  border-radius: 10px;
  background-color: #f4f4f4;
  z-index: 1;
}

.qr-long-image {
  position: relative;
  top: 125px;
  border-radius: 10px;
  background-position: center;
  background-size: cover;
  width: 400px;
  height: 700px;
}

.right {
  position: relative;
}

/* Animations */
@keyframes rotateText {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Tablet view */
@media (max-width: 1024px) {
  .download-content {
    position: relative;
    top: 0;
    flex-direction: column !important;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .section-title {
    font-size: 36px;
  }

  .right .qr-image {
    position: static;
    margin-top: 20px;
    left: 0;
  }

  .qr-long-image {
    position: static;
    width: 300px;
    height: auto;
    margin-top: 15px;
  }
}

/* Mobile view */
@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }

  .section-desc {
    font-size: 16px;
  }

  .circular-button-wrapper {
    width: 100px;
    height: 100px;
  }

  .text-circle {
    width: 100px;
    height: 100px;
  }

  .play-button {
    width: 50px;
    height: 50px;
    font-size: 16px;
  }

  .arrow {
    width: 50px;
    height: 50px;
    border-width: 2px;
  }

  .qr-long-image {
    width: 250px;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .section-title {
    font-size: 22px;
  }

  .section-desc {
    font-size: 14px;
  }

  .download-content {
    padding: 0 10px;
  }

  .qr-image {
    width: 150px !important;
  }

  .qr-long-image {
    width: 200px;
  }
}




/* testimonials section */
/* Testimonial Section Styles */
.testimonial-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #fac15e 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.testimonial-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("assets/testimonial-bg-pattern.svg") no-repeat center center;
  opacity: 0.05;
  z-index: 0;
}

.testimonials-container {
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.sub-title {
  display: inline-block;
  color: #ad7434;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  position: relative;
}

.sub-title::before,
.sub-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background: #ad7434;
}

.sub-title::before {
  left: -50px;
}

.sub-title::after {
  right: -50px;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 15px;
  line-height: 1.3;
}

.testimonial-slider {
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.testimonial-slide {
  text-align: center;
  padding: 50px 40px;
  background: linear-gradient(135deg, #f4d77f 0%, #c96400 100%);
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  opacity: 1;
  transform: scale(0.9);
}

.swiper-slide-active .testimonial-slide {
  opacity: 1;
  transform: scale(1);
}

.quote-icon {
  margin-bottom: 25px;
  color: #3d34ad;
  opacity: 0.2;
  transition: all 0.4s ease;
}

.swiper-slide-active .quote-icon {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-text {
  font-size: 22px;
  line-height: 1.6;
  color: white;
  margin-bottom: 30px;
  font-weight: 500;
  font-style: italic;
  position: relative;
}

.rating {
  margin-bottom: 25px;
}

.rating span {
  color: #fbbf24;
  font-size: 24px;
  margin: 0 2px;
}

.client-info {
  margin-top: 30px;
}

.client-img {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  padding: 3px;
  object-fit: cover;
  margin: 0 auto 15px;
  transition: all 0.4s ease;
}

.swiper-slide-active .client-img {
  transform: scale(1.1);
}

.client-name {
  font-size: 20px;
  font-weight: 600;
  color: white;
  margin-bottom: 5px;
}

.client-role {
  font-size: 16px;
  color: rgb(185, 179, 179);
  font-weight: 500;
}

/* Swiper Navigation */

.testimonial-slider:hover .swiper-button-prev,
.testimonial-slider:hover .swiper-button-next {
  opacity: 1;
}

.swiper-button-prev {
  left: -30px;
}

.swiper-button-next {
  right: -30px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 20px;
  font-weight: bold;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  transform: translateY(-50%) scale(1.1);
}

.swiper-pagination {
  position: relative;
  margin-top: 40px;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #ddd;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #3d34ad;
  transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 992px) {
  .testimonial-section {
    padding: 80px 0;
  }

  .section-header h2 {
    font-size: 36px;
  }

  .testimonial-slide {
    padding: 40px 30px;
  }

  .testimonial-text {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .testimonial-section {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 30px;
  }

  .sub-title::before,
  .sub-title::after {
    width: 20px;
  }

  .sub-title::before {
    left: -30px;
  }

  .sub-title::after {
    right: -30px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: 50px;
    height: 50px;
  }

  .swiper-button-prev {
    left: -10px;
  }

  .swiper-button-next {
    right: -10px;
  }
}

@media (max-width: 576px) {
  .testimonial-slide {
    padding: 30px 20px;
  }

  .testimonial-text {
    font-size: 18px;
  }

  .client-name {
    font-size: 18px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }
}

/* news section */

.news-section {
  padding: 60px;
  font-family: "Inter", sans-serif;
}

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.sub-title {
  color: #835800;
  font-weight: 600;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin: 10px 0;
}

.section-desc {
  color: #757575;
  max-width: 600px;
}

.explore-all {
  border: 1px solid #ccc;
  padding: 10px 20px;
  border-radius: 40px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

.explore-all:hover {
  background-color: #6c63ff;
  color: #fff;
}

.news-slider .swiper-wrapper {
  display: flex;
}

.news-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.news-img-wrap {
  position: relative;
}

.news-img-wrap img {
  width: 100%;
  display: block;
}

.news-img-wrap span {
  width: fit-content;
  height: fit-content;
  position: absolute;
  top: 10px;
  right: 10px;
  background: #6c63ff;
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 14px;
}

.date-tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: #4339f2;
  color: #fff;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 14px;
}

.news-meta {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: #666;
  padding: 12px 16px 0;
}

.read-more {
  display: inline-block;
  margin: 0 16px 20px;
  padding: 8px 16px;
  background: #cbc9ee;
  border: 1px solid #ccc;
  color: #000000;
  border-radius: 40px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.read-more:hover {
  background: #4339f2;
  color: #fff;
  border-color: #4339f2;
}

/* footer */
.footer-section {
  background-color: white;
  color: black;
  padding: 60px 20px;
  font-family: "Inter", sans-serif;
}

.footer-top { 
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-col {
  flex: 1;
}

.logo-col {
  max-width: 260px;
}

.footer-logo {
  max-width: 100%;
  margin-bottom: 20px;
}

.footer-contact {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.footer-contact li {
  margin-bottom: 12px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footer-col h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.map-col iframe {
  width: 100%;
  border-radius: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  font-size: 14px;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom a {
  color: #6c63ff;
  text-decoration: none;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icons i {
  font-size: 16px;
  color: #000000;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px;
  border-radius: 50%;
  transition: 0.3s;
}

.social-icons i:hover {
  background: #6c63ff;
  color: #fff;
}

/* Contact Page */
.page-header {
  position: relative;
  background: url("assets/contact/breadcrumb-bg.jpg") center/cover no-repeat;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.page-header .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-header .breadcrumb {
  font-size: 18px;
}

.page-header .breadcrumb a {
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
}

.page-header .breadcrumb span {
  color: #ffce63; /* Highlight color */
  font-weight: 500;
}

/* Contact Cards Section */

.contact-info {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  padding: 60px 20px;
  background: #ffecb2;
}

.info-card {
  background: #f9f5f4;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 20px;
  width: 30%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.icon-circle {
  margin: 0;
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  color: #ad7734;
  transition: transform 0.6s ease, background 0.3s ease, color 0.3s ease;
  border: 2px solid rgba(173, 143, 52, 0.1);
  box-shadow: 0 4px 12px rgba(173, 141, 52, 0.08);
  flex-shrink: 0;
}

.process-card .icon-circle {
  width: 60px;
  height: 60px;
  transition: all 0.3s ease;
  border: 2px solid rgba(173, 139, 52, 0.1);
}


.process-card .icon-circle img {
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
}

/* Purple background variant */
.process-card .purple-bg {
  background: linear-gradient(135deg, #fff7e9, #fef6d6) !important;
}

/* Hover effects */
.process-card:hover .icon-circle {
  background: #ad8b34;
  transform: scale(1.1);
  border-color: #ad8b34;
}

.process-card:hover .icon-circle img {
  filter: brightness(0) invert(1);
}

/* Fix for purple background hover */
.process-card:hover .purple-bg {
  background: #ad8b34 !important;
}



.info-card:hover .icon-circle {
  background: #ad8134;
  color: #fff;
  transform: scale(1.1) rotateY(180deg);
  box-shadow: 0 8px 20px rgba(61, 52, 173, 0.3);
}

.info-content h3 {
  font-size: 24px;
  color: #1a1a1a;
  margin-bottom: 5px;
}

.info-content p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .contact-info {
    flex-direction: column;
    align-items: center;
  }
  .info-card {
    width: 90%;
  }
}

/* Contact Form Section */
.contact-form-section {
  padding: 60px 20px;
  background: #ffecb2;
}

.contact-form-container {
  display: flex;
  max-width: 1200px;
  margin: auto;
  background: #f8f3f2;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

@media (max-width: 992px) {
  .contact-form-container {
    flex-direction: column;
  }
  
}

.contact-form {
  flex: 1;
  padding: 40px;
}

.contact-form h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-row input {
  flex: 1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #ad8934;
  box-shadow: 0 0 5px rgba(61, 52, 173, 0.3);
}

.contact-form textarea {
  height: 140px;
  resize: none;
}

.send-btn {
  background: #ad8b34;
  color: #fff;
  padding: 14px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.send-btn:hover {
  background: #946f24;
  transform: translateY(-2px);
}

.contact-image {
  flex: 1;
  background: #eee;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-image {
    height: 300px;
  }
}

/* Animation Keyframes */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 1s ease forwards;
}
.slide-left {
  animation: slideLeft 1s ease forwards;
}
.slide-right {
  animation: slideRight 1s ease forwards;
}

.fade-in,
.slide-left,
.slide-right {
  opacity: 0;
}

.fade-in.visible,
.slide-left.visible,
.slide-right.visible {
  opacity: 1;
}

.map-fullscreen {
  position: relative;
  width: 100%;
  height: 100vh; /* Full screen height */
}

.map-fullscreen iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Projects Page */

/* animated map section */

.projects-section-main {
  position: relative;
  height: 100vh;
  background: url("assets/projects/bg.jpeg") center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.map-animation-section {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Loading Animation Styles */
.loading-dots-section {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.dot-ring {
  position: absolute;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dot-ring span {
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(251, 192, 45, 0.8);
  border-radius: 50%;
  transform-origin: center;
}

.layer1 {
  width: 120px;
  height: 120px;
}

.layer2 {
  width: 180px;
  height: 180px;
}

.layer3 {
  width: 240px;
  height: 240px;
}

.layer4 {
  width: 300px;
  height: 300px;
}

.loading-text {
  color: #fff;
  font-size: 18px;
  margin-top: 320px;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.8;
}

/* Map Styles */
.map-mask {
  position: absolute;
  z-index: 2;
  opacity: 0;
  transform: scale(0.5);
  transition: all 1s ease;
}

.map-image {
  width: 900px;
  border-radius: 20%;
  overflow: hidden;
  filter: drop-shadow(0 0 20px rgba(251, 192, 45, 0.5));
}

/* Text Styles */
.map-text {
  position: absolute;
  text-align: center;
  opacity: 0;
  z-index: 3;
  color: #f8a706;
  transform: translateX(0);
  transition: all 1s ease;
}

.map-text h2 {
  font-size: 3rem;
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.map-text span {
  color: #08a400;
}

.locations p {
  font-size: 1.2rem;
  margin: 8px 0;
  opacity: 0;
  transform: translateY(20px);
  color: #0e8d14;
}

/* Animation Classes */
.show-map {
  opacity: 1 !important;
  transform: scale(1) translateX(-180px) !important;
}

.show-text {
  opacity: 1 !important;
  transform: translateX(180px) !important;
}

.show-location {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: all 0.5s ease;
}

/* Responsive Design - Only add mobile styles without changing desktop */

/* Tablet Styles */
@media (max-width: 1024px) {
  .map-image {
    width: 600px;
    max-width: 85vw;
  }

  .map-text h2 {
    font-size: 2.5rem;
    letter-spacing: 2px;
  }

  .locations p {
    font-size: 1.1rem;
  }

  .loading-text {
    font-size: 16px;
    margin-top: 280px;
    text-align: center;
  }

  .layer1 {
    width: 100px;
    height: 100px;
  }
  .layer2 {
    width: 150px;
    height: 150px;
  }
  .layer3 {
    width: 200px;
    height: 200px;
  }
  .layer4 {
    width: 250px;
    height: 250px;
  }

  .show-map {
    transform: scale(1) translateX(-100px) !important;
  }

  .show-text {
    transform: translateX(100px) !important;
  }
}

/* Mobile Landscape */
@media (max-width: 768px) and (orientation: landscape) {
  .projects-section-main {
    height: 90vh;
    min-height: 500px;
  }

  .show-map {
    transform: scale(1) translateY(-50px) !important;
  }

  .show-text {
    transform: translateY(50px) !important;
  }

  .map-text h2 {
    font-size: 2rem;
  }
}

/* Mobile Portrait */
@media (max-width: 768px) {
  .projects-section-main {
    min-height: 600px;
  }

  .map-image {
    width: 400px;
    max-width: 80vw;
  }

  .map-text h2 {
    font-size: 2rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
  }

  .locations p {
    font-size: 1rem;
    margin: 6px 0;
  }

  .loading-text {
    font-size: 14px;
    margin-top: 220px;
    letter-spacing: 1px;
    text-align: center;
  }

  .layer1 {
    width: 80px;
    height: 80px;
  }
  .layer2 {
    width: 120px;
    height: 120px;
  }
  .layer3 {
    width: 160px;
    height: 160px;
  }
  .layer4 {
    width: 200px;
    height: 200px;
  }

  .dot-ring span {
    width: 6px;
    height: 6px;
  }

  /* Stack layout for mobile */
  .show-map {
    transform: scale(1) translateY(-80px) !important;
  }

  .show-text {
    transform: translateY(120px) !important;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .projects-section-main {
    min-height: 500px;
  }

  .map-image {
    width: 300px;
    max-width: 75vw;
  }

  .map-text h2 {
    font-size: 1.5rem;
    letter-spacing: 0.5px;
  }

  .locations p {
    font-size: 0.9rem;
    margin: 4px 0;
  }

  .loading-text {
    font-size: 12px;
    margin-top: 180px;
  }

  .layer1 {
    width: 60px;
    height: 60px;
  }
  .layer2 {
    width: 90px;
    height: 90px;
  }
  .layer3 {
    width: 120px;
    height: 120px;
  }
  .layer4 {
    width: 150px;
    height: 150px;
  }

  .dot-ring span {
    width: 4px;
    height: 4px;
  }

  .show-map {
    transform: scale(1) translateY(-60px) !important;
  }

  .show-text {
    transform: translateY(100px) !important;
  }
}

/* Very Small Screens */
@media (max-width: 320px) {
  .map-image {
    width: 250px;
    max-width: 70vw;
  }

  .map-text h2 {
    font-size: 1.2rem;
  }

  .locations p {
    font-size: 0.8rem;
  }

  .loading-text {
    font-size: 11px;
    margin-top: 150px;
  }
}

/* all projects */

/* Projects Section - Premium Version */
.projects-page-section {
  padding: 120px 20px;
  background: #ffe8a2;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.projects-page-section::before {
  content: none;
}

@keyframes backgroundFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.shape {
  background: rgba(255, 255, 255, 0.8); /* Lighter shapes */
}

.shape:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.shape:nth-child(2) {
  width: 120px;
  height: 120px;
  top: 20%;
  right: 10%;
  animation-delay: 5s;
}

.shape:nth-child(3) {
  width: 60px;
  height: 60px;
  bottom: 20%;
  left: 20%;
  animation-delay: 10s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) translateX(10px) rotate(90deg);
  }
  50% {
    transform: translateY(0px) translateX(20px) rotate(180deg);
  }
  75% {
    transform: translateY(20px) translateX(10px) rotate(270deg);
  }
}

.projects-section-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 80px;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1s ease-out 0.5s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.projects-section-header h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: #794000;
  background: linear-gradient(135deg, #ffc691 0%, #ff9d00 50%, #fad360 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.projects-section-header h2 span {
  color: #ad8534;
  background: none;
  -webkit-text-fill-color: initial;
  background-clip: initial;
}

.projects-section-header h2 span::after {
  background: linear-gradient(90deg, #ad9b34, #d3b952);
}

@keyframes underlineGlow {
  from {
    box-shadow: 0 0 5px rgba(246, 184, 59, 0.5);
  }
  to {
    box-shadow: 0 0 20px rgba(246, 209, 59, 0.8),
      0 0 30px rgba(29, 78, 216, 0.4);
  }
}

.projects-section-header p {
  color: #666; /* Dark gray text */
}

.stats-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out forwards;
  transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
  color: #ad9134;
  text-shadow: 0 2px 8px rgba(61, 52, 173, 0.2);
}

.stat-item:hover .stat-label {
  color: #ad9134;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-item:nth-child(1) {
  animation-delay: 1s;
}
.stat-item:nth-child(2) {
  animation-delay: 1.2s;
}
.stat-item:nth-child(3) {
  animation-delay: 1.4s;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #f6b23b;
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: #f6b23b;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.projects-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  margin: 0 auto 80px;
  position: relative;
  z-index: 2;
}

.project-page-card {
  background: white;
  border: 1px solid #eee;
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  opacity: 0;
  transform: translateY(60px) rotateX(10deg);
  position: relative;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.project-page-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(173, 143, 52, 0.03) 0%,
    rgba(173, 133, 52, 0.01) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.project-page-card::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  background: linear-gradient(45deg, #ffd23c, #c2a019, #ba9b40, #ffb700);
  background-size: 300% 300%;
  border-radius: 26px;
  z-index: -1;
  opacity: 0;
  animation: gradientShift 3s ease infinite;
  transition: opacity 0.4s ease;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.project-image-container {
  position: relative;
  height: 260px;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}

.project-page-card img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  transition: transform 0.6s ease, filter 0.4s ease;
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.project-page-card-content {
  padding: 30px;
  position: relative;
  z-index: 3;
  transition: all 0.3s ease;
}

.project-page-card:hover .project-page-card-content {
  transform: translateY(-5px);
}

.project-page-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  font-weight: 700;
  color: #333;
  transition: color 0.3s ease;
}

.project-page-card:hover h3 {
  color: white;
}

.project-page-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.project-page-card:hover p {
  color: #fefefe;
}

.project-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.project-tag {
  padding: 4px 12px;
  background: rgba(173, 123, 52, 0.1);
  border: 1px solid rgba(61, 52, 173, 0.2);
  border-radius: 20px;
  font-size: 0.8rem;
  color: #a96000;
  font-weight: 500;
  transition: all 0.3s ease;
}

.project-page-card:hover .project-tag {
  background: rgba(61, 52, 173, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(61, 52, 173, 0.1);
  color: #fefefe;
}

.project-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d5b37f;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.project-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.6s ease;
}

.project-page-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border-color: rgba(61, 52, 173, 0.2);
}

.project-page-card:hover::before {
  opacity: 1;
}

.project-page-card:hover::after {
  opacity: 1;
}

.project-page-card:hover .project-overlay {
  opacity: 1;
}

.project-page-card:hover img {
  transform: scale(1.15);
  filter: brightness(1.1);
}

.project-page-card:hover .project-cta {
  opacity: 1;
  transform: translateY(0);
  color: #f8ebd0;
}

/* Enhanced Pagination */
.pagination-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 60px;
  position: relative;
  z-index: 2;
  color: #333;
}

.project-page-card:hover .project-cta::after {
  left: 100%;
}

.pagination {
  display: flex;
  gap: 8px;
  background: white;
  padding: 16px;
  border-radius: 60px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.pagination button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(61, 52, 173, 0.1);
  border-radius: 50%;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
  z-index: -1;
}

.pagination button.active {
  color: #fff;
  background: #3d34ad;
  transform: scale(1.1);
}

.pagination button.active::before {
  opacity: 1;
  transform: scale(1);
}

.pagination button:hover:not(.active) {
  color: #3d34ad;
  transform: scale(1.05);
  border-color: rgba(61, 52, 173, 0.3);
  background: rgba(61, 52, 173, 0.1);
}

.pagination button:hover:not(.active)::before {
  transform: scaleX(1);
  transform-origin: left;
}

.pagination button.active:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(61, 52, 173, 0.3);
}

.pagination button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: scale(0.9);
}

.progress-bar {
  width: 100%;
  max-width: 300px;
  height: 4px;
  background: #eee;
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #3d34ad, #5b52d3);
  border-radius: 2px;
  transition: width 0.6s ease;
  position: relative;
}

.progress-fill::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Loading Animation */
.loading {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top: 3px solid #ff77c6;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .projects-page-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .projects-page-section {
    padding: 80px 15px;
  }

  .projects-page-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .stats-row {
    gap: 20px;
  }

  .pagination button {
    width: 42px;
    height: 42px;
    font-size: 0.9rem;
  }

  .project-page-card {
    margin: 0 10px;
  }
}

@media (max-width: 480px) {
  .pagination {
    padding: 12px;
    gap: 6px;
  }

  .pagination button {
    width: 38px;
    height: 38px;
    font-size: 0.8rem;
  }
}

/* View Gallery Page */

.full-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 5 columns */
  grid-template-rows: repeat(8, auto); /* 8 rows */
  gap: 15px;
  padding: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-header {
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #000000;
}

.gallery-header p {
  font-size: 18px;
  color: #986a00;
  margin-bottom: 10px;
}

.gallery-header h2 {
  font-size: 48px;
  font-weight: 700;
  margin: 0;
  z-index: 1;
  background: linear-gradient(45deg, #ffd063, #ad8d34);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 768px) {
  .gallery-header h2 {
      font-size: 36px;
  }
  .full-gallery {
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
      padding: 15px;
  }
}

.view-gallery .full-gallery {
  display: grid;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1 / 1; /* Square items */
  cursor: pointer;
  background: #f0f0f0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  clip-path: inset(50% 50% 50% 50% round 12px);
  transition: all 0.5s ease;
}

.gallery-item:hover .overlay {
  opacity: 1;
  clip-path: inset(0% 0% 0% 0% round 12px); /* Expands to full rectangle */
}

.eye-icon {
  position: relative;
  font-size: 24px;
  color: #ad8d34;
  background: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.5s ease;
  z-index: 2;
  border: 2px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.2);
}

.gallery-item:hover .eye-icon {
  transform: scale(1.05);
  box-shadow: 0 0 0 18px rgba(255, 255, 255, 0.3); /* Bigger soft glow */
}

.eye-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #ffd863;
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
}

.gallery-item:hover .eye-icon::after {
  animation: borderPulse 0.8s forwards;
}

@keyframes borderPulse {
  0% {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
  }
  100% {
      opacity: 0;
      transform: translate(-50%, -50%) scale(2);
  }
}

.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  cursor: pointer;
  z-index: 1001;
  transition: color 0.3s ease;
}

.close:hover {
  color: #ffc863;
}

/* Placeholder image styling */
.placeholder-img {
  background: linear-gradient(45deg, #ffd363, #ad8f34);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  font-weight: bold;
}

/* Blogs Page */
/* Blog Page Specific Styles */

.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.projects-section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.projects-section-header span {
  background: linear-gradient(45deg, #bb9945, #ffd781);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.projects-section-header p {
  color: #666; /* Dark gray text */
}

.blogs-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.news-card {
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.news-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.news-img-wrap {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.news-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.news-card:hover .news-img-wrap img {
  transform: scale(1.1);
}

.date-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.news-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* .news-meta i {
  color: #667eea;
} */

.news-title {
  color: #333; /* Dark text */
  font-size: 18px;
  font-weight: 600;
  padding: 8px 16px 20px;
}

.read-more {
  margin: 0 25px 25px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.read-more:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.pagination-info {
  color: #666;
  font-size: 1rem;
}

.pagination button {
  padding: 10px 15px;
  border: 2px solid #eee;
  background: white;
  color: #666;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
  font-weight: 600;
}

.pagination button:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.pagination button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.loading {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-top: 4px solid #3d34ad;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes particleFade {
  0% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
  100% {
    opacity: 0;
    transform: scale(0) translateY(-20px);
  }
}

@media (max-width: 768px) {
  .blogs-page-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 10px;
  }

  .projects-section-header h2 {
    font-size: 2rem;
  }

  .news-card {
    margin: 0 10px;
  }

  .progress-bar {
    width: 200px;
  }

  .pagination {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* About Page */

.about-leader-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 1%;
  background: #ffecb2;
  font-family: "Inter", sans-serif;
  gap: 80px;
}

.about-leader-content {
  flex: 1;
}

.about-subtitle {
  font-size: 16px;
  color: #3d34ad;
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  margin-bottom: 2px;
}

.about-subtitle span {
  display: inline-block;
  width: 30px;
  height: 2px;
  background: #3d34ad;
  margin: 0 4px;
}

.about-leader-content h2 {
  font-size: 40px;
  font-weight: 600;
  color: #111;
  margin-bottom: 20px;
  font-family: "Inter", sans-serif;
}

.about-leader-content p {
  font-size: 16px;
  line-height: 1.75;
  color: #554b4b;
  font-family: "Inter", serif;
}

/* ✅ GRID LAYOUT */
.about-leader-images-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 20px;
}

.side-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.side-thumbnails.right {
  display: flex;
  flex-direction: column;
  align-self: flex-end;
  gap: 20px;
}

.side-thumbnails img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.side-thumbnails img:hover {
  transform: scale(1.05);
}

.main-image {
  position: relative;
  width: 300px;
  border-radius: 20px;
  overflow: hidden;
  justify-self: center;
  align-self: center;
}

.main-image img {
  height: auto;
  border-radius: 20px;
}

.rotating-badge {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 140px;
  z-index: 10;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(61, 52, 173, 0.2);
  overflow: hidden;
}

.rotating-badge svg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  animation: spinText 12s linear infinite; /* ✅ only text rotates */
}

.rotating-badge text {
  font-size: 18px;
  fill: #000;
  letter-spacing: 2px;
}

.badge-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  border: 1px solid #5fe463;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(95, 228, 99, 0.6);
}

.badge-center img {
  width: 50px;
  height: 30px;
  border-radius: 50%;
}

@keyframes spinText {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* ======================== RESPONSIVE STYLES ======================== */

/* Large tablets and small desktops (1024px and below) */
@media (max-width: 1024px) {
  .about-leader-section {
    padding: 60px 2%;
    gap: 60px;
  }

  .about-leader-content h2 {
    font-size: 36px;
  }

  .main-image {
    width: 280px;
  }

  .rotating-badge {
    width: 140px;
    height: 140px;
    top: 50px;
  }

  .badge-center {
    width: 70px;
    height: 70px;
  }

  .badge-center img {
    width: 45px;
    height: 25px;
  }

  .side-thumbnails img {
    width: 90px;
    height: 90px;
  }
}

/* Medium tablets (768px and below) */
@media (max-width: 768px) {
  .about-leader-section {
    flex-direction: column;
    padding: 40px 3%;
    gap: 40px;
    align-items: center;
    text-align: center;
  }

  .about-leader-content {
    order: 2;
    max-width: 100%;
  }

  .about-leader-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .about-leader-content p {
    font-size: 15px;
    text-align: left;
  }

  .side-thumbnails.right {
    order: 3;
  }

  .main-image {
    width: 260px;
    order: 2;
  }

  .rotating-badge {
    width: 120px;
    height: 120px;
    top: 40px;
  }

  .rotating-badge text {
    font-size: 16px;
  }

  .badge-center {
    width: 60px;
    height: 60px;
  }

  .badge-center img {
    width: 40px;
    height: 22px;
  }

  .side-thumbnails img {
    width: 80px;
    height: 80px;
  }
}

/* Small tablets and large phones (480px and below) */
@media (max-width: 480px) {
  .about-leader-section {
    padding: 30px 4%;
    gap: 30px;
  }

  .about-subtitle {
    font-size: 14px;
    justify-content: center;
  }

  .about-subtitle span {
    width: 25px;
  }

  .about-leader-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .about-leader-content p {
    font-size: 14px;
    line-height: 1.6;
  }

  .main-image {
    width: 220px;
  }

  .rotating-badge {
    width: 100px;
    height: 100px;
    top: 30px;
  }

  .rotating-badge text {
    font-size: 14px;
    letter-spacing: 1px;
  }

  .badge-center {
    width: 50px;
    height: 50px;
  }

  .badge-center img {
    width: 35px;
    height: 20px;
  }

  .side-thumbnails img {
    width: 70px;
    height: 70px;
  }

  .about-leader-images-grid {
    gap: 12px;
  }

  .side-thumbnails {
    gap: 12px;
  }
}

/* Extra small phones (360px and below) */
@media (max-width: 360px) {
  .about-leader-section {
    padding: 25px 3%;
    gap: 25px;
  }

  .about-leader-content h2 {
    font-size: 24px;
  }

  .main-image {
    width: 200px;
  }

  .rotating-badge {
    width: 90px;
    height: 90px;
    top: 25px;
  }

  .rotating-badge text {
    font-size: 12px;
  }

  .badge-center {
    width: 45px;
    height: 45px;
  }

  .badge-center img {
    width: 30px;
    height: 18px;
  }

  .side-thumbnails img {
    width: 60px;
    height: 60px;
  }
}

/* About Page - Purpose Section */

.vision-mission-section {
  background: #ffecb2;
  padding: 80px 20px;
  text-align: center;
}

.vision-mission {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 80px;
}

.vision-mission .card {
  max-width: 450px;
  text-align: left;
}

.vision-mission .icon {
  width: 60px;
  height: 60px;
  /* background: #f8f8f8; */
  /* border-radius: 50%; */
  display: flex;
  justify-content: center;
  align-items: center;
  /* font-size: 24px; */
  color: #e99b00;
  margin-bottom: 20px;
}

.vision-mission h3 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
}

.vision-mission p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
}

.purpose-section {
  padding: 100px 20px;
  background: #ffecb2;
  text-align: center;
}

.purpose-header .subtitle {
  font-size: 14px;
  font-weight: bold;
  color: #3d34ad;
}

.purpose-header span {
  display: inline-block;
  width: 25px;
  height: 2px;
  background: #3d34ad;
  margin: 0 5px;
}

.purpose-header h2 {
  font-size: 40px;
  font-weight: 800;
  margin-top: 10px;
}

.purpose-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}

.purpose-card {
  background: #fff;
  padding: 30px;
  width: 320px;
  border-radius: 16px;
  text-align: left;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.purpose-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.purpose-card .icon {
  width: 50px;
  height: 50px;
  background: #f3f2f2;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  color: #e5aa35;
  margin-bottom: 15px;
}

.purpose-card h3 {
  font-size: 20px;
  font-weight: bold;
}

.purpose-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.purpose-card .card-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 40px;
  font-weight: bold;
  color: #ddd;
}

/* counter section */
.about-stats-section {
  background: linear-gradient(to bottom, #846941, #ffa600);
  padding: 80px 20px;
  text-align: center;
}

.about-stats-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 120px;
  flex-wrap: wrap;
}

.about-stat-item {
  color: #fff;
  text-align: center;
}

.about-stat-item i {
  font-size: 50px;
  color: #ffce84;
  margin-bottom: 15px;
}

.about-stat-item h2 {
  font-size: 48px;
  font-weight: bold;
}

.about-stat-item p {
  font-size: 18px;
  color: #ddd;
}

@media (max-width: 768px) {
  .about-stats-container {
    flex-direction: column;
    gap: 40px;
  }
}

/* Contact Section */
/* About Contact Section */
.about-contact-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  background: #7d7d7d;
  border-radius: 20px;
  color: #fff;
  font-family: "Inter", sans-serif;
  margin: 20px;
  position: relative;
}

.about-contact-left {
  width: 100%;
  position: relative;
  height: 300px;
  margin-bottom: 30px;
  top: 0;
}

.about-circle-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #fff;
  padding: 8px;
  position: absolute;
  bottom: 20px;
  left: 20px;
  border: 8px solid rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.about-circle-img img {
  width: 100%;
  border-radius: 50%;
}

.about-square-img {
  width: 140px;
  height: 120px;
  background: #fff;
  position: absolute;
  bottom: 80px;
  left: 60px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.about-square-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.about-left-text {
  position: absolute;
  bottom: 120px;
  left: 20px;
  right: 20px;
  top: 0px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
}

.about-contact-right {
  width: 100%;
  position: relative;
  top: 0;
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
  color: #000;
  transform: translateX(0);
  opacity: 1;
}

.about-form-header .subtitle {
  font-size: 14px;
  color: #3d34ad;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

.about-form-header h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}

.about-contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.about-form-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.about-form-group input,
.about-contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
}

textarea {
  min-height: 100px;
  resize: none;
}

.about-submit-btn {
  padding: 12px;
  background: #ad8334;
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
  width: 100%;
}

.about-submit-btn:hover {
  background: #8e6523;
}

/* Tablet Styles */
@media (min-width: 768px) {
  .about-contact-section {
    flex-direction: row;
    padding: 60px 40px;
    margin: 40px;
  }

  .about-contact-left {
    width: 45%;
    height: 400px;
    margin-bottom: 0;
  }

  .about-circle-img {
    width: 140px;
    height: 140px;
    bottom: 40px;
    left: 40px;
  }

  .about-square-img {
    width: 160px;
    height: 140px;
    bottom: 120px;
    left: 80px;
  }

  .about-left-text {
    position: static;
    bottom: 180px;
    left: 200px;
    right: auto;
    width: auto;
    padding: 10px 20px;
    text-align: left;
  }

  .about-contact-right {
    width: 50%;
    padding: 40px;
    transform: translateX(0);
  }

  .about-form-header .subtitle {
    text-align: left;
  }

  .about-form-header h2 {
    text-align: left;
    font-size: 28px;
  }

  .about-form-group {
    flex-direction: row;
    gap: 20px;
  }
}

/* Desktop Styles */
@media (min-width: 992px) {
  .about-contact-section {
    padding: 80px 60px;
  }

  .about-contact-left {
    height: 500px;
  }

  .about-circle-img {
    width: 150px;
    height: 150px;
    bottom: 40px;
    left: 40px;
  }

  .about-square-img {
    width: 160px;
    height: 140px;
    bottom: 150px;
    left: 100px;
  }

  .about-left-text {
    left: 280px;
    top: 200px;
    position: absolute;
    font-size: 20px;
  }

  .about-contact-right {
    padding: 60px;
    transform: translateX(50px);
  }

  .about-form-header h2 {
    font-size: 36px;
  }

  .about-form-group input,
  .about-contact-form textarea {
    padding: 14px;
    font-size: 16px;
  }

  textarea {
    min-height: 120px;
  }

  .about-submit-btn {
    padding: 14px;
    font-size: 18px;
  }
}

/* Large Desktop Styles */
@media (min-width: 1200px) {
  .about-contact-section {
    padding: 100px 80px;
  }

  .about-contact-right {
    transform: translateX(100px);
  }
}

.running-text-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #fff; /* Adjust if needed */
  height: 120px; /* Adjust height as per design */
  display: flex;
  align-items: center;
  z-index: -1;
}

.running-text-wrapper {
  display: flex;
  white-space: nowrap;
  font-size: 60px;
  font-weight: 700;
  color: #111;
  opacity: 0.08; /* Faded effect for background look */
  position: absolute;
  width: max-content;
}

.running-text i {
  margin: 0 20px;
  color: #ad8b34; /* Icon color */
  font-size: 60px;
}

/*.latest-badge {*/
/*   position: absolute;*/
/*  top: 10px;*/
/*  right: 10px;*/
  /*background: #e63946; */
/*  color: #fff;*/
/*  padding: 10px 30px;*/
/*  font-size: 1rem;*/
/*  font-weight: bold;*/
/*  text-transform: uppercase;*/
/*  z-index: 2;*/
/*  clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);*/
/*  box-shadow: 0 4px 6px rgba(0,0,0,0.2);*/
/*}*/

.latest-badge {
  position: absolute;
  top: 1px;
  right: -20px;
  background: #e63946; /* red */
  color: #fff;
  padding: 10px 40px;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  transform: rotate(0deg);
}

/* Triangle folds */
.latest-badge::before,
.latest-badge::after {
  content: "";
  position: absolute;
  top: 100%;
  border-style: solid;
  border-width: 10px 20px 0 20px;
  border-color: #c92f3d transparent transparent transparent;
}

.latest-badge::before {
  left: 0;
}

.latest-badge::after {
  right: 0;
}



