/* Tool Name Heading */
h2.toolname {
	background: linear-gradient(to right, #e5c0e3, #AF4CA9, #a02498, #e5c0e3);
  padding: 30px;
  color: #fff!important;
  font-size: 28pt;
	border-radius: 1px;
        margin-bottom: 20px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        text-align: center;
}


h2.beautifullines {
	background: linear-gradient(to right, #E1E1E1, #8bc34a, #8e4173, #7A2F60, #8e4173, #8bc34a, #E1E1E1);
	margin-top: 80px;
  padding: 30px;
  color: #fff!important;
  font-size: 28pt;
	border-radius: 1px;
        margin-bottom: 20px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        text-align: center;
}

h2.profession-wise {
	background: linear-gradient(to right, #cce7ff, #DA1F4B, #DA1F4B, #DA1F4B, #cce7ff);
	margin-top: 80px;
  padding: 30px;
  color: #fff!important;
  font-size: 28pt;
	border-radius: 1px;
        margin-bottom: 20px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        text-align: center;
}

/* Total Count Heading */
h2.profession-lines  {
	background: linear-gradient(to right, #FF7E5F, #3498DB, #2ECC71, #FF7E5F);
	margin-top: 80px;
  padding: 30px;
  color: #fff!important;
  font-size: 28pt;
	border-radius: 1px;
        margin-bottom: 20px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        text-align: center;
}

/* Total Count Heading */
h2.total-count {
	background: linear-gradient(to right, #E0E9F9, #4750c6, #4750c6, #C6D7FF);
  padding: 30px;
  color: #fff!important;
  font-size: 28pt;
	border-radius: 1px;
        margin-bottom: 20px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        text-align: center;
}


/* Gender Wise Heading */
h2.gender-distribution {
  background: linear-gradient(to right, #3C9300, #FF4FA7);
  padding: 30px;
  color: #fff!important;
  font-size: 28pt;
	border-radius: 1px;
        margin-bottom: 20px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        text-align: center;
}


/* Age Wise Heading */
h2.age-information {
  background: linear-gradient(to right, #391437, #FF4FA7, #9558D5, #3C9300);
  padding: 30px;
  color: #fff!important;
  font-size: 28pt;
	border-radius: 1px;
        margin-bottom: 20px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        text-align: center;
}


/* Additional percentage Bars Heading */
h2.additional-information {
  background: linear-gradient(to right, #391437, #9558D5);
  padding: 30px;
  color: #fff!important;
  font-size: 28pt;
	border-radius: 1px;
        margin-bottom: 20px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        text-align: center;
}


/* Year Graph Heading */
.graph-main h2 {
	background: linear-gradient(to right,  red, #FDD0B5, orange, #007BFF);
  padding: 30px;
  color: #fff!important;
  font-size: 28pt;
	border-radius: 1px;
        margin-bottom: 20px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        text-align: center;
}


/* State Wise Heading */
.stateWiseUsages h2 {
  background: linear-gradient(to right,  #9558D5, red, #007BFF);
  padding: 30px;
  color: #fff!important;
  font-size: 28pt;
	border-radius: 1px;
        margin-bottom: 20px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        text-align: center;
}

/* States blocks */
div.state-block {
  background: #9558d5;
}

@media screen and (min-width: 768px) {
    .state-block {
        width: 30.5%!important;
        margin-left: 5px!important;
        margin-right: 5px!important;
    }
}

@media screen and (max-width: 767px) {
    .state-block {
        width: 100%!important; /* Full-width blocks with some padding */
        margin-left: auto; /* Center align */
        margin-right: auto; /* Center align */
        margin-bottom: 15px; /* Adjust spacing between blocks */
    }
}

.state-block {
  background-color: rgba(255, 0, 0, 0.7); /* Red leaf color with opacity */
  color: #fff;
  padding: 50px 20px!important;
  margin-bottom: 20px;
  box-sizing: border-box;
  display: inline-block;
  justify-content: center;
  align-items: center;
  text-align: center;
  white-space: nowrap;
  position: relative; /* Needed for positioning pseudo-elements */
  overflow: hidden; /* Ensures the leaf shape is clean */

  /* Leaf shape using clip-path to create a more distinct leaf-like shape */
  clip-path: polygon(50% 0%, 100% 25%, 80% 100%, 20% 100%, 0% 25%); /* Asymmetrical leaf shape */

  /* Create gradient background for a more natural leaf effect */
  background: linear-gradient(135deg, #ff5722, #d32f2f); /* A natural red gradient */

  /* Add shadows for depth and 3D effect */
  box-shadow: 6px 6px 20px rgba(0, 0, 0, 0.25), -6px -6px 20px rgba(0, 0, 0, 0.15); /* Enhanced shadow effect */

  /* Add a subtle border to define edges */
  border: 1px solid rgba(0, 0, 0, 0.1); /* Soft border for better definition */

  /* Slight border-radius to soften sharp edges */
  border-radius: 12px;

  /* Add animation for hover effects */
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

/* Create background effect behind the text */
.state-block::before,
.state-block::after {
  content: '';
  position: absolute;
  top: 42%;
  left: 16%;
  width: 70%;
  height: 78%;
  background: rgba(255, 255, 255, 0.1); /* Light white background with transparency */
  z-index: -1; /* Ensure the background stays behind the text */
  transform: translate(-50%, -50%); /* Center pseudo-elements within the block */
  border-radius: 50%; /* Round shape for the effect */
  animation: pulse 2s infinite; /* Add subtle pulsing animation */
}

/* Optional: Rotate the background elements for a more natural look */
.state-block::before {
  transform: translate(-50%, -50%) rotate(10deg); /* Slight rotation for organic feel */
}

.state-block::after {
  transform: translate(-50%, -50%) rotate(-10deg); /* Slight rotation for balance */
}

/* Hover effect for state-block */
.state-block:hover {
  transform: scale(1.05); /* Slightly scale up on hover */
  box-shadow: 8px 8px 30px rgba(0, 0, 0, 0.35), -8px -8px 30px rgba(0, 0, 0, 0.25); /* Enhance shadow on hover */
  background: linear-gradient(135deg, #d32f2f, #ff5722); /* Reverse gradient on hover */
}

/* Pulse animation for the background effect */
@keyframes pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.5;
  }
}


/* Graph Chart Block */

.graph-bar {
  width: calc(100% / 14)!important;
  background-color: #0064e6!important;
  transition: height 0.5s ease, box-shadow 0.3s ease; /* Smooth shadow transition */
  margin-left: 5px!important;
  margin-right: 5px!important;
  font-size: 9pt;
  
  /* Adding subtle 3D shadow for depth */
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1); /* Soft shadow to make it pop */

  /* Add gradient to the background to simulate light reflection */
  background: linear-gradient(145deg, #007BFF, #0056b3);
}

.year-label {
  bottom: -23px!important;
  transform: translateX(-50%) rotate(-45deg);
  border-bottom: red solid 0.25px!important;
  
  /* Adding subtle shadow for the label */
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
  
  /* Add gradient for a light reflection effect */
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.3), rgba(0, 0, 0, 0.1));
}

.usage-label {
  top: -20px;
  transform: translateX(-50%) rotate(-65deg);
  border-left: red solid 2px!important;
  margin: 0px 2px 0px 2px;
  padding: 0px 2px 0px 2px;
  
  /* Adding shadow for depth */
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);

  /* Add gradient to simulate light hitting the text */
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.3), rgba(0, 0, 0, 0.1));
}

.graph-chart {
  width: 2200px!important;
  height: 400px;
  padding: 40px 10px!important;
  background-color: #fdd0b5!important;
  border-radius: 5px;
  margin-top: 40px!important;
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  font-size: 9pt!important;
  
  /* Adding subtle shadow to the entire chart */
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2), 0px 1px 8px rgba(0, 0, 0, 0.1); /* Soft shadow for professional depth */
  
  /* Optional: Add gradient to background to simulate lighting */
  background: linear-gradient(145deg, #fdd0b5, #f9a99d);
}


/* Percentage Bars Blocks */
/* Container for the percentage bar */
.percentage-bar-container {
    height: 25px; /* Slightly taller bar for better visibility */
   background: linear-gradient(45deg, #9558D5, #d7c9e5);!important; /* Soft grey background for contrast */
    border-radius: 12px; /* More rounded corners for a smoother look */
    overflow: hidden;
    box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.15), 0 2px 5px rgba(0, 0, 0, 0.1); /* Inner shadow for depth + outer shadow for lift */
    transition: box-shadow 0.3s ease-in-out; /* Smooth transition for box-shadow on hover */
}

/* Hover effect for the container */
.percentage-bar-container:hover {
    box-shadow: inset 0 6px 12px rgba(0, 0, 0, 0.2), 0 4px 10px rgba(0, 0, 0, 0.15); /* Enhanced shadow on hover */
}

/* Actual percentage bar with advanced design */
.percentage-bar {
    height: 100%;
    width: 0%; /* Default width, will be dynamically updated by JS */
    border-radius: 12px; /* Rounded edges for the bar */
    transition: width 1s ease-in-out; /* Smooth transition for width */
    background: linear-gradient(45deg, #388e3c, #7ab57d); /* Gradient background from green to dark green */
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2); /* Shadow to give it a lifted look */
    text-align: center;
    color: white;
    font-weight: bold;
    line-height: 25px; /* Vertically center the text */
    font-size: 14px; /* Slightly larger font for visibility */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); /* Subtle text shadow for contrast */
    padding: 0 15px; /* Padding for spacing inside the bar */
}

/* Optional: Animated text effect */
.percentage-bar::after {
    content: attr(data-percentage) "%"; /* Display percentage dynamically */
    font-size: 16px;
    font-weight: bold;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center the text */
    animation: text-animation 1s ease-in-out; /* Smooth text animation */
}

/* Keyframe animation for text */
@keyframes text-animation {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Label text for the percentage bar */
.bar-info-label {
    margin-top: 10px;
    font-size: 14px;
    color: #555;
    text-align: center;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1); /* Subtle shadow for the label */
}

/* Optional: Add a background animation to the container */
.percentage-bar-container {
    animation: pulse 3s ease-in-out infinite; /* Subtle pulse effect for the container */
}

/* Keyframe animation for pulse effect */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02); /* Slightly enlarge */
    }
    100% {
        transform: scale(1);
    }
}

.additional-info-item {
  margin-bottom: 0px!important;
  background: #edeeff!important;
  padding: 20px!important;
}
.percentage-label {color: #9558D5!important;}
.bar-info-label {
  margin-top: 5px;
  font-size: 18px!important;
  color: #9558D5!important;
  text-align: center;
}

/* Age wise Blocks */
.age-info-item {
  width: 170px;
  height: 170px;
  background: linear-gradient(145deg); /* Gradient effect */
  box-shadow: 6px 6px 15px rgba(132, 99, 173, 0.2), -6px -6px 15px rgba(214, 67, 144, 0.3); /* 3D shadow effect */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
  position: relative; /* To handle inner content */
  font-size: 22px!important; /* Adjust font size */
  color: white; /* Text color */
  text-align: center; /* Center text */
  line-height: 35px; /* Vertically align text */
  font-weight: bold; /* Bold text for emphasis */
  
  /* Custom unique shape using polygon for an angular, dynamic look */
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%); /* Hexagonal shape */
  
  /* Add a slight border-radius for rounded corners on the hexagon */
  border-radius: 8px!important;

  margin-left: 5px;
  margin-right: 5px;
}

/* Hover effect to scale and enhance the 3D feel */
.age-info-item:hover {
  transform: scale(1.1); /* Slight zoom effect on hover */
  box-shadow: 8px 8px 20px rgba(184, 85, 198, 0.3), -8px -6px 20px rgba(117, 38, 89, 0.4); /* Enhanced shadow on hover */
}

/* Optional: Adding inner glow or border */
.age-info-item::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  background: rgba(255, 255, 255, 0.1); /* Subtle inner glow */
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.4); /* Soft glow effect */
  z-index: -1; /* Ensures glow is behind text */
}



