/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #ffe4f2; /* Light pink background */
    color: #333;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 10px 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    margin-right: 10px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #6a0dad; /* Purple color for heading */
}

.nav-links {
    display: none; /* Hidden by default for mobile */
    flex-direction: column;
    list-style: none;
}

.nav-links.show-nav {
    display: flex;
    position: absolute;
    top: 60px; /* Below the navbar */
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    z-index: 20; /* Ensures the menu is above the hero section */
}

.nav-links li {
    margin: 10px 0;
    text-align: center;
    position: relative;
}

.nav-links li:not(:last-child)::after { /* Exclude the final item */
    content: '';
    position: absolute;
    bottom: -5px; /* Adjusted spacing for centering */
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(to right, transparent, #d3d3d3, transparent); /* Fading edges */
}

.nav-links a {
    color: #6a0dad; /* Purple for nav links */
    text-decoration: none;
    font-weight: bold;
}

/* Hamburger Icon */
.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 24px;
    width: 30px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative; /* Keeps the hamburger in the same position */
    z-index: 10; /* Ensures it stays on top */
}
/* Hamburger Icon */
.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 24px;
    width: 30px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative; /* Keeps the hamburger in the same position */
    z-index: 10; /* Ensures it stays on top */
}

.hamburger {
    display: block;
    height: 3px;
    width: 100%;
    background: #6a0dad; /* Purple for the hamburger */
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}
.nav-toggle.open .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open .hamburger:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Floating Tablet-Look Containers */
.floating-box {
    margin: 20px 9px; /* Centers the box horizontally and adds vertical spacing */
    max-width: calc(100% - 10px); /* Adjust width to account for left/right margin */
    padding: 20px;
    background: white;
    border-radius: 20px; /* Rounded corners */
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2); /* Enhanced floating shadow */
    border: 1px solid #e0e0e0; /* Subtle border for tablet look */
    box-sizing: border-box; /* Includes padding and border in the element's width calculation */
}

/* Hero Section */
.hero {
    background: url('../Img/Hero.jpg') no-repeat center center/cover;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: flex-end; /* Align text closer to the bottom for the golden mean */
    color: white;
    text-align: center;
    border-radius: 20px; /* Consistent with tablet look */
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2); /* Floating shadow for hero */
    margin: 20px 9px; /* Adds 9px gap on left and right */
    max-width: calc(100% - 10px); /* Ensures the width doesn't overflow with the added margins */
    position: relative;
}

.hero-content {
    background: rgba(51, 51, 51, 0.5); /* Lighter semi-transparent grey background */
    border-radius: 20px; /* Removed rounding to extend to edges */
    padding: 15px 0;
    width: 100%; /* Extend to full width of the container */
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5); /* Add depth to the heading */
}

.hero p {
    font-size: 1.2rem;
    margin: 0; /* Adjust spacing for clean alignment */
}

/* Headings */
h1, h2, h3 {
    color: #6a0dad; /* Purple color for headings */
}

/* Tokenomics Section */
.tokenomics-grid {
    background: white; /* Plain white background */
    width: 100%; /* Full width of the browser */
    padding: 40px 20px; /* Spacing around the grid */
    box-sizing: border-box; /* Ensure padding doesn't affect width */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Ensure tablets resize responsively */
    gap: 20px;
    max-width: 1200px; /* Limit the grid's width */
    margin: 0 auto; /* Center the grid within the container */
    border-radius: 0; /* Removed rounded corners */
    border: none; /* Ensure no border conflicts */
}

.tokenomics-item {
    background: #6a0dad; /* Purple background */
    color: white;
    border-radius: 15px; /* Rounded corners for tablet look */
    padding: 20px;
    text-align: center;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2); /* Floating shadow for tablet effect */
    opacity: 0; /* Initially hidden for fade-in effect */
    transform: translateX(0); /* Default state */
    transition: opacity 1s ease-in-out, transform 1s ease-in-out; /* Smooth animation */
}

.tokenomics-item.left {
    transform: translateX(-50px); /* Slide in from the left */
}

.tokenomics-item.right {
    transform: translateX(50px); /* Slide in from the right */
}

