 /* ================= HERO SECTION ================= */
 .hero-section {
     position: relative;
     overflow: hidden;
     display: flex;
     justify-content: flex-end;
     align-items: center;
     min-height: 300px;
     padding: 50px 20px;
     color: #fdfdfd;
 }

 .hero-section .hero-bg {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     overflow: hidden;
     z-index: 0;
 }

 .hero-section .hero-bg img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s ease;
 }

 .hero-section .hero-bg img:hover {
     transform: scale(1.05);
 }

 .hero-section .overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 1;
 }

 .hero-section .hero-content {
     position: relative;
     z-index: 2;
     max-width: 500px;
     line-height: 1.3;
     background-color: #00000080;
     padding: 40px 30px;
     border-radius: 15px;
     text-align: right;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
     animation: fadeRight 1s ease forwards;
     color: #fdfdfd;
 }

 .hero-section h1 {
     font-size: 28px;
     margin-bottom: 20px;
     font-weight: 700;
     color: #fdfdfd;
 }

 .hero-section p {
     font-size: 14px;
     margin-bottom: 30px;
     line-height: 1.2;
     color: #f3f3f3;
 }

 /* Animation */
 @keyframes fadeRight {
     0% {
         opacity: 0;
         transform: translateX(50px);
     }

     100% {
         opacity: 1;
         transform: translateX(0);
     }
 }

 /* Responsive */
 @media screen and (max-width: 1024px) {
     .hero-section .hero-content {
         max-width: 400px;
         padding: 30px 20px;
     }
 }

 @media screen and (max-width: 768px) {
     .hero-section {
         justify-content: center;
         text-align: center;
         padding: 40px 15px;
     }

     .hero-section .hero-content {
         text-align: center;
         max-width: 90%;
         background-color: #00000080;
         padding: 25px 20px;
     }

     .hero-section h1 {
         font-size: 32px;
         color: var(--white-color);
     }

     .hero-section p {
         font-size: 16px;
         color: #f8f8f8;
     }
 }