/* Gender Blocks */
.male-circle, .female-circle
{margin: 40px 20px;}
/* Male Circle - Custom Shape */
.male-circle {
  width: 300px!important;
  height: 300px!important;
   /* Male color */
  color: #fff;
  display: inline-flex!important;
  justify-content: center!important;
  align-items: center!important;
  border-radius: 40% 60% 40% 60%!important; /* Asymmetrical oval shape */
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.2), -4px -4px 12px rgba(255, 255, 255, 0.2)!important; /* 3D effect */
  transition: transform 0.3s ease, box-shadow 0.3s ease!important; /* Smooth transition for hover effect */
  font-size: 18px!important;
  font-weight: bold!important;
  position: relative!important;
  overflow: hidden!important;
}

.male-circle:hover {
  transform: scale(1.1)!important; /* Slight zoom effect on hover */
  box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.3), -6px -6px 15px rgba(255, 255, 255, 0.3)!important; /* Enhanced shadow on hover */
}

/* Female Circle - Custom Shape */
.female-circle {
  width: 300px!important;
  height: 300px!important;
   /* Female color */
  color: #fff;
  display: inline-flex!important;
  justify-content: center!important;
  align-items: center!important;
  border-radius: 60% 40% 60% 40%!important; /* Standard circle shape */
  box-shadow: 6px 6px 20px rgba(0, 0, 0, 0.3), -6px -6px 20px rgba(255, 255, 255, 0.4)!important; /* 3D effect */
  transition: transform 0.3s ease, box-shadow 0.3s ease!important; /* Smooth transition for hover effect */
  font-size: 18px!important;
  font-weight: bold!important;
  position: relative!important;
  overflow: hidden!important;
}