.tokenomics-item.visible {
    opacity: 1; /* Fully visible */
    transform: translateX(0); /* Reset to original position */
}

.tokenomics-item h3 {
    margin-bottom: 10px;
    font-size: 1.5rem; /* Larger and more prominent headings */
    font-weight: bold;
    text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5); /* Add depth to the heading */
    text-transform: uppercase;
    color: #ffe4f2; /* Contrasting color for headings */
}

.tokenomics-item p {
    margin: 0;
    font-size: 1.1rem; /* Slightly larger text for readability */
    font-weight: lighter;
}

/* Story Section */
.story-container {
    background: url('../Img/Main1.jpg') no-repeat center center/cover; /* Background image */
    width: 100%; /* Full width of the browser */
    color: white; /* White text for contrast */
    text-align: center;
    padding: 10px 20px; /* Spacing inside the container */
    box-sizing: border-box; /* Ensure padding doesn't affect width */
    position: relative; /* Allows for content layering */
}

.story-container h2 {
    font-size: 2.5rem; /* Larger heading */
    margin-bottom: 20px;
    text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5); /* Add depth to the heading */
    color:  #f5179c; /* Light pink text color for heading */
}

.story-container p {
    font-size: 1.2rem; /* Text size for story */
    margin: 0 auto;
    max-width: 800px; /* Limit paragraph width for readability */
    line-height: 1.8;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent black background for text readability */
    padding: 20px;
    border-radius: 10px; /* Slight rounding for the text box */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5); /* Add shadow to the text box */
}

/* Pink Container */
.pink-container {
    background: #ffe4f2; /* Pink background */
    color: #333; /* Dark text for contrast */
    text-align: center;
    padding: 60px 20px; /* Spacing inside the container */
    box-sizing: border-box; /* Ensure padding doesn't affect width */
    position: relative; /* Allows for content layering */
}

.pink-container h2 {
    font-size: 2.5rem; /* Larger heading */
    margin-bottom: 20px;
    text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5); /* Add depth to the heading */
    color: #6a0dad; /* Purple text color for heading */
}

.pink-container p {
    font-size: 1.2rem; /* Text size for content */
    margin: 0 auto;
    max-width: 800px; /* Limit paragraph width for readability */
    line-height: 1.8;
}

/* Purple Container */
.purple-container {
    background: #6a0dad; /* Purple background */
    color: white; /* White text for contrast */
    text-align: center;
    padding: 1px 20px 20px 20px; /* Spacing inside the container */
    box-sizing: border-box; /* Ensure padding doesn't affect width */
    position: relative; /* Allows for content layering */
}

.purple-container h2 {
    font-size: 2.5rem; /* Larger heading */
    margin-bottom: 20px;
    text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5); /* Add depth to the heading */
    color: #ffe4f2; /* Light pink text color for heading */
}

.purple-container p {
    font-size: 1.2rem; /* Text size for content */
    margin: 0 auto;
    max-width: 800px; /* Limit paragraph width for readability */
    line-height: 1.8;
}

/* Gallery Section */
/* Gallery Grid Layout */
.gallery-grid {
    display: grid; /* Grid layout */
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* Adjusted for 10% wider images */
    gap: 14px; /* Spacing between images */
    padding: 20px; /* Padding around the grid */
    justify-items: center; /* Center align images within the grid */
}

