    body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.7;
            font-size: 16px;
        }
         .data {

    margin-top:50px;
  
    
  
    padding:4rem;
  
    font-size:1.4rem;
  
    min-height:62vh;
  
    
  
  }
  

        /* Header */
        .site-header {
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #06b6d4 100%);
            color: white;
            padding: 0;
            position: relative;
            overflow: hidden;
        }

        .site-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="70" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
        }

        .navbar-custom {
            background: transparent;
            border: none;
            padding: 20px 0;
            position: relative;
            z-index: 10;
        }

        .navbar-brand {
            color: white !important;
            font-size: 24px;
            font-weight: bold;
        }

        .navbar-nav > li > a {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
        }

        .navbar-custom .navbar-toggle {
            border-color: rgba(255,255,255,0.3);
        }

        .navbar-custom .navbar-toggle .icon-bar {
            background-color: white;
        }

        .navbar-custom .navbar-collapse {
            border-color: rgba(255,255,255,0.1);
        }

        .hero-content {
            padding: 80px 0 120px;
            text-align: center;
            position: relative;
            z-index: 5;
        }

        .hero-title {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 25px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
            text-align: center;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 1.4rem;
            opacity: 0.9;
            margin-bottom: 30px;
            text-align: center;
        }

        .arrow-graphics {
            position: absolute;
            right: 10%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.3;
        }

        .arrow-up {
            width: 0;
            height: 0;
            border-left: 20px solid transparent;
            border-right: 20px solid transparent;
            border-bottom: 40px solid rgba(255,255,255,0.6);
            margin: 10px;
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        /* Main Content */
        .main-content {
            background: white;
            min-height: 100vh;
        }

        .content-wrapper {
            padding: 60px 0;
        }

        .breadcrumb-custom {
            background: none;
            padding: 20px 0;
            margin: 0;
            border-bottom: 1px solid #eee;
        }

        .breadcrumb-custom a {
            color: #666;
            text-decoration: none;
        }

        .article-header {
            margin: 40px 0;
        }

        .article-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: #1a1a1a;
            line-height: 1.3;
            margin-bottom: 25px;
        }

        .article-meta {
            color: #666;
            font-size: 16px;
            margin-bottom: 35px;
        }

        .featured-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 8px;
            margin: 30px 0;
        }

        .content-text {
            font-size: 18px;
            line-height: 1.8;
            color: #333;
            margin-bottom: 35px;
        }

        .content-text p {
            margin-bottom: 25px;
        }

        .content-text strong {
            color: #1a1a1a;
            font-weight: 600;
        }

        /* Section Styling */
        .section-header {
            font-size: 1.8rem;
            font-weight: 600;
            color: #1a1a1a;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #3b82f6;
        }

        .why-matters-box {
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            padding: 30px;
            margin: 30px 0;
        }

        .why-matters-title {
            font-size: 1.4rem;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 20px;
        }

        .benefits-list {
            list-style: none;
            padding: 0;
        }

        .benefits-list li {
            padding: 10px 0;
            position: relative;
            padding-left: 30px;
            border-bottom: 1px solid #f1f5f9;
        }

        .benefits-list li:last-child {
            border-bottom: none;
        }

        .benefits-list li::before {
            content: '▶';
            position: absolute;
            left: 0;
            color: #3b82f6;
            font-size: 12px;
            top: 12px;
        }

        /* Step Cards */
        .step-section {
            margin: 60px 0;
        }

        .step-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 25px;
            position: relative;
            padding-left: 60px;
            display: flex;
            align-items: center;
        }

        .step-title::before {
            content: attr(data-step);
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            font-weight: bold;
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
        }

        .step-content {
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            padding: 35px;
            margin-bottom: 25px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .step-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #3b82f6, #06b6d4);
        }

        .step-content:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        }

        .step-question {
            background: linear-gradient(135deg, #eff6ff, #dbeafe);
            border: 1px solid #3b82f6;
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            position: relative;
        }

        .step-question::before {
            content: '❓';
            position: absolute;
            left: -8px;
            top: -8px;
            background: #3b82f6;
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
        }

        .step-question strong {
            color: #1e40af;
            font-size: 16px;
        }

        .step-list {
            list-style: none;
            padding: 0;
            margin: 20px 0;
        }

        .step-list li {
            padding: 12px 0;
            position: relative;
            padding-left: 35px;
            font-size: 16px;
            border-bottom: 1px solid #f1f5f9;
        }

        .step-list li:last-child {
            border-bottom: none;
        }

        .step-list li::before {
            content: '▶';
            position: absolute;
            left: 0;
            color: #3b82f6;
            font-weight: bold;
            font-size: 14px;
            top: 12px;
        }

        .fixes-box {
            background: linear-gradient(135deg, #f0fdf4, #dcfce7);
            border: 1px solid #16a34a;
            border-radius: 10px;
            padding: 20px;
            margin-top: 20px;
            position: relative;
        }

        .fixes-box::before {
            content: '🔧';
            position: absolute;
            left: -8px;
            top: -8px;
            background: #16a34a;
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
        }

        .fixes-title {
            color: #16a34a;
            font-weight: 700;
            margin-bottom: 12px;
            font-size: 16px;
        }

        .fixes-box p {
            margin: 0;
            font-size: 16px;
            line-height: 1.6;
        }

        .ai-section {
            background: #fefbff;
            border: 1px solid #e879f9;
            border-radius: 8px;
            padding: 30px;
            margin: 40px 0;
        }

        .ai-title {
            font-size: 1.4rem;
            font-weight: 600;
            color: #7c3aed;
            margin-bottom: 15px;
        }

        /* Sidebar */
        .sidebar {
            background: white;
            padding: 0;
        }

        .sidebar-section {
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            margin-bottom: 30px;
            overflow: hidden;
        }

        .sidebar-header {
            background: #f8fafc;
            padding: 15px 20px;
            font-weight: 600;
            color: #1a1a1a;
            border-bottom: 1px solid #e2e8f0;
        }

        .sidebar-content {
            padding: 20px;
        }

        .recent-post {
            display: flex;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #f1f5f9;
        }

        .recent-post:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }

        .recent-post-image {
            width: 80px;
            height: 60px;
            object-fit: cover;
            border-radius: 4px;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .recent-post-content h5 {
            font-size: 14px;
            font-weight: 600;
            margin: 0 0 5px;
            line-height: 1.3;
        }

        .recent-post-content a {
            color: #1a1a1a;
            text-decoration: none;
        }

        .recent-post-content a:hover {
            color: #3b82f6;
        }

        .recent-post-date {
            font-size: 12px;
            color: #666;
        }

        .category-list {
            list-style: none;
            padding: 0;
        }

        .category-list li {
            padding: 8px 0;
            border-bottom: 1px solid #f1f5f9;
            display: flex;
            justify-content: space-between;
        }

        .category-list li:last-child {
            border-bottom: none;
        }

        .category-list a {
            color: #4b5563;
            text-decoration: none;
            font-size: 14px;
        }

        .category-list a:hover {
            color: #3b82f6;
        }

        .category-count {
            color: #9ca3af;
            font-size: 12px;
        }

        /* Footer */
        .site-footer {
            background: #1f2937;
            color: white;
            padding: 60px 0 30px;
        }

        .footer-section h4 {
            color: white;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #d1d5db;
            text-decoration: none;
            font-size: 14px;
        }

        .footer-links a:hover {
            color: white;
        }

        .footer-bottom {
            border-top: 1px solid #374151;
            padding-top: 20px;
            margin-top: 40px;
            text-align: center;
            color: #9ca3af;
            font-size: 14px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .article-title {
                font-size: 2rem;
            }
            
            .arrow-graphics {
                display: none;
            }
            
            .content-wrapper {
                padding: 30px 0;
            }
        }
         /* signup page */

 .signup-wrapper{

  padding: 4rem; 

  height: 100%;

  display: flex;

  justify-content: center;

  align-items: center;



 }

 .signup-form{

      margin-top:60px;

  position: relative;

  width: 100%;

  max-width: 600px;

  padding: 60px 40px 40px;

  /* background: rgba(0,0,0,0.7); */

  border:2px solid #1e40af;

  border-radius: 10px;

  color: #fff;
  background: #fff;

  box-shadow: 0 15px 25px rgba(0,0,0,0.5);

 }



.signup-form h2 {

  text-align: center;

  letter-spacing: 4px;

  margin-bottom: 2rem;

  font-size: 2.4rem;

  color: #1e40af;

}

.signup-form .input-group {

  position: relative;

  width:100%;

}

.signup-form .input-group input,textarea,select {

  width: 100%;

  padding: 10px 0;

  font-size: 1.4rem;

  color:#333;

  letter-spacing: 1px;

  margin-bottom: 30px;

  border: none;

  border-bottom: 1px solid rgba(0,0,0,0.2);

  outline: none;

  background-color: transparent;

  resize: none;

}

.signup-form .input-group label{

    color: #444;

    font-size: 1.4rem;

}

.submit-btn {

   display: block;

   margin-left: auto;

   border: none;

   outline: none;

   background: #1e40af;

   font-size: 1.4rem;

   text-transform: uppercase;

   letter-spacing: 1px;

   padding: 10px 20px;

   border-radius: 5px;

   color: #fff;

   cursor: pointer;

   margin-bottom: 1.2rem;

 }

  /* login-form */

.login-wrapper {

    padding:7rem ;

  

   display: flex;

   justify-content: center;

   align-items: center;

 }

 .form {

     margin-top:40px;

   position: relative;

   width: 100%;

   max-width: 380px;

   padding: 80px 40px 40px;

   /* background: rgba(0,0,0,0.7); */

   border:2px solid #1e40af;
   background: #fff;

   border-radius: 10px;

   color: #fff;

   box-shadow: 0 15px 25px rgba(0,0,0,0.5);

 }

 

 .form img {

   position: absolute;

   top: -50px;

   left: calc(50% - 50px);

   width: 100px;

   background: rgba(255,255,255, 0.8);

   border-radius: 50%;

 }

 .form h2 {

   text-align: center;

   letter-spacing: 4px;

   margin-bottom: 2rem;

   font-size: 2.4rem;

   color: #1e40af;

 }

 .form .input-group {

   position: relative;

 }

 .form .input-group input {

   width: 100%;

   padding: 10px 0;

   font-size: 1.4rem;

   color:#111;

   letter-spacing: 1px;

   margin-bottom: 30px;

   border: none;

   border-bottom: 1px solid #777;

   outline: none;

   background-color: transparent;

 }

 .form .input-group label{

     color: #333;

     font-size: 1.4rem;

 }

  /* advertise page */

.content-top{

 margin-top:80px;



  text-align: center;

  list-style-type: none;

 

}

.content-top h2{

  color: #272F38;

  padding: 1rem;

  

  font-size: 2.1rem;

}

.content-top li{

  padding:.5rem;

  color: #384350;

  font-size: 1.4rem;

}

.content-top ul{

  list-style-type: none;

}
/*dashboard*/
.dash-container{
  position: relative;
  width:  100%;
  display:flex;

  margin: 0rem auto;
 min-height: 100vh;
 margin-top: 78px;

  
  
}
.dash{
    padding:1rem;
}
.dash-nav{
  position: absolute;
  top: 0;
  width :250px;
  height: 100%;
  background:#1e40af;
  transition: 0.5s;
  /*overflow: hidden;*/
}
.dash-nav.active{
  width: 10px;

}
.dash-nav ul{
  position: absolute;
  top:0;
  left:0;
  width:100%
}
.dash-nav ul li{
  position: relative;
  width:100%;
  list-style: none;
}
.dash-nav ul li:hover{
  background:#962ac8;
  cursor:pointer;

}
/*.dash-nav ul li:nth-child(1){*/
/*  margin-bottom:20px ;*/
/*}*/

.dash-nav ul li:nth-child(1):hover{
  background: transparent;
}
.dash-nav ul li a h2{
  font-size: 15px;
  
 
}
.dash-nav .link .dash-title h2{
    margin-top:0px;
    margin-bottom:10px;
}



.dash-nav ul li .link{
   
   padding:.5rem;
  position: relative;
  display: block;
  width: 100%;
  /*display: flex;*/
  text-decoration: none;
  color:#fff;
  font-size: 12px;
  border-bottom:1px solid rgba(0,0,0,0.2);
  

}
.dash-nav ul li a{
    color:#fff;
    text-decoration:none;
    text-align:left;
    font-size:1.6rem;
}
/*.dash-nav ul li a .icon{*/
/*  position: relative;*/
/*  display: block;*/
/*  min-width: 60px;*/
/*  height: 60px;*/
/*  line-height: 60px;*/
/*  text-align: center;*/

/*}*/
.dash-nav ul li a .icon .fab{
  color: #fff;
  font-size: 15px;
}
.dash-nav ul li  .dash-title{
  position: relative;
 
  display: block;
  padding: 0 30px;
  /*height: 60px;*/
  line-height: 25px;
  white-space: nowrap;
}
.dash-nav ul li a .brand{
  text-transform: uppercase;
  font-size: 15px;
}
.main-container{
  position: relative;
  width: calc(100% - 250px);
 
  left:250px;
  /* min-height: 100vh; */
  /*background: #f5f5f5;*/
  transition: 0.5s;
}
.main-container.active{
  width: calc(100% - 10px);
  left:10px;
}


.main-container .topbar{
  width: 100%;
  background: rgb(181 179 179 / 30%);
  height: 60px;
  padding-left: 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.toggle h4{
  position: absolute;
    top: 13px;
    left: 49px;
}
.toggle{
  position: relative;
  width: 60px;
  height: 60px;
  
  cursor: pointer;
}
.toggle::before{
  content: '\f007';
  font-family: "Font Awesome 5 Free";
  position: absolute;
  width: 100%;
  height: 100%;
  line-height: 60px;
  font-size: 24px;
  text-align: center;
  color: #111;
}



/* media queries  */
  
  @media (max-width:991px){
  
      html{
          font-size: 55%;
      }
      .dash-nav{
        left:-300px;
    }
    .dash-nav.active{
        left:0;
    }
   
    .main-container{
        width:100%;
        left:0px;   
  
    }
  
  }
  
  @media (max-width:768px){
  
      #menu{
          display: block;
      }
  
      .main-header .main-navbar{
          position: absolute;
          top:100%; left: 0;
          width:100%;
          background:#fff;
          border-top: .1rem solid rgba(0,0,0,.1);
          padding:2rem;
          transform-origin: top;
          transform:scaleY(0);
          opacity: 0;
      }
  
      .main-header .main-navbar.nav-toggle{
          transform:scaleY(1);
          opacity: 1;
      }
  
      .main-header .main-navbar a{
          display: block;
          margin: 2rem 0;
          padding:0 1rem;
          font-size: 2.2rem;
         color: #1e40af;
      }
  
      .home{
          background:linear-gradient(rgba(0,0,0,.7), rgba(0,0,0,.7)), url(../images/bg.png) no-repeat;
          background-size: cover;
          background-position: right;
      }
  
      .home .content{
          text-align: center;
          width:auto;
      }
  
      .home .content h3{
          font-size: 4rem;
      }
  
      section{
          padding:0 3%;
          padding-top: 8rem;
      }
      .section-1 .row .content{
          text-align: center;
          padding-bottom: 4rem;
      }
      
      .features{
          flex-flow: column;
        }
        .about {
            gap: 3rem;
           
          }
          .about .image {
            margin-top: 5rem;
          }
          .about .content .title {
            font-size: 3rem;
          }
          .review{
            min-height: auto;
          }
          .signup-wrapper , .login-wrapper{
            padding:3rem 2rem;
        }
        .dash-container{
          margin-top: 90px;
        }
  
  }
  
  @media (max-width:400px){
  
      html{
          font-size: 50%;
      }
  
      .project .box-container .box{
          width: 100%;
      }
      .features{
          flex-flow: column;
        }
      
        .features .stick{
          display: none;
        }
      
      
  
      
  
  }
  @media(max-width:480px){
   
    .dash-nav{
        width: 100%;
        left: -100%;
        z-index: 1;
    }
    .dash-nav.active{
        width: 100%;
        left:0;
    }
  
    .toggle.active{
        /* position: fixed; */
        z-index: 1;
        right: 0;
        left:275px;
       
  
    }
    .toggle.active::before{
        color:#fff;
    }
    
    .dash-ban{
              left:0;
          }
          .dash-bottom{
              left:0;
              
          }
          .dash-container{
              width:100%;
          }
          
          
              .topbar h4{
                  display:block;
              }
              .toggle.active h4{
                  display:none;
                  
              }
              
              
    
  }