.female-circle:hover {
  transform: scale(1.1)!important; /* Slight zoom effect on hover */
  box-shadow: 8px 8px 25px rgba(0, 0, 0, 0.4), -8px -8px 25px rgba(255, 255, 255, 0.4)!important; /* Enhanced shadow on hover */
}

/* Optional: Adding inner glow or border effect for both */
.male-circle::before, .female-circle::before {
  content: '';
  position: absolute!important;
  top: 10px!important;
  left: 10px!important;
  right: 10px!important;
  bottom: 10px!important;
  background: rgba(255, 255, 255, 0.1)!important; /* Subtle inner glow */
  border-radius: 50%!important;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.4)!important; /* Soft glow effect */
  z-index: -1!important; /* Ensures glow is behind text */
}

/* Total Count Blocks */

.responsive-block {
  background-color: #E0E9F9 !important; /* Soft blue background */
  color: #3b45db !important; /* Darker blue text color */
  padding: 30px 40px; /* Slightly reduced padding for a more balanced look */
  margin-top: 20px;
  text-align: center;
  width: 45%;
  height: 250px;
  border: 4px solid #c6d7ff !important; /* Lighter border */
  border-radius: 10px !important; /* More rounded corners */
  display: inline-block;
  box-sizing: border-box; /* Ensures padding doesn't affect overall size */
  
  /* Soft shadow effect for a more modern 3D look */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  
  /* Smooth transition for hover effect */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.responsive-block:hover {
  transform: translateY(-5px); /* Slight upward movement on hover */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); /* Slightly stronger shadow on hover */
}


