@charset "utf-8";
/* CSS Document */
:root {
    --bg-color: #edf3fa;
    --bg-grey: #f6f8fa;
    --theme-color1: #e2332e;
    --blue: #3490dc;
    --indigo: #6574cd;
    --purple: #9561e2;
    --pink: #f66d9b;
    --red: #e3342f;
    --orange: #f6993f;
    --yellow: #ffed4a;
    --green: #38c172;
    --teal: #4dc0b5;
    --cyan: #6cb2eb;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #3490dc;
    --secondary: #6c757d;
    --success: #38c172;
    --info: #6cb2eb;
    --warning: #ffed4a;
    --danger: #e3342f;
    --light: #f8f9fa;
    --dark: #343a40;
    }

body{
	margin:0px;
	padding:0px;
	height:100%;
	font-family: "Roboto", Sans-serif;
	background:var(--white);
	color:#555;
    
}

.bg{
	background-color: var(--bg-grey);
	min-height: 600px;
	min-width: 100%;	
	overflow-x: hidden;
}

/** Menu Bar CSS Start **/
.topnav {
    overflow: hidden;
    background-color: var(--white);
    border-bottom: 1px solid #d0d0d0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .topnav a {
    float: left;
    display: block;
    color: #000000;
    text-align: center;
    text-decoration: none;
  }  

  .topnav .mb_resp a {    
    padding: 14px 16px;    
    font-size: 1.1rem;
  }
  .topnav .mb_resp a:hover {
    color: var(--theme-color1);
    border-bottom: 2px solid var(--theme-color1);
  }
  
  .topnav a.active {
    color: var(--theme-color1);
  }
  
  .topnav .icon {
    display: none;
  }

  .topnav img.logo {
    float: left;
    margin: 0.5rem 1rem 0.5rem 2rem;
    height: 50px;
  }

  .menu_bar{
    margin: 0.5rem 2rem 0.5rem 1rem;
    font-size: 1rem;
    float: right;
  }
  
  @media screen and (max-width: 650px) {
    .topnav a:not(:first-child) {display: none;}
    .topnav a.icon {
      float: right;
      display: block;
      font-size: 2rem;
    color: var(--theme-color1);
    }
    .topnav .menu_bar .miconbox{
        margin: 1rem auto 0.5rem;
    }

    .topnav .mb_resp a.logo {
      display: block;
    }
    .topnav.responsive {position: relative;}
    .topnav.responsive .icon {
        margin: 0.5rem auto 0.5rem;
    }
    .topnav.responsive .mb_resp a {
      float: none;
      display: block;
      text-align: center;
      margin: 1rem;
    }

    .topnav .mb_resp a {        
      display: none;
    }
    .mb_resp{
        padding-top: 50px;
    }
    .menu_bar{
        float: none;
      }
  }

/** Menu Bar CSS End **/

/** Main Container Start**/
.msection{
    max-width: 1360px;
    margin:auto;
    padding:1rem;
}
.main-cont {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px;
}

.content {
    flex: 3;
    padding-right: 20px;
}

.tbheader{
    text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
}

.mheading {
  background: var(--blue);
  color: white;
  text-align: center;
  padding: 0.5rem;
  margin-top: 0rem;
  margin-bottom: 1rem;
  font-size: 1.7rem;
  font-weight: bold;
}

.content .contbox{
    background-color: white;
    padding:1rem;
    margin-bottom: 2rem;
    border: 1px solid #e4e7ed;
    box-shadow: 0 1px 8px rgba(191, 203, 255, .25);
}

.sidebar {
    flex: 1;
    background-color: var(--white);
    padding: 20px;
    max-width: 250px;
    height: 100%;
    border: 1px solid #e4e7ed;
    box-shadow: 0 1px 8px rgba(191, 203, 255, .25);
}

.sidebar h2 {
    margin-top: 0;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}
.sidebar ul li {
    position: relative; 
    margin-bottom: 10px;
    border-bottom: 1px solid black;
    padding: 1rem 1rem;
    font-size: 0.8rem;
}

.sidebar ul li a:hover {    
    color:var(--theme-color1);
}

.sidebar ul li::before {
    content: '\2022';
    color: var(--theme-color1); 
    position: absolute;
    left: 0px;
    font-size: 1rem;
}


.sidebar ul li a {
    text-decoration: none;
    color: #333;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 0.5rem 0rem;
    position: fixed;
    width: 100%;
    bottom: 0;
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    .main-cont {
        flex-direction: column;
        margin-bottom: 5rem;
    }

    .content, .sidebar {
        flex: 1 0 100%;
        padding: 10px;
    }

    .content {
        order: 1;
    }

    .sidebar {
        order: 2;
        margin: 1rem 0.5rem;
        padding: 1rem;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    header {
        padding: 0.5rem 0;
    }

    .main-cont {
        padding: 10px;
        margin-bottom: 5rem;
    }
    .sidebar {
        margin: 1rem 0.5rem;
        padding: 1rem 2rem;
        max-width: 100%;
    }
    .sidebar ul li {
        margin-bottom: 5px;
    }

    footer {
        padding: 0.5rem 0rem;
    }
}


/**Tools Section Start**/
.tbbox{
    padding: 1rem;
}

.tools-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.tool-item {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    width: 150px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    min-height: 64px;
}

.tool-item:hover {
    transform: translateY(-5px);
    cursor: pointer;
}

.tool-icon {
    font-size: 1rem ;
    margin-bottom: 10px;
    color: #ff5722;
}

.tool-title {
    font-size: 1rem;
    margin: 0;
}
.tool-link{
    text-decoration: none;
    color: inherit;
}

@media (max-width: 600px) {
    .tools-container {
        flex-direction: column;
        align-items: center;
    }

    .tool-item {
        width: 220px;
    }
}
/**Tools Section Start**/


/** Main Container End**/