/* Image Container */
.image-container {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Gallery Images */
.image-container img {
    width: 100%; /* Ensures image fills grid column */
    aspect-ratio: 16 / 13.5; /* Adjusted aspect ratio */
    object-fit: cover; /* Crops the image while preserving aspect ratio */
    border-radius: 20px; /* Rounded corners */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Slight shadow */
    transition: transform 0.8s ease-in-out; /* Smooth animations */
    cursor: pointer; /* Pointer cursor for interactivity */
    margin-bottom: 15px;
}

.image-container img.clicked {
    transform: rotateY(180deg) scale(1.2); /* First flip with zoom */
}

.image-container img.second-flip {
    transform: rotateY(360deg) scale(1); /* Back to normal */
}

/* Rosies Moments */
.gallery-wrapper {
    background-color: #f5179c; /* Bright pink background */
    border-radius: 15px; /* Rounded corners for the container */
    padding: 15px; /* Spacing inside the container */
    margin: 0 5px 0 5px; /* 5px gap around the container */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Floating shadow for container */
    display: flex;
    justify-content: center; /* Center align items inside */
    flex-wrap: wrap; /* Allow images to wrap within the container */
}

/* Adjusted Placement for "Click Me" Button */
.click-me {
    position: absolute;
    bottom: 7%; /* Adjusted to move the button 7% up from the bottom */
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1rem;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    padding: 5px 10px;
    border-radius: 10px;
    font-weight: bold;
    text-align: center;
    pointer-events: none; /* Prevent interaction with the text */
}

/* Rotate "Click Me" Text with Image */
.image-container img.clicked + .click-me {
    transform: translateX(-50%) rotateY(180deg); /* Flip text for first state */
}

.image-container img.second-flip + .click-me {
    transform: translateX(-50%) rotateY(360deg); /* Back to upright text */
}

/* Click Effect - Spinning and Scaling */
.image-container img.clicked {
    transform: scale(1.2) rotateX(180deg); /* Grow and rotate upside down */
}

/* Reset Effect */
.image-container img.reset {
    transform: scale(1) rotateX(0); /* Back to original size and orientation */
}

/* General Section Styles */
.section {
    margin: 15px auto; /* Centers the box and adds vertical spacing */
    padding: 1px 20px 20px 20px;
    background: white; /* Default white background */
    border-radius: 15px; /* Rounded corners for tablet look */
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2); /* Floating shadow */
    max-width: calc(100% - 10px); /* Adjusts for 5px margin on left and right */
    text-align: center;
    box-sizing: border-box; /* Includes padding and border in width calculation */
}
.section h2 {
    font-size: 2.5rem;
    color: #6a0dad; /* Purple heading color */
    text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5); /* Add depth to the heading */
    margin-bottom: 20px;
}

.section p, .section ul {
    font-size: 1.2rem; /* Standard paragraph size */
    color: #333; /* Dark text color for readability */
    line-height: 1.8;
}

.section ul {
    list-style-type: disc; /* Disc bullet points */
    margin: 20px auto;
    padding: 0 40px; /* Padding for left alignment */
    text-align: left; /* Align bullets to the left */
}

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

/* Alternate Section Backgrounds */
.section:nth-of-type(odd) {
    background-color: #ffe4f2; /* Light pink background for alternate sections */
}

.section:nth-of-type(even) {
    background-color: #d4a6ff; /* Light purple background for alternate sections */
}

/* Tokenomics Tablet Style */
.tokenomics-item {
    background: #6a0dad; /* Purple background */
    color: white; /* White text for contrast */
    border-radius: 15px; /* Rounded corners for tablet look */
    padding: 20px;
    text-align: center;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2); /* Floating shadow */
}

.tokenomics-item h3 {
    margin-bottom: 10px;
    font-size: 1.5rem; /* Larger and more prominent headings */
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5); /* Add depth to the heading */
    color:  #f5179c;; /* Contrasting color for headings */
}

.tokenomics-item p {
    font-size: 1.1rem; /* Slightly larger text for readability */
    font-weight: lighter;
    color: white;
}

/* Placeholder Image Styling */
.section img {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background-color: #d4a6ff; /* Soft purple background */
    color: #6a0dad; /* Purple text for visibility */
    text-align: center;
    padding: 10px 20px;
   
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2); /* Floating shadow */
}

footer p {
    color: #6a0dad; /* Purple for heading text */
    font-weight: bold;
}

.social-icons {
    display: flex; /* Arrange icons in a row */
    justify-content: center; /* Center align the icons */
    gap: 1%; /* Space between icons */
}

