/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background: linear-gradient(135deg, #6a2c87, #c51793, #387ec6);
    color: #fff;
    line-height: 1.6;
}




.mini-caption {
            color: white;
            font-size: 9pt;
            font-weight: 100;
            text-align: center;
        }

.posters {
            color: white;
            font-size: 18pt;
            font-weight: 600;
            text-align: center;
            padding: 20px;
        }






header {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5);
}

.logo img {
    width: 150px;
}



nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: 600;
}





footer {
    margin-top: 50px;
    display: flex;
    justify-content: space-around;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.6);
}

.footer-item {
    text-align: center;
}

.footer-item i {
    font-size: 30px;
}



.click-me-btn {
    display: block;
    width: 200px;
    margin: 50px auto;
    padding: 10px 20px;
    background-color: #c51793;
    color: #fff;
    border: none;
    border-radius: 25px;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
}

.click-me-btn:hover {
    background-color: #d01b9e;
}


* Slider Styles */
.slider-container {
    position: relative;
    margin-top: 0px;
}



/* Slider Container */
.slider {
    position: relative;
    width: 100%;
    height: 80vh; /* Limits slider height to 80% of the viewport height */
    overflow: hidden;
}

/* Slide Images */
.slider img {
    width: 100%; /* Ensure the image fills the width */
    height: 100%; /* Match the container height */
    object-fit: cover; /* Ensures the image maintains aspect ratio and fits nicely */
    max-height: 80vh; /* Limits the image height to 80% of the viewport */
}


.slide {
    width: 100%;
    display: none;
}



/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    color: #333;
}




.slider-text {
    position: absolute;
    top: 75%; /* Places the text 3/4 of the way from the top */
    left: 50%;
    transform: translate(-50%, -50%); /* Centers the text horizontally and adjusts for vertical offset */
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent background */
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    z-index: 2;
}


.slider-text p {
    margin: 0;
}







/* Responsive Styles */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin-bottom: 10px;
    }
}


.formcontainer {
  max-width: 600px;
  margin: 50px auto;
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h1 {
  font-size: 24px;
  text-align: center;
  color: #333;
}

label {
  font-size: 14px;
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

input, textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

button {
  width: 100%;
  padding: 10px;
  background-color: #007BFF;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background-color: #0056b3;
}

#statusMessage {
  margin-top: 15px;
  text-align: center;
  font-size: 14px;
}


/* newFooter Styling */
newfooter {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.newfooter-sections {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.newfooter-item {
    flex: 1;
    min-width: 150px;
    max-width: 300px;
    text-align: center;
}

.newfooter-item .icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: inline-block;
}

.newfooter-item p {
    font-size: 1.2rem;
    font-weight: 200;
    margin: 0;
}

.section-heading {
    font-size: 14pt;
    font-weight: 600;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    
}



/* Responsive Footer */
@media (max-width: 768px) {
    .newfooter-sections {
        flex-direction: column;
        gap: 10px;
    }
}






.container {
    display: flex; /* Use Flexbox for alignment */
    flex-wrap: wrap; /* Allow images to wrap onto new lines if necessary */
    justify-content: center; /* Horizontally center the images */
    align-items: center; /* Vertically align the images */
    gap: 16px; /* Optional: Space between images */
    padding: 16px; /* Optional: Padding around the container */
    text-align: center; /* Ensure text is centered if added */
}

.container img {
    width: auto; /* Maintain the natural width of the images */
    max-width: 150px; /* Optional: Constrain the image width */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px; /* Optional: Rounded corners for images */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Add shadow for aesthetics */
}


    .products-button {
            display: inline-block;
            padding: 12px 24px;
         /*   background-color: #4CAF50; /* Green background */
            background-color: #c51793;
            
            color: white;
            font-size: 16px;
            text-align: center;
            text-decoration: none;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .products-button:hover {
            background-color: #45a049; /* Darker green on hover */
        }




        
        
        
        