 body {
     background-color: #f5f5f5;
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
 }

 .navbar {
     background-color: white;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
     padding: 1rem 5%;
 }

 .logo-img {
     height: 50px;
     margin-right: 15px;
 }

 .logo-text {
     font-weight: 700;
     font-size: 22px;
     color: #263238;
 }

 .logo-text span {
     color: #c62828;
 }

 .nav-link {
     color: #263238 !important;
     font-weight: 600;
     /* font-size: 16px; */
     text-transform: uppercase;
     letter-spacing: 1px;
     position: relative;
     transition: color 0.3s ease;
     padding: 10px 15px !important;
 }

 .nav-link:hover {
     color: #c62828 !important;
 }

 .nav-link::after {
     content: '';
     position: absolute;
     width: 0;
     height: 2px;
     background: #ff8f00;
     bottom: 0;
     left: 15px;
     transition: width 0.3s ease;
 }

 .nav-link:hover::after {
     width: calc(100% - 30px);
 }

 .cta-button {
     background-color: #c62828;
     color: white !important;
     padding: 10px 25px !important;
     border-radius: 4px;
     transition: all 0.3s ease;
 }

 .cta-button:hover {
     background-color: #b71c1c !important;
     transform: translateY(-2px);
     box-shadow: 0 4px 8px rgba(198, 40, 40, 0.3);
 }

 /* 
 .navbar-toggler {
     border: none;
     padding: 0;
 } */

 /* .navbar-toggler:focus {
     box-shadow: none;
 } */

 /* .navbar-toggler-icon {
     background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(38,50,56,0.75)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
 } */

 @media (max-width: 992px) {
     .nav-link::after {
         display: none;
     }

     .navbar-nav {
         padding: 20px 0;
         background-color: white;
         text-align: center;
     }

     .nav-item {
         margin: 10px 0;
     }
 }

 .hero-carousel {
     position: relative;
     overflow: hidden;
 }

 .carousel-item {
     height: 80vh;
     min-height: 90vh;
     background-size: cover;
     background-position: center;
     position: relative;
 }

 .carousel-item::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.5);
     /* background: linear-gradient(45deg, #d311113b 0%, #1608964b 100%); */
 }

 .carousel-caption {
     bottom: 30%;
     text-align: left;
     padding: 0 10%;
     z-index: 10;
 }

 .carousel-caption h2 {
     font-size: 3.5rem;
     font-weight: 700;
     text-transform: uppercase;
     margin-bottom: 1.5rem;
     color: #fff;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
     animation: fadeInUp 1s ease;
 }

 .carousel-caption p {
     font-size: 1.2rem;
     max-width: 600px;
     margin-bottom: 2rem;
     color: #fff;
     animation: fadeInUp 1.3s ease;
 }

 .carousel-caption .btn {
     padding: 12px 30px;
     font-size: 1.1rem;
     font-weight: 600;
     border-radius: 4px;
     animation: fadeInUp 1.5s ease;
 }

 .carousel-indicators {
     bottom: 50px;
 }

 .carousel-indicators button {
     width: 12px;
     height: 12px;
     border-radius: 50%;
     margin: 0 8px;
     border: 2px solid transparent;
     background-color: rgba(255, 255, 255, 0.5);
 }

 .carousel-indicators button.active {
     background-color: #fff;
     border-color: #fff;
     transform: scale(1.2);
 }

 .carousel-control-prev,
 .carousel-control-next {
     width: 50px;
     height: 50px;
     background-color: rgba(0, 0, 0, 0.3);
     border-radius: 50%;
     top: 50%;
     transform: translateY(-50%);
     opacity: 0;
     transition: opacity 0.3s ease;
 }

 .hero-carousel:hover .carousel-control-prev,
 .hero-carousel:hover .carousel-control-next {
     opacity: 1;
 }

 .carousel-control-prev {
     left: 30px;
 }

 .carousel-control-next {
     right: 30px;
 }

 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(30px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 /* Responsive adjustments */
 @media (max-width: 992px) {
     .carousel-item {
         height: 60vh;
     }

     .carousel-caption h2 {
         font-size: 2.5rem;
     }

     .carousel-caption p {
         font-size: 1rem;
     }
 }

 @media (max-width: 768px) {

     .carousel-item {
         min-height: 70vh;
     }

     .carousel-caption {
         bottom: 20%;
         padding: 0 5%;
     }

     .carousel-caption h2 {
         font-size: 2rem;
     }

     .tgline_img1 {
         width: 100px;
     }

     .tgline_img2 {
         width: 100px;
         top: 120px;
     }
 }



 .tgline_img1 {
     position: absolute;
     top: 120px;
     left: 50px;
     animation: udmove 5s ease-in-out infinite;
 }

 .tgline_img2 {
     position: absolute;
     bottom: 40px;
     right: 50px;
     animation: udmove 5s ease-in-out infinite;
 }

 @keyframes udmove {
     0% {
         transform: translateY(0px);
     }

     50% {
         transform: translateY(5px);
     }

     100% {
         transform: translateY(0px);
     }
 }


 .wave-text {
     font-size: 2.5rem;
     font-weight: 700;
     color: white;
     position: relative;
     display: flex;
     flex-wrap: wrap;
     /* justify-content: center; */
     gap: 4px;
     overflow: hidden;
 }

 /* Wave shine effect */
 .wave-text::after {
     content: '';
     position: absolute;
     width: 200%;
     height: 100%;
     top: 0;
     left: -100%;
     background: linear-gradient(120deg,
             transparent 0%,
             rgba(255, 255, 255, 0.6) 50%,
             transparent 100%);
     animation: wave 2s infinite;
     z-index: 1;
 }

 /* Up-down animation for each word */
 .wave-text span {
     display: inline-block;
     animation: bounce 1s ease-in-out infinite;
     animation-delay: calc(0.05s * var(--i));
     z-index: 2;
     position: relative;
 }

 /* Set --i value dynamically via JS or manually */
 .wave-text span:nth-child(1) {
     --i: 1;
 }

 .wave-text span:nth-child(2) {
     --i: 2;
 }

 .wave-text span:nth-child(3) {
     --i: 3;
 }

 .wave-text span:nth-child(4) {
     --i: 4;
 }

 .wave-text span:nth-child(5) {
     --i: 5;
 }

 .wave-text span:nth-child(6) {
     --i: 6;
 }

 .wave-text span:nth-child(7) {
     --i: 7;
 }

 .wave-text span:nth-child(8) {
     --i: 8;
 }

 .wave-text span:nth-child(9) {
     --i: 9;
 }

 .wave-text span:nth-child(10) {
     --i: 10;
 }

 .wave-text span:nth-child(11) {
     --i: 11;
 }

 .wave-text span:nth-child(12) {
     --i: 12;
 }

 .wave-text span:nth-child(13) {
     --i: 13;
 }

 .wave-text span:nth-child(14) {
     --i: 14;
 }

 .wave-text span:nth-child(15) {
     --i: 15;
 }

 .wave-text span:nth-child(16) {
     --i: 16;
 }

 .wave-text span:nth-child(17) {
     --i: 17;
 }

 .wave-text span:nth-child(18) {
     --i: 18;
 }

 .wave-text span:nth-child(19) {
     --i: 19;
 }

 .wave-text span:nth-child(20) {
     --i: 20;
 }

 .wave-text span:nth-child(21) {
     --i: 21;
 }

 .wave-text span:nth-child(22) {
     --i: 22;
 }

 .wave-text span:nth-child(23) {
     --i: 23;
 }

 .wave-text span:nth-child(24) {
     --i: 24;
 }

 .wave-text span:nth-child(25) {
     --i: 25;
 }

 .wave-text span:nth-child(26) {
     --i: 26;
 }

 .wave-text span:nth-child(27) {
     --i: 27;
 }

 .wave-text span:nth-child(28) {
     --i: 28;
 }

 @keyframes wave {
     0% {
         left: -100%;
     }

     100% {
         left: 100%;
     }
 }

 @keyframes bounce {

     0%,
     100% {
         transform: translateY(0px);
     }

     50% {
         transform: translateY(-8px);
     }
 }

 .tmt-section {
     background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
     padding: 80px 0;
     position: relative;
     overflow: hidden;
 }

 .tmt-title {
     font-size: 2.8rem;
     font-weight: 700;
     color: #2c3e50;
     margin-bottom: 1.5rem;
     text-transform: uppercase;
     position: relative;
     display: inline-block;
 }

 .tmt-title:after {
     content: '';
     position: absolute;
     bottom: -10px;
     left: 0;
     width: 70px;
     height: 4px;
     background: #e74c3c;
 }

 .tmt-description {
     font-size: 1.2rem;
     color: #34495e;
     line-height: 1.8;
     margin-bottom: 2rem;
 }

 .feature-card {
     background: white;
     padding: 30px;
     border-radius: 8px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
     height: 100%;
     transition: transform 0.3s ease, box-shadow 0.3s ease;

 }

 .feature-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
     background: linear-gradient(180deg, #F33131 0%, #f2295b 100%);
 }

 .feature-card:hover i {
     color: white !important;
 }

 .feature-card:hover h3 {
     color: white !important;
 }

 .feature-card:hover p {
     color: white !important;
 }

 .feature-icon {
     font-size: 2.5rem;
     color: #e74c3c;
     margin-bottom: 20px;
 }

 .feature-title {
     font-size: 1.3rem;
     font-weight: 600;
     color: #2c3e50;
     margin-bottom: 15px;
 }

 .feature-text {
     color: #7f8c8d;
     line-height: 1.6;
 }

 .cta-button {
     background: #e74c3c;
     color: white;
     padding: 12px 30px;
     border-radius: 4px;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 1px;
     display: inline-block;
     transition: all 0.3s ease;
     border: none;
     text-decoration: none;
 }

 .cta-button:hover {
     background: #c0392b;
     transform: translateY(-3px);
     box-shadow: 0 10px 20px rgba(231, 76, 60, 0.3);
     color: white;
 }

 .tmt-image {
     width: 80%;
     filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
 }

 @media (max-width: 1200px) {
     .tmt-image {
         max-height: 70%;
         opacity: 0.8;
     }
 }

 @media (max-width: 992px) {
     .tmt-title {
         font-size: 2.2rem;
     }

     .tmt-image {
         width: 80%;
     }
 }

 .offer-section {
     background: linear-gradient(180deg, #F33131 0%, #f2295b 100%);
     padding: 30px 0;
     color: white;
     position: relative;
     overflow: hidden;
 }

 .offer-container {
     position: relative;
     z-index: 2;
 }

 .offer-heading {
     font-weight: 700;
     margin-bottom: 1.5rem;
     text-transform: uppercase;
     line-height: 1.2;
     text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
 }

 .offer-subheading {
     font-size: 1.5rem;
     font-weight: 500;
     margin-bottom: 2rem;
     opacity: 0.9;
 }

 .offer-btn {
     background: white;
     color: #F33131;
     padding: 10px 25px;
     border-radius: 50px;
     font-weight: 700;
     text-transform: uppercase;
     /* letter-spacing: 1px; */
     display: inline-block;
     transition: all 0.3s ease;
     border: none;
     text-decoration: none;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
 }

 .offer-btn:hover {
     background: #f8f9fa;
     transform: translateY(-3px);
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
     color: #F33131;
 }

 .pattern-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-image: url('https://www.transparenttextures.com/patterns/concrete-wall.png');
     opacity: 0.05;
     z-index: 1;
 }

 @media (max-width: 768px) {
     .offer-heading {
         font-size: 2.2rem;
     }

     .offer-subheading {
         font-size: 1.2rem;
     }

     .offer-btn {
         padding: 12px 30px;
         font-size: 0.9rem;
     }
 }

 .trusted_sec {
     padding: 80px 0px;
     background-image: url('../images/trusted.jpg');
     background-position: right;
     background-size: cover;
 }

 .trusted_h2 {
     color: white;
     font-weight: 700;
     text-align: right;
 }

 .trusted_partners_con {
     padding: 50px 0px;
     display: flex;
     align-items: center;
     justify-content: end;
 }

 .trusted_partners_con img {
     width: 60%;
 }

 @media (max-width: 768px) {
     .trusted_partners_con img {
         width: 100%;
     }

     .trusted_tx {
         color: white;
         font-weight: 600;
         text-align: right;
         width: 100% !important;
     }
 }

 .trusted_tx {
     color: white;
     font-weight: 600;
     text-align: right;
     width: 50%;
 }

 .right_box {
     display: flex;
     justify-content: end;
 }

 .tmt-products {
     background-color: #f8f9fa;
 }

 .section-header .header-divider {
     width: 80px;
     height: 3px;
     background: #e63946;
     /* Replaced --primary-color */
 }

 .product-card {
     background: white;
     border-radius: 8px;
     overflow: hidden;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
     transition: all 0.3s ease;
     height: 100%;
 }

 .product-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
 }

 .product-img {
     position: relative;
     height: 200px;
     overflow: hidden;
 }

 .product-img img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s ease;
 }

 .product-card:hover .product-img img {
     transform: scale(1.05);
 }

 .product-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: #1d3557;
     /* Replaced --dark-color */
     opacity: 0.7;
     transition: opacity 0.3s ease;
 }

 .product-content {
     position: relative;
     z-index: 1;
 }

 .product-content h3 {
     color: #1d3557;
     /* Replaced --dark-color */
     font-weight: 700;
     margin-bottom: 10px;
 }

 .product-content p {
     color: #6c757d;
 }

 .btn-danger {
     background-color: #e63946;
     /* Replaced --primary-color */
     border-color: #e63946;
     /* Replaced --primary-color */
     font-weight: 500;
     padding: 8px 20px;
 }

 .btn-danger:hover {
     background-color: #c1121f;
     border-color: #c1121f;
 }

 .recent_project_section {
     padding: 80px 0;
     background-color: #00000026;
 }

 .recent_project_header {
     text-align: center;
     margin-bottom: 50px;
 }

 .recent_project_title {
     font-size: 2.5rem;
     font-weight: 700;
     color: #2c3e50;
     margin-bottom: 15px;
 }

 .recent_project_subtitle {
     color: #7f8c8d;
     font-size: 1.1rem;
     max-width: 700px;
     margin: 0 auto;
 }

 .recent_project_container {
     display: flex;
     flex-wrap: wrap;
     gap: 25px;
     justify-content: center;
 }

 .recent_project_card {
     width: calc(25% - 20px);
     background: white;
     border-radius: 8px;
     overflow: hidden;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
     transition: all 0.3s ease;
 }

 .recent_project_image {
     height: 300px;
     overflow: hidden;
 }

 .recent_project_image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s ease;
 }

 .recent_project_card:hover .recent_project_image img {
     transform: scale(1.05);
 }

 .recent_project_content {
     padding: 20px;
 }

 .recent_project_name {
     font-size: 1.2rem;
     font-weight: 600;
     color: #2c3e50;
     margin-bottom: 10px;
 }

 .recent_project_desc {
     color: #7f8c8d;
     font-size: 0.9rem;
     margin-bottom: 15px;
     line-height: 1.5;
 }

 .recent_project_link {
     display: inline-flex;
     align-items: center;
     color: #eb1c24;
     font-weight: 500;
     text-decoration: none;
     font-size: 0.9rem;
 }

 .recent_project_link i {
     margin-left: 5px;
     transition: transform 0.3s ease;
 }

 .recent_project_link:hover i {
     transform: translateX(3px);
 }

 /* Badge for project status */
 .recent_project_badge {
     display: inline-block;
     background: #eb1c24;
     color: white;
     padding: 3px 10px;
     border-radius: 20px;
     font-size: 0.7rem;
     font-weight: 600;
     margin-bottom: 10px;
 }

 /* Responsive adjustments */
 @media (max-width: 992px) {
     .recent_project_card {
         width: calc(50% - 15px);
     }
 }

 @media (max-width: 576px) {
     .recent_project_card {
         width: 100%;
         max-width: 350px;
     }

     .recent_project_section_container {
         padding-left: 10px !important;
         padding-right: 10px !important;
     }
 }

 .recent_project_section_container {
     padding-left: 80px;
     padding-right: 80px;
 }

 .clints_container {
     max-width: 1200px;
     margin: 50px auto;
     padding: 0 20px;
 }

 .clints_title {
     text-align: center;
     font-size: 2.5rem;
     color: #333;
     margin-bottom: 40px;
     text-transform: uppercase;
     letter-spacing: 2px;
     position: relative;
 }

 .clints_title::after {
     content: '';
     width: 100px;
     height: 4px;
     background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
     position: absolute;
     bottom: -10px;
     left: 50%;
     transform: translateX(-50%);
 }

 .clints_carousel {
     position: relative;
     overflow: hidden;
     border-radius: 15px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
 }

 .clints_carousel_inner {
     display: flex;
     transition: transform 0.5s ease;
 }

 .clints_carousel_item {
     flex: 0 0 25%;
     /* Show 4 logos at a time */
     display: flex;
     justify-content: center;
     align-items: center;
     padding: 20px;
 }

 .clints_logo_card {
     background: #fff;
     border-radius: 10px;
     padding: 20px;
     text-align: center;
     width: 100%;
     max-width: 200px;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
 }

 .clints_logo_card:hover {
     transform: scale(1.1);
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
 }

 .clints_logo_card img {
     width: 100%;
     height: auto;
     max-height: 100px;
     object-fit: contain;
 }

 .clints_nav {
     position: absolute;
     top: 50%;
     width: 100%;
     display: flex;
     justify-content: space-between;
     transform: translateY(-50%);
 }

 .clints_nav_button {
     background: #f90000b5;
     color: #fff;
     border: none;
     cursor: pointer;
     font-size: 1.2rem;
     border-radius: 50%;
     transition: background 0.3s ease;
     width: 50px;
     height: 50px;
 }

 .clints_nav_button:hover {
     background: rgb(236, 28, 36);
 }

 .clints_dots {
     text-align: center;
     margin-top: 20px;
 }

 .clints_dot {
     display: inline-block;
     width: 12px;
     height: 12px;
     background: #ccc;
     border-radius: 50%;
     margin: 0 5px;
     cursor: pointer;
     transition: background 0.3s ease;
 }

 .clints_dot.active {
     background: #ff6b6b;
 }

 @media (max-width: 1024px) {
     .clints_carousel_item {
         flex: 0 0 33.33%;
         /* Show 3 logos on medium screens */
     }
 }

 @media (max-width: 768px) {
     .clints_carousel_item {
         flex: 0 0 50%;
         /* Show 2 logos on small screens */
     }

     .clints_logo_card {
         max-width: 150px;
     }

     .clints_title {
         font-size: 2rem;
     }
 }

 @media (max-width: 480px) {
     .clints_carousel_item {
         flex: 0 0 100%;
         /* Show 1 logo on very small screens */
     }
 }

 .footer_container {
     position: relative;
     background: url('https://www.essar.com/wp-content/uploads/2023/10/Essar-Steel-Plant-2.webp') no-repeat center center/cover;
     color: #e0e0e0;
     padding: 100px 20px 50px;
     overflow: hidden;
     /* min-height: 500px; */
     z-index: 1;
 }

 .footer_container::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(135deg, rgba(10, 10, 30, 0.9), rgba(30, 30, 60, 0.7));
     z-index: 2;
 }

 .footer_background_animation {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 1;
     pointer-events: none;
 }

 .footer_background_animation span {
     position: absolute;
     background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent);
     border-radius: 50%;
     box-shadow: 0 0 20px rgba(200, 50, 50, 0.5);
     animation: float 7s infinite ease-in-out, fade 3.5s infinite ease-in-out;
 }

 .footer_background_animation span:nth-child(1) {
     width: 70px;
     height: 70px;
     left: 10%;
     top: 25%;
     animation-delay: 0s;
 }

 .footer_background_animation span:nth-child(2) {
     width: 100px;
     height: 100px;
     left: 60%;
     top: 55%;
     animation-delay: 1s;
 }

 .footer_background_animation span:nth-child(3) {
     width: 50px;
     height: 50px;
     left: 35%;
     top: 85%;
     animation-delay: 2s;
 }

 .footer_background_animation span:nth-child(4) {
     width: 80px;
     height: 80px;
     left: 80%;
     top: 15%;
     animation-delay: 3s;
 }

 .footer_background_animation span:nth-child(5) {
     width: 60px;
     height: 60px;
     left: 25%;
     top: 45%;
     animation-delay: 4s;
 }

 .footer_background_animation span:nth-child(6) {
     width: 90px;
     height: 90px;
     left: 50%;
     top: 70%;
     animation-delay: 5s;
 }

 @keyframes float {

     0%,
     100% {
         transform: translateY(0) scale(1) rotate(0deg);
     }

     50% {
         transform: translateY(-80px) scale(1.4) rotate(15deg);
     }
 }

 @keyframes fade {

     0%,
     100% {
         opacity: 0.2;
     }

     50% {
         opacity: 0.5;
     }
 }

 .footer_metal_sheen {
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.15), transparent);
     z-index: 2;
     animation: sheen 6s linear infinite;
 }

 @keyframes sheen {
     0% {
         transform: translateX(-100%) skewX(-30deg);
     }

     100% {
         transform: translateX(200%) skewX(-30deg);
     }
 }

 .footer_content {
     position: relative;
     z-index: 3;
     max-width: 1400px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: 1.5fr 1fr 1fr;
     gap: 50px;
     padding: 30px;
 }

 .footer_section {
     padding: 20px;
 }

 .footer_logo h2 {
     font-family: 'Orbitron', sans-serif;
     font-size: 3.2rem;
     color: white;
     margin-bottom: 25px;
     text-transform: uppercase;
     letter-spacing: 4px;
     position: relative;
     animation: neonPulse 2.5s ease-in-out infinite;
 }

 .footer_logo h2::after {
     content: '';
     position: absolute;
     bottom: -12px;
     left: 0;
     width: 120px;
     height: 4px;
     background: linear-gradient(90deg, #e1e1e1, #fff);
     border-radius: 3px;
     animation: stretch 3s ease-in-out infinite;
 }

 @keyframes neonPulse {

     0%,
     100% {
         text-shadow: 0 0 10px rgba(200, 50, 50, 0.7), 0 0 20px rgba(200, 50, 50, 0.5), 0 0 30px rgba(200, 50, 50, 0.3);
     }

     50% {
         text-shadow: 0 0 20px rgba(200, 50, 50, 0.9), 0 0 30px rgba(200, 50, 50, 0.7), 0 0 40px rgba(200, 50, 50, 0.5);
     }
 }

 @keyframes stretch {

     0%,
     100% {
         transform: scaleX(1);
     }

     50% {
         width: 200px;
     }
 }

 .footer_logo p {
     font-size: 1.3rem;
     color: #b0b0b0;
     line-height: 1.9;
     max-width: 500px;
     margin-bottom: 30px;
     font-weight: 300;
     opacity: 0;
     animation: fadeIn 1.5s ease forwards 0.5s;
 }

 @keyframes fadeIn {
     to {
         opacity: 1;
     }
 }

 .footer_social {
     display: flex;
     gap: 25px;
     justify-content: flex-start;
 }

 .footer_social a {
     color: #b0b0b0;
     /* font-size: 2.2rem; */
     transition: all 0.4s ease;
     position: relative;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     border-radius: 50%;
     padding: 10px;
     background: rgba(255, 255, 255, 0.05);
     width: 50px;
     height: 50px;
     text-decoration: none;
 }

 .footer_social a:hover {
     color: #1e90ff;
     transform: translateY(-10px) rotate(360deg);
     background: rgba(30, 144, 255, 0.2);
     box-shadow: 0 0 15px rgba(30, 144, 255, 0.5);
 }

 .footer_social a::after {
     content: '';
     position: absolute;
     bottom: -10px;
     left: 50%;
     width: 0;
     height: 4px;
     background: #1e90ff;
     transition: width 0.4s ease;
     transform: translateX(-50%);
 }

 .footer_social a:hover::after {
     width: 80%;
 }

 .footer_links h3,
 .footer_contact h3 {
     font-family: 'Orbitron', sans-serif;
     font-size: 1.9rem;
     color: #fff;
     margin-bottom: 25px;
     position: relative;
     text-transform: uppercase;
     letter-spacing: 2px;
     animation: slideIn 1s ease forwards;
 }

 @keyframes slideIn {
     from {
         transform: translateY(20px);
         opacity: 0;
     }

     to {
         transform: translateY(0);
         opacity: 1;
     }
 }

 .footer_links h3::after,
 .footer_contact h3::after {
     content: '';
     width: 80px;
     height: 4px;
     background: linear-gradient(90deg, #b9b9b9, #ddd);
     position: absolute;
     bottom: -12px;
     border-radius: 3px;
     left: 0px;
 }

 .footer_links ul {
     list-style: none;
 }

 .footer_links li {
     margin: 18px 0;
     opacity: 0;
     animation: fadeIn 1s ease forwards;
     animation-delay: calc(0.1s * var(--i));
 }

 .footer_links a {
     color: white;
     text-decoration: none;
     /* font-size: 1.3rem; */
     position: relative;
     transition: all 0.4s ease;
     display: inline-block;
 }

 .footer_links a::before {
     content: '➤';
     position: absolute;
     left: -30px;
     opacity: 0;
     color: #1e90ff;
     transition: all 0.4s ease;
 }

 .footer_links a:hover {
     color: #1e90ff;
     transform: translateX(20px);
     text-shadow: 0 0 10px rgba(30, 144, 255, 0.5);
 }

 .footer_links a:hover::before {
     opacity: 1;
     left: -25px;
 }

 .footer_contact p {
     /* font-size: 1.3rem; */
     color: #ffffff;
     margin: 18px 0;
     display: flex;
     align-items: center;
     gap: 15px;
     transition: all 0.4s ease;
     opacity: 0;
     animation: fadeIn 1s ease forwards;
     animation-delay: calc(0.1s * var(--i));
 }

 .footer_contact p:hover {
     transform: translateX(10px);
     color: #fff;
 }

 .footer_contact i {
     color: #1e90ff;
     font-size: 20px;
     transition: all 0.4s ease;
 }

 .footer_contact p:hover i {
     transform: scale(1.4) rotate(20deg);
     filter: drop-shadow(0 0 12px rgba(30, 144, 255, 0.6));
 }

 .footer_bottom {
     text-align: center;
     padding: 30px 0;
     background: linear-gradient(180deg, rgba(10, 10, 30, 0.95), rgba(20, 20, 50, 0.85));
     margin-top: 60px;
     position: relative;
     z-index: 3;
     border-top: 3px solid rgba(255, 255, 255, 0.2);
 }

 .footer_bottom p {
     font-size: 1.1rem;
     color: #b0b0b0;
     letter-spacing: 2px;
     font-weight: 300;
     animation: fadeIn 1.5s ease forwards;
 }

 .footer_bottom p span {
     color: #c83232;
     font-weight: 500;
     transition: color 0.4s ease;
 }

 .footer_bottom p:hover span {
     color: #1e90ff;
 }

 @media (max-width: 1024px) {
     .footer_content {
         grid-template-columns: 1fr 1fr;
     }

     .footer_logo {
         grid-column: span 2;
         text-align: center;
     }

     .footer_logo p {
         margin-left: auto;
         margin-right: auto;
     }

     .footer_social {
         justify-content: center;
     }
 }

 @media (max-width: 768px) {
     .footer_content {
         grid-template-columns: 1fr;
     }

     .footer_logo h2 {
         font-size: 2.8rem;
     }

     .footer_links h3,
     .footer_contact h3 {
         font-size: 1.6rem;
     }

     .footer_contact p,
     .footer_links a {
         font-size: 1.2rem;
     }

     .footer_social a {
         font-size: 2rem;
     }
 }

 @media (max-width: 480px) {
     .footer_container {
         padding: 60px 15px 30px;
     }

     .footer_logo h2 {
         font-size: 2.2rem;
     }

     .footer_logo p {
         font-size: 1.1rem;
     }
 }

 .footer_icon_box {
     padding: 5px;
     border-radius: 50%;
     width: 30px;
     height: 30px;
     background-color: white;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .footer_icon_box i {
     font-size: 14px;
 }

 .contact_page_hero {
     position: relative;
     height: 90vh;
     min-height: 600px;
     overflow: hidden;
     background: linear-gradient(135deg, #2c3e50 0%, #1a2530 100%);
     color: white;
     display: flex;
     align-items: center;
 }

 .contact_page_background {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
     background-size: cover;
     background-position: center;
     opacity: 0.15;
     z-index: 1;
 }

 .contact_page_container {
     position: relative;
     z-index: 2;
     width: 100%;
 }

 .contact_page_content {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .contact_page_heading {
     font-size: 4rem;
     font-weight: 700;
     margin-bottom: 20px;
     line-height: 1.2;
     text-transform: uppercase;
     letter-spacing: 1px;
     position: relative;
     display: inline-block;
 }

 .contact_page_heading:after {
     content: '';
     position: absolute;
     left: 0;
     bottom: -10px;
     width: 80px;
     height: 4px;
     background: #e74c3c;
 }

 .contact_page_subheading {
     font-size: 1.3rem;
     font-weight: 300;
     max-width: 600px;
     margin-bottom: 40px;
     line-height: 1.6;
     opacity: 0.9;
 }

 .contact_page_cta {
     display: flex;
     gap: 20px;
     flex-wrap: wrap;
 }

 .contact_page_button {
     padding: 15px 30px;
     border-radius: 50px;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 1px;
     font-size: 0.9rem;
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
     border: none;
 }

 .contact_page_button_primary {
     background: #e74c3c;
     color: white;
 }

 .contact_page_button_primary:hover {
     background: #c0392b;
     transform: translateY(-3px);
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
 }

 .contact_page_button_secondary {
     background: transparent;
     color: white;
     border: 2px solid rgba(255, 255, 255, 0.3);
 }

 .contact_page_button_secondary:hover {
     border-color: white;
     transform: translateY(-3px);
     background: rgba(255, 255, 255, 0.1);
 }

 .contact_page_info {
     margin-top: 60px;
     display: flex;
     gap: 40px;
     flex-wrap: wrap;
 }

 .contact_page_info_item {
     display: flex;
     align-items: center;
     gap: 15px;
 }

 .contact_page_info_icon {
     width: 50px;
     height: 50px;
     background: rgba(255, 255, 255, 0.1);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.2rem;
 }

 .contact_page_info_text h4 {
     font-weight: 600;
     margin-bottom: 5px;
 }

 .contact_page_info_text p {
     opacity: 0.8;
     font-size: 0.9rem;
     margin: 0;
 }

 /* Animated Elements */
 .contact_page_hero::before {
     content: '';
     position: absolute;
     top: -50%;
     left: -50%;
     width: 200%;
     height: 200%;
     background: radial-gradient(circle, rgba(231, 76, 60, 0.1) 0%, transparent 70%);
     z-index: 1;
     animation: pulse 8s infinite alternate;
 }

 @keyframes pulse {
     0% {
         transform: scale(0.8);
         opacity: 0;
     }

     100% {
         transform: scale(1.2);
         opacity: 0.4;
     }
 }

 /* Responsive */
 @media (max-width: 992px) {
     .contact_page_heading {
         font-size: 3rem;
     }
 }

 @media (max-width: 768px) {
     .contact_page_hero {
         height: auto;
         padding: 100px 0;
     }

     .contact_page_heading {
         font-size: 2.5rem;
     }

     .contact_page_subheading {
         font-size: 1.1rem;
     }

     .contact_page_info {
         margin-top: 40px;
         gap: 20px;
     }
 }

 .contact_luxury_section {
     padding: 120px 0;
     background-color: #fafafa;
     position: relative;
     overflow: hidden;
 }

 /* Luxury Container */
 .contact_luxury_container {
     max-width: 1400px;
     margin: 0 auto;
     position: relative;
     z-index: 10;
 }

 /* Luxury Card */
 .contact_luxury_card {
     display: flex;
     min-height: 700px;
     border-radius: 24px;
     overflow: hidden;
     box-shadow: 0 60px 80px rgba(0, 0, 0, 0.08);
     position: relative;
 }

 /* Map Section - Left */
 .contact_luxury_map {
     flex: 1.2;
     position: relative;
     /* background: #1a1a1a; */
 }

 .contact_luxury_map iframe {
     width: 100%;
     height: 100%;
     border: none;
     /* filter: grayscale(30%) contrast(110%) brightness(0.8); */
     opacity: 0.9;
     mix-blend-mode: luminosity;
 }

 /* .contact_luxury_map_overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(231,76,60,0.15) 0%, rgba(0,0,0,0.7) 100%);
            pointer-events: none;
        } */

 .contact_luxury_maplabel {
     position: absolute;
     bottom: 40px;
     left: 40px;
     background: rgba(255, 255, 255, 0.9);
     padding: 15px 25px;
     border-radius: 12px;
     font-size: 0.95rem;
     font-weight: 600;
     color: #111;
     display: flex;
     align-items: center;
     gap: 10px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     backdrop-filter: blur(5px);
 }

 .contact_luxury_maplabel i {
     color: #e74c3c;
     font-size: 1.2rem;
 }

 /* Form Section - Right */
 .contact_luxury_form {
     flex: 1;
     padding: 80px;
     display: flex;
     flex-direction: column;
     justify-content: center;
     background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
     position: relative;
     overflow: hidden;
 }

 .contact_luxury_form::before {
     content: '';
     position: absolute;
     top: -50%;
     right: -50%;
     width: 100%;
     height: 200%;
     background: radial-gradient(circle, rgba(231, 76, 60, 0.05) 0%, transparent 70%);
     z-index: 0;
 }

 /* Form Header */
 .contact_luxury_header {
     margin-bottom: 50px;
     position: relative;
     z-index: 2;
 }

 .contact_luxury_pretitle {
     display: inline-block;
     font-family: 'Manrope', sans-serif;
     font-size: 0.9rem;
     font-weight: 700;
     color: #e74c3c;
     margin-bottom: 20px;
     letter-spacing: 2px;
     text-transform: uppercase;
     position: relative;
 }

 .contact_luxury_pretitle::after {
     content: '';
     position: absolute;
     left: 0;
     bottom: -8px;
     width: 40px;
     height: 2px;
     background: #e74c3c;
 }

 .contact_luxury_title {
     font-family: 'Playfair Display', serif;
     font-size: 3rem;
     font-weight: 700;
     color: #111;
     margin-bottom: 25px;
     line-height: 1.2;
 }

 .contact_luxury_subtitle {
     font-family: 'Manrope', sans-serif;
     font-size: 1.1rem;
     color: #666;
     line-height: 1.7;
     max-width: 500px;
 }

 /* Form Elements */
 .contact_luxury_formgroup {
     margin-bottom: 30px;
     position: relative;
     z-index: 2;
 }

 .contact_luxury_label {
     display: block;
     margin-bottom: 12px;
     font-family: 'Manrope', sans-serif;
     font-weight: 600;
     color: #333;
     font-size: 0.95rem;
 }

 .contact_luxury_input {
     width: 100%;
     padding: 18px 25px;
     border: 1px solid #e0e0e0;
     border-radius: 10px;
     font-size: 1rem;
     transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
     background-color: rgba(255, 255, 255, 0.7);
     backdrop-filter: blur(5px);
     font-family: 'Manrope', sans-serif;
     color: #333;
 }

 .contact_luxury_input:focus {
     outline: none;
     border-color: #e74c3c;
     background-color: white;
     box-shadow: 0 15px 40px rgba(231, 76, 60, 0.15);
     transform: translateY(-3px);
 }

 .contact_luxury_textarea {
     min-height: 150px;
     resize: vertical;
 }

 /* Submit Button */
 .contact_luxury_submit {
     background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
     color: white;
     border: none;
     padding: 20px 40px;
     border-radius: 10px;
     font-family: 'Manrope', sans-serif;
     font-weight: 600;
     font-size: 1rem;
     cursor: pointer;
     transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
     width: 100%;
     position: relative;
     overflow: hidden;
     box-shadow: 0 15px 30px rgba(231, 76, 60, 0.25);
     z-index: 2;
 }

 .contact_luxury_submit span {
     position: relative;
     z-index: 3;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
 }

 .contact_luxury_submit::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(135deg, #c0392b 0%, #a5281b 100%);
     opacity: 0;
     transition: opacity 0.4s ease;
     z-index: 1;
 }

 .contact_luxury_submit:hover {
     transform: translateY(-5px);
     box-shadow: 0 20px 40px rgba(231, 76, 60, 0.35);
 }

 .contact_luxury_submit:hover::before {
     opacity: 1;
 }

 /* Decorative Elements */
 .contact_luxury_decor {
     position: absolute;
     border-radius: 50%;
     z-index: 1;
     filter: blur(60px);
     opacity: 0.15;
 }

 .contact_luxury_decor-1 {
     width: 300px;
     height: 300px;
     background: #e74c3c;
     top: -100px;
     right: -100px;
 }

 .contact_luxury_decor-2 {
     width: 200px;
     height: 200px;
     background: #3498db;
     bottom: -50px;
     left: -50px;
 }

 /* Responsive */
 @media (max-width: 1200px) {
     .contact_luxury_form {
         padding: 60px;
     }

     .contact_luxury_title {
         font-size: 2.5rem;
     }
 }

 @media (max-width: 992px) {
     .contact_luxury_card {
         flex-direction: column;
         min-height: auto;
     }

     .contact_luxury_map {
         height: 400px;
     }

     .contact_luxury_title {
         font-size: 2.2rem;
     }
 }

 @media (max-width: 768px) {
     .contact_luxury_section {
         padding: 80px 0;
     }

     .contact_luxury_form {
         padding: 40px;
     }

     .contact_luxury_title {
         font-size: 2rem;
     }
 }

 @media (max-width: 576px) {
     .contact_luxury_form {
         padding: 30px 20px;
     }

     .contact_luxury_title {
         font-size: 1.8rem;
     }

     .contact_luxury_input {
         padding: 15px 20px;
     }

     .contact_luxury_maplabel {
         bottom: 20px;
         left: 20px;
         padding: 12px 20px;
     }
 }

 .about_page_banner {
     position: relative;
     height: 70vh;
     min-height: 500px;
     max-height: 800px;
     overflow: hidden;
     background-color: #0a192f;
     color: #e6f1ff;
     display: flex;
     align-items: center;
     border-bottom: 1px solid rgba(100, 255, 218, 0.2);
 }

 .about_page_banner_bg {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     object-fit: cover;
     opacity: 0.15;
     mix-blend-mode: luminosity;
 }

 .about_page_banner_content {
     position: relative;
     z-index: 2;
     padding: 0 2rem;
 }

 .about_page_banner_preheading {
     font-size: 1.1rem;
     font-weight: 400;
     color: #64ffda;
     margin-bottom: 1rem;
     letter-spacing: 0.1em;
     text-transform: uppercase;
     opacity: 0;
     animation: fadeInLeft 0.8s ease-out 0.2s forwards;
 }

 .about_page_banner_heading {
     font-size: 3.5rem;
     font-weight: 700;
     margin-bottom: 1.5rem;
     line-height: 1.1;
     background: linear-gradient(90deg, #e6f1ff 0%, #64ffda 100%);
     -webkit-background-clip: text;
     background-clip: text;
     color: transparent;
     opacity: 0;
     animation: fadeInUp 0.8s ease-out 0.4s forwards;
 }

 .about_page_banner_subheading {
     font-size: 1.2rem;
     margin-bottom: 2rem;
     max-width: 700px;
     opacity: 0;
     animation: fadeInUp 0.8s ease-out 0.6s forwards;
     color: #ccd6f6;
 }

 .about_page_banner_divider {
     width: 100px;
     height: 4px;
     background: linear-gradient(90deg, #64ffda 0%, rgba(100, 255, 218, 0) 100%);
     margin: 2rem 0;
     opacity: 0;
     animation: fadeInLeft 0.8s ease-out 0.8s forwards;
 }

 .about_page_banner_stats {
     display: flex;
     gap: 2rem;
     margin-top: 2rem;
     opacity: 0;
     animation: fadeInUp 0.8s ease-out 1s forwards;
 }

 .about_page_banner_stat {
     text-align: center;
 }

 .about_page_banner_stat_number {
     font-size: 2.5rem;
     font-weight: 700;
     color: #64ffda;
     line-height: 1;
 }

 .about_page_banner_stat_label {
     font-size: 0.9rem;
     color: #ccd6f6;
     text-transform: uppercase;
     letter-spacing: 0.1em;
 }

 /* Geometric Decoration */
 .about_page_banner_geometry {
     position: absolute;
     width: 100%;
     height: 100%;
     top: 0;
     left: 0;
     pointer-events: none;
     z-index: 1;
     overflow: hidden;
 }

 .about_page_banner_triangle {
     position: absolute;
     width: 0;
     height: 0;
     border-style: solid;
     opacity: 0.1;
     animation: rotate 30s linear infinite;
 }

 .about_page_banner_triangle:nth-child(1) {
     border-width: 0 200px 346px 200px;
     border-color: transparent transparent #64ffda transparent;
     top: -100px;
     right: -50px;
     animation-delay: 0s;
 }

 .about_page_banner_triangle:nth-child(2) {
     border-width: 150px 0 150px 259.8px;
     border-color: transparent transparent transparent rgba(100, 255, 218, 0.3);
     bottom: -50px;
     left: -100px;
     animation-delay: -10s;
     animation-direction: reverse;
 }

 .about_page_banner_triangle:nth-child(3) {
     border-width: 0 100px 173.2px 100px;
     border-color: transparent transparent rgba(100, 255, 218, 0.2) transparent;
     top: 30%;
     left: 20%;
     animation-delay: -5s;
 }

 /* Animations */
 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(30px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @keyframes fadeInLeft {
     from {
         opacity: 0;
         transform: translateX(-30px);
     }

     to {
         opacity: 1;
         transform: translateX(0);
     }
 }

 @keyframes rotate {
     from {
         transform: rotate(0deg);
     }

     to {
         transform: rotate(360deg);
     }
 }

 /* Responsive Adjustments */
 @media (max-width: 992px) {
     .about_page_banner_heading {
         font-size: 3rem;
     }

     .about_page_banner_subheading {
         font-size: 1.1rem;
     }

     .about_page_banner_stats {
         flex-wrap: wrap;
     }
 }

 @media (max-width: 768px) {
     .about_page_banner {
         height: auto;
         padding: 100px 0;
     }

     .about_page_banner_heading {
         font-size: 2.5rem;
     }

     .about_page_banner_subheading {
         font-size: 1rem;
     }

     .about_page_banner_triangle:nth-child(1) {
         border-width: 0 100px 173px 100px;
     }
 }

 .about_desc_container {
     background-color: #f8f9fa;
     padding: 80px 0;
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
 }

 /* Header Section */
 .about_desc_header {
     text-align: center;
     margin-bottom: 60px;
 }

 .about_desc_preheading {
     color: #e74c3c;
     font-size: 1.2rem;
     font-weight: 600;
     letter-spacing: 2px;
     text-transform: uppercase;
     margin-bottom: 15px;
 }

 .about_desc_heading {
     color: #2c3e50;
     font-size: 2.8rem;
     font-weight: 700;
     margin-bottom: 20px;
     position: relative;
     display: inline-block;
 }

 .about_desc_heading:after {
     content: '';
     position: absolute;
     width: 60px;
     height: 4px;
     background-color: #e74c3c;
     bottom: -10px;
     left: 50%;
     transform: translateX(-50%);
 }

 /* Main Content */
 .about_desc_content {
     background: linear-gradient(180deg, #F33131 0%, #f2295b 100%);
     /* border-left: 4px solid #000000; */
     padding: 40px;
     color: #ffffff !important;
     border-radius: 0 8px 8px 0;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
     margin-bottom: 40px;
     line-height: 1.8;
 }

 .about_desc_content .about_desc_highlight {
     color: white !important;
 }

 .about_desc_highlight {
     color: #e74c3c;
     font-weight: 600;
 }

 /* Feature Cards */
 .about_desc_features {
     display: flex;
     gap: 30px;
     flex-wrap: wrap;
     justify-content: space-between;
     margin-bottom: 40px;
 }

 .about_desc_feature {
     flex: 1;
     min-width: 300px;
     background: #ffffff;
     padding: 30px;
     border-radius: 8px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
     transition: transform 0.3s ease;
 }

 .about_desc_feature:hover {
     transform: translateY(-10px);
 }

 .about_desc_feature_highlight {
     border-top: 3px solid #f00;
 }

 .about_desc_feature_title {
     color: #e74c3c;
     font-size: 1.3rem;
     font-weight: 600;
     margin-bottom: 15px;
     display: flex;
     align-items: center;
 }

 .about_desc_feature_title i {
     margin-right: 10px;
     font-size: 1.5rem;
 }

 /* Why Choose Us */
 .about_desc_why {
     background: #ffffff;
     padding: 40px;
     border-radius: 8px;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
     margin-bottom: 40px;
 }

 .about_desc_why_title {
     color: #2c3e50;
     font-size: 1.8rem;
     font-weight: 700;
     margin-bottom: 25px;
     text-align: center;
 }

 .about_desc_why_list {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 20px;
 }

 .about_desc_why_item {
     display: flex;
     align-items: flex-start;
     margin-bottom: 15px;
 }

 .about_desc_why_icon {
     color: #e74c3c;
     font-size: 1.2rem;
     margin-right: 15px;
     margin-top: 3px;
 }

 /* Responsive Adjustments */
 @media (max-width: 768px) {
     .about_desc_heading {
         font-size: 2.2rem;
     }

     .about_desc_content {
         padding: 30px;
     }

     .about_desc_feature {
         min-width: 100%;
     }
 }

 .mascom_mv_container {
     background-color: #f5f7fa;
     padding: 100px 0;
     position: relative;
     overflow: hidden;
     font-family: 'Montserrat', 'Segoe UI', sans-serif;
 }

 /* ===== Header Section ===== */
 .mascom_mv_header {
     text-align: center;
     margin-bottom: 80px;
 }

 .mascom_mv_preheading {
     color: #e30613;
     font-size: 1rem;
     font-weight: 600;
     letter-spacing: 3px;
     text-transform: uppercase;
     margin-bottom: 20px;
     display: inline-block;
     position: relative;
 }

 .mascom_mv_preheading:after {
     content: '';
     position: absolute;
     width: 40px;
     height: 2px;
     background: #e30613;
     bottom: -8px;
     left: 50%;
     transform: translateX(-50%);
 }

 .mascom_mv_heading {
     color: #1a1a1a;
     font-size: 2.5rem;
     font-weight: 700;
     line-height: 1.2;
 }

 /* ===== Cards Container ===== */
 .mascom_mv_cards {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
     gap: 40px;
     max-width: 1200px;
     margin: 0 auto;
 }

 /* ===== Shared Card Styles ===== */
 .mascom_mv_card {
     background: white;
     border-radius: 8px;
     overflow: hidden;
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
     transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
         box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
     height: 100%;
     display: flex;
     flex-direction: column;
 }

 .mascom_mv_card:hover {
     transform: translateY(-8px);
     box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
 }

 .mascom_mv_card_header {
     padding: 30px 30px 20px;
     position: relative;
 }

 .mascom_mv_card_icon {
     width: 60px;
     height: 60px;
     background: linear-gradient(180deg, #F33131 0%, #f2295b 100%);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 25px;
     color: white;
     font-size: 1.5rem;
     box-shadow: 0 10px 20px rgba(227, 6, 19, 0.2);
 }

 .mascom_mv_card_title {
     font-size: 1.5rem;
     font-weight: 700;
     color: #1a1a1a;
     margin-bottom: 15px;
 }

 .mascom_mv_card_body {
     padding: 0 30px 30px;
     flex-grow: 1;
 }

 .mascom_mv_card_content {
     color: #4d4d4d;
     line-height: 1.8;
     font-size: 1.05rem;
     margin-bottom: 20px;
 }

 .mascom_mv_card_highlight {
     background: #f9f9f9;
     border-left: 3px solid #e30613;
     padding: 20px;
     margin-top: 20px;
     font-style: italic;
     color: #333;
 }

 /* ===== Mission Specific Styles ===== */
 .mascom_mv_mission .mascom_mv_card_header {
     background: url('../images/mission.jpg') center/cover;
     color: white;
 }

 .mascom_mv_mission .mascom_mv_card_header:before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.6);
 }

 .mascom_mv_mission .mascom_mv_card_header>* {
     position: relative;
     z-index: 1;
 }

 .mascom_mv_mission .mascom_mv_card_title {
     color: white;
 }

 /* ===== Vision Specific Styles ===== */
 .mascom_mv_vision .mascom_mv_card_header {
     background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover;
     color: white;
 }

 .mascom_mv_vision .mascom_mv_card_header:before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(26, 26, 26, 0.7);
 }

 .mascom_mv_vision .mascom_mv_card_header>* {
     position: relative;
     z-index: 1;
 }

 .mascom_mv_vision .mascom_mv_card_title {
     color: white;
 }

 /* ===== Responsive Styles ===== */
 @media (max-width: 768px) {
     .mascom_mv_container {
         padding: 60px 0;
     }

     .mascom_mv_heading {
         font-size: 2rem;
     }

     .mascom_mv_cards {
         grid-template-columns: 1fr;
         gap: 30px;
     }
 }

 .certificate-section {
     position: relative;
     padding: 100px 0;
     overflow: hidden;
     background: #F8F9FA;
     /* var(--mascom-light) */
 }

 .certificate-section::before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 8px;
     background: linear-gradient(135deg, #002147 0%, #00416A 100%);
     /* var(--mascom-gradient) */
 }

 .section-header {
     position: relative;
     margin-bottom: 80px;
     text-align: center;
 }

 .section-title {
     font-size: 3.5rem;
     font-weight: 700;
     color: #002147;
     /* var(--mascom-primary) */
     margin-bottom: 15px;
     position: relative;
     display: inline-block;
 }

 .section-title::after {
     content: "";
     position: absolute;
     bottom: -15px;
     left: 50%;
     transform: translateX(-50%);
     width: 80px;
     height: 3px;
     background: #EC1C24;
 }

 .section-subtitle {
     font-size: 1.2rem;
     color: #6c757d;
     max-width: 700px;
     margin: 0 auto;
     line-height: 1.7;
 }

 .certificate-card {
     background: white;
     border-radius: 16px;
     overflow: hidden;
     box-shadow: 0 15px 30px rgba(0, 33, 71, 0.1);
     transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     height: 100%;
     border: none;
     position: relative;
     z-index: 1;
 }

 .certificate-card::before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(135deg, #002147 0%, #00416A 100%);
     /* var(--mascom-gradient) */
     opacity: 0;
     transition: opacity 0.3s ease;
     z-index: -1;
 }

 .certificate-card:hover {
     transform: translateY(-15px);
     box-shadow: 0 25px 50px rgba(0, 33, 71, 0.2);
 }

 .certificate-card:hover::before {
     opacity: 0.05;
 }

 .certificate-img-container {
     height: 250px;
     overflow: hidden;
     position: relative;
     background: #f1f3f5;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .certificate-img {
     width: auto;
     height: 80%;
     object-fit: contain;
     transition: transform 0.5s ease;
 }

 .certificate-card:hover .certificate-img {
     transform: scale(1.05);
 }

 .certificate-body {
     padding: 30px;
     position: relative;
 }

 .certificate-badge {
     position: absolute;
     top: -20px;
     right: 20px;
     background: #FFC72C;
     /* var(--mascom-accent) */
     color: #002147;
     /* var(--mascom-primary) */
     width: 40px;
     height: 40px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.2rem;
     box-shadow: 0 5px 15px rgba(255, 199, 44, 0.3);
 }

 .certificate-title {
     font-family: 'Playfair Display', serif;
     font-size: 1.5rem;
     font-weight: 700;
     color: #002147;
     /* var(--mascom-primary) */
     margin-bottom: 15px;
 }

 .certificate-text {
     color: #495057;
     line-height: 1.7;
     margin-bottom: 20px;
 }

 .certificate-link {
     color: #002147;
     /* var(--mascom-primary) */
     font-weight: 600;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     transition: color 0.3s ease;
 }

 .certificate-link:hover {
     color: #FFC72C;
     /* var(--mascom-accent) */
 }

 .certificate-link i {
     margin-left: 8px;
     transition: transform 0.3s ease;
 }

 .certificate-link:hover i {
     transform: translateX(5px);
 }

 .qa-section {
     background: white;
     border-radius: 16px;
     padding: 60px;
     margin-top: 80px;
     box-shadow: 0 15px 30px rgba(0, 33, 71, 0.1);
     position: relative;
     overflow: hidden;
 }

 .qa-section::before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     width: 8px;
     height: 100%;
     background: linear-gradient(135deg, #002147 0%, #00416A 100%);
     /* var(--mascom-gradient) */
 }

 .qa-title {
     font-family: 'Playfair Display', serif;
     font-size: 2.5rem;
     font-weight: 700;
     color: #002147;
     /* var(--mascom-primary) */
     margin-bottom: 40px;
     text-align: center;
     position: relative;
 }

 .qa-title::after {
     content: "";
     position: absolute;
     bottom: -15px;
     left: 50%;
     transform: translateX(-50%);
     width: 80px;
     height: 4px;
     background: #FFC72C;
     /* var(--mascom-accent) */
 }

 .process-item {
     display: flex;
     align-items: flex-start;
     margin-bottom: 30px;
     position: relative;
     padding-left: 70px;
 }

 .process-number {
     position: absolute;
     left: 0;
     top: 0;
     font-family: 'Playfair Display', serif;
     font-size: 2.5rem;
     font-weight: 700;
     color: rgba(0, 33, 71, 0.39);
 }

 .process-icon {
     background: linear-gradient(135deg, #002147 0%, #00416A 100%);
     /* var(--mascom-gradient) */
     color: white;
     width: 50px;
     height: 50px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-right: 20px;
     flex-shrink: 0;
     box-shadow: 0 10px 20px rgba(0, 33, 71, 0.2);
 }

 .process-content h5 {
     font-weight: 700;
     color: #002147;
     /* var(--mascom-primary) */
     margin-bottom: 10px;
 }

 .process-content p {
     color: #6c757d;
     line-height: 1.7;
 }

 .certificate-modal .modal-content {
     border-radius: 16px;
     overflow: hidden;
     border: none;
 }

 .certificate-modal .modal-header {
     background: linear-gradient(135deg, #002147 0%, #00416A 100%);
     /* var(--mascom-gradient) */
     color: white;
     border-bottom: none;
 }

 .certificate-modal .modal-title {
     font-family: 'Playfair Display', serif;
 }

 .certificate-modal .btn-close {
     filter: brightness(0) invert(1);
 }

 .certificate-modal-img {
     max-height: 70vh;
     width: auto;
     margin: 0 auto;
     display: block;
 }

 .floating-shapes {
     position: absolute;
     width: 100%;
     height: 100%;
     top: 0;
     left: 0;
     overflow: hidden;
     z-index: 0;
 }

 .shape {
     position: absolute;
     opacity: 0.05;
     background: #002147;
     /* var(--mascom-primary) */
     border-radius: 50%;
 }

 .shape-1 {
     width: 300px;
     height: 300px;
     top: -100px;
     right: -100px;
 }

 .shape-2 {
     width: 200px;
     height: 200px;
     bottom: -50px;
     left: -50px;
 }

 @media (max-width: 992px) {
     .section-title {
         font-size: 2.8rem;
     }

     .qa-section {
         padding: 40px;
     }
 }

 @media (max-width: 768px) {
     .certificate-section {
         padding: 60px 0;
     }

     .section-title {
         font-size: 2.2rem;
     }

     .certificate-img-container {
         height: 200px;
     }

     .qa-section {
         padding: 30px 20px;
         margin-top: 50px;
     }

     .process-item {
         padding-left: 0;
     }

     .process-number {
         display: none;
     }
 }

 .management_ {
     background-color: #e4e4e4;
     padding: 100px 0;
     position: relative;
     overflow: hidden;
 }

 .management_::before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 8px;
     background: linear-gradient(90deg, #002147, #FFC72C);
 }

 .management_container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
     position: relative;
     z-index: 2;
 }

 .management_header {
     text-align: center;
     margin-bottom: 70px;
 }

 .management_title {
     font-family: 'Playfair Display', serif;
     font-size: 3.5rem;
     font-weight: 700;
     color: #002147;
     margin-bottom: 15px;
     position: relative;
     display: inline-block;
 }

 .management_title::after {
     content: "";
     position: absolute;
     bottom: -15px;
     left: 50%;
     transform: translateX(-50%);
     width: 80px;
     height: 4px;
     background: #FFC72C;
 }

 .management_subtitle {
     font-size: 1.2rem;
     color: #6c757d;
     max-width: 700px;
     margin: 0 auto;
     line-height: 1.7;
 }

 .management_grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 30px;
 }

 .management_card {
     background: white;
     border-radius: 16px;
     overflow: hidden;
     box-shadow: 0 15px 30px rgba(0, 33, 71, 0.1);
     transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     position: relative;
 }

 .management_card:hover {
     transform: translateY(-10px);
     box-shadow: 0 25px 50px rgba(0, 33, 71, 0.2);
 }

 .management_image {
     height: 350px;
     overflow: hidden;
     position: relative;
 }

 .management_image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.8s ease;
 }

 .management_card:hover .management_image img {
     transform: scale(1.05);
 }

 .management_overlay {
     position: absolute;
     bottom: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(to top, rgba(0, 33, 71, 0.8) 0%, transparent 50%);
     display: flex;
     flex-direction: column;
     justify-content: flex-end;
     padding: 30px;
     color: white;
 }

 .management_name {
     font-family: 'Playfair Display', serif;
     font-size: 1.8rem;
     font-weight: 700;
     margin-bottom: 5px;
     text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
 }

 .management_position {
     font-size: 1.1rem;
     font-weight: 600;
     color: #FFC72C;
     margin-bottom: 15px;
     text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
 }

 .management_social {
     display: flex;
     gap: 15px;
     margin-top: 20px;
 }

 .management_social a {
     color: white;
     background: rgba(255, 255, 255, 0.2);
     width: 40px;
     height: 40px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.3s ease;
 }

 .management_social a:hover {
     background: #FFC72C;
     color: #002147;
     transform: translateY(-3px);
 }

 .management_content {
     padding: 30px;
 }

 .management_bio {
     color: #495057;
     line-height: 1.7;
     margin-bottom: 20px;
 }

 .management_quote {
     font-style: italic;
     position: relative;
     padding-left: 30px;
     color: #6c757d;
 }

 .management_quote::before {
     content: "";
     position: absolute;
     left: 0;
     top: 0;
     font-size: 3rem;
     line-height: 1;
     color: #FFC72C;
     font-family: Georgia, serif;
 }

 .management_shape {
     position: absolute;
     width: 500px;
     height: 500px;
     border-radius: 50%;
     background: rgba(0, 33, 71, 0.03);
     z-index: 1;
 }

 .management_shape-1 {
     top: -200px;
     right: -200px;
 }

 .management_shape-2 {
     bottom: -150px;
     left: -150px;
 }

 @media (max-width: 992px) {
     .management_title {
         font-size: 2.8rem;
     }

     .management_image {
         height: 300px;
     }
 }

 @media (max-width: 768px) {
     .management_ {
         padding: 60px 0;
     }

     .management_title {
         font-size: 2.2rem;
     }

     .management_header {
         margin-bottom: 40px;
     }
 }

 .cta_sec {
     padding-top: 80px;
     padding-bottom: 80px;
 }

 .cta_steel-plant {
     background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
         url('../images/cta.jpg');
     background-size: cover;
     background-position: center;
     padding: 5rem 2rem;
     text-align: center;
     position: relative;
     overflow: hidden;
     border-top: 3px solid #e74c3c;
     /* Molten steel accent */
 }

 .cta_container {
     max-width: 1200px;
     margin: 0 auto;
     position: relative;
     z-index: 2;
 }

 .cta_content {
     position: relative;
     z-index: 3;
 }

 .cta_title {
     font-size: 2.5rem;
     font-weight: 900;
     color: #fff;
     text-transform: uppercase;
     letter-spacing: 2px;
     margin-bottom: 1rem;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
 }

 .cta_subtitle {
     font-size: 1.2rem;
     color: #ecf0f1;
     margin-bottom: 2.5rem;
     max-width: 700px;
     margin-left: auto;
     margin-right: auto;
 }

 .cta_button {
     display: inline-block;
     padding: 16px 40px;
     background: linear-gradient(45deg, #e74c3c, #c0392b);
     color: white;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 1.5px;
     border-radius: 4px;
     text-decoration: none;
     border: none;
     cursor: pointer;
     transition: all 0.3s ease;
     box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
     font-size: 1rem;
     position: relative;
     overflow: hidden;
 }

 .cta_button:hover {
     transform: translateY(-3px);
     box-shadow: 0 8px 25px rgba(231, 76, 60, 0.6);
     background: linear-gradient(45deg, #c0392b, #e74c3c);
 }

 .cta_button:active {
     transform: translateY(1px);
 }

 /* Optional: Add a metallic shine effect on hover */
 .cta_button::after {
     content: '';
     position: absolute;
     top: -50%;
     left: -50%;
     width: 200%;
     height: 200%;
     background: linear-gradient(to bottom right,
             rgba(255, 255, 255, 0) 45%,
             rgba(255, 255, 255, 0.8) 50%,
             rgba(255, 255, 255, 0) 55%);
     transform: rotate(30deg);
     opacity: 0;
     transition: opacity 0.3s;
 }

 .cta_button:hover::after {
     opacity: 1;
     animation: shine 1.5s;
 }

 @keyframes shine {
     0% {
         transform: translateX(-100%) rotate(30deg);
     }

     100% {
         transform: translateX(100%) rotate(30deg);
     }
 }

 /* Responsive Design */
 @media (max-width: 768px) {
     .cta_title {
         font-size: 2rem;
     }

     .cta_subtitle {
         font-size: 1rem;
     }

     .cta_button {
         padding: 14px 30px;
         font-size: 0.9rem;
     }
 }

 /* Production & Order System CSS */
 .production-order-system {
     font-family: 'Segoe UI', Roboto, sans-serif;
     max-width: 1200px;
     margin: 2rem auto;
     padding: 0 1rem;
 }

 /* Admin Controls */
 .production-admin-controls {
     background: #f8f9fa;
     padding: 1.5rem;
     border-radius: 8px;
     margin-bottom: 2rem;
     border-left: 4px solid #3498db;
     display: none;
     /* Hidden by default */
 }

 .production-admin-controls h3 {
     color: #3498db;
     margin-bottom: 1.5rem;
 }

 .production-admin-group {
     margin-bottom: 1rem;
 }

 .production-admin-group label {
     display: block;
     margin-bottom: 0.5rem;
     font-weight: 600;
     color: #2c3e50;
 }

 .production-admin-group input {
     width: 100%;
     padding: 0.75rem;
     border: 1px solid #ddd;
     border-radius: 4px;
     font-size: 1rem;
 }

 /* Production Dashboard */
 .production-dashboard {
     display: flex;
     background: #2c3e50;
     color: white;
     border-radius: 8px;
     overflow: hidden;
     margin-bottom: 2rem;
 }

 .production-stat {
     flex: 1;
     text-align: center;
     padding: 1.5rem;
 }

 .production-stat:nth-child(1) {
     background: rgba(0, 0, 0, 0.1);
 }

 .production-stat h3 {
     font-size: 1.1rem;
     margin-bottom: 0.5rem;
     color: #ecf0f1;
 }

 .production-daily-value,
 .production-total-value {
     font-size: 2rem;
     font-weight: 700;
     color: #f1c40f;
 }

 .production-daily-value span,
 .production-total-value span {
     font-size: 0.9rem;
     color: #bdc3c7;
     font-weight: normal;
 }

 /* Order Form */
 .production-order-form {
     background: white;
     border-radius: 8px;
     padding: 2rem;
     box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
 }

 .production-order-form h2 {
     color: #2c3e50;
     text-align: center;
     margin-bottom: 1rem;
     padding-bottom: 1rem;
     border-bottom: 2px solid #e74c3c;
 }

 .production-form-group {
     margin-bottom: 1rem;
 }

 .production-form-group label {
     display: block;
     margin-bottom: 0.5rem;
     font-weight: 600;
     color: #34495e;
 }

 .production-form-group input,
 .production-form-group select,
 .production-form-group textarea {
     width: 100%;
     padding: 0.4rem;
     border: 1px solid #ddd;
     border-radius: 4px;
     font-size: 1rem;
     transition: all 0.2s;
 }

 .production-form-group input:focus,
 .production-form-group select:focus,
 .production-form-group textarea:focus {
     border-color: #e74c3c;
     box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
     outline: none;
 }

 .production-form-row {
     display: flex;
     gap: 1.5rem;
 }

 .production-form-row .production-form-group {
     flex: 1;
 }

 /* Price Summary */
 .production-price-summary {
     background: #f8f9fa;
     padding: 1.5rem;
     border-radius: 6px;
     margin: 2rem 0;
 }

 .production-price-row {
     display: flex;
     justify-content: space-between;
     margin-bottom: 0.75rem;
     color: #7f8c8d;
 }

 .production-price-total {
     display: flex;
     justify-content: space-between;
     margin-top: 1rem;
     padding-top: 1rem;
     border-top: 1px solid #ddd;
     font-weight: 700;
     color: #2c3e50;
     font-size: 1.1rem;
 }

 .production-unit-price,
 .production-total-price {
     color: #e74c3c;
 }

 /* Submit Button */
 .production-submit-btn {
     background: linear-gradient(to right, #e74c3c, #c0392b);
     color: white;
     border: none;
     /* padding: 1rem; */
     font-size: 1.1rem;
     font-weight: 600;
     border-radius: 4px;
     cursor: pointer;
     width: 100%;
     text-transform: uppercase;
     letter-spacing: 1px;
     transition: all 0.3s;
     position: relative;
     overflow: hidden;
     height: 52px;
 }

 .production-btn-text {
     display: block;
     transition: all 0.3s;
 }

 .production-btn-loader {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     display: none;
 }

 .production-submit-btn:hover {
     box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
 }

 .production-submit-btn:active {
     transform: translateY(1px);
 }

 /* Success Message */
 .production-success-message {
     background: #f8f9fa;
     padding: 2rem;
     border-radius: 6px;
     text-align: center;
     border-top: 4px solid #2ecc71;
     display: none;
     margin-top: 2rem;
 }

 .production-success-icon {
     width: 60px;
     height: 60px;
     background: #2ecc71;
     color: white;
     border-radius: 50%;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     font-size: 2rem;
     font-weight: bold;
     margin-bottom: 1.5rem;
 }

 .production-success-message h3 {
     color: #2ecc71;
     margin-bottom: 1rem;
 }

 .production-success-details {
     color: #34495e;
     font-size: 1.1rem;
     margin-bottom: 1.5rem;
     line-height: 1.6;
 }

 .production-success-quantity,
 .production-success-grade,
 .production-success-date,
 .production-order-id {
     font-weight: 700;
     color: #e74c3c;
 }

 /* Responsive */
 @media (max-width: 768px) {
     .production-dashboard {
         flex-direction: column;
     }

     .production-form-row {
         flex-direction: column;
         gap: 0;
     }

     .production-stat {
         padding: 1.25rem;
     }
 }

 .production_report_section {
     background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ed 100%);
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     padding: 50px 0;
 }

 .production_report_heading {
     text-align: center;
     margin-bottom: 40px;
     color: #0056b3;
     position: relative;
     padding-bottom: 15px;
 }

 .production_report_heading:after {
     content: "";
     position: absolute;
     bottom: 0;
     left: 50%;
     transform: translateX(-50%);
     width: 100px;
     height: 3px;
     background: #ff6600;
 }

 .production_report_card {
     border-radius: 15px;
     box-shadow: 0 10px 30px rgba(0, 86, 179, 0.15);
     border: none;
     overflow: hidden;
     background: white;
 }

 .production_report_table thead th {
     background: linear-gradient(to right, #cc0a11, #ec1c24);
     color: white;
     text-align: center;
     font-weight: 600;
     padding: 15px;
     border: none;
     position: relative;
 }

 .production_report_table thead th:not(:last-child):after {
     content: "";
     position: absolute;
     right: 0;
     top: 15%;
     height: 70%;
     width: 1px;
     background: rgba(255, 255, 255, 0.3);
 }

 .production_report_table tbody td {
     text-align: center;
     vertical-align: middle;
     padding: 12px 15px;
     border-color: #e9ecef;
 }

 .production_report_table tbody tr:nth-child(even) {
     background-color: #f8fafc;
 }

 .production_report_table tbody tr:hover {
     background-color: #e6f0ff;
     transition: all 0.3s ease;
 }

 .production_report_highlight {
     font-weight: 700;
     color: #0056b3;
 }

 .production_report_badge {
     background: #ff6600;
     color: white;
     padding: 5px 10px;
     border-radius: 20px;
     font-size: 0.8rem;
     font-weight: 600;
 }

 .production_report_footer {
     text-align: center;
     margin-top: 30px;
     color: #6c757d;
     font-size: 0.9rem;
 }

 .gallery_section {
     background: linear-gradient(135deg, #f2f2f2 0%, #fff 100%);
     padding: 80px 0;
     position: relative;
     overflow: hidden;
 }

 .gallery_heading {
     text-align: center;
     color: black;
     margin-bottom: 60px;
     position: relative;
     z-index: 2;
 }

 .gallery_heading h2 {
     font-size: 3rem;
     font-weight: 700;
     text-transform: uppercase;
     margin-bottom: 20px;
 }

 .gallery_heading h2 span {
     color: #e30613;
     /* Mascom red */
 }

 .gallery_heading p {
     font-size: 1.2rem;
     max-width: 700px;
     margin: 0 auto;
     opacity: 0.9;
 }

 .gallery_container {
     position: relative;
     z-index: 2;
 }

 .gallery_grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
     gap: 25px;
     padding: 0 20px;
 }

 .gallery_item {
     position: relative;
     border-radius: 8px;
     overflow: hidden;
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
     transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     aspect-ratio: 1/1;
     background: #222;
 }

 .gallery_item:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 30px rgba(227, 6, 19, 0.3);
 }

 .gallery_img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: all 0.3s ease;
     cursor: pointer;
 }

 .gallery_caption {
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
     padding: 20px;
     color: white;
     transform: translateY(100%);
     transition: all 0.3s ease;
 }

 .gallery_item:hover .gallery_caption {
     transform: translateY(0);
 }

 .gallery_caption h3 {
     font-weight: 600;
     margin-bottom: 5px;
     color: white;
 }

 .gallery_caption p {
     font-size: 0.9rem;
     opacity: 0.8;
 }

 /* Lightbox Styles */
 .gallery_lightbox {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.9);
     z-index: 9999;
     display: flex;
     align-items: center;
     justify-content: center;
     opacity: 0;
     pointer-events: none;
     transition: opacity 0.3s ease;
 }

 .gallery_lightbox.active {
     opacity: 1;
     pointer-events: all;
 }

 .gallery_lightbox_content {
     position: relative;
     max-width: 90%;
     max-height: 90%;
 }

 .gallery_lightbox_img {
     max-height: 80vh;
     max-width: 90vw;
     border: 3px solid #e30613;
     box-shadow: 0 0 30px rgba(227, 6, 19, 0.5);
 }

 .gallery_lightbox_close {
     position: absolute;
     top: -40px;
     right: 0;
     color: white;
     font-size: 2rem;
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .gallery_lightbox_close:hover {
     color: #e30613;
     transform: rotate(90deg);
 }

 /* Decorative Elements */
 .gallery_decoration {
     position: absolute;
     width: 300px;
     height: 300px;
     border-radius: 50%;
     background: radial-gradient(circle, rgba(227, 6, 19, 0.15) 0%, rgba(227, 6, 19, 0) 70%);
     z-index: 1;
 }

 .gallery_decoration-1 {
     top: -150px;
     left: -150px;
 }

 .gallery_decoration-2 {
     bottom: -150px;
     right: -150px;
 }

 /* TMT Color Accents */
 .gallery_tmt_accent {
     height: 4px;
     width: 100px;
     background: linear-gradient(to right, #e30613, #ffcc00, #e30613);
     margin: 20px auto;
     border-radius: 2px;
 }

 .gallery_hero_section {
     background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
         url('../images/slider2.jpg');
     background-size: cover;
     background-position: center;
     height: 80vh;
     min-height: 600px;
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
     color: white;
     position: relative;
     overflow: hidden;
 }

 .gallery_hero_overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(45deg, rgba(227, 6, 19, 0.3), rgba(0, 0, 0, 0.8));
     z-index: 1;
 }

 .gallery_hero_content {
     position: relative;
     z-index: 2;
     max-width: 900px;
     padding: 0 20px;
 }

 .gallery_hero_title {
     font-size: 4rem;
     font-weight: 800;
     margin-bottom: 20px;
     text-transform: uppercase;
     letter-spacing: 2px;
 }

 .gallery_hero_title span {
     color: #e30613;
     /* Mascom Red */
 }

 .gallery_hero_subtitle {
     font-size: 1.3rem;
     margin-bottom: 30px;
     opacity: 0.9;
 }

 /* TMT Gold Accent Bar */
 .gallery_hero_tmt_bar {
     height: 4px;
     width: 100px;
     background: linear-gradient(to right, #e30613, #ffcc00, #e30613);
     margin: 0 auto 30px;
     border-radius: 2px;
 }

 /* CTA Button */
 .gallery_hero_button {
     display: inline-block;
     padding: 12px 30px;
     background: #e30613;
     color: white;
     font-weight: 600;
     border-radius: 4px;
     text-transform: uppercase;
     transition: all 0.3s ease;
     border: 2px solid #e30613;
 }

 .gallery_hero_button:hover {
     background: transparent;
     color: #e30613;
     transform: translateY(-3px);
 }

 /* Decorative Elements */
 .gallery_hero_shine {
     position: absolute;
     width: 100%;
     height: 100%;
     top: 0;
     left: 0;
     background: radial-gradient(circle at 70% 30%, rgba(255, 204, 0, 0.1), transparent 50%);
 }

 /* Responsive Adjustments */
 @media (max-width: 768px) {
     .gallery_hero_title {
         font-size: 2.5rem;
     }

     .gallery_hero_subtitle {
         font-size: 1.1rem;
     }
 }

 .partner_dashboard_navbar {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 0 2.5rem;
     height: 80px;
     background: linear-gradient(135deg, #d10000 0%, #9b0000 100%);
     color: white;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
     position: sticky;
     top: 0;
     z-index: 1000;
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
 }

 .partner_dashboard_logo_container {
     display: flex;
     align-items: center;
     gap: 15px;
 }

 .partner_dashboard_logo {
     height: 36px;
     width: auto;
     /* filter: brightness(0) invert(1); */
     transition: transform 0.3s ease;
 }

 .partner_dashboard_logo:hover {
     transform: scale(1.05);
 }

 .partner_dashboard_profile_container {
     position: relative;
     display: flex;
     align-items: center;
     gap: 1.5rem;
 }

 .partner_dashboard_notification {
     position: relative;
     font-size: 1.2rem;
     color: white;
     cursor: pointer;
 }

 .partner_dashboard_notification_badge {
     position: absolute;
     top: -5px;
     right: -5px;
     background-color: #ffcc00;
     color: #333;
     border-radius: 50%;
     width: 18px;
     height: 18px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 0.7rem;
     font-weight: bold;
 }

 .partner_dashboard_profile_pic {
     width: 45px;
     height: 45px;
     border-radius: 50%;
     object-fit: cover;
     cursor: pointer;
     border: 2px solid rgba(255, 255, 255, 0.3);
     transition: all 0.3s ease;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
 }

 .partner_dashboard_profile_pic:hover {
     border-color: white;
     transform: scale(1.1);
 }

 .partner_dashboard_profile_dropdown {
     position: absolute;
     top: 70px;
     right: 0;
     background-color: white;
     border-radius: 12px;
     box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
     width: 240px;
     overflow: hidden;
     display: none;
     z-index: 1001;
     animation: fadeIn 0.2s ease-out;
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
         transform: translateY(-10px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .partner_dashboard_profile_dropdown.active {
     display: block;
 }

 .partner_dashboard_dropdown_item {
     padding: 0.85rem 1.25rem;
     color: #333;
     text-decoration: none;
     display: flex;
     align-items: center;
     gap: 12px;
     transition: all 0.2s ease;
     font-size: 0.9rem;
 }

 .partner_dashboard_dropdown_item:hover {
     background-color: #f8f8f8;
     padding-left: 1.5rem;
     color: #d10000;
 }

 .partner_dashboard_dropdown_header {
     padding: 1rem 1.25rem;
     background-color: #f8f9fa;
     border-bottom: 1px solid #eee;
     font-weight: 600;
     color: #333;
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .partner_dashboard_dropdown_header img {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     object-fit: cover;
     border: 2px solid #d10000;
 }

 .partner_dashboard_dropdown_divider {
     height: 1px;
     background-color: #eee;
     margin: 0.25rem 0;
 }

 .partner_dashboard_dropdown_footer {
     padding: 0.75rem 1.25rem;
     background-color: #f8f9fa;
     border-top: 1px solid #eee;
     font-size: 0.8rem;
     color: #666;
 }

 .dropdown_menu_item_link {
     /* font-weight: 600; */
     letter-spacing: 1px;
     transition: color 0.3s ease;
     color: black;
 }

 .order_details_glass_card {
     background: rgba(255, 255, 255, 0.85);
     backdrop-filter: blur(12px);
     -webkit-backdrop-filter: blur(12px);
     border-radius: 16px;
     box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
     border: 1px solid rgba(255, 255, 255, 0.18);
     overflow: hidden;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .order_details_glass_card:hover {
     transform: translateY(-5px);
     box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
 }

 .order_details_hero_header {
     background: linear-gradient(135deg, #e63946 0%, #d62828 100%);
     color: white;
     padding: 2.5rem 0;
     position: relative;
     overflow: hidden;
 }

 .order_details_hero_header::before {
     content: '';
     position: absolute;
     top: -50%;
     left: -50%;
     width: 200%;
     height: 200%;
     background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
     animation: rotate 15s linear infinite;
 }

 @keyframes rotate {
     0% {
         transform: rotate(0deg);
     }

     100% {
         transform: rotate(360deg);
     }
 }

 .order_details_status_badge {
     display: inline-block;
     padding: 8px 16px;
     border-radius: 20px;
     font-weight: 600;
     font-size: 0.85rem;
     letter-spacing: 0.5px;
 }

 .order_details_status_badge.shipped {
     background-color: rgba(230, 57, 70, 0.1);
     color: #e63946;
     border: 1px solid rgba(230, 57, 70, 0.3);
 }

 .order_details_timeline {
     position: relative;
     padding-left: 30px;
     margin: 2rem 0;
 }

 .order_details_timeline::before {
     content: '';
     position: absolute;
     left: 11px;
     top: 0;
     bottom: 0;
     width: 2px;
     background: linear-gradient(to bottom, #e63946, #ff686b, #dee2e6);
 }

 .order_details_timeline_step {
     position: relative;
     margin-bottom: 2rem;
     opacity: 0;
     transform: translateX(-20px);
     transition: all 0.6s ease;
 }

 .order_details_timeline_step.visible {
     opacity: 1;
     transform: translateX(0);
 }

 .order_details_timeline_icon {
     position: absolute;
     left: -36px;
     width: 24px;
     height: 24px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 0.7rem;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
 }

 .order_details_timeline_step.completed .order_details_timeline_icon {
     background-color: #e63946;
     color: white;
 }

 .order_details_timeline_step.current .order_details_timeline_icon {
     background-color: #ff686b;
     color: white;
     animation: pulse 2s infinite;
 }

 .order_details_timeline_step.pending .order_details_timeline_icon {
     background-color: #dee2e6;
     color: #6c757d;
 }

 @keyframes pulse {
     0% {
         box-shadow: 0 0 0 0 rgba(255, 104, 107, 0.7);
     }

     70% {
         box-shadow: 0 0 0 10px rgba(255, 104, 107, 0);
     }

     100% {
         box-shadow: 0 0 0 0 rgba(255, 104, 107, 0);
     }
 }

 .order_details_product_card {
     display: flex;
     align-items: center;
     padding: 1.5rem;
     border-radius: 12px;
     background-color: white;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
     transition: all 0.3s ease;
     margin-bottom: 1rem;
 }

 .order_details_product_card:hover {
     transform: translateY(-3px);
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
 }

 .order_details_product_img {
     width: 80px;
     height: 80px;
     object-fit: cover;
     border-radius: 8px;
     margin-right: 1.5rem;
 }

 .order_details_summary_card {
     background: white;
     border-radius: 12px;
     padding: 1.5rem;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
 }

 .order_details_help_card {
     background: white;
     border-radius: 12px;
     padding: 1.5rem;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
     border-top: 4px solid #e63946;
 }

 .order_details_action_btn {
     background: linear-gradient(135deg, #e63946 0%, #d62828 100%);
     border: none;
     padding: 12px 24px;
     border-radius: 8px;
     color: white;
     font-weight: 600;
     letter-spacing: 0.5px;
     transition: all 0.3s ease;
     box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
 }

 .order_details_action_btn:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 20px rgba(230, 57, 70, 0.4);
     color: white;
 }

 .order_details_secondary_btn {
     background: white;
     border: 1px solid #e63946;
     color: #e63946;
     padding: 12px 24px;
     border-radius: 8px;
     font-weight: 600;
     letter-spacing: 0.5px;
     transition: all 0.3s ease;
 }

 .order_details_secondary_btn:hover {
     background: rgba(230, 57, 70, 0.05);
     color: #e63946;
 }

 .order_details_delivery_map {
     height: 200px;
     background: #eee;
     border-radius: 12px;
     overflow: hidden;
     position: relative;
 }

 .order_details_delivery_map::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: linear-gradient(135deg, rgba(230, 57, 70, 0.1) 0%, rgba(214, 40, 40, 0.1) 100%);
 }

 .order_details_progress {
     height: 6px;
     border-radius: 3px;
     background-color: #e9ecef;
 }

 .order_details_progress_bar {
     background: linear-gradient(90deg, #e63946 0%, #ff686b 100%);
     border-radius: 3px;
 }

 .order_details_section_title {
     position: relative;
     padding-bottom: 12px;
     margin-bottom: 1.5rem;
 }

 .order_details_section_title::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 60px;
     height: 3px;
     background: linear-gradient(90deg, #e63946 0%, #ff686b 100%);
     border-radius: 3px;
 }

 .card_top_sec_g{
    padding-top: 80px;
 }

 #notification_bell{
    cursor: pointer;
 }