* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif
}
header {
   
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideDown 1s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    font-family: Segoe UI;
}

.nav-bar{
    height: 90px;
    background-color: deepskyblue;
    color: whitesmoke;
}

.brand{
    float: left;
    position: absolute;
    padding-left: 20px;
    line-height: 70px;
    font-size: 1.5em;
}

.brand a{
    text-decoration: none;
    color: white;
}

.nav-container{
    max-width: 1000px;
    margin: 0 auto;
    
}

nav{
    float: right;
}

nav ul{
    list-style: none;
}

nav ul li{
    float: left;
    position: relative;
}

nav ul li a{
    display: block;
    padding: 0 20px;
    line-height: 70px;
    text-decoration: none;
    color: #fff;
}

nav ul li a:hover{
    background: #2ab1ce;
    color: #fff;
}

nav ul li a:not(:only-child):after{
    content: '▼';
    padding-left: 5px;
}

nav ul li ul li {
    min-width: 190px;
}

nav ul li ul li a{
    padding: 15px;
    line-height: 20px;
}

.nav-dropdown{
    position: absolute;
    display: none;
    z-index: 1;
}

.nav-mobile{
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    height: 30px;
    width: 70px;
}

#nav-toggle{
    position: absolute;
    left: 18px;
    top: 22px;
    cursor: pointer;
    padding: 10px 35px 15px 0px;
}

#nav-toggle span,
#nav-toggle span::before,
#nav-toggle span::after{
    position: absolute;
    display: block;
    content: '';
    background: #fff;
    height: 5px;
    width: 35px;
    transition: all 300ms ease-in-out;
}

#nav-toggle span::before{
    top: -10px;
}

#nav-toggle span::after{
    bottom: -10px;
}

#nav-toggle.active span{
    background-color: transparent;
}

#nav-toggle.active span::before, #nav-toggle.active span::after{
    top: 0;
}

#nav-toggle.active span::before{
    transform: rotate(45deg);
}

#nav-toggle.active span::after{
    transform: rotate(-45deg);
}

@media only screen and (max-width: 768px) {

    .nav-mobile{
        display: block;
    }

    nav{
        width: 100%;
        padding: 70px 0 15px;
    }

    nav ul{
        display: none;
    }

    nav ul li {
        float: none;
    }

    nav ul li a{
        padding: 15px;
        line-height: 20px;
        padding-left: 25%;
    }


    nav ul li ul li a{
        padding-left: 30%;
    }

    .nav-dropdown{
        position: static;
    }
}

@media screen and (min-width: 799px){
    .nav-list{
        display: block !important;
    }
}
/* Header Styling */

header h1 {
    display: inline-block;
    margin: 0;
    font-size: 1.1rem;
    letter-spacing: 2px;
}
.img-topic{
    background-color:whitesmoke;
    text-align: center;
    overflow: hidden;
}

    .circular-image {
        width: 100%;
  height: 100%;
  object-fit: cover;
      }
      .image-container {
        width: 250px;
        height: 250px;
        overflow: hidden;
        border-radius: 50%; /* This will make the container circular */
      }



/* Main Content */
main {
    padding: 2rem 0;
}

.container {
    width: 90%;
    margin: auto;
    animation: fadeIn 2s ease-in;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    margin: 0 10%;
}

.content img {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    transition: transform 0.5s ease;
    margin-bottom: 2rem; /* Space between image and text */
}

.content img:hover {
    transform: scale(1.05);
}

article {
    width: 100%;
    max-width: 800px;
    margin: auto;
}

article h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

article p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
}

/* Voting Section */
.voting {
    margin-top: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 9px 9px 16px #d1d1d1, -9px -9px 16px #ffffff;
    animation: fadeInUp 1s ease-in-out;
    position: relative;
    overflow:    hidden;
}

.vote-results {
    margin-bottom: 1.5rem;
}

.vote-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 30px; /* Adjust height for bars */
}

.agree-bar, .disagree-bar {
    height: 100%;
    border-radius: 15px;
    position: absolute;
    top: 0;
    left: 0;
    transition: width 0.6s ease-in-out, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    padding: 0 1rem;
}

.agree-bar {
    background-color: #4caf50;
    transform: translateX(0%);
}

.disagree-bar {
    background-color: #4d4d4d;
    transform: translateX(0%);
    right: 0;
}

.vote-buttons {
    display: flex;
    justify-content: space-around;
    margin-top: 1rem;
}

button {
    padding: 0.7rem 1.2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 9px 9px 16px #d1d1d1, -9px -9px 16px #ffffff; /* Neumorphism effect */
}
h2{
    color: #4d4d4d;
}
button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
}

button:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

.agree {
    background-color: #4caf50;
    color: white;
}

