 .csr-hero {
    position: relative;
    color: #fff;
 }

 /* Base Hero */
 .hero {
     position: relative;
     background: url("../img/csr-hero.png") center/cover no-repeat;
     height: 100dvh;
     overflow: hidden;
 }

 /* FIXED OVERLAY */
 .hero .overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.6);
     z-index: 1;
 }

 .hero-content {
     position: relative;
     z-index: 3;
     height: 100%;
     display: flex;
     align-items: center;
 }

 .hero-left h2 {
     font-size: 28px;
     line-height: 1.4;
     color: #fff;
     font-weight: 500;
 }

 .hero-left h4 {
     color: #e5b73b;
     margin-bottom: 12px;
     font-size: 24px;
     font-weight: 600;
     position: relative;
 }

 .icon-row {
     display: flex;
     gap: 15px;
     margin-top: 25px;
 }

 .icon-box {
     width: 55px;
     height: 55px;
     border-radius: 12px;
     background: #fff;
     box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.12);
     display: flex;
     justify-content: center;
     align-items: center;
     transition: 0.25s ease;
 }

 .icon-box img {
     height: 40px;
     width: 40px;
 }

 .icon-box:hover {
     transform: translateY(-4px);
 }

 /* CSR Overlay Image */
 .hero-right img.overlay {
     width: 55%;
     position: absolute;
     right: 0%;
     bottom: -52%;
 }

 /* Responsive */
 @media (max-width: 992px) {
     /* .hero-content {
         flex-direction: column;
         text-align: center;
     } */

     .hero-right {
         display: none;
     }

     .hero-right img.overlay {
         width: 380px;
     }
 }

 .csr-tabs-section .nav-link {
     background: #f7f7f7;
     border-radius: 10px;
     padding: 14px 18px;
     margin-bottom: 10px;
     text-align: left;
     font-weight: 600;
     color: #333;
     border: none;
     transition: 0.25s ease;
     box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
 }

 .csr-tabs-section .nav-link:hover {
     background: #ececec;
     transform: translateX(3px);
 }

 .csr-tabs-section .nav-link.active {
     background-color: #09576324;
     color: #095763;
     font-weight: 700;
 }

 .tab-pane {
     animation: fadeSlide 0.5s ease;
 }

 @keyframes fadeSlide {
     from {
         opacity: 0;
         transform: translateY(12px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .tab-content p {
     font-size: 16px;
     line-height: 1.7;
     color: #444;
 }

 .tab-pane img {
     border-radius: 10px;
     box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
 }

 .text-primary {
     color: #095763 !important;
     font-size: 28px;
     margin-top: 15px;
 }

 /* Custom Styles for Clean CSR Section */
 .csr-clean-section {
     padding-top: 4rem;
     padding-bottom: 4rem;
 }

 .csr-content-card {
     background-color: #ffffff;
     border-radius: 15px;
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
     max-width: 900px;
     margin-left: auto;
     margin-right: auto;
 }

 .csr-content-card h2 {
     color: #212529;
     font-size: 3rem;
 }

 .csr-content-card p {
     color: #555;
     font-size: 1.15rem;
     max-width: 700px;
     margin-left: auto;
     margin-right: auto;
 }

 .csr-btn-outline-primary {
     background-color: transparent;
     border-color: #095763;
     color: #095763;
     border-radius: 50px;
     font-weight: bold;
     letter-spacing: 0.5px;
     transition: all 0.3s ease;
 }

 .csr-btn-outline-primary:hover {
     background-color: #095763;
     border-color: #095763;
     color: #fff;
     transform: translateY(-2px);
     box-shadow: 0 4px 10px rgba(0, 128, 0, 0.2);
 }

 /* Responsive adjustments */
 @media (max-width: 767.98px) {
     .csr-content-card h2 {
         font-size: 2.5rem;
     }

     .csr-content-card p {
         font-size: 1rem;
     }

     .csr-btn-outline-primary {
         padding-left: 2rem !important;
         padding-right: 2rem !important;
     }
 }