 /* 
    =====================
    This is the css file for privacy page(in the root folder).
    ====================== 
*/

 body {
     padding-top: 80px;
     background-color: #102d19 !important;
     color: #ffffff;
 }

 /* Hero Section */
 .safety-hero {
     padding: 80px 0;
     background: linear-gradient(rgba(16, 45, 25, 0.8), rgba(16, 45, 25, 0.8)),
         url('https://images.unsplash.com/photo-1557597774-9d2739f85a94?auto=format&fit=crop&q=80&w=1500');
     background-size: cover;
     background-position: center;
 }


 /* typing text */
 .typing-container {
     font-size: 1.25rem;
     font-weight: 600;
     color: #ffc107;
 }

 .input-cursor {
     display: inline-block;
     width: 2px;
     margin-left: 4px;
     color: #ffffff;
     animation: blink 0.8s steps(2, start) infinite;
 }

 @keyframes blink {

     0%,
     100% {
         opacity: 1;
     }

     50% {
         opacity: 0;
     }
 }


 /* Safety Tip Cards */
 .safety-card {
     background: transparent;
     border-radius: 15px;
     padding: 25px;
     height: 100%;
     transition: transform 0.3s ease;
     position: relative;
     overflow: hidden;
 }


 .safety-card::after {
     content: "";
     position: absolute;
     bottom: 0;
     left: 0;
     width: 100%;
     height: 5px;
     background: linear-gradient(90deg, #ffc107, #ffffff, #28a745, #ffd500);
     background-size: 300% 100%;
     animation: shiftingBorder 6s linear infinite;
 }

 @keyframes shiftingBorder {
     0% {
         background-position: 0% 50%;
     }

     100% {
         background-position: 300% 50%;
     }
 }


 .safety-card:hover {
     transform: translateY(-2px);
 }

 /* safety-icon */
 .safety-icon {

     font-size: 40px;
     color: #ffc107;
     margin-bottom: 15px;
 }

 .safety-card h5 {
     color: #333;
     font-weight: 700;
 }

 .safety-card p {
     color: #fff;
     font-size: 0.9rem;
 }

 /* Privacy Content Section */
 .privacy-box {
     background: rgba(255, 255, 255, 0.05);
     border: 1px solid rgba(255, 255, 255, 0.1);
     border-radius: 20px;
     padding: 40px;
     margin-top: 50px;
 }

 .privacy-box h3 {
     color: #ffc107;
     margin-bottom: 20px;
 }



 @media (max-width: 767.98px) {

     .privacy-box h3,
     .privacy-box .text-white-50 {
         text-align: center !important;
     }

     .privacy-box {
         padding: 5px !important;
     }
 }