.disagree {
    background-color: #f44336;
    color: white;
}

.agree:hover {
    background-color: #43a047;
}

.disagree:hover {
    background-color: #e53935;
}

/* Comments Section */
.comments {
    margin-top: 2.5rem;
    background-color: white;
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    animation: slideUp 1s ease-in-out;
}

form input, form textarea {
    width: 100%;
    padding: 0.8rem;
    margin: 0.5rem 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

form input:focus, form textarea:focus {
    border-color: #002f87;
    outline: none;
}

form button {
    padding: 0.8rem 1.5rem;
    background-color: #002f87;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

form button:hover {
    background-color: #001f5e;
    transform: translateY(-5px);
}

#comment-list {
    margin-top: 1rem;
    animation: fadeIn 2s ease;
}

#comment-list div {
    background-color: #f0f0f0;
    padding: 0.8rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

#comment-list div:hover {
    transform: translateY(-5px);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes slideDown {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* General footer styling */
footer {
    background-color: #000;
    color: #fff;
    padding: 40px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

/* Logo Section */
.footer-logo {
    flex: 1;
    text-align: left;
}

.footer-logo img {
    width: 50px; /* Adjust to your logo size */
    margin-bottom: 10px;
}

.footer-logo p {
    margin: 5px 0;
}

.review-icons img {
    width: 40px;
    margin-right: 10px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin-right: 10px;
    text-align: left;
}
h1 {
    font-family: "Avant Garde", Avantgarde, "Century Gothic", CenturyGothic, "AppleGothic", sans-serif;
    padding: 10px 10px;
    text-align: center;
    text-transform: uppercase;
    text-rendering: optimizeLegibility;
  }
  h1.elegantshadow {
    color: #131313;
    background-color: #e7e5e4;
    letter-spacing: 0.15em;
    text-shadow: 1px -1px 0 #767676, -1px 2px 1px #737272, -2px 4px 1px #767474, -3px 6px 1px #787777, -4px 8px 1px #7b7a7a, -5px 10px 1px #7f7d7d, -6px 12px 1px #828181, -7px 14px 1px #868585, -8px 16px 1px #8b8a89, -9px 18px 1px #8f8e8d, -10px 20px 1px #949392, -11px 22px 1px #999897, -12px 24px 1px #9e9c9c, -13px 26px 1px #a3a1a1, -14px 28px 1px #a8a6a6, -15px 30px 1px #adabab, -16px 32px 1px #b2b1b0, -17px 34px 1px #b7b6b5, -18px 36px 1px #bcbbba, -19px 38px 1px #c1bfbf, -20px 40px 1px #c6c4c4, -21px 42px 1px #cbc9c8, -22px 44px 1px #cfcdcd, -23px 46px 1px #d4d2d1, -24px 48px 1px #d8d6d5, -25px 50px 1px #dbdad9, -26px 52px 1px #dfdddc, -27px 54px 1px #e2e0df, -28px 56px 1px #e4e3e2;
  }
  h1.deepshadow {
    color: #e0dfdc;
    background-color: #333;
    letter-spacing: 0.1em;
    text-shadow: 0 -1px 0 #fff, 0 1px 0 #2e2e2e, 0 2px 0 #2c2c2c, 0 3px 0 #2a2a2a, 0 4px 0 #282828, 0 5px 0 #262626, 0 6px 0 #242424, 0 7px 0 #222, 0 8px 0 #202020, 0 9px 0 #1e1e1e, 0 10px 0 #1c1c1c, 0 11px 0 #1a1a1a, 0 12px 0 #181818, 0 13px 0 #161616, 0 14px 0 #141414, 0 15px 0 #121212, 0 22px 30px rgba(0, 0, 0, 0.9);
  }
  h1.insetshadow {
    color: #202020;
    background-color: #2d2d2d;
    letter-spacing: 0.1em;
    text-shadow: -1px -1px 1px #111, 2px 2px 1px #363636;
  }
  h1.retroshadow {
    color: #2c2c2c;
    background-color: #d5d5d5;
    letter-spacing: 0.05em;
    text-shadow: 4px 4px 0px #d5d5d5, 7px 7px 0px rgba(0, 0, 0, 0.2);
  }

/* Pages Section */
.footer-pages {
    flex: 1;
    text-align: left;
}

.footer-pages h3 {
    margin-bottom: 20px;
}

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

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

.footer-pages ul li a {
    color: #fff;
    text-decoration: none;
}

.book-call {
    color: #fff;
    text-decoration: underline;
    font-weight: bold;
    margin-top: 20px;
    display: inline-block;
    text-align: center;
}

/* Connect Section */
.footer-connect {
    flex: 1;
    text-align: left;
}

.footer-connect h3 {
    margin-bottom: 20px;
}

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

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

.footer-connect ul li a {
    color: #fff;
    text-decoration: none;
}

/* Subscribe Section */
.footer-subscribe {
    text-align: center;
    margin-top: 40px;
    padding: 40px 0;
    background-color: #000;
}

.subscribe-heading {
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.subscribe-description {
    font-size: 14px;
    margin-bottom: 20px;
}

.subscribe-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.subscribe-form input {
    padding: 15px;
    border: none;
    width: 250px;
    border-radius: 5px;
}

.highlight{
    color:#4d4d4d;
}


.subscribe-form button {
    background-color: #800080;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
}

.no-spam {
    font-size: 12px;
    color: #fff;
}

.no-spam a {
    color: #fff;
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }
   
    .subscribe-form {
        flex-direction: column;
        gap: 5px;
    }

    .subscribe-form input {
        width: 100%;
    }
}
a {
    margin: 1.5em 1em;
  }
  .text1 {
    text-shadow: 0px 4px 3px rgba(0,0,0,0.4),
               0px 8px 13px rgba(0,0,0,0.1),
               0px 18px 23px rgba(0,0,0,0.1);
  }
  
  .text3 {
    text-shadow: 0px 3px 2px black, 
                 0px 8px 10px rgba(0,0,0,0.15), 
                 0px 12px 2px rgba(0,0,0,0.7);
          
  }

  .a_demo_five {
	background-color:darkcyan;
	width:150px;
	display:inline-block;
	font-family: 'Open Sans', sans-serif;
	font-size:12px;
	text-decoration:none;
	color:#fff;
	position:relative;
	margin-top:40px;
	padding-bottom:10px;
	padding-top:10px;
	background-image: linear-gradient(bottom, rgb(168,48,232) 100%, rgb(141,32,196) 0%);
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
	box-shadow: inset 0px 1px 0px #ca73f8, 0px 5px 0px 0px #6a1099, 0px 10px 5px #999;
}

.a_demo_five:active {
	top:3px;
	background-image: linear-gradient(bottom, rgb(168,48,232) 0%, rgb(141,32,196) 100%);
	box-shadow: inset 0px 4px 1px #7215a3, 0px 2px 0px 0px #6a1099, 0px 5px 3px #999;
}

.a_demo_five::before {
	background-color:#fff;
	background-image:url(../images/brain1.jpeg);
	background-repeat:no-repeat;
	background-position:center center;
	border-left:solid 1px #CCC;
	border-top:solid 1px #CCC;
	border-right:solid 1px #CCC;
	content:"";
	width:148px;
	height:40px;
	position:absolute;
	top:-30px;
	left:0px;
	margin-top:-11px;
	z-index:-1;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

.a_demo_five:active::before {
	top: -33px;	
	box-shadow: 0px 3px 0px #ccc;
}
h2{
    color:#005890;
}
.wrapper {
    display: flex;
    padding: 10%;
    }
    .wrapper .icon {
    position: relative;
    background-color: #ffffff;
    margin: 5px;
    width: 50px;
    height: 50px;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    }
    .wrapper .tooltip {
    top: 0;
    font-size: 14px;
    color: #ffffff;
    padding: 5px;
    border-radius: 5px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }
    .wrapper .icon:hover .tooltip {
    top: -45px;
    opacity: 1;
    }

    .wrapper {
        display: inline-flex;
        padding: 20%;
        }
        .wrapper .icon {
        position: relative;
        background-color: #ffffff;
        margin: 5px;
        width: 25px;
        height: 25px;
        font-size: 12px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        cursor: pointer;
        }
        
        .container {
            display: flex;
            flex-wrap: nowrap; /* Prevent wrapping */
            justify-content: space-around; /* Distribute icons evenly */
            align-items: center; /* Center icons vertically */
            padding: 5px;
            background-color: #f1f1f1; /* Background color */
            border: 1px solid black; /* Border */
            max-width: 100%; /* Ensure container fits within screen width */
        }

        .icon {
            font-size: 20px;
            margin: 5px;
        }
        .language-selection {
            display: flex;
            align-items: center;
        }
        
        .language-selection select, 
        .language-selection button {
            margin-left: 5px;
        }
        

header {
    background:rgba(0, 191, 255, 1);
    overflow: hidden;
    background: deepskyblue;  /* fallback colour. Make sure this is just one solid colour. */
    background: -webkit-linear-gradient(rgba(29, 38, 113, 0.5), rgba(195, 55, 100, 0.5)), url("blog4.PNG");
    background: linear-gradient(rgba(29, 38, 113, 0.5), deepskyblue), url("blog4.PNG"); /* The least supported option. */
}
