
/* General Reset */
body {
    margin: 0;
    font-family: 'Neuropol X', sans-serif;
    color: #fff;
    background: linear-gradient(0deg, #17D, #fff);
    background-repeat: no-repeat;
    background-size: 100% 2000px; /* Gradient extends down */
    min-height: 100%; /* Ensure scroll space */
}

/* Main container */
main {
    width: 100%;
    display: block;
    padding: 40px 20px;
}

/* Caption box */
.caption {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    max-width: 70%;
    margin: 40px auto;
}

/* Logo */
.logo {
    max-width: 150px;
    margin-bottom: 20px;
}

/* Headings */
h1, h2 {
    font-weight: 100;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    line-height: 1.3;
}

h1 {
    font-size: clamp(24px, 4vw, 48px);
}

h2 {
    font-size: clamp(20px, 3vw, 36px);
}

/* Paragraph text */
.caption p, .slide p {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.8;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
}

/* Call-to-action link */
a.cta {
    display: inline-block;
    font-size: 1.2rem;
    color: #ff99cc;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

a.cta:hover {
    color: #ff3366;
}

/* Slider container */
.slider {
    position: relative;
    max-width: 700px;
    margin: 40px auto;
    padding: 40px 60px; /* Space for arrows */
    background: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    box-sizing: border-box;
}

/* Slides */
.slide {
    display: none;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    position: relative;
}

.slide.active {
    display: block;
    opacity: 1;
}

/* Images inside slides */
.slide img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
}

/* Arrows */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    font-size: 2rem;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

.arrow.left {
    left: 10px;
}

.arrow.right {
    right: 10px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .slider {
        padding: 20px 40px;
    }

    .arrow {
        font-size: 1.5rem;
        padding: 8px;
    }
}


      }
	a:link {
	color: green;
	background-color: transparent;
	text-decoration: none;
	}

	a:visited {
  	color: pink;
	background-color: transparent;
	text-decoration: none;
	}

	a:hover {
	color: red;
	background-color: transparent;
	text-decoration: underline;
	}

	a:active {
	color: yellow;
	background-color: transparent;
	text-decoration: underline;