.social-icons a {
    display: inline-flex; /* Ensure anchor tag wraps tightly around the image */
    align-items: center;
    justify-content: center;
    text-decoration: none; /* Remove any underline or border */
}
.social-icons img {
    width: 40px; /* Standard size for social media icons */
    height: 40px; /* Maintain square aspect ratio */
    object-fit: cover; /* Ensure the image fits without distortion */
    border-radius: 50%; /* Optional: make icons circular */
    margin: 0 10px; /* Add spacing between icons */
    transition: transform 0.3s ease-in-out; /* Add a smooth hover animation */
    border: none; /* Remove any outline or border that might create an underscore */
}

.social-icons img:hover {
    transform: scale(1.2); /* Slightly enlarge icon on hover */
}

/* FAQ Container Styles */
.faq-container {
    margin-top: 20px;
    padding: 20px;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    background-color: #6a0dad; /* Purple background */
    color: white;
    padding: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

.faq-question span {
    font-size: 1.5rem;
    margin-right: 10px;
}

.faq-answer {
    background-color: #ffe4f2; /* Light pink background */
    color: #333;
    padding: 15px;
    display: none; /* Hidden by default */
    border-top: 1px solid #e0e0e0;
}

/* FAQ Question Hover Effect */
.faq-question:hover {
    background-color: #580e9e; /* Darker purple for hover */
}

/* Roadmap Container */
.roadmap-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive layout */
    gap: 20px;
    padding: 20px;
    text-align: center;
}

/* Roadmap Item */
.roadmap-item {
    background-color: #ffe4f2; /* Light pink background */
    color: #333; /* Dark text for readability */
    border-radius: 15px; /* Rounded corners for tablet look */
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2); /* Floating shadow */
    padding: 20px;
    transition: transform 0.3s ease-in-out; /* Animation effect */
}

.roadmap-item:hover {
    transform: scale(1.05); /* Slight zoom on hover */
}

/* Roadmap Image */
.roadmap-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin-bottom: 15px;
    border-radius: 10px; /* Rounded edges */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Image shadow */
}

/* Headings for Roadmap Items */
.roadmap-item h2 {
    font-size: 1.5rem;
    color: #6a0dad; /* Purple text color */
    text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5); /* Add depth to the heading */
    margin-bottom: 10px;
}

/* Paragraph for Roadmap Items */
.roadmap-item p {
    font-size: 1.2rem;
    line-height: 1.5;
}

/* Call-to-Action Button */
.cta-button {
    display: block; /* Change to block for full-width centering */
    padding: 12px 30px;
    background-color: #f5179c; /* Initial pink background */
    color: white; /* White text */
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem; /* Larger text for visibility */
    border-radius: 10px; /* Rounded corners */
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Floating shadow */
    transition: background-color 0.5s ease, transform 0.3s ease; /* Smooth fade & hover effect */
    cursor: pointer; /* Pointer cursor for interactivity */
    margin: 0 auto; /* Centers the button horizontally */
    max-width: 200px; /* Restrict the maximum width */
}

.cta-button:hover {
    background-color: #6a0dad; /* Purple background on hover */
    transform: scale(1.05); /* Slight scaling effect on hover */
}


/* Contact Form Styles */
.contact-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: #fff; /* White background for the form */
    border-radius: 15px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2); /* Floating shadow */
    border: 1px solid #e0e0e0;
    text-align: left; /* Ensure left alignment for inputs and labels */
}

.contact-form .form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column; /* Stack label and input vertically */
    align-items: center; /* Center elements horizontally */
}

.contact-form label {
    width: 100%; /* Ensure label spans the full container */
    text-align: left; /* Align text to the left */
    margin-bottom: 5px;
    font-weight: bold;
    color: #6a0dad; /* Purple label color */
}

.contact-form input,
.contact-form textarea {
    width: 90%; /* Center within the container */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: inset 0px 2px 5px rgba(0, 0, 0, 0.1);
    font-size: 1rem;
    color: #333;
}


.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border: 1px solid #6a0dad; /* Purple border on focus */
    box-shadow: 0px 0px 5px rgba(106, 13, 173, 0.5);
}

.contact-form textarea {
    resize: none;
}

.contact-form .form-submit {
    text-align: center;
}

