 .text-slider .marquee {
     width: 100%;
     overflow: hidden;

     padding: 8px 0;
 }

 .text-slider .marquee-text {
     display: inline-block;
     white-space: nowrap;
     padding-left: 100%;
     animation: scroll 12s linear infinite;
     color: #fff;
     font-size: 18px;
     font-weight: bold;
 }

 /* Pause on hover */
 .text-slider .marquee:hover .marquee-text {
     animation-play-state: paused;
 }


 @keyframes scroll {
     0% {
         transform: translateX(0);
     }

     100% {
         transform: translateX(-100%);
     }
 }

 .uppercase {
     text-transform: uppercase;
 }



 /* Newsletter Section Styles */
 .footer .col-lg-4.col-md-6 .form-control::placeholder {
     color: rgba(255, 255, 255, 0.6);
 }

 .footer .col-lg-4.col-md-6 .form-control:focus {
     background: rgba(255, 255, 255, 0.1) !important;
     color: #fff !important;
     border-color: #f89c1c !important;
     box-shadow: none;
 }

 .footer .col-lg-4.col-md-6 .btn-primary:hover {
     background-color: #e08b15 !important;
     border-color: #e08b15 !important;
 }




 /* ================================
   MODAL SIZE
================================ */

 .modern-image-modal {
     max-width: 900px;
 }

 /* ================================
   MODAL CONTENT
================================ */

 .modern-image-modal .modal-content {
     position: relative;
     border: none;
     border-radius: 20px;
     overflow: hidden;
     background: #ffffff;
     box-shadow:
         0 30px 80px rgba(0, 0, 0, 0.40),
         0 10px 30px rgba(0, 0, 0, 0.20);
 }

 /* ================================
   CLOSE BUTTON TOP
================================ */
 .image-modal-close {
     position: absolute;
     top: 12px;
     right: 12px;
     width: 42px;
     height: 42px;
     border: none;
     border-radius: 50%;
     background: rgba(0, 0, 0, 0.65);
     color: #ffffff;
     font-size: 30px;
     line-height: 35px;
     z-index: 10;
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .image-modal-close:hover {
     background: #f89c1c;
     transform: rotate(90deg);
 }


 /* ================================
   IMAGE WRAPPER
================================ */
 .advertisement-wrapper {
     width: 100%;
     background: #f5f5f5;
     display: flex;
     align-items: center;
     justify-content: center;
 }


 /* ================================
   ADVERTISEMENT IMAGE
================================ */
 .advertisement-image {
     width: 100%;
     height: auto;
     max-height: 75vh;
     object-fit: contain;
     display: block;
 }


 /* ================================
   FOOTER
================================ */

 .advertisement-footer {
     padding: 14px 22px;
     display: flex;
     justify-content: space-between;
     align-items: center;
     background: #ffffff;
 }

 /* Advertisement Info */
 .ad-info {
     display: flex;
     align-items: center;
     gap: 8px;
     font-size: 14px;
     font-weight: 600;
     color: #666;
 }


 /* Orange Dot */
 .ad-dot {
     width: 9px;
     height: 9px;
     border-radius: 50%;
     background: #f89c1c;
     display: inline-block;
 }

 /* ================================
   CLOSE BUTTON FOOTER
================================ */

 .ad-close-btn {
     border: none;
     padding: 9px 22px;
     border-radius: 30px;
     background: #f89c1c;
     color: #ffffff;
     font-size: 14px;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;

 }


 .ad-close-btn:hover {
     background: #222222;
     transform: translateY(-2px);
 }

 /* ================================
   MODAL ANIMATION
================================ */
 .modal.fade .modern-image-modal {
     transform: scale(0.85) translateY(30px);
     transition: all 0.4s ease;
 }

 .modal.show .modern-image-modal {
     transform: scale(1) translateY(0);

 }

 /* ================================
   MOBILE RESPONSIVE
================================ */

 @media (max-width: 768px) {
     .modern-image-modal {
         margin: 15px;
     }

     .modern-image-modal .modal-content {
         border-radius: 15px;
     }


     .advertisement-image {
         width: 100%;
         height: auto;
         max-height: 70vh;
         object-fit: contain;
     }


     .image-modal-close {
         width: 38px;
         height: 38px;
         font-size: 26px;
         top: 8px;
         right: 8px;
     }


     .advertisement-footer {
         padding: 10px 15px;

     }


     .ad-info {
         font-size: 12px;

     }


     .ad-close-btn {
         padding: 7px 18px;
         font-size: 12px;
     }

 }


 /* ================================
   SMALL MOBILE
================================ */

 @media (max-width: 480px) {
     .modern-image-modal {
         margin: 10px;
     }

     .advertisement-image {
         max-height: 65vh;
     }

     .advertisement-footer {
         padding: 10px 12px;
     }
 }

 .customer-logos.slider .slick-track {
     display: flex !important;
     align-items: center;
 }

 .customer-logos.slider .slick-slide {
     display: flex !important;
     justify-content: center;
     align-items: center;
     height: inherit !important;
 }

 .customer-logos img {
     filter: grayscale(100%) brightness(1.2);
     opacity: 0.5;
     transition: filter 0.3s ease, opacity 0.3s ease;
 }

 .customer-logos img:hover {
     filter: grayscale(0%) brightness(1);
     opacity: 1;
 }




 /* Career Form Container Styles */
 #careerForm {
     background: #ffffff;
     padding: 30px;
     border-radius: 8px;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
 }

 #careerForm .form-control {
     border: 1px solid #ced4da;
     border-radius: 4px;
     padding: 10px 15px;
     font-size: 15px;
     color: #495057;
     transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
 }

 #careerForm .form-control:focus {
     border-color: #f89c1c;
     box-shadow: 0 0 0 0.2rem rgba(248, 156, 28, 0.15);
     outline: none;
 }

 #careerForm input[type="file"].form-control {
     padding: 12px 15px;
     line-height: 1.5;
 }

 #careerForm textarea.form-control {
     height: auto;
 }

 #careerForm button#submitBtn {
     /* background-color: #343a40; */
     border: 2px solid #f89c1c;
     color: #f89c1c;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     transition: background-color 0.2s ease;
     border-radius: 4px;
 }

 #careerForm button#submitBtn:hover {
     background-color: #f89c1c;
     color: #ffffff;
 }

 #careerForm button#submitBtn:disabled {
     background-color: #f89c1c;
     cursor: not-allowed;
 }



 /* Contact Form Container & Floating Labels */
 /* Contact Form Container & Floating Labels */
 #contactForm {
     background: #ffffff;
     padding: 30px;
     border-radius: 8px;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
 }

 #contactForm .form-floating {
     position: relative;
 }

 #contactForm .form-floating>.form-control {
     border: 1px solid #ced4da;
     border-radius: 4px;
     height: 58px;
     padding: 1rem 0.75rem;
     line-height: 1.25;
     color: #495057;
     background-color: transparent;
     transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
 }

 #contactForm .form-floating>textarea.form-control {
     height: 100px !important;
 }

 #contactForm .form-control:focus {
     border-color: #f89c1c;
     box-shadow: 0 0 0 0.2rem rgba(248, 156, 28, 0.15);
     outline: none;
 }

 /* Fix for floating label positioning and overlapping */
 #contactForm .form-floating>label {
     position: absolute;
     top: 0;
     left: 0;
     height: 100%;
     padding: 1rem 0.75rem;
     pointer-events: none;
     border: 1px solid transparent;
     transform-origin: 0 0;
     transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
     color: #515050;
 }

 #contactForm .form-floating>.form-control:focus~label,
 #contactForm .form-floating>.form-control:not(:placeholder-shown)~label {
     opacity: 1;
     transform: scale(0.85) translateY(-0.75rem) translateX(0.15rem);
     background-color: #ffffff;
     height: auto;
     padding: 0 5px;
     display: inline-block;
     color: #f89c1c;
     font-weight: 600;
     margin-left: 0.5rem;
     font-size: 1rem;
 }

 #contactForm .form-floating>textarea.form-control~label {
     height: 100%;
 }

 #contactForm button#submitBtn {
     border: 2px solid #f89c1c;
     background-color: transparent;
     color: #f89c1c;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     transition: background-color 0.2s ease, color 0.2s ease;
     border-radius: 4px;
 }

 #contactForm button#submitBtn:hover {
     background-color: #f89c1c;
     color: white;
 }

 #contactForm button#submitBtn:disabled {
     background-color: #f89c1c;
     color: #ffffff;
     opacity: 0.7;
     cursor: not-allowed;
 }



 /* Pentafest */

 .pentafest-card {
     background: linear-gradient(95deg, #ffffff, #fdf9f3);
     color: #f89c1c;
     border-left: 7px solid #f89c1c;
     border-radius: 10px;
     overflow: hidden;
     transition: 0.4s ease;
 }

 .pentafest-card-full {
     background: linear-gradient(95deg, #ffffff, #fdf9f3);
     border-left: 7px solid #f89c1c;
     border-radius: 0;
     overflow: hidden;
 }

 .video-wrapperf {
     position: relative;
     width: 100%;
     height: 110vh;
     /* desktop height */
 }

 .video-wrapperf iframe {
     width: 100%;
     height: 100%;
     border: 0;
 }

 .video-wrapperf {
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
     border: 3px solid #f89c1c;
 }

 .video-wrapperf iframe {
     transition: transform 0.4s ease;
 }

 .video-wrapperf:hover iframe {
     transform: scale(1.05);
 }

 .video-wrapperf::before {
     content: '';
     position: absolute;
     top: 10px;
     left: 10px;
     width: 100%;
     height: 100%;
     background: linear-gradient(135deg, #f89c1c, #ff6a00);
     border-radius: 12px;
     z-index: -1;
     filter: blur(20px);
     opacity: 0.6;
 }

 /* MOBILE FIX */
 @media (max-width: 768px) {
     .video-wrapperf {
         height: 220px;
         /* perfect mobile height */
     }
 }
 
 
 
 /* Slow down the background backdrop fade (default is 0.15s) */
.modal-backdrop {
    transition: opacity .15s ease !important;
}

/* Slow down the actual modal popup sliding down (default is 0.3s) */
.custom-popup-modal.fade .modal-dialog {
    transition: transform .15s ease-out !important;
}