
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background: #fbfbfd;
            color: #4b505e;
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
        /* Header styles */
        header {
            background: white;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            padding: 20px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
        }
        
        .logo {
            font-size: 28px;
            font-weight: 700;
            color: #5e2ced;
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        
        .logo i {
            margin-right: 12px;
            font-size: 32px;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            margin: 0 20px;
        }
        
        .nav-menu li {
            margin: 0 15px;
        }
        
        .nav-menu a {
            text-decoration: none;
            color: #4b505e;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 8px 5px;
            position: relative;
        }
        
        .nav-menu a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: #5e2ced;
            transition: all 0.3s ease;
        }
        
        .nav-menu a:hover {
            color: #5e2ced;
        }
        
        .nav-menu a:hover:after {
            width: 100%;
        }
        
        .contact-info {
            display: flex;
            align-items: center;
            background: #f5f7fb;
            padding: 10px 20px;
            border-radius: 50px;
        }
        
        .contact-info i {
            color: #5e2ced;
            font-size: 20px;
            margin-right: 10px;
        }
        
        .contact-info span {
            font-weight: 500;
        }
        
        /* Main content placeholder */
        .main-content {
            flex: 1;
            padding: 60px 5%;
            text-align: center;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }
        
        .main-content h1 {
            font-size: 42px;
            margin-bottom: 20px;
            color: #2c3e50;
        }
        
        .main-content p {
            font-size: 18px;
            color: #6a7695;
            max-width: 800px;
            margin: 0 auto 30px;
            line-height: 1.8;
        }
        
        .cta-button {
            display: inline-block;
            background: #5e2ced;
            color: white;
            padding: 14px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            margin: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(94, 44, 237, 0.2);
        }
        
        .cta-button:hover {
            background: #4a1dc2;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(94, 44, 237, 0.3);
        }
        
        /* Footer styles - exactly as provided */
        .new_footer_area {
            background: #fbfbfd;
        }

        .new_footer_top {
            padding: 120px 0px 270px;
            position: relative;
            overflow: hidden;
        }
        
        .new_footer_area .footer_bottom {
            padding-top: 5px;
            padding-bottom: 50px;
        }
        
        .footer_bottom {
            font-size: 14px;
            font-weight: 300;
            line-height: 20px;
            color: #7f88a6;
            padding: 27px 0px;
        }
        
        .new_footer_top .company_widget p {
            font-size: 16px;
            font-weight: 300;
            line-height: 28px;
            color: #6a7695;
            margin-bottom: 20px;
        }
        
        .new_footer_top .company_widget .f_subscribe_two .btn_get {
            border-width: 1px;
            margin-top: 20px;
        }
        
        .btn_get_two:hover {
            background: transparent;
            color: #5e2ced;
        }
        
        .btn_get:hover {
            color: #fff;
            background: #6754e2;
            border-color: #6754e2;
            box-shadow: none;
        }
        
        a:hover, a:focus, .btn:hover, .btn:focus, button:hover, button:focus {
            text-decoration: none;
            outline: none;
        }

        .new_footer_top .f_widget.about-widget .f_list li a:hover {
            color: #5e2ced;
        }
        
        .new_footer_top .f_widget.about-widget .f_list li {
            margin-bottom: 11px;
        }
        
        .f_widget.about-widget .f_list li:last-child {
            margin-bottom: 0px;
        }
        
        .f_widget.about-widget .f_list li {
            margin-bottom: 15px;
        }
        
        .f_widget.about-widget .f_list {
            margin-bottom: 0px;
        }
        
        .new_footer_top .f_social_icon a {
            width: 44px;
            height: 44px;
            line-height: 43px;
            background: transparent;
            border: 1px solid #e2e2eb;
            font-size: 24px;
        }
        
        .f_social_icon a {
            width: 46px;
            height: 46px;
            border-radius: 50%;
            font-size: 14px;
            line-height: 45px;
            color: #858da8;
            display: inline-block;
            background: #ebeef5;
            text-align: center;
            transition: all 0.2s linear;
        }
        
        .btn_get_two {
            box-shadow: none;
            background: #5e2ced;
            border-color: #5e2ced;
            color: #fff;
        }

        .btn_get_two:hover {
            background: transparent;
            color: #5e2ced;
        }

        .new_footer_top .f_social_icon a:hover {
            background: #5e2ced;
            border-color: #5e2ced;
            color: white;
        }
        
        .new_footer_top .f_social_icon a + a {
            margin-left: 4px;
        }
        
        .new_footer_top .f-title {
            margin-bottom: 30px;
            color: #263b5e;
        }
        
        .f_600 {
            font-weight: 600;
        }
        
        .f_size_18 {
            font-size: 18px;
        }
        
        h1, h2, h3, h4, h5, h6 {
            color: #4b505e;
        }
        
        .new_footer_top .f_widget.about-widget .f_list li a {
            color: #6a7695;
        }

        .new_footer_top .footer_bg {
            position: absolute;
            bottom: 0;
            background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEigB8iI5tb8WSVBuVUGc9UjjB8O0708X7Fdic_4O1LT4CmLHoiwhanLXiRhe82yw0R7LgACQ2IhZaTY0hhmGi0gYp_Ynb49CVzfmXtYHUVKgXXpWvJ_oYT8cB4vzsnJLe3iCwuzj-w6PeYq_JaHmy_CoGoa6nw0FBo-2xLdOPvsLTh_fmYH2xhkaZ-OGQ/s16000/footer_bg.png") no-repeat scroll center 0;
            width: 100%;
            height: 266px;
        }

        .new_footer_top .footer_bg .footer_bg_one {
            background: url("/assets/img//footer/truck.png") no-repeat center center;
            width: 330px;
            height: 105px;
            background-size:100%;
            position: absolute;
            bottom: 0;
            left: 0;
            animation: myfirst 22s linear infinite;
        }

        .new_footer_top .footer_bg .footer_bg_two {
            background: url("/assets/img/footer/truck-2.png") no-repeat center center;
            width: 350px;
            height: 100px;
            background-size:100%;
            position: absolute;
            bottom: 0;
            left: 0;
            animation: myfirst 30s linear infinite;
            animation-delay: 2s;
        }

         .new_footer_top .footer_bg .footer_bg_three {
            background: url("/assets/img//footer/truck-3.png") no-repeat center center;
            width: 330px;
            height: 105px;
            background-size:100%;
            position: absolute;
            bottom: -23px;
        
            right: 0;
            animation: mythird 22s linear infinite;
        }
        @keyframes myfirst {
          0% {
            left: -25%;
          }
          100% {
            left: 100%;
          }
        }

        @keyframes mythird {
          0% {
            right: -25%;
          }
          100% {
            right: 100%;
          }
        }

        
        
        /* Responsive styles */
        @media (max-width: 992px) {
            header {
                flex-direction: column;
                text-align: center;
            }
            
            .nav-menu {
                margin: 20px 0;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .nav-menu li {
                margin: 10px;
            }
            
            .contact-info {
                margin-top: 15px;
            }
            
            .new_footer_top {
                padding: 80px 0px 220px;
            }
        }
        
        @media (max-width: 767px) {
            .new_footer_top {
                padding: 60px 0px 180px;
            }
            
            .main-content h1 {
                font-size: 32px;
            }
            
            .main-content p {
                font-size: 16px;
            }
        }

 
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  text-align: center;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 4px 4px 10px rgba(0,0,0,0.4);
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}
 