.contact-form .cta-button {
    padding: 10px 20px;
    background-color: #6a0dad; /* Purple background */
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-form .cta-button:hover {
    background-color: #580e9e; /* Darker purple on hover */
    transform: scale(1.05);
}

/* Community Section Enhancements */
#community {
    background: linear-gradient(135deg, #6a0dad, #f5179c); /* Pink to purple gradient */
    color: white; /* White text for contrast */
    padding: 20px; /* Extra padding for breathing space */
    border-radius: 15px; /* Slightly rounded edges for visual appeal */
    text-align: center; /* Center align content */
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2); /* Floating shadow */
}

/* Section Headings */
#community h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    margin-top: 0;
    text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5); /* Add depth to the heading */
    color: #ffe4f2; /* Light pink for headings */
}

/* Intro Paragraph */
#community .intro {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Features List Styling */
#community .features {
    padding: 0; /* No padding for the list */
    list-style: none; /* Remove default bullets */
}

#community .features li {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    margin: 15px 0;
    line-height: 1.8;
    background: rgba(255, 255, 255, 0.2); /* Subtle semi-transparent background */
    border-radius: 10px; /* Rounded edges */
    padding: 10px 20px; /* Padding inside each list item */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Add depth */
    transition: transform 0.3s ease, background-color 0.3s ease; /* Animation for hover effect */
}

/* Icon Styling */
#community .features .icon {
    font-size: 1.5rem;
    margin-right: 15px;
    color: #ffe4f2; /* Light pink icons */
}

/* Hover Effect for List Items */
#community .features li:hover {
    background: rgba(255, 255, 255, 0.4); /* Brighter background on hover */
    transform: scale(1.05); /* Slightly enlarge the item */
}

/* Outro Paragraph */
#community .outro {
    font-size: 1.2rem;
    margin-top: 30px;
    line-height: 1.8;
    font-style: italic; /* Fun and informal */
}

/* Small Button Style */
.small-button {
    display: inline-block;
    padding: 8px 20px; /* Smaller padding for compact form factor */
    background-color: #f5179c; /* Pink background */
    color: white; /* White text */
    text-decoration: none; /* Remove underline */
    font-weight: bold; /* Bold text for visibility */
    font-size: 0.9rem; /* Slightly smaller text size */
    border-radius: 8px; /* Rounded corners for smooth look */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
    transition: background-color 0.3s ease, transform 0.2s ease; /* Smooth hover effect */
}

/* Hover Effect */
.small-button:hover {
    background-color: #6a0dad; /* Change to purple on hover */
    transform: scale(1.05); /* Slightly enlarge on hover */
}

/* Hero Section Carousel */
/* style.css */
.hero-car {
    height: 60vh; /* Relative height for responsive scaling */
    position: relative;
    overflow: hidden; /* Ensures no content overflows */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f4f4f4; /* Background for contrast */
}

.carousel-container {
    display: flex;
    height: 100%;
    width: 100%;
    transform: translateX(0);
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center; /* Vertically centers content */
    justify-content: center; /* Horizontally centers content */
}

.carousel-slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain; /* Maintain aspect ratio and fit within container */
    display: block;
    margin: auto;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.carousel-nav button {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 2rem;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    pointer-events: auto;
    transition: background-color 0.3s ease;
}

.carousel-nav button:hover {
    background-color: #6a0dad;
}


.contract-container {
    background-color: white;
    color: black;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
    width: 100%; /* Ensures the container fits its parent */
    box-sizing: border-box; /* Includes padding in the width */
    overflow-wrap: break-word; /* Allows long words or links to break */
    text-align: center; /* Centers the text inside the container */
}

.contract-container h3 {
    font-size: 1.5rem; /* Keeps the heading larger */
    margin-bottom: 10px; /* Adds spacing below the heading */
}

.contract-container p {
    margin: 0; /* Removes default paragraph margin */
    line-height: 1.6; /* Adjusts line spacing for readability */
    font-size: calc(1vw + 0.5rem); /* Dynamically adjusts font size */
    word-wrap: break-word; /* Ensures text doesn’t overflow */
}

.contract-container a {
    color: #007bff; /* Standard link blue */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.contract-container a:hover {
    color: #0056b3; /* Darker blue on hover */
}