/* Someline Section */

div.bflines-section
{margin-top: 80px; background: #EEF3FF; Padding: 20px 0px;}


/* Profession blocks Section */

div.pfwise-section
{margin-top: 80px; background: #EEF3FF; Padding: 20px 0px;}

/* Profession line Section */

div.pflines-section
{margin-top: 80px; background: #EEF3FF; Padding: 20px 0px;}



/* Profession Blocks */
/* Styling for the name block that displays the name */
   .name-block {
  background: linear-gradient(to right, #e5c0e3, #da1f4b, #da1f4b, #e5c0e3);
  padding: 10px;
  color: #fff!important;
  font-size: 40pt;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
  animation: fadeIn 1.5s ease; /* Fade-in effect on load */
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Styling for the profession block */
.profession-block {
  font-size: 18px;
  margin: 12px 20px;
  padding: 40px 10px;
  background-color: #DA1F4B;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  color: #fff;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  display: inline-block; /* Use inline-block for initial display */
	width: calc(100% - 40px);
}

@media screen and (min-width: 546px) { 
  .profession-block { 
    width: calc(33% - 40px);
		text-align: left/* Adjust width for even spacing */
  }
}

/* Style the profession block text */
.profession-block strong {
  font-size: 20px;
	margin-left: 20px;
		text-align: right!important;
	float: right;
}

/* Add hover effect for profession blocks */
.profession-block:hover {
  background-color: #cce7ff;
  color: #DA1F4B;
  cursor: pointer;
  transform: translateY(-5px); /* Lift effect on hover */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
}

/* Optional: Add some spacing between the profession blocks */
.profession-block + .profession-block {
  margin-top: 10px;
}

/* Add animation for a subtle glow effect */
@keyframes glowEffect {
  0% {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }
  50% {
    box-shadow: 0 4px 8px rgba(255, 0, 0, 0.3);
  }
  100% {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }
}

/* Apply the glow effect */
.profession-block {
  animation: glowEffect 3s infinite;
}

/* Some Lines for User */

/* Main container for personalized lines */
    #personalized-lines-container {
        margin: 40px auto;
        padding: 30px;
        max-width: 700px;
        background: linear-gradient(135deg, #f9f9f9, #e0e0e0);
        border-radius: 12px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        transition: all 0.3s ease;
        border: 2px solid #ddd;
    }

    /* Hover effect for the container */
    #personalized-lines-container:hover {
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }

    /* Title styling */
    #personalized-lines-container h3 {
        font-size: 28px;
        font-weight: 700;
        color: #333;
        text-align: center;
        margin-bottom: 25px;
        background: linear-gradient(45deg, #6a11cb, #2575fc);
        -webkit-background-clip: text;
        color: transparent;
        font-family: 'Arial', sans-serif;
    }

    /* Style for the unordered list */
    #personalized-lines-container ul {
        list-style-type: none;
        padding: 0;
        margin: 0;
        text-align: center;
    }

    /* Individual list item style */
    #personalized-lines-container ul li {
        font-size: 18px;
        padding: 15px 25px;
        margin: 10px 0;
        background-color: #f7f7f7;
        border: 2px solid #ccc;
        border-radius: 8px;
        color: #333;
        font-family: 'Arial', sans-serif;
        position: relative;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        cursor: pointer;
    }

    /* Hover effect on list items with color changes */
    #personalized-lines-container ul li:hover {
        background-color: #ffeb3b;
        color: #fff;
        transform: translateY(-5px); /* Lift effect */
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    }

    /* Colorful hover background animation */
    #personalized-lines-container ul li:nth-child(odd):hover {
        background-color: #ff7043;
    }

    #personalized-lines-container ul li:nth-child(even):hover {
        background-color: #8bc34a;
    }

    /* Style for the empty list item */
    #personalized-lines-container ul li.empty {
        font-style: italic;
        color: #aaa;
        background-color: transparent;
        border: none;
    }

    /* Animation for items appearing */
    @keyframes fadeInUp {
        0% {
            opacity: 0;
            transform: translateY(20px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    #personalized-lines-container ul li {
        animation: fadeInUp 0.5s ease-out;
    }



/* Container for the professional lines */
#professional-lines-container {
    margin: 40px auto;
    max-width: 1000px;
    padding: 40px;
    background: #f7a894;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    font-family: 'Arial', sans-serif;
    color: #333;
    overflow: hidden;
    position: relative;
    background: radial-gradient(circle at top left,  #feb47b, #f7a894, #ff7e5f);
    border: 2px solid #fff;
}

/* Title styling */
#professional-lines-container h3 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 30px;
    font-weight: 600;
    text-transform: capitalize;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    display: inline-block;
    padding-bottom: 10px;
    border-bottom: 3px solid #fff;
    text-align: center;
}

/* Styling for the list container */
#professional-lines-container ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

/* Styling for each professional line */
#professional-lines-container li {
    background-color: #fff;
    margin: 15px 0;
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 500;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    position: relative;
    color: #444;
    border-left: 10px solid transparent; /* Make left border bolder */
    background-color: #f7f7f7;
    overflow: hidden;
}

