 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }


 .navbar {
     padding: 0rem 1rem;
     background: #ffffff;
     box-shadow: 0 2px 25px rgba(0, 0, 0, 0.1);
 }

 .navbar-brand {
     font-weight: 700;
     font-size: 1.8rem;
     color: #2c3e50 !important;
     display: flex;
     align-items: center;
 }



 .navbar-brand span {
     color: #3a86ff;
 }

 .nav-link {
     font-weight: 500;
     padding: 0.7rem 1.2rem !important;
     margin: 0 0.3rem;
     border-radius: 12px;
     transition: all 0.3s ease;
     color: #3a86ff;
     background-color: #f0f5ff;
 }

 .nav-link:hover {
     transform: translateY(-2px);
 }

 .nav-link i {
     margin-right: 8px;
     font-size: 1.1rem;
     transition: all 0.3s ease;
 }

 .nav-link:hover i {
     transform: scale(1.2);
 }



.nt_active{
    color: #b92622!important;   
    background-color: #b9262224 !important;
}

 .track-shipment {
     background: linear-gradient(135deg, #3a86ff 0%, #2a65c7 100%);
     color: white !important;
     border-radius: 12px;
     padding: 0.7rem 1.5rem !important;
     font-weight: 600;
     transition: all 0.3s ease;
     box-shadow: 0 4px 15px rgba(58, 134, 255, 0.4);
     border: none;
 }

 .track-shipment:hover {
     background: linear-gradient(135deg, #4a96ff 0%, #3a75e7 100%);
     transform: translateY(-3px);
     box-shadow: 0 8px 20px rgba(58, 134, 255, 0.6);
     color: white !important;
 }

 .login-btn {
     background: #ffffff;
     color: #3a86ff !important;
     border-radius: 12px;
     padding: 0.7rem 1.5rem !important;
     font-weight: 600;
     transition: all 0.3s ease;
     border: 2px solid #3a86ff;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
 }

 .login-btn:hover {
     background: #3a86ff;
     color: white !important;
     transform: translateY(-3px);
     box-shadow: 0 8px 15px rgba(58, 134, 255, 0.3);
 }

 .navbar-toggler {
     border: none;
     padding: 0.5rem;
     background: #f0f5ff;
     border-radius: 10px;
 }

 .navbar-toggler:focus {
     box-shadow: 0 0 0 3px rgba(58, 134, 255, 0.3);
 }

 .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(58, 134, 255, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
 }

 @media (max-width: 992px) {
     .nav-link {
         margin: 0.4rem 0;
         text-align: center;
     }

     .track-shipment,
     .login-btn {
         margin: 0.5rem auto;
         display: block;
         text-align: center;
         max-width: 200px;
     }

     .navbar-collapse {
         background: #ffffff;
         border-radius: 15px;
         padding: 1rem;
         margin-top: 1rem;
         box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     }
 }


 .demo-content {
     background: #ffffff;
     border-radius: 20px;
     padding: 2rem;
     margin: 2rem 0;
     color: #2c3e50;
     text-align: center;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
 }

 .content-placeholder {
     height: 1000px;
     /* For demonstration of fixed navbar */
 }

.crousel_body {
            font-family: 'Poppins', sans-serif;
            background: #0a1929;
            color: #333;
            overflow-x: hidden;
        }
        
        .logistics-carousel {
            position: relative;
            height: 100vh;
            overflow: hidden;
        }
        
        .slide_ {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.2s ease, transform 1.2s ease;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            transform: scale(1.1);
        }
        
        .slide_.active {
            opacity: 1;
            transform: scale(1);
            z-index: 10;
        }
        
        .slide_overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, rgba(0, 40, 80, 0.85) 0%, rgba(0, 40, 80, 0.7) 100%);
        }
        
        .slide_content {
            position: relative;
            z-index: 20;
            color: white;
            padding: 0 8%;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }
        
        .slide_title {
            font-family: 'Montserrat', sans-serif;
            font-size: 3.8rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            opacity: 0;
            transform: translateY(50px);
            transition: all 1s ease;
        }
        
        .slide_text {
            font-size: 1.35rem;
            margin-bottom: 2.5rem;
            max-width: 600px;
            line-height: 1.6;
            opacity: 0;
            transform: translateY(50px);
            transition: all 1s ease 0.3s;
        }
        
        .active .slide_title,
        .active .slide_text {
            opacity: 1;
            transform: translateY(0);
        }
        
        .carousel_indicators {
            position: absolute;
            bottom: 50px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 30;
            display: flex;
            gap: 15px;
        }
        
        .carousel_indicator {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .carousel_indicator.active {
            background: #00a8ff;
            transform: scale(1.3);
        }
        
        .carousel_nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 30;
            background: rgba(255, 255, 255, 0.15);
            width: 65px;
            height: 65px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .carousel_nav:hover {
            background: rgba(0, 168, 255, 0.3);
        }
        
        .carousel_nav_prev {
            left: 40px;
        }
        
        .carousel_nav_next {
            right: 40px;
        }
        
        .carousel_nav i {
            color: white;
            font-size: 1.8rem;
        }
        
        .slide_stats {
            position: absolute;
            bottom: 100px;
            left: 200px;
            z-index: 30;
            display: flex;
            gap: 40px;
            opacity: 0;
            transform: translateY(50px);
            transition: all 1s ease 0.9s;
        }
        
        .active .slide_stats {
            opacity: 1;
            transform: translateY(0);
        }
        
        .stat_item {
            text-align: center;
        }
        
        .stat_value {
            font-size: 2.8rem;
            font-weight: 700;
            color: #00a8ff;
            font-family: 'Montserrat', sans-serif;
        }
        
        .stat_label {
            font-size: 1.1rem;
            color: white;
            font-weight: 500;
        }
        
        @media (max-width: 1200px) {
            .slide_title {
                font-size: 3.2rem;
            }
            
            .slide_text {
                font-size: 1.2rem;
            }
        }
        
        @media (max-width: 992px) {
            .slide_title {
                font-size: 2.8rem;
            }
            
            .slide_text {
                font-size: 1.1rem;
            }
            
            .stat_value {
                font-size: 2.2rem;
            }
            
            .carousel_nav {
                width: 55px;
                height: 55px;
            }
            
            .carousel_nav_prev {
                left: 25px;
            }
            
            .carousel_nav_next {
                right: 25px;
            }
            .slide_stats{
                display: none;
            }
            .crousel_body{
                margin-top: 60px;
            }
        }
        
        @media (max-width: 768px) {
            .slide_title {
                font-size: 2.2rem;
            }
            
            .slide_text {
                font-size: 1rem;
                max-width: 100%;
            }
            
            .slide_stats {
                bottom: 100px;
                right: 50%;
                transform: translateX(50%);
                gap: 25px;
            }
            
            .carousel_nav {
                width: 45px;
                height: 45px;
            }
            
            .carousel_nav_prev {
                left: 15px;
            }
            
            .carousel_nav_next {
                right: 15px;
            }
            
            .carousel_nav i {
                font-size: 1.4rem;
            }
            
            .stat_value {
                font-size: 1.8rem;
            }
            
            .stat_label {
                font-size: 0.9rem;
            }
            
            .carousel_indicators {
                bottom: 30px;
            }
        }
        
        @media (max-width: 576px) {
            .slide_title {
                font-size: 1.8rem;
                margin-bottom: 1rem;
            }
            
            .slide_text {
                font-size: 0.9rem;
                margin-bottom: 1.5rem;
            }
            
            .slide_stats {
                gap: 15px;
                bottom: 80px;
            }
            
            .stat_value {
                font-size: 1.5rem;
            }
            
            .stat_label {
                font-size: 0.8rem;
            }
            
            .carousel_nav {
                width: 40px;
                height: 40px;
            }
            
            .carousel_nav i {
                font-size: 1.2rem;
            }
        }

        .logo {
            position: absolute;
            top: 30px;
            left: 50px;
            z-index: 40;
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 1.8rem;
            color: white;
            display: flex;
            align-items: center;
        }
        
        .logo i {
            margin-right: 10px;
            color: #00a8ff;
        }

        @media (max-width: 768px) {
            .logo {
                left: 25px;
                font-size: 1.5rem;
            }
        }

        @media (max-width: 576px) {
            .logo {
                left: 15px;
                top: 20px;
                font-size: 1.3rem;
            }
        }
 

 .h_ser_body {
     font-family: 'Poppins', sans-serif;
     background-color: #ffffff;
     color: #2d3436;
     padding: 40px 0;
 }

 .h_ser_container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 20px;
 }

 .h_ser_header {
     text-align: center;
     margin-bottom: 60px;
 }

 .h_ser_title {
     font-family: 'Montserrat', sans-serif;
     font-weight: 800;
     font-size: 2.8rem;
     margin-bottom: 15px;
     color: #193e96;
 }

 .h_ser_subtitle {
     font-size: 1.1rem;
     color: #636e72;
     max-width: 600px;
     margin: 0 auto;
 }

 .h_ser_services {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
     gap: 30px;
     margin-bottom: 50px;
 }

 .h_ser_card {
     background: #ffffff;
     border-radius: 12px;
     overflow: hidden;
     transition: all 0.3s ease;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
     border: 1px solid #f1f2f6;
 }

 .h_ser_card:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
 }

 .h_ser_img_container {
     height: 220px;
     overflow: hidden;
     position: relative;
 }

 .h_ser_img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s ease;
 }

 .h_ser_card:hover .h_ser_img {
     transform: scale(1.05);
 }

 .h_ser_card_content {
     padding: 25px;
 }

 .h_ser_card_title {
     font-family: 'Montserrat', sans-serif;
     font-size: 1.5rem;
     margin-bottom: 15px;
     color: #193e96;
 }

 .h_ser_card_text {
     color: #636e72;
     margin-bottom: 20px;
     line-height: 1.6;
 }

 .h_ser_features {
     list-style-type: none;
     margin-bottom: 25px;
 }

 .h_ser_features li {
     margin-bottom: 10px;
     display: flex;
     align-items: center;
     color: #636e72;
 }

 .h_ser_features li i {
     color: #0984e3;
     margin-right: 10px;
     font-size: 14px;
 }

 .h_ser_btn {
     display: inline-block;
     padding: 12px 25px;
     background-color: #0984e3;
     color: white;
     border-radius: 6px;
     text-decoration: none;
     font-weight: 500;
     transition: all 0.3s ease;
     border: none;
     cursor: pointer;
     font-size: 0.9rem;
 }

 .h_ser_btn:hover {
     background-color: #0770c3;
     color: white;
     transform: translateY(-2px);
     box-shadow: 0 5px 15px rgba(9, 132, 227, 0.2);
 }

 .h_ser_more {
     text-align: center;
     margin-top: 40px;
 }

 .h_ser_more_btn {
     display: inline-flex;
     align-items: center;
     padding: 15px 35px;
     background-color: #193e96;
     color: white;
     border-radius: 8px;
     text-decoration: none;
     font-weight: 600;
     font-size: 1rem;
     transition: all 0.3s ease;
 }

 .h_ser_more_btn:hover {
     background-color: #00a382;
     transform: translateY(-3px);
     box-shadow: 0 8px 20px rgba(0, 184, 148, 0.3);
     color: white;
 }

 .h_ser_more_btn i {
     margin-left: 10px;
     transition: transform 0.3s ease;
 }

 .h_ser_more_btn:hover i {
     transform: translateX(5px);
 }

 /* Responsive Design */
 @media (max-width: 992px) {
     .h_ser_title {
         font-size: 2.5rem;
     }

     .h_ser_services {
         grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     }
 }

 @media (max-width: 768px) {
     .h_ser_title {
         font-size: 2rem;
     }

     .h_ser_subtitle {
         font-size: 1rem;
     }

     .h_ser_card_content {
         padding: 20px;
     }

     .h_ser_card_title {
         font-size: 1.3rem;
     }
 }

 @media (max-width: 576px) {
     .h_ser_container {
         padding: 15px;
     }

     .h_ser_title {
         font-size: 1.8rem;
     }

     .h_ser_services {
         grid-template-columns: 1fr;
     }

     .h_ser_img_container {
         height: 200px;
     }

     .h_ser_more_btn {
         padding: 12px 25px;
         font-size: 0.9rem;
     }
 }


 .about_body {
     background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
     min-height: 100vh;
     display: flex;
     justify-content: center;
     align-items: center;
     padding: 20px;
 }

 .h_about_container {
     max-width: 1200px;
     width: 100%;
     background: rgba(255, 255, 255, 0.95);
     border-radius: 20px;
     overflow: hidden;
     box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
     backdrop-filter: blur(10px);
     animation: fadeIn 1s ease-out;
 }

 .h_about_header {
     text-align: center;
     padding: 40px 20px 20px;
     background: linear-gradient(135deg, #2a65c7 100%) , #3a86ff 0%;
     color: white;
     position: relative;
 }

 .h_about_title {
     font-size: 2.8rem;
     font-weight: 800;
     letter-spacing: 2px;
     margin-bottom: 15px;
     text-transform: uppercase;
     position: relative;
     display: inline-block;
 }

 .h_about_title::after {
     content: '';
     position: absolute;
     bottom: -10px;
     left: 50%;
     transform: translateX(-50%);
     width: 80px;
     height: 4px;
     background: linear-gradient(90deg, #ff9a9e 0%, #fad0c4 100%);
     border-radius: 2px;
 }

 .h_about_subtitle {
     font-size: 1.2rem;
     font-weight: 300;
     max-width: 600px;
     margin: 0 auto;
     line-height: 1.6;
 }

 .h_about_content {
     display: flex;
     flex-wrap: wrap;
     padding: 40px;
 }

 .h_about_text {
     flex: 1;
     min-width: 300px;
     padding: 20px;
 }

 .h_about_highlight {
     color: #6a11cb;
     font-weight: 700;
 }

 .h_about_description {
     font-size: 1.1rem;
     line-height: 1.8;
     color: #333;
     margin-bottom: 25px;
 }

 .h_about_features {
     list-style: none;
     margin: 20px 0;
 }

 .h_about_features li {
     margin-bottom: 15px;
     display: flex;
     align-items: center;
     font-size: 1.1rem;
 }

 .h_about_features i {
     color: #193e96;
     margin-right: 15px;
     font-size: 1.3rem;
     background: rgba(106, 17, 203, 0.1);
     width: 36px;
     height: 36px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .h_about_image {
     flex: 1;
     min-width: 300px;
     padding: 20px;
     display: flex;
     justify-content: center;
     align-items: center;
     position: relative;
 }

 .h_about_image::before {
     content: '';
     position: absolute;
     width: 300px;
     height: 300px;
     border-radius: 50%;
     background: linear-gradient(45deg, #6a11cb, #2575fc);
     opacity: 0.1;
     z-index: 0;
     animation: pulse 8s infinite ease-in-out;
 }

 .h_about_img {
     width: 280px;
     height: 280px;
     border-radius: 50%;
     object-fit: cover;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
     position: relative;
     z-index: 1;
     transition: transform 0.5s ease;
 }

 .h_about_img:hover {
     transform: scale(1.05);
 }

 .h_about_stats {
     display: flex;
     justify-content: space-around;
     flex-wrap: wrap;
     padding: 30px 40px;
     background: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
     border-top: 1px solid rgba(0, 0, 0, 0.05);
 }

 .h_about_stat {
     text-align: center;
     padding: 20px;
     min-width: 200px;
 }

 .h_about_stat_number {
     font-size: 2.5rem;
     font-weight: 800;
     color: #0177e9;
     margin-bottom: 10px;
 }

 .h_about_stat_text {
     font-size: 1rem;
     color: #666;
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 .h_about_cta {
     text-align: center;
     padding: 40px;
     background: white;
 }

 .h_about_button {
     display: inline-block;
     padding: 16px 40px;
     background: linear-gradient(135deg, #183790 0%, #2a65c7 100%);
     color: white;
     text-decoration: none;
     border-radius: 50px;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 1px;
     box-shadow: 0 10px 20px rgba(106, 17, 203, 0.3);
     transition: all 0.3s ease;
 }

 .h_about_button:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 25px rgba(106, 17, 203, 0.4);
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
         transform: translateY(30px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @keyframes pulse {

     0%,
     100% {
         transform: scale(1);
     }

     50% {
         transform: scale(1.1);
     }
 }

 @media (max-width: 768px) {
     .h_about_content {
         flex-direction: column-reverse;
     }

     .h_about_title {
         font-size: 2.2rem;
     }

     .h_about_stat {
         min-width: 50%;
     }
 }



 .cta_body {
     font-family: 'Poppins', sans-serif;
     background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
     min-height: 100vh;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 20px;
     color: #fff;
 }

 .cta_container {
     width: 100%;
     /* max-width: 1200px; */
 }

 .cta_section {
     background: linear-gradient(135deg, rgba(25, 42, 86, 0.95) 0%, rgba(48, 79, 142, 0.95) 100%);
     padding: 100px 0;
     border-radius: 30px;
     margin: 40px 0;
     box-shadow: 0 35px 70px rgba(0, 0, 0, 0.3);
     position: relative;
     overflow: hidden;
     border: 1px solid rgba(255, 255, 255, 0.1);
 }

 .cta_section::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background:
         radial-gradient(circle at 20% 30%, rgba(93, 173, 226, 0.2) 0%, transparent 40%),
         radial-gradient(circle at 80% 70%, rgba(231, 76, 60, 0.2) 0%, transparent 40%);
     z-index: 0;
 }

 .cta_content {
     position: relative;
     z-index: 2;
     text-align: center;
 }

 .cta_icon {
     font-size: 5rem;
     margin-bottom: 25px;
     color: #f39c12;
     text-shadow: 0 0 30px rgba(243, 156, 18, 0.7);
     animation: float 3s ease-in-out infinite;
     filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
 }

 .cta_heading {
     font-family: 'Montserrat', sans-serif;
     font-size: 4rem;
     font-weight: 900;
     margin-bottom: 20px;
     background: linear-gradient(to right, #fff 0%, #f39c12 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
     letter-spacing: 1px;
 }

 .cta_subheading {
     font-size: 1.5rem;
     margin-bottom: 50px;
     opacity: 0.9;
     max-width: 700px;
     margin-left: auto;
     margin-right: auto;
     font-weight: 300;
     line-height: 1.6;
 }

 .cta_btn {
     background: linear-gradient(135deg, #e74c3c 0%, #f39c12 100%);
     color: white;
     border: none;
     padding: 25px 60px;
     font-size: 1.5rem;
     font-weight: 700;
     border-radius: 70px;
     margin-top: 30px;
     transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
     position: relative;
     overflow: hidden;
     letter-spacing: 1px;
     text-transform: uppercase;
     z-index: 1;
 }

 .cta_btn::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(135deg, #f39c12 0%, #e74c3c 100%);
     z-index: -1;
     opacity: 0;
     transition: opacity 0.4s ease;
 }

 .cta_btn:hover {
     transform: translateY(-7px) scale(1.05);
     box-shadow: 0 15px 35px rgba(231, 76, 60, 0.6);
 }

 .cta_btn:hover::before {
     opacity: 1;
 }

 .cta_btn:active {
     transform: translateY(0) scale(1);
 }

 .pulse {
     animation: pulseAnimation 2s infinite;
 }

 @keyframes pulseAnimation {
     0% {
         box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7);
     }

     70% {
         box-shadow: 0 0 0 25px rgba(231, 76, 60, 0);
     }

     100% {
         box-shadow: 0 0 0 0 rgba(231, 76, 60, 0);
     }
 }

 @keyframes float {
     0% {
         transform: translateY(0px);
     }

     50% {
         transform: translateY(-15px);
     }

     100% {
         transform: translateY(0px);
     }
 }

 .cta_features {
     display: flex;
     justify-content: center;
     gap: 40px;
     margin-top: 70px;
     flex-wrap: wrap;
 }

 .cta_feature {
     display: flex;
     flex-direction: column;
     align-items: center;
     background: rgba(255, 255, 255, 0.08);
     padding: 30px;
     border-radius: 20px;
     backdrop-filter: blur(10px);
     font-weight: 500;
     transition: all 0.3s ease;
     width: 220px;
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
     border: 1px solid rgba(255, 255, 255, 0.1);
 }

 .cta_feature:hover {
     transform: translateY(-10px);
     background: rgba(255, 255, 255, 0.12);
     box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
 }

 .cta_feature i {
     font-size: 2.5rem;
     color: #f39c12;
     margin-bottom: 20px;
 }

 .cta_feature_text {
     font-size: 1.1rem;
     font-weight: 500;
 }

 .floating-elements {
     position: absolute;
     width: 100%;
     height: 100%;
     top: 0;
     left: 0;
     overflow: hidden;
     z-index: 0;
 }

 .floating-element {
     position: absolute;
     background: rgba(255, 255, 255, 0.1);
     border-radius: 50%;
 }

 .element-1 {
     width: 120px;
     height: 120px;
     top: 10%;
     left: 5%;
     animation: floatElement 20s infinite linear;
 }

 .element-2 {
     width: 80px;
     height: 80px;
     top: 20%;
     right: 10%;
     animation: floatElement 15s infinite linear reverse;
 }

 .element-3 {
     width: 100px;
     height: 100px;
     bottom: 15%;
     left: 15%;
     animation: floatElement 25s infinite linear;
 }

 .element-4 {
     width: 60px;
     height: 60px;
     bottom: 25%;
     right: 5%;
     animation: floatElement 18s infinite linear reverse;
 }

 @keyframes floatElement {
     0% {
         transform: translate(0, 0) rotate(0deg);
         border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
     }

     33% {
         border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
     }

     66% {
         border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
     }

     100% {
         transform: translate(0, 0) rotate(360deg);
         border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
     }
 }


 @media (max-width: 992px) {
     .cta_heading {
         font-size: 3.2rem;
     }

     .cta_subheading {
         font-size: 1.3rem;
         padding: 0 20px;
     }

     .cta_btn {
         padding: 20px 50px;
         font-size: 1.3rem;
     }
 }

 @media (max-width: 768px) {
     .cta_heading {
         font-size: 2.5rem;
     }

     .cta_subheading {
         font-size: 1.1rem;
     }

     .cta_btn {
         padding: 18px 40px;
         font-size: 1.1rem;
     }

     .cta_features {
         gap: 20px;
     }

     .cta_feature {
         width: 180px;
         padding: 20px;
     }
 }

 @media (max-width: 576px) {
     .cta_section {
         padding: 70px 0;
     }

     .cta_heading {
         font-size: 2.2rem;
     }

     .cta_features {
         flex-direction: column;
         align-items: center;
     }

     .cta_feature {
         width: 100%;
         max-width: 280px;
     }
 }


 .wcu_body {
     background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
     color: #333;
     min-height: 100vh;
     display: flex;
     justify-content: center;
     align-items: center;
     padding: 20px;
 }

 .wcu_container {
     max-width: 1200px;
     margin: 40px auto;
 }

 .wcu_header {
     text-align: center;
     margin-bottom: 60px;
 }

 .wcu_main-title {
     font-size: 3.5rem;
     font-weight: 800;
     background: linear-gradient(45deg, #100069 0%, #2575fc 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     margin-bottom: 15px;
     position: relative;
     display: inline-block;
 }

 .wcu_main-title::after {
     content: '';
     position: absolute;
     bottom: -10px;
     left: 50%;
     transform: translateX(-50%);
     width: 80px;
     height: 4px;
     background: linear-gradient(45deg, #6a11cb 0%, #2575fc 100%);
     border-radius: 2px;
 }

 .wcu_subtitle {
     font-size: 1.2rem;
     color: #666;
     max-width: 600px;
     margin: 0 auto;
     line-height: 1.6;
 }

 .wcu_features {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 30px;
 }

 .wcu_feature {
     flex: 0 0 calc(33.333% - 30px);
     min-width: 300px;
     background: white;
     border-radius: 20px;
     padding: 40px 30px;
     text-align: center;
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
     transition: all 0.4s ease;
     position: relative;
     overflow: hidden;
     z-index: 1;
 }

 .wcu_feature::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 5px;
     background: linear-gradient(45deg, #6a11cb 0%, #2575fc 100%);
 }

 .wcu_feature:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
 }

 .wcu_icon-wrapper {
     width: 100px;
     height: 100px;
     margin: 0 auto 25px;
     display: flex;
     align-items: center;
     justify-content: center;
     background: linear-gradient(135deg, rgba(106, 17, 203, 0.1) 0%, rgba(37, 117, 252, 0.1) 100%);
     border-radius: 50%;
     position: relative;
 }

 .wcu_icon {
     font-size: 40px;
     background: linear-gradient(45deg, #6a11cb 0%, #2575fc 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .wcu_icon-wrapper::after {
     content: '';
     position: absolute;
     width: 120px;
     height: 120px;
     border-radius: 50%;
     border: 2px dashed rgba(106, 17, 203, 0.3);
     animation: rotate 20s linear infinite;
 }

 @keyframes rotate {
     0% {
         transform: rotate(0deg);
     }

     100% {
         transform: rotate(360deg);
     }
 }

 .wcu_feature-title {
     font-size: 1.8rem;
     font-weight: 700;
     margin-bottom: 15px;
     color: #1c3f9b;
 }

 .wcu_feature-desc {
     font-size: 1.1rem;
     line-height: 1.6;
     color: #666;
     margin-bottom: 20px;
 }

 .wcu_stat {
     display: inline-block;
     background: linear-gradient(45deg, #6a11cb 0%, #2575fc 100%);
     color: white;
     padding: 8px 20px;
     border-radius: 30px;
     font-weight: 600;
     font-size: 1rem;
     box-shadow: 0 5px 15px rgba(106, 17, 203, 0.2);
 }

 .wcu_decoration {
     position: absolute;
     z-index: -1;
 }

 .wcu_decoration-1 {
     top: -30px;
     right: -30px;
     width: 100px;
     height: 100px;
     border-radius: 50%;
     background: linear-gradient(45deg, rgba(106, 17, 203, 0.1) 0%, rgba(37, 117, 252, 0.1) 100%);
 }

 .wcu_decoration-2 {
     bottom: -40px;
     left: -40px;
     width: 80px;
     height: 80px;
     border-radius: 20px;
     background: linear-gradient(45deg, rgba(106, 17, 203, 0.1) 0%, rgba(37, 117, 252, 0.1) 100%);
     transform: rotate(45deg);
 }

 /* Responsive adjustments */
 @media (max-width: 992px) {
     .wcu_feature {
         flex: 0 0 calc(50% - 30px);
     }
 }

 @media (max-width: 768px) {
     .wcu_feature {
         flex: 0 0 100%;
     }

     .wcu_main-title {
         font-size: 2.8rem;
     }
 }

 .smf_body {
     background: linear-gradient(135deg, #140169 0%, #0b0139 100%);
     min-height: 100vh;
     display: flex;
     justify-content: center;
     align-items: center;
     padding: 20px;
 }

 .smf_container {
     width: 100%;
     margin: 40px auto;
 }

 .smf_tracking-card {
     background: rgba(0, 0, 0, 0.36);
     backdrop-filter: blur(10px);
     border-radius: 25px;
     padding: 50px;
     box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
     position: relative;
     overflow: hidden;
     border: 1px solid rgba(255, 255, 255, 0.2);
 }

 .smf_header {
     text-align: center;
     margin-bottom: 50px;
     position: relative;
     z-index: 2;
 }

 .smf_title {
     font-size: 3.2rem;
     font-weight: 800;
     color: white;
     margin-bottom: 15px;
     text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
 }

 .smf_subtitle {
     font-size: 1.3rem;
     color: rgba(255, 255, 255, 0.9);
     max-width: 600px;
     margin: 0 auto;
     line-height: 1.6;
 }

 .smf_tracking-options {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 25px;
     margin-bottom: 40px;
 }

 .smf_option {
     background: rgba(0, 0, 0, 0.24);
     border-radius: 20px;
     padding: 25px;
     text-align: center;
     transition: all 0.3s ease;
     cursor: pointer;
     border: 1px solid rgba(255, 255, 255, 0.15);
 }

 .smf_option:hover {
     transform: translateY(-5px);
     background: rgba(255, 255, 255, 0.2);
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
 }

 .smf_option-icon {
     font-size: 2.8rem;
     margin-bottom: 20px;
     color: #FFD700;
 }

 .smf_option-title {
     font-size: 1.4rem;
     font-weight: 600;
     color: white;
     margin-bottom: 10px;
 }

 .smf_option-desc {
     font-size: 1rem;
     color: rgba(255, 255, 255, 0.8);
     line-height: 1.5;
 }

 .smf_visual-tracking {
     background: rgba(0, 0, 0, 0.2);
     border-radius: 20px;
     padding: 30px;
     margin-bottom: 40px;
     text-align: center;
 }

 .smf_visual-title {
     font-size: 1.5rem;
     color: white;
     margin-bottom: 20px;
 }

 .smf_tracking-path {
     display: flex;
     justify-content: space-between;
     align-items: center;
     position: relative;
     height: 80px;
     margin: 30px 0;
 }

 .smf_path-point {
     width: 50px;
     height: 50px;
     border-radius: 50%;
     background: #FFD700;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #333;
     font-weight: bold;
     font-size: 1.2rem;
     z-index: 2;
     position: relative;
     box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
 }

 .smf_path-line {
     position: absolute;
     top: 50%;
     left: 0;
     width: 100%;
     height: 4px;
     background: rgba(255, 255, 255, 0.3);
     transform: translateY(-50%);
     z-index: 1;
 }

 .smf_path-progress {
     position: absolute;
     top: 50%;
     left: 0;
     width: 75%;
     height: 6px;
     background: #FFD700;
     transform: translateY(-50%);
     z-index: 1;
     border-radius: 3px;
     transition: width 1.5s ease;
     box-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
 }

 .smf_path-labels {
     display: flex;
     justify-content: space-between;
     margin-top: 15px;
 }

 .smf_path-label {
     color: white;
     font-size: 0.9rem;
     text-align: center;
     width: 80px;
 }

 .smf_action-buttons {
     display: flex;
     justify-content: center;
     gap: 20px;
     flex-wrap: wrap;
 }

 .smf_action-btn {
     padding: 18px 35px;
     font-size: 1.2rem;
     font-weight: 600;
     background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
     color: #333;
     border: none;
     border-radius: 50px;
     cursor: pointer;
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
     gap: 10px;
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
 }

 .smf_action-btn:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
     animation: pulse 1.5s infinite;
 }

 .smf_action-btn.secondary {
     background: rgba(255, 255, 255, 0.15);
     color: white;
     backdrop-filter: blur(10px);
 }

 @keyframes pulse {
     0% {
         box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
     }

     70% {
         box-shadow: 0 0 0 12px rgba(255, 215, 0, 0);
     }

     100% {
         box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
     }
 }

 .smf_decoration {
     position: absolute;
     z-index: 0;
 }

 .smf_decoration-1 {
     top: -50px;
     left: -50px;
     width: 150px;
     height: 150px;
     border-radius: 50%;
     background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0) 70%);
 }

 .smf_decoration-2 {
     bottom: -70px;
     right: -70px;
     width: 200px;
     height: 200px;
     border-radius: 50%;
     background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0) 70%);
 }

 .smf_stats {
     display: flex;
     justify-content: space-around;
     margin-top: 50px;
     flex-wrap: wrap;
     gap: 20px;
 }

 .smf_stat {
     text-align: center;
     color: white;
 }

 .smf_stat-number {
     font-size: 2.5rem;
     font-weight: 700;
     color: #FFD700;
     margin-bottom: 10px;
 }

 .smf_stat-text {
     font-size: 1.1rem;
     color: rgba(255, 255, 255, 0.9);
 }

 /* Responsive adjustments */
 @media (max-width: 768px) {
     .smf_tracking-card {
         padding: 30px;
     }

     .smf_title {
         font-size: 2.5rem;
     }

     .smf_tracking-options {
         grid-template-columns: 1fr;
     }

     .smf_action-buttons {
         flex-direction: column;
     }

     .smf_path-point {
         width: 40px;
         height: 40px;
         font-size: 1rem;
     }

     .smf_path-label {
         font-size: 0.8rem;
     }
 }

 .footer_body {
     background: linear-gradient(135deg, #0f2540 0%, #070b4a 100%);
     display: flex;
     flex-direction: column;
     justify-content: space-between;
     padding: 20px;
 }

 .content {
     flex: 1;
     display: flex;
     justify-content: center;
     align-items: center;
     color: white;
     text-align: center;
     padding: 40px 20px;
 }

 .content h1 {
     font-size: 2.5rem;
     margin-bottom: 20px;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
 }

 .content p {
     font-size: 1.2rem;
     max-width: 600px;
     line-height: 1.6;
 }

 .ftr_container {
     max-width: 1200px;
     margin: 0 auto;
 }

 .ftr_footer {
     background: rgba(0, 0, 0, 0.2);
     backdrop-filter: blur(10px);
     border-radius: 25px 25px 0 0;
     padding: 60px 40px 30px;
     box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.2);
     border: 1px solid rgba(255, 255, 255, 0.1);
     border-bottom: none;
 }

 .ftr_main {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 40px;
     margin-bottom: 50px;
 }

 .ftr_column {
     display: flex;
     flex-direction: column;
 }

 .ftr_logo {
     font-size: 2rem;
     font-weight: 800;
     color: white;
     margin-bottom: 20px;
     display: flex;
     align-items: center;
 }

 .ftr_logo-icon {
     margin-right: 10px;
     color: #FFD700;
 }

 .ftr_about {
     color: rgba(255, 255, 255, 0.8);
     line-height: 1.6;
     margin-bottom: 20px;
 }

 .ftr_social {
     display: flex;
     gap: 15px;
 }

 .ftr_social-link {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.1);
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     transition: all 0.3s ease;
 }

 .ftr_social-link:hover {
     background: #FFD700;
     color: #333;
     transform: translateY(-3px);
 }

 .ftr_column-title {
     font-size: 1.3rem;
     font-weight: 600;
     color: white;
     margin-bottom: 25px;
     position: relative;
     padding-bottom: 10px;
 }

 .ftr_column-title::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 40px;
     height: 3px;
     background: #FFD700;
     border-radius: 3px;
 }

 .ftr_links {
     list-style: none;
 }

 .ftr_link-item {
     margin-bottom: 12px;
 }

 .ftr_link {
     color: rgba(255, 255, 255, 0.8);
     text-decoration: none;
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
 }

 .ftr_link:hover {
     color: #FFD700;
     transform: translateX(5px);
 }

 .ftr_link-icon {
     margin-right: 10px;
     font-size: 0.9rem;
     color: #FFD700;
 }

 .ftr_contact-info {
     display: flex;
     flex-direction: column;
     gap: 15px;
 }

 .ftr_contact-item {
     display: flex;
     align-items: center;
     color: rgba(255, 255, 255, 0.8);
 }

 .ftr_contact-icon {
     margin-right: 15px;
     width: 35px;
     height: 35px;
     border-radius: 50%;
     background: rgba(255, 215, 0, 0.2);
     display: flex;
     align-items: center;
     justify-content: center;
     color: #FFD700;
 }

 .ftr_newsletter {
     position: relative;
 }

 .ftr_newsletter-input {
     width: 100%;
     padding: 15px 20px;
     background: rgba(255, 255, 255, 0.1);
     border: 1px solid rgba(255, 255, 255, 0.2);
     border-radius: 50px;
     color: white;
     font-size: 1rem;
 }

 .ftr_newsletter-input:focus {
     outline: none;
     border-color: #FFD700;
 }

 .ftr_newsletter-btn {
     position: absolute;
     right: 5px;
     top: 5px;
     background: #FFD700;
     color: #333;
     border: none;
     border-radius: 50px;
     padding: 10px 20px;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .ftr_newsletter-btn:hover {
     background: #ffcc00;
     transform: scale(1.05);
 }

 .ftr_bottom {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding-top: 30px;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     flex-wrap: wrap;
     gap: 20px;
 }

 .ftr_copyright {
     color: rgba(255, 255, 255, 0.7);
 }

 .ftr_bottom-links {
     display: flex;
     gap: 25px;
 }

 .ftr_bottom-link {
     color: rgba(255, 255, 255, 0.7);
     text-decoration: none;
     transition: all 0.3s ease;
     font-size: 0.9rem;
 }

 .ftr_bottom-link:hover {
     color: #FFD700;
 }

 .ftr_payment-methods {
     display: flex;
     gap: 10px;
 }

 .ftr_payment-icon {
     width: 40px;
     height: 25px;
     background: rgba(255, 255, 255, 0.1);
     border-radius: 4px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: rgba(255, 255, 255, 0.7);
     font-size: 0.8rem;
 }

 /* Responsive adjustments */
 @media (max-width: 768px) {
     .ftr_main {
         grid-template-columns: 1fr;
         gap: 30px;
     }

     .ftr_bottom {
         flex-direction: column;
         text-align: center;
     }

     .ftr_bottom-links {
         justify-content: center;
     }

     .ftr_payment-methods {
         justify-content: center;
     }

     .ftr_footer {
         padding: 40px 20px 20px;
     }
 }

 .pcs_body {
     background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
     min-height: 100vh;
     display: flex;
     justify-content: center;
     align-items: center;
     padding: 20px;
 }

 .pcs_container {
     max-width: 1200px;
     width: 100%;
     background: white;
     border-radius: 25px;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
     overflow: hidden;
     padding: 50px 40px;
 }

 .pcs_header {
     text-align: center;
     margin-bottom: 50px;
 }

 .pcs_title {
     font-size: 2.8rem;
     font-weight: 800;
     background: linear-gradient(45deg, #14016b 0%, #2575fc 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     margin-bottom: 15px;
 }

 .pcs_subtitle {
     font-size: 1.2rem;
     color: #666;
     max-width: 600px;
     margin: 0 auto;
     line-height: 1.6;
 }

 .pcs_logos-container {
     position: relative;
     width: 100%;
     overflow: hidden;
     margin: 40px 0;
 }

 .pcs_logos-track {
     display: flex;
     animation: pcs_scroll 30s linear infinite;
     width: calc(200px * 14);
 }

 .pcs_logos-track:hover {
     animation-play-state: paused;
 }

 .pcs_logo {
     width: 180px;
     height: 120px;
     margin: 0 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     background: white;
     border-radius: 15px;
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
 }

 .pcs_logo::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 5px;
     background: linear-gradient(to right, #6a11cb 0%, #2575fc 100%);
     opacity: 0;
     transition: opacity 0.3s ease;
 }

 .pcs_logo:hover {
     transform: translateY(-5px) scale(1.05);
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
 }

 .pcs_logo:hover::before {
     opacity: 1;
 }

 .pcs_logo-img {
     max-width: 80%;
     max-height: 60%;
     object-fit: contain;
     filter: grayscale(30%);
     transition: all 0.3s ease;
 }

 .pcs_logo:hover .pcs_logo-img {
     filter: grayscale(0%);
     transform: scale(1.1);
 }

 .pcs_logo-placeholder {
     font-size: 1.8rem;
     color: #6a11cb;
     transition: all 0.3s ease;
 }

 .pcs_logo:hover .pcs_logo-placeholder {
     color: #2575fc;
     transform: scale(1.2);
 }

 .pcs_fade-overlay {
     position: absolute;
     top: 0;
     width: 100px;
     height: 100%;
     z-index: 2;
 }

 .pcs_fade-left {
     left: 0;
     background: linear-gradient(to right, white 0%, transparent 100%);
 }

 .pcs_fade-right {
     right: 0;
     background: linear-gradient(to left, white 0%, transparent 100%);
 }

 .pcs_stats {
     display: flex;
     justify-content: space-around;
     flex-wrap: wrap;
     margin-top: 60px;
     gap: 20px;
 }

 .pcs_stat {
     text-align: center;
     flex: 1;
     min-width: 200px;
 }

 .pcs_stat-number {
     font-size: 2.5rem;
     font-weight: 800;
     background: linear-gradient(45deg, #6a11cb 0%, #2575fc 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     margin-bottom: 10px;
 }

 .pcs_stat-text {
     font-size: 1.1rem;
     color: #666;
 }

 @keyframes pcs_scroll {
     0% {
         transform: translateX(0);
     }

     100% {
         transform: translateX(calc(-200px * 7));
     }
 }

 /* Responsive adjustments */
 @media (max-width: 768px) {
     .pcs_container {
         padding: 30px 20px;
     }

     .pcs_title {
         font-size: 2.2rem;
     }

     .pcs_logo {
         width: 150px;
         height: 100px;
     }

     .pcs_stats {
         flex-direction: column;
         gap: 30px;
     }
 }

 .cp_container {
     width: 100%;
     margin-top: 75px;
 }

 .cp_card {
     background: rgba(13, 29, 48, 0.85);
     backdrop-filter: blur(10px);

     border: 1px solid rgba(66, 133, 244, 0.2);
     /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5); */
     overflow: hidden;
     position: relative;
     padding: 3rem;
     animation: cp_cardEntrance 1s ease-out forwards;
 }

 .cp_logo {
     position: absolute;
     top: 25px;
     left: 25px;
     font-weight: 700;
     font-size: 1.8rem;
     color: #4285F4;
     text-decoration: none;
     display: flex;
     align-items: center;
     transition: all 0.3s ease;
     z-index: 10;
 }

 .cp_logo i {
     margin-right: 10px;
     font-size: 2rem;
 }

 .cp_logo:hover {
     transform: scale(1.05);
     color: #8ab4f8;
 }

 .cp_title {
     font-size: 2.8rem;
     font-weight: 700;
     text-align: center;
     margin-bottom: 1rem;
     /* background: linear-gradient(90deg, #4285F4, #34A853, #FBBC05, #EA4335);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent; */
     animation: cp_titleAnimation 1.5s ease forwards;
     position: relative;
     padding-bottom: 1rem;
     color: white;
 }

 .cp_title::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 50%;
     transform: translateX(-50%);
     width: 100px;
     height: 4px;
     background: linear-gradient(90deg, #4285F4, #34A853);
     border-radius: 2px;
     animation: cp_lineExpand 1s ease forwards;
     animation-delay: 0.5s;
 }

 .cp_tagline {
     font-size: 1.2rem;
     text-align: center;
     margin-bottom: 2.5rem;
     color: #a8c7fa;
     animation: cp_fadeIn 1s ease forwards;
     animation-delay: 0.8s;
     opacity: 0;
 }

 .cp_background {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1500&q=80') center/cover no-repeat;
     z-index: -1;
     opacity: 0.25;
     filter: blur(2px);
 }

 .cp_overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(135deg, rgba(16, 42, 67, 0.8) 0%, rgba(10, 25, 41, 0.9) 100%);
     z-index: -1;
 }

 .cp_truckAnimation {
     position: absolute;
     bottom: -30px;
     left: -100px;
     font-size: 8rem;
     color: rgba(66, 133, 244, 0.15);
     animation: cp_truckMove 25s linear infinite;
     z-index: -1;
 }

 .cp_icons {
     display: flex;
     justify-content: center;
     gap: 2rem;
     margin-top: 2rem;
     flex-wrap: wrap;
 }

 .cp_icon {
     width: 80px;
     height: 80px;
     display: flex;
     align-items: center;
     justify-content: center;
     background: rgba(25, 55, 88, 0.6);
     border-radius: 50%;
     font-size: 2rem;
     color: aqua;
     transition: all 0.3s ease;
     animation: cp_iconEntrance 0.5s ease forwards;
     opacity: 0;
 }

 .cp_icon:nth-child(1) {
     animation-delay: 1s;
 }

 .cp_icon:nth-child(2) {
     animation-delay: 1.2s;
 }

 .cp_icon:nth-child(3) {
     animation-delay: 1.4s;
 }

 .cp_icon:nth-child(4) {
     animation-delay: 1.6s;
 }

 .cp_icon:hover {
     transform: translateY(-10px) scale(1.1);
     background: rgba(66, 133, 244, 0.2);
     color: #8ab4f8;
     box-shadow: 0 5px 15px rgba(66, 133, 244, 0.3);
 }

 /* Animations */
 @keyframes cp_cardEntrance {
     from {
         opacity: 0;
         transform: translateY(50px) scale(0.95);
     }

     to {
         opacity: 1;
         transform: translateY(0) scale(1);
     }
 }

 @keyframes cp_titleAnimation {
     0% {
         letter-spacing: 15px;
         opacity: 0;
     }

     100% {
         letter-spacing: 2px;
         opacity: 1;
     }
 }

 @keyframes cp_lineExpand {
     from {
         width: 0;
     }

     to {
         width: 100px;
     }
 }

 @keyframes cp_fadeIn {
     from {
         opacity: 0;
         transform: translateY(10px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @keyframes cp_truckMove {
     0% {
         transform: translateX(-100px);
     }

     100% {
         transform: translateX(1400px);
     }
 }

 @keyframes cp_iconEntrance {
     from {
         opacity: 0;
         transform: translateY(20px) rotate(0deg);
     }

     to {
         opacity: 1;
         transform: translateY(0) rotate(360deg);
     }
 }

 /* Responsive Design */
 @media (max-width: 768px) {
     .cp_card {
         padding: 2rem 1.5rem;
     }

     .cp_title {
         font-size: 2.2rem;
         margin-top: 1.5rem;
     }

     .cp_tagline {
         font-size: 1rem;
     }

     .cp_icon {
         width: 60px;
         height: 60px;
         font-size: 1.5rem;
     }

     .cp_truckAnimation {
         font-size: 5rem;
     }
 }

 .im_container {
     width: 100%;
     max-width: 1200px;
 }

 .im_section-title {
     font-family: 'Montserrat', sans-serif;
     font-size: 2.2rem;
     font-weight: 700;
     text-align: center;
     margin-bottom: 3rem;
     color: #0d1f35;
     position: relative;
     padding-bottom: 1rem;
 }

 .im_section-title::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 50%;
     transform: translateX(-50%);
     width: 80px;
     height: 4px;
     background: linear-gradient(90deg, #4285F4, #34A853);
     border-radius: 2px;
 }

 .im_contact-card {
     background: linear-gradient(135deg, #0a1929 0%, #122c4d 100%);
     backdrop-filter: blur(10px);
     border-radius: 20px;
     border: 1px solid rgba(66, 133, 244, 0.2);
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
     overflow: hidden;
     padding: 3rem;
     margin-bottom: 3rem;
 }

 .im_contact-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
     gap: 2rem;
 }

 .im_contact-item {
     display: flex;
     align-items: flex-start;
     padding: 1.5rem;
     background: rgba(25, 55, 88, 0.4);
     border-radius: 15px;
     transition: all 0.3s ease;
     border: 1px solid rgba(66, 133, 244, 0.1);
 }

 .im_contact-item:hover {
     transform: translateY(-5px);
     background: rgba(25, 55, 88, 0.6);
     border-color: rgba(66, 133, 244, 0.3);
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
 }

 .im_icon-wrapper {
     width: 60px;
     height: 60px;
     display: flex;
     align-items: center;
     justify-content: center;
     background: linear-gradient(135deg, #08022447 0%, #070124 100%);
     border-radius: 50%;
     margin-right: 1.5rem;
     flex-shrink: 0;
     border: 1px solid aliceblue;

 }

 .im_contact-icon {
     font-size: 1.5rem;
     color: white;
 }

 .im_contact-details {
     flex-grow: 1;
 }

 .im_contact-title {
     font-family: 'Montserrat', sans-serif;
     font-size: 1.2rem;
     font-weight: 600;
     margin-bottom: 0.5rem;
     color: #8ab4f8;
 }

 .im_contact-info {
     font-size: 1.1rem;
     color: #e8f0fe;
     line-height: 1.5;
 }

 .im_hours {
     font-size: 0.9rem;
     color: #a8c7fa;
     margin-top: 0.5rem;
     font-style: italic;
 }

 .im_map-section {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 2rem;
     margin-top: 3rem;
 }

 .im_map-container {
     background: linear-gradient(135deg, #0a1929 0%, #122c4d 100%);
     backdrop-filter: blur(10px);
     border-radius: 20px;
     border: 1px solid rgba(66, 133, 244, 0.2);
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
     overflow: hidden;
     padding: 2rem;
 }

 .im_map-title {
     font-family: 'Montserrat', sans-serif;
     font-size: 1.5rem;
     font-weight: 600;
     margin-bottom: 1.5rem;
     color: #fff;
     text-align: center;
 }

 .im_map-wrapper {
     height: 300px;
     border-radius: 15px;
     overflow: hidden;
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
     position: relative;
 }

 .im_map {
     width: 100%;
     height: 100%;
     border: none;
     border-radius: 15px;
 }

 .im_map-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(135deg, rgba(16, 42, 67, 0.2) 0%, rgba(10, 25, 41, 0.3) 100%);
     pointer-events: none;
     border-radius: 15px;
 }

 .im_map-link {
     display: inline-block;
     margin-top: 1rem;
     color: #8ab4f8;
     text-decoration: none;
     font-weight: 500;
     transition: all 0.3s ease;
 }

 .im_map-link:hover {
     color: #4285F4;
     text-decoration: underline;
 }

 .im_info-box {
     background: linear-gradient(135deg, #0a1929 0%, #122c4d 100%);
     backdrop-filter: blur(10px);
     border-radius: 20px;
     border: 1px solid rgba(66, 133, 244, 0.2);
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
     overflow: hidden;
     padding: 2rem;
     display: flex;
     flex-direction: column;
     justify-content: center;
 }

 .im_info-title {
     font-family: 'Montserrat', sans-serif;
     font-size: 1.8rem;
     font-weight: 700;
     margin-bottom: 1.5rem;
     color: #fff;
 }

 .im_info-text {
     font-size: 1.1rem;
     color: #e8f0fe;
     line-height: 1.6;
     margin-bottom: 2rem;
 }

 .im_highlight {
     color: #34A853;
     font-weight: 600;
 }

 /* Animation */
 @keyframes im_fadeIn {
     from {
         opacity: 0;
         transform: translateY(20px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .im_contact-item {
     animation: im_fadeIn 0.6s ease forwards;
 }

 .im_contact-item:nth-child(1) {
     animation-delay: 0.1s;
 }

 .im_contact-item:nth-child(2) {
     animation-delay: 0.2s;
 }

 .im_contact-item:nth-child(3) {
     animation-delay: 0.3s;
 }

 .im_contact-item:nth-child(4) {
     animation-delay: 0.4s;
 }

 /* Responsive Design */
 @media (max-width: 992px) {
     .im_map-section {
         grid-template-columns: 1fr;
     }

     .im_contact-grid {
         grid-template-columns: 1fr;
     }
 }

 @media (max-width: 768px) {
     .im_contact-card {
         padding: 2rem 1.5rem;
     }

     .im_contact-item {
         flex-direction: column;
         text-align: center;
     }

     .im_icon-wrapper {
         margin-right: 0;
         margin-bottom: 1rem;
     }

     .im_section-title {
         font-size: 1.8rem;
     }
 }

 .im_body {
     font-family: 'Open Sans', sans-serif;

     color: #fff;
     min-height: 100vh;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 2rem;
 }

 .ab_hero_body {
     font-family: 'Roboto', sans-serif;
     color: #f1faee;
     overflow-x: hidden;
     margin-top: 50px;
 }

 .ab_hero-section {
     position: relative;
     height: 100vh;
     min-height: 700px;
     overflow: hidden;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .ab_hero-bg {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: -2;
 }

 .ab_hero-bg img {
     object-fit: cover;
     width: 100%;
     height: 100%;
     filter: brightness(0.7);
 }

 .ab_hero-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(135deg, rgba(8, 54, 119, 0.85) 0%, rgba(153, 5, 16, 0.61) 100%);
     z-index: -1;
 }

 .ab_hero-content {
     position: relative;
     z-index: 2;
     text-align: center;
     padding: 2rem;
     max-width: 1200px;
     margin: 0 auto;
 }

 .ab_main-heading {
     font-family: 'Montserrat', sans-serif;
     font-weight: 800;
     font-size: 4rem;
     margin-bottom: 1.5rem;
     text-transform: uppercase;
     letter-spacing: 2px;
     text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
     animation: fadeInDown 1s ease-out;
 }

 .ab_main-heading span {
     color: #e63946;
     position: relative;
     display: inline-block;
 }

 .ab_main-heading span::after {
     content: '';
     position: absolute;
     bottom: -5px;
     left: 0;
     width: 100%;
     height: 4px;
     background: #e63946;
     transform: scaleX(0);
     transform-origin: right;
     animation: underline 1.5s ease-in-out forwards 1s;
 }

 .ab_sub-heading {
     font-size: 1.5rem;
     font-weight: 300;
     margin-bottom: 2.5rem;
     max-width: 700px;
     margin-left: auto;
     margin-right: auto;
     line-height: 1.6;
     animation: fadeInUp 1s ease-out 0.3s both;
 }

 .ab_cta-buttons {
     display: flex;
     gap: 1.5rem;
     justify-content: center;
     margin-bottom: 3rem;
     animation: fadeIn 1s ease-out 0.6s both;
 }

 .ab_btn-primary {
     background-color: #e63946;
     border: none;
     padding: 1rem 2.5rem;
     font-weight: 500;
     border-radius: 50px;
     transition: all 0.3s ease;
     text-transform: uppercase;
     letter-spacing: 1px;
     box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
     color: white;
 }

 .ab_btn-primary:hover {
     background-color: #d90429;
     transform: translateY(-5px);
     box-shadow: 0 10px 25px rgba(230, 57, 70, 0.5);
 }

 .ab_btn-outline {
     border: 2px solid #f1faee;
     color: #f1faee;
     background: transparent;
     padding: 1rem 2.5rem;
     font-weight: 500;
     border-radius: 50px;
     transition: all 0.3s ease;
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 .ab_btn-outline:hover {
     background: rgba(255, 255, 255, 0.1);
     transform: translateY(-5px);
     box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
 }

 .ab_features {
     display: flex;
     justify-content: center;
     gap: 2.5rem;
     margin-top: 2rem;
     animation: fadeIn 1s ease-out 0.9s both;
 }

 .ab_feature-item {
     display: flex;
     align-items: center;
     gap: 0.8rem;
     background: rgba(255, 255, 255, 0.1);
     padding: 0.8rem 1.5rem;
     border-radius: 50px;
     backdrop-filter: blur(5px);
     transition: all 0.3s ease;
 }

 .ab_feature-item:hover {
     background: rgba(255, 255, 255, 0.15);
     transform: translateY(-3px);
 }

 .ab_feature-icon {
     color: #e63946;
     font-size: 1.2rem;
 }

 .ab_feature-text {
     font-size: 0.9rem;
     font-weight: 500;
 }

 .ab_scroll-indicator {
     position: absolute;
     bottom: 30px;
     left: 50%;
     transform: translateX(-50%);
     animation: bounce 2s infinite;
 }

 .ab_scroll-indicator i {
     font-size: 2rem;
     color: #f1faee;
     opacity: 0.8;
 }

 /* Animations */
 @keyframes fadeInDown {
     from {
         opacity: 0;
         transform: translateY(-50px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(50px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
     }

     to {
         opacity: 1;
     }
 }

 @keyframes underline {
     from {
         transform: scaleX(0);
     }

     to {
         transform: scaleX(1);
     }
 }

 @keyframes bounce {

     0%,
     20%,
     50%,
     80%,
     100% {
         transform: translateY(0) translateX(-50%);
     }

     40% {
         transform: translateY(-20px) translateX(-50%);
     }

     60% {
         transform: translateY(-10px) translateX(-50%);
     }
 }

 /* Responsive Design */
 @media (max-width: 992px) {
     .ab_main-heading {
         font-size: 3.2rem;
     }

     .ab_sub-heading {
         font-size: 1.3rem;
     }

     .ab_features {
         flex-wrap: wrap;
     }
 }

 @media (max-width: 768px) {
     .ab_hero-section {
         min-height: 800px;
     }

     .ab_main-heading {
         font-size: 2.5rem;
     }

     .ab_sub-heading {
         font-size: 1.1rem;
     }

     .ab_cta-buttons {
         flex-direction: column;
         align-items: center;
         gap: 1rem;
     }

     .ab_btn-primary,
     .ab_btn-outline {
         width: 100%;
         max-width: 300px;
     }

     .ab_features {
         flex-direction: column;
         align-items: center;
         gap: 1rem;
     }

     .ab_feature-item {
         width: 100%;
         max-width: 300px;
         justify-content: center;
     }
 }

 @media (max-width: 576px) {
     .ab_main-heading {
         font-size: 2rem;
         letter-spacing: 1px;
     }

     .ab_hero-content {
         padding: 1rem;
     }
 }

 .cov_body {
     font-family: 'Poppins', sans-serif;
     color: #2b2d42;
     background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
     line-height: 1.6;
     min-height: 100vh;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 20px;
 }

 .cov_container {
     max-width: 1200px;
     width: 100%;
 }

 .cov_section {
     background: rgba(255, 255, 255, 0.95);
     backdrop-filter: blur(10px);
     border-radius: 24px;
     padding: 70px 50px;
     box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
     position: relative;
     overflow: hidden;
 }

 .cov_section::before {
     content: '';
     position: absolute;
     top: -100px;
     right: -100px;
     width: 300px;
     height: 300px;
     background: linear-gradient(135deg, #4cc9f0 0%, #4361ee 100%);
     border-radius: 50%;
     opacity: 0.08;
     z-index: 0;
 }

 .cov_section::after {
     content: '';
     position: absolute;
     bottom: -120px;
     left: -120px;
     width: 400px;
     height: 400px;
     background: linear-gradient(135deg, #f72585 0%, #7209b7 100%);
     border-radius: 50%;
     opacity: 0.06;
     z-index: 0;
 }

 .cov_header {
     text-align: center;
     margin-bottom: 60px;
     position: relative;
     z-index: 2;
 }

 .cov_title {
     font-family: 'Montserrat', sans-serif;
     font-weight: 800;
     font-size: 3.2rem;
     background: linear-gradient(135deg, #4361ee 0%, #3a0ca3 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     margin-bottom: 20px;
     position: relative;
     display: inline-block;
     letter-spacing: 1px;
 }

 .cov_title::after {
     content: '';
     position: absolute;
     bottom: -15px;
     left: 50%;
     transform: translateX(-50%);
     width: 100px;
     height: 6px;
     background: linear-gradient(90deg, #4361ee, #f72585);
     border-radius: 10px;
 }

 .cov_subtitle {
     font-size: 1.3rem;
     color: #4cc9f0;
     max-width: 700px;
     margin: 0 auto;
     font-weight: 500;
 }

 .cov_text {
     font-size: 1.15rem;
     color: #2b2d42;
     margin-bottom: 40px;
     line-height: 1.8;
     background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
     padding: 30px;
     border-radius: 20px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
     border-left: 5px solid #4361ee;
 }

 .cov_highlight {
     background: linear-gradient(135deg, #4361ee 0%, #f72585 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     font-weight: 700;
 }

 .cov_detail_item {
     background: white;
     padding: 30px;
     border-radius: 20px;
     box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
     transition: all 0.4s ease;
     border-top: 5px solid #4361ee;
     position: relative;
     overflow: hidden;
     height: 100%;
 }

 .cov_detail_item::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 5px;
     background: linear-gradient(90deg, #4361ee, #f72585);
     transform: scaleX(0);
     transform-origin: left;
     transition: transform 0.4s ease;
 }

 .cov_detail_item:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
     border-top: 0px;
 }

 .cov_detail_item:hover::before {
     transform: scaleX(1);
 }

 .cov_detail_title {
     font-family: 'Montserrat', sans-serif;
     font-weight: 700;
     font-size: 1.4rem;
     color: #224eae;
     margin-bottom: 20px;
     display: flex;
     align-items: center;
     gap: 12px;
 }

 .cov_detail_icon {
     color: #4361ee;
     font-size: 1.8rem;
     background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
     width: 60px;
     height: 60px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 50%;
     box-shadow: 0 5px 15px rgba(67, 97, 238, 0.2);
     transition: all 0.3s ease;
 }

 .cov_detail_item:hover .cov_detail_icon {
     transform: rotate(15deg) scale(1.1);
     background: linear-gradient(135deg, #4361ee 0%, #3a0ca3 100%);
     color: white;
     box-shadow: 0 8px 20px rgba(67, 97, 238, 0.3);
 }

 .cov_detail_content {
     color: #4895ef;
     font-size: 1.05rem;
     line-height: 1.6;
 }

 .cov_map_container {
     width: 100%;
     height: 100%;
     border-radius: 25px;
     overflow: hidden;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
     position: relative;
     transition: all 0.4s ease;
     background: linear-gradient(135deg, #100069 0%, #4361ee 100%);
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .cov_map_container:hover {
     transform: rotate(-2deg) scale(1.02);
     box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
 }

 .cov_map_content {
     text-align: center;
     color: white;
     padding: 30px;
 }

 .cov_map_title {
     font-family: 'Montserrat', sans-serif;
     font-weight: 700;
     font-size: 1.8rem;
     margin-bottom: 25px;
 }

 .cov_map_locations {
     display: flex;
     flex-wrap: wrap;
     gap: 15px;
     justify-content: center;
 }

 .cov_map_location {
     background: rgba(255, 255, 255, 0.15);
     backdrop-filter: blur(10px);
     padding: 12px 20px;
     border-radius: 50px;
     font-size: 0.9rem;
     transition: all 0.3s ease;
 }

 .cov_map_location:hover {
     background: rgba(255, 255, 255, 0.25);
     transform: translateY(-5px);
 }

 .cov_stat_item {
     text-align: center;
     padding: 25px;
     background: white;
     border-radius: 20px;
     box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
     transition: all 0.4s ease;
     position: relative;
     overflow: hidden;
     height: 100%;
 }

 .cov_stat_item::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 5px;
     background: linear-gradient(90deg, #4361ee, #f72585);
     transform: scaleX(0);
     transform-origin: left;
     transition: transform 0.4s ease;
 }

 .cov_stat_item:hover {
     transform: translateY(-8px);
     box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
 }

 .cov_stat_item:hover::before {
     transform: scaleX(1);
 }

 .cov_stat_item:hover .cov_stat_number {
     color: #4361ee;
     transform: scale(1.1);
 }

 .cov_stat_number {
     font-family: 'Montserrat', sans-serif;
     font-weight: 800;
     font-size: 2.8rem;
     background: linear-gradient(135deg, #4361ee 0%, #130069 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     margin-bottom: 12px;
     transition: all 0.3s ease;
     display: block;
 }

 .cov_stat_text {
     font-size: 1.1rem;
     color: #4895ef;
     font-weight: 500;
 }

 /* Animations */
 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(40px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @keyframes pulse {
     0% {
         transform: scale(1);
     }

     50% {
         transform: scale(1.05);
     }

     100% {
         transform: scale(1);
     }
 }

 .cov_animated .cov_title {
     animation: fadeInUp 0.8s ease-out;
 }

 .cov_animated .cov_subtitle {
     animation: fadeInUp 0.8s ease-out 0.2s both;
 }

 .cov_animated .cov_text {
     animation: fadeInUp 0.8s ease-out 0.4s both;
 }

 .cov_animated .cov_detail_item {
     animation: fadeInUp 0.8s ease-out 0.6s both;
 }

 .cov_animated .cov_stat_item {
     animation: fadeInUp 0.8s ease-out 0.8s both;
 }

 .cov_animated .cov_map_container {
     animation: pulse 2s ease-out 1s both;
 }

 /* Responsive Design */
 @media (max-width: 992px) {
     .cov_section {
         padding: 50px 35px;
     }
 }

 @media (max-width: 768px) {
     .cov_section {
         padding: 40px 25px;
         border-radius: 20px;
     }

     .cov_title {
         font-size: 2.5rem;
     }

     .cov_subtitle {
         font-size: 1.15rem;
     }

     .cov_text {
         font-size: 1.05rem;
         padding: 20px;
     }
 }

 @media (max-width: 576px) {
     .cov_title {
         font-size: 2rem;
     }

     .cov_text {
         font-size: 1rem;
     }

     .cov_detail_title {
         font-size: 1.2rem;
     }

     .cov_detail_icon {
         font-size: 1.5rem;
         width: 50px;
         height: 50px;
     }

     .cov_body {
         padding: 15px;
     }

     .cov_section {
         padding: 30px 20px;
     }
 }

 .av_mv_body {
     font-family: 'Poppins', sans-serif;
     background: linear-gradient(135deg, #f8f9fc 0%, #eef2ff 100%);
     color: #1A2238;
     min-height: 100vh;
     padding: 20px;
 }

 .ab_mv_container {
     max-width: 1200px;
     background: rgba(255, 255, 255, 0.95);
     backdrop-filter: blur(10px);
     border-radius: 24px;
     box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
     overflow: hidden;
     padding: 3rem;
     margin: 2rem auto;
 }

 .ab_mv_header {
     text-align: center;
     margin-bottom: 4rem;
     position: relative;
 }

 .ab_mv_title {
     font-family: 'Montserrat', sans-serif;
     font-size: 3.5rem;
     font-weight: 800;
     background: linear-gradient(135deg, #2D5BFF, #100069);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     margin-bottom: 1rem;
     letter-spacing: -0.5px;
 }

 .ab_mv_subtitle {
     font-size: 1.25rem;
     color: #6B7280;
     max-width: 600px;
     margin: 0 auto;
     font-weight: 300;
 }

 .ab_mv_content {
     display: flex;
     flex-wrap: wrap;
     gap: 2.5rem;
     margin-bottom: 3rem;
 }

 .ab_mv_card {
     flex: 1;
     min-width: 300px;
     background: white;
     border-radius: 20px;
     padding: 2.5rem;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
     border: 1px solid rgba(255, 255, 255, 0.2);
 }

 .ab_mv_card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 5px;
     height: 100%;
     background: linear-gradient(to bottom, #2D5BFF, #00C2FF);
 }

 .ab_mv_card:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
 }

 .ab_mv_card_header {
     display: flex;
     align-items: center;
     margin-bottom: 1.5rem;
 }

 .ab_mv_icon {
     width: 60px;
     height: 60px;
     border-radius: 16px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-right: 1rem;
     font-size: 1.5rem;
     color: white;
     background: linear-gradient(135deg, #2D5BFF, #7239FF);
     box-shadow: 0 5px 15px rgba(45, 91, 255, 0.3);
 }

 .ab_mv_card_title {
     font-family: 'Montserrat', sans-serif;
     font-size: 1.8rem;
     font-weight: 700;
     color: #1A2238;
 }

 .ab_mv_card_content {
     font-size: 1.1rem;
     color: #6B7280;
     line-height: 1.7;
     padding-left: 0.5rem;
 }

 .ab_mv_values {
     background: linear-gradient(135deg, #110068, #0a0328);
     border-radius: 20px;
     padding: 3rem;
     color: white;
     position: relative;
     overflow: hidden;
 }

 .ab_mv_values::before {
     content: '';
     position: absolute;
     top: -50%;
     right: -50%;
     width: 100%;
     height: 200%;
     background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
 }

 .ab_mv_values_title {
     font-family: 'Montserrat', sans-serif;
     font-size: 2.2rem;
     font-weight: 700;
     margin-bottom: 2rem;
     text-align: center;
     position: relative;
 }

 .ab_mv_values_list {
     display: flex;
     flex-wrap: wrap;
     gap: 1.5rem;
     justify-content: center;
 }

 .ab_mv_value {
     background: rgba(255, 255, 255, 0.1);
     backdrop-filter: blur(10px);
     padding: 1.5rem;
     border-radius: 16px;
     display: flex;
     flex-direction: column;
     align-items: center;
     text-align: center;
     transition: transform 0.3s ease;
     border: 1px solid rgba(255, 255, 255, 0.1);
     width: 200px;
 }

 .ab_mv_value:hover {
     transform: translateY(-5px);
     background: rgba(255, 255, 255, 0.15);
 }

 .ab_mv_value_icon {
     font-size: 2rem;
     margin-bottom: 1rem;
     color: #00C2FF;
 }

 .ab_mv_value_title {
     font-family: 'Montserrat', sans-serif;
     font-weight: 600;
     margin-bottom: 0.5rem;
     font-size: 1.2rem;
 }

 .ab_mv_decoration {
     position: absolute;
     opacity: 0.03;
     font-size: 15rem;
     font-weight: 800;
     z-index: 0;
     pointer-events: none;
 }

 .ab_mv_decoration_1 {
     top: -80px;
     right: -30px;
     transform: rotate(15deg);
     color: #2D5BFF;
 }

 .ab_mv_decoration_2 {
     bottom: -100px;
     left: -30px;
     transform: rotate(-15deg);
     color: #7239FF;
 }

 @media (max-width: 768px) {
     .ab_mv_container {
         padding: 1.5rem;
     }

     .ab_mv_title {
         font-size: 2.5rem;
     }

     .ab_mv_content {
         flex-direction: column;
     }

     .ab_mv_card {
         min-width: 100%;
     }

     .ab_mv_values {
         padding: 2rem 1.5rem;
     }

     .ab_mv_values_list {
         flex-direction: column;
         align-items: center;
     }

     .ab_mv_value {
         width: 100%;
         max-width: 300px;
     }
 }

 /* Animation */
 @keyframes fadeIn {
     from {
         opacity: 0;
         transform: translateY(20px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .ab_mv_animated {
     animation: fadeIn 0.8s ease-out forwards;
 }

 .ab_mv_delay_1 {
     animation-delay: 0.2s;
 }

 .ab_mv_delay_2 {
     animation-delay: 0.4s;
 }

 .ab_mv_delay_3 {
     animation-delay: 0.6s;
 }


 :root {
     --primary: #2D5BFF;
     --secondary: #7239FF;
     --accent: #00C2FF;
     --dark: #1A2238;
     --light: #F8F9FC;
     --gray: #6B7280;
 }

 .ser_sec_body {
     font-family: 'Poppins', sans-serif;
     background: linear-gradient(135deg, #f8f9fc 0%, #eef2ff 100%);
     color: var(--dark);
     /* min-height: 100vh; */
     padding: 20px;
     overflow-x: hidden;
 }

 .ser_sec_container {
     max-width: 1400px;
     background: rgba(255, 255, 255, 0.95);
     backdrop-filter: blur(10px);
     border-radius: 24px;
     box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
     overflow: hidden;
     padding: 3rem;
     margin: 2rem auto;
 }

 .ser_sec_header {
     text-align: center;
     margin-bottom: 4rem;
     position: relative;
 }

 .ser_sec_title {
     font-family: 'Montserrat', sans-serif;
     font-size: 3.5rem;
     font-weight: 800;
     background: linear-gradient(135deg,#193c94, #3878f0);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     margin-bottom: 1rem;
     letter-spacing: -0.5px;
 }

 .ser_sec_subtitle {
     font-size: 1.25rem;
     color: var(--gray);
     max-width: 600px;
     margin: 0 auto;
     font-weight: 300;
 }

 .ser_sec_section {
     margin-bottom: 5rem;
     position: relative;
 }

 .ser_sec_section_title {
     font-family: 'Montserrat', sans-serif;
     font-size: 2.5rem;
     font-weight: 700;
     margin-bottom: 2.5rem;
     padding-bottom: 0.5rem;
     display: inline-block;
     position: relative;
     color: #0078e9;
 }

 .ser_sec_section_title:after {
     content: '';
     position: absolute;
     bottom: -10px;
     left: 0;
     width: 70px;
     height: 4px;
     background: linear-gradient(to right, var(--primary), var(--accent));
     border-radius: 2px;
 }

 .ser_sec_card {
     background: white;
     border-radius: 20px;
     padding: 0;
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
     transition: all 0.4s ease;
     position: relative;
     overflow: hidden;
     height: 100%;
     border: none;
 }

 .ser_sec_card_img {
     height: 220px;
     overflow: hidden;
     position: relative;
 }

 .ser_sec_card_img img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.7s ease;
 }

 .ser_sec_card:hover .ser_sec_card_img img {
     transform: scale(1.1);
 }

 .ser_sec_card_content {
     padding: 2rem;
 }

 .ser_sec_card:hover {
     transform: translateY(-15px);
     box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
 }

 .ser_sec_card_header {
     display: flex;
     align-items: center;
     margin-bottom: 1.5rem;
 }

 .ser_sec_icon {
     width: 70px;
     height: 70px;
     border-radius: 18px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-right: 1.2rem;
     font-size: 1.8rem;
     color: white;
     background: linear-gradient(135deg, #bb2823, #ab140e);
     box-shadow: 0 8px 20px rgba(45, 91, 255, 0.3);
     transition: transform 0.3s ease;
 }

 .ser_sec_card:hover .ser_sec_icon {
     transform: rotate(15deg) scale(1.1);
 }

 .ser_sec_card_title {
     font-family: 'Montserrat', sans-serif;
     font-size: 1.8rem;
     font-weight: 700;
     color: #0277e9;
     margin: 0;
 }

 .ser_sec_card_content_text {
     font-size: 1.1rem;
     color: #717171;
     line-height: 1.7;
 }

 .ser_sec_highlight {
     background: linear-gradient(135deg, #0e2271, #193a93);
     border-radius: 20px;
     padding: 4rem 3rem;
     color: white;
     position: relative;
     overflow: hidden;
 }

 .ser_sec_highlight::before {
     content: '';
     position: absolute;
     top: -50%;
     right: -50%;
     width: 100%;
     height: 200%;
     background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
 }

 .ser_sec_highlight_title {
     font-family: 'Montserrat', sans-serif;
     font-size: 2.5rem;
     font-weight: 700;
     margin-bottom: 2rem;
     position: relative;
 }

 .ser_sec_features {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 1.5rem;
     margin-top: 2.5rem;
 }

 .ser_sec_feature {
     background: rgba(255, 255, 255, 0.1);
     backdrop-filter: blur(10px);
     padding: 1.8rem;
     border-radius: 16px;
     display: flex;
     align-items: center;
     transition: all 0.4s ease;
     border: 1px solid rgba(255, 255, 255, 0.1);
 }

 .ser_sec_feature:hover {
     transform: translateY(-8px);
     background: rgba(255, 255, 255, 0.15);
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
 }

 .ser_sec_feature_icon {
     font-size: 2rem;
     margin-right: 1.5rem;
     color: var(--accent);
     min-width: 40px;
     text-align: center;
 }

 .ser_sec_feature_text {
     font-size: 1.1rem;
     font-weight: 500;
 }

 .ser_sec_decoration {
     position: absolute;
     opacity: 0.03;
     font-size: 18rem;
     font-weight: 800;
     z-index: 0;
     pointer-events: none;
     font-family: 'Montserrat', sans-serif;
 }

 .ser_sec_decoration_1 {
     top: -100px;
     right: -50px;
     transform: rotate(15deg);
     color: var(--primary);
 }

 .ser_sec_decoration_2 {
     bottom: -120px;
     left: -50px;
     transform: rotate(-15deg);
     color: var(--secondary);
 }

 .ser_sec_badge {
     position: absolute;
     top: 20px;
     right: 20px;
     background: linear-gradient(to right, var(--primary), var(--accent));
     color: white;
     padding: 8px 16px;
     border-radius: 30px;
     font-size: 0.9rem;
     font-weight: 600;
     z-index: 2;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
 }

 .ser_sec_img_overlay {
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
     color: white;
     padding: 2rem 1.5rem 1rem;
     transform: translateY(100%);
     transition: transform 0.5s ease;
 }

 .ser_sec_card_img:hover .ser_sec_img_overlay {
     transform: translateY(0);
 }

 @media (max-width: 992px) {
     .ser_sec_container {
         padding: 2rem;
     }

     .ser_sec_title {
         font-size: 2.8rem;
     }

     .ser_sec_features {
         grid-template-columns: 1fr;
     }

     .ser_sec_highlight {
         padding: 3rem 2rem;
     }
 }

 @media (max-width: 768px) {
     .ser_sec_container {
         padding: 1.5rem;
     }

     .ser_sec_title {
         font-size: 2.3rem;
     }

     .ser_sec_section_title {
         font-size: 2rem;
     }

     .ser_sec_card_header {
         flex-direction: column;
         text-align: center;
     }

     .ser_sec_icon {
         margin-right: 0;
         margin-bottom: 1rem;
     }
 }

 /* Animation for elements */
 .ser_sec_animated {
     opacity: 0;
     transform: translateY(30px);
     transition: opacity 0.8s ease, transform 0.8s ease;
 }

 .ser_sec_animated.visible {
     opacity: 1;
     transform: translateY(0);
 }

 /* Pulse animation for icons */
 @keyframes pulse {
     0% {
         transform: scale(1);
     }

     50% {
         transform: scale(1.05);
     }

     100% {
         transform: scale(1);
     }
 }

 .ser_sec_pulse {
     animation: pulse 2s infinite ease-in-out;
 }

  .ser_quote_modal .modal-content {
            border-radius: 20px;
            border: none;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(2, 136, 209, 0.2);
        }
        
        .ser_quote_header {
            background: linear-gradient(135deg, #03a9f4 0%, #0288d1 100%);
            color: white;
            border-bottom: none;
            padding: 25px 30px 20px;
        }
        
        .ser_quote_title {
            font-weight: 700;
            font-size: 1.8rem;
            margin: 0;
        }
        
        .ser_quote_close {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            color: white;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .ser_quote_close:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: rotate(90deg);
        }
        
        .ser_quote_body {
            padding: 30px;
        }
        
        .ser_quote_form_group {
            margin-bottom: 20px;
        }
        
        .ser_quote_label {
            color: #0277bd;
            font-weight: 600;
            margin-bottom: 8px;
            display: block;
        }
        
        .ser_quote_input {
            border: 1px solid #b3e5fc;
            border-radius: 10px;
            padding: 12px 15px;
            font-size: 1rem;
            transition: all 0.3s;
            background-color: #f1f8ff;
            width: 100%;
        }
        
        .ser_quote_input:focus {
            border-color: #03a9f4;
            outline: none;
            box-shadow: 0 0 0 0.2rem rgba(3, 169, 244, 0.25);
            background-color: #ffffff;
        }
        
        .ser_quote_textarea {
            min-height: 120px;
            resize: vertical;
        }
        
        .ser_quote_submit {
            background: linear-gradient(to right, #0288d1, #03a9f4);
            color: white;
            border: none;
            width: 100%;
            padding: 14px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
            box-shadow: 0 4px 10px rgba(2, 136, 209, 0.3);
        }
        
        .ser_quote_submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(2, 136, 209, 0.4);
        }
        
        .ser_quote_success {
            display: none;
            background: #4caf50;
            color: white;
            padding: 15px;
            border-radius: 10px;
            margin-top: 20px;
            text-align: center;
            font-weight: 500;
        }
        
        .ser_quote_icon {
            text-align: center;
            margin-bottom: 10px;
        }
        
        .ser_quote_icon i {
            font-size: 3rem;
            color: #03a9f4;
        }
        
        /* Custom trigger button styling */
        .ser_quote_trigger {
            background: linear-gradient(135deg, #03a9f4 0%, #0288d1 100%);
            color: white;
            border: none;
            padding: 12px 30px;
            font-size: 1.1rem;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(2, 136, 209, 0.3);
        }
        
        .ser_quote_trigger:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(2, 136, 209, 0.4);
        }

        .products_container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
        }
        
        .products_title {
            color: #0369a1;
            font-weight: 800;
            margin-bottom: 50px;
            text-align: center;
            font-size: 2.8rem;
        }
        
        .products_grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .products_card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: none;
        }
        
        .products_card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .products_card_img {
            height: 220px;
            overflow: hidden;
            position: relative;
        }
        
        .products_card_img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .products_card:hover .products_card_img img {
            transform: scale(1.05);
        }
        
        .products_card_badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: #2a61c8;
            color: white;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            z-index: 2;
        }
        
        .products_card_body {
            padding: 25px;
        }
        
        .products_card_title {
            color: #0c4a6e;
            font-weight: 700;
            margin-bottom: 15px;
            font-size: 1.4rem;
        }
        
        .products_card_text {
            color: #64748b;
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .products_features {
            list-style: none;
            padding: 0;
            margin: 0 0 25px;
        }
        
        .products_features li {
            padding: 8px 0;
            color: #475569;
            position: relative;
            padding-left: 30px;
        }
        
        .products_features li::before {
            content: '✓';
            position: absolute;
            left: 0;
                color: #b82724;
    font-weight: bold;
    background: #ba272317;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
        }
        
        .products_btn {
            background: linear-gradient(to right, #0369a1, #0ea5e9);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .products_btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(3, 105, 161, 0.4);
            color: white;
        }
        
        @media (max-width: 768px) {
            .products_title {
                font-size: 2.2rem;
            }
            
            .products_grid {
                grid-template-columns: 1fr;
            }
        }