/* Hover effect */
#professional-lines-container li:hover {
    background-color: #fef9e4;
    transform: translateX(10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Add a glowing hover effect to the profession name */
#professional-lines-container li:hover strong {
    color: #ff7e5f;
    text-shadow: 0 0 15px rgba(255, 126, 95, 1);
}

/* Style for the profession name (strong) */
#professional-lines-container li strong {
    font-size: 1.4rem;
    color: #3498db;
    font-weight: 600;
    text-transform: capitalize;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

/* Add a random color for the left border */
#professional-lines-container li:nth-child(odd) {
    background-color: #ffffff;
    border-left: 10px solid #ff7e5f; /* Red */
}

#professional-lines-container li:nth-child(even) {
    background-color: #f4f4f4;
    border-left: 10px solid #3498db; /* Blue */
}

/* Randomize the colors for each item */
#professional-lines-container li:nth-child(1) {
    border-left-color: #ff7e5f; /* Red */
}

#professional-lines-container li:nth-child(2) {
    border-left-color: #3498db; /* Blue */
}

#professional-lines-container li:nth-child(3) {
    border-left-color: #f39c12; /* Orange */
}

#professional-lines-container li:nth-child(4) {
    border-left-color: #2ecc71; /* Green */
}

#professional-lines-container li:nth-child(5) {
    border-left-color: #9b59b6; /* Purple */
}

/* Add a modern box shadow effect on hover for better interaction */
#professional-lines-container li:hover {
    background-color: #fef9e4;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

/* Responsive design for smaller devices */
@media (max-width: 768px) {
    #professional-lines-container {
        max-width: 100%;
        padding: 20px;
    }

    #professional-lines-container h3 {
        font-size: 2rem;
    }

    #professional-lines-container li {
        padding: 15px;
        font-size: 1rem;
    }
}
#professional-lines-container p {color: #fff; font-weight: bold; font-size: 24pt;}

h2.some-lines {color: #752659; font-weight: bold; font-size: 24pt; text-align: center;}



/* Button CSS */
.container button {
  background-color: #af4ca9!important;
  color: #fff;
  border: none;
  border-radius: 65px!important;
  outline: #2657b5;
  display: block;
  margin: 0 auto;
  padding: 20px 30px!important;
  font-size: 20pt!important;
  cursor: help!important;
}

.container button:hover {
  background-color: #ec29a9!important;
}

button.reset-button {
  background-color: #af4ca9!important;
  color: #fff;
  border: none;
  border-radius: 65px!important;
  outline: #2657b5;
  display: block;
  margin: 0 auto;
  padding: 20px 30px!important;
  font-size: 20pt!important;
  cursor: help!important;
}

button.reset-button:hover {
  background-color: #ec29a9!important;
}


/* Initially hide all sections */
.statistics-sections > div {
      display: none; /* Initially hide all sections */
    }
    
    .container {
  padding: 5px!important;
}
    
    
    
