/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    margin: 0;
    color: #f5f5f5;
    background: linear-gradient(to bottom right, #333, #111);
}

/* Global: Completely Remove Default Cursor */
body, * {
    cursor: none !important; /* Forcefully hide default cursor for all elements */
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
    scrollbar-width: thin; /* Narrow scrollbar */
    scrollbar-color: #4d4d4d #2e2e2e; /* Thumb and track colors */
}

/* General Logo Styles */
.logo-container {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: bold;
    color: #fff;
    text-shadow: 0.5px 2px 2px rgba(0, 0, 0, 0.5);
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    overflow: hidden;
    transition: color 0.3s ease-in-out;
}

/* Initial text ("LC") */
.initials {
    display: inline-flex; /* Ensures elements are aligned inline */
    align-items: center; /* Vertically aligns "uis" and "anales" with "L" and "C" */
    white-space: nowrap;
    text-shadow: 0.5px 2px 2px rgba(0, 0, 0, 0.5);
}

/* Hidden text styling (uis and anales) */
.hidden-text {
    display: inline-block;
    overflow: hidden;
    max-width: 0; /* Hidden by default */
    opacity: 0;
    transform: translateX(-10px);
    transition: max-width 0.5s ease-in-out, opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    vertical-align: baseline; /* Aligns hidden text with the baseline of "L" and "C" */
    line-height: 1; /* Prevents hidden text from misaligning */
}

/* Expand the hidden text on hover */
.logo:hover .hidden-text {
    max-width: 200px; /* Adjust width as necessary */
    transform: translateX(0);
    opacity: 1;
}

/* Initial expanded state (used after page load animation) */
.expanded .hidden-text {
    max-width: 200px;
    transform: translateX(0);
    opacity: 1;
}

/* Smooth transitions for alignment */
.hidden-text,
.initials {
    transition: all 0.5s ease-in-out;
}

/* Color change on hover */
.logo:hover {
    color: #ff6b6b;
}

/* Smooth scroll to top when logo is clicked */
.logo:active {
    transform: scale(0.95); /* Slightly scale the logo when clicked */
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh; /* Set height to 100% of the viewport height */
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column; /* Allows vertical alignment */
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.hero-content h1 {
    font-size: 2vw; /* Scales with the viewport width */
    line-height: 0.5;
    margin: 0;
    padding: 0 10px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Adds depth to text */
}

.hero-content p {
    font-size: 2vw; /* Scales with the viewport width */
    line-height: 0.5;
    margin: 20px auto 0;
    max-width: 800px; /* Limits the width for better readability */
    padding: 0 20px;
}

.hero-content {
    z-index: 1;
    animation: slide-in 1s ease-out;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 8vw; /* Larger font size for smaller devices */
    }

    .hero-content p {
        font-size: 4.5vw; /* Adjust font size for readability */
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 9vw; /* Adjust font size for very small screens */
    }

    .hero-content p {
        font-size: 5vw; /* Smaller font size for paragraph */
    }
}

@keyframes slide-in {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Scroll Up and Down SVG Indicators */
.scroll-down-svg{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    bottom: 30px;
    z-index: 100; /* Ensure they are above other elements */
}

.scroll-down-svg svg{
    width: 30px;
    height: 30px;
}

.scroll-down-svg .arrow{
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.scroll-down-svg .arrow {
    animation: arrowDownAnimation 2s infinite;
}

@keyframes arrowDownAnimation {
    0% {
        opacity: 0;
        transform: translateY(-5px);
    }
    50% {
        opacity: 1;
        transform: translateY(5px);
    }
    100% {
        opacity: 0;
        transform: translateY(15px);
    }
}

/* About Section */
.about-section {
    position: relative;
    background: linear-gradient(to bottom right, #333, #111);
    height: 100vh;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 0 70px;
    z-index: 1;
    flex-wrap: wrap;
}

.about-image-container {
    position: relative;
    width: 350px;
    max-width: 100%;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
}

.about-image-container::before {
    content: '';
    display: block;
    padding-top: 100%; /* Maintains square aspect ratio */
}

.about-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text {
    flex: 1;
    max-width: 600px;
    min-width: 300px;
}

.about-image-container {
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
    transition: box-shadow 0.3s ease;
}

.about-image-container:hover {
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.7);
}

/* Responsive Styles for About Me Section */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column; /* Stack the image and text vertically */
        text-align: center; /* Center-align text */
        padding: 20px; /* Add some padding for spacing */
    }

    .about-image-container {
        width: 70%; /* Reduce image width for smaller screens */
        margin: 0 auto 20px auto; /* Center the image and add space below */
    }

    .about-text {
        font-size: 16px; /* Adjust font size for readability */
        max-width: 100%; /* Use full width for text */
        margin: 0; /* Remove any additional margins */
    }
}

@media (max-width: 480px) {
    .about-content {
        flex-direction: column; /* Stack content vertically */
        align-items: center; /* Center align all items */
        padding: 15px; /* Reduce padding for small screens */
    }

    .about-image-container {
        width: 90%; /* Adjust image width for very small screens */
        max-width: 300px; /* Limit the maximum size */
        margin-bottom: 15px; /* Add spacing below the image */
    }

    .about-text {
        font-size: 14px; /* Reduce text size slightly */
        line-height: 1.4; /* Ensure good readability */
        padding: 10px; /* Add padding for spacing around text */
        margin: 0 auto; /* Center the text block */
    }

    .about-text h2 {
        font-size: 20px; /* Smaller font size for heading */
        margin-bottom: 10px; /* Adjust spacing below the heading */
    }

    .about-text p {
        font-size: 14px; /* Smaller font size for paragraph */
        margin: 0; /* Reset margin for better fit */
    }
}

/* Photography Section */
.photography-section {
    position: relative;
    height: 100vh; /* Full viewport height */
    color: #fff;
    display: flex;
    align-items: center; /* Centers content vertically */
    justify-content: center; /* Centers content horizontally */
    text-align: center;
    overflow: hidden;
    background: url('https://cdn.luisicanales.com/licmedia/main/img/photography-bg.webp') no-repeat center center/cover; /* Add background image */
}

.photography-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
    z-index: 0;
}

.photography-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers children horizontally */
    justify-content: center; /* Centers children vertically if needed */
    padding: 0 20px; /* Adjust for responsive design */
    max-width: 1200px;
    width: 100%;
    text-align: center; /* Ensures text is centered */
    margin: 0 auto; /* Centers the container */
}

.photography-inner h2 {
    font-size: 36px;
    margin-bottom: 10px;
    animation: slide-in 1s ease-out;
}

.photography-inner p {
    font-size: 18px;
    margin-bottom: 20px;
    max-width: 800px;
}

.photography-feed {
    width: 100%;
    max-width: 900px;
    height: 70%; /* Adjust height for better layout */
    display: flex;
    justify-content: center;
    align-items: center;
}

.photography-feed iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    margin: 0 auto; /* Ensures iframe is centered */
    display: block;
}

@media (max-width: 768px) {
    .photography-inner {
        padding: 0 15px;
        width: auto;
        text-align: center;
        display: flex;
        flex-direction: column; /* Stack items vertically */
        align-items: center; /* Center content horizontally */
        justify-content: center; /* Center content vertically */
    }

    .photography-feed {
        width: 100%; /* Allow the feed to use full width */
        max-width: 600px; /* Set a maximum width */
        margin: 20px auto; /* Center horizontally */
        display: flex;
        justify-content: center; /* Center iframe horizontally */
    }

    .photography-feed iframe {
        width: 100%; /* Responsive width */
        max-width: 100%; /* Prevent overflow */
        height: auto; /* Maintain aspect ratio */
    }

    .photography-section h2,
    .photography-section p {
        width: 100%; /* Full width for text */
        text-align: center; /* Center-align text */
        margin: 10px 0; /* Add consistent spacing */
    }
}

/* Fullscreen Websites Section */
.featured-websites-section {
    position: relative;
    background: linear-gradient(to bottom right, #111, #222); /* Background styling */
    height: 100vh; /* Full viewport height for desktop */
    display: flex;
    flex-direction: column; /* Stack title and content vertically */
    align-items: center; /* Center content horizontally */
    justify-content: center; /* Center content vertically */
    text-align: center;
    padding: 20px; /* Padding for responsiveness */
    color: #fff; /* Ensure text visibility */
}

/* Title Styling */
.featured-websites-section h2 {
    font-size: 36px; /* Large title size for desktop */
    margin-bottom: 20px; /* Space below title */
    text-align: center; /* Center-align text */
    color: #fff;
}

/* Websites Container */
.websites-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid */
    gap: 40px; /* Space between website cards */
    width: 100%; /* Full width for container */
    max-width: 1200px; /* Limit maximum width */
}

/* Website Card */
.website-card {
    background: #222; /* Card background */
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column; /* Stack image and details vertically */
    align-items: center;
    padding: 15px; /* Add padding */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
}

.website-card:hover {
    transform: translateY(-10px); /* Lift on hover */
}

.website-preview {
    width: 100%; /* Full width for preview images */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px;
}

.website-details h3 {
    font-size: 20px; /* Adjust font size */
    margin: 15px 0 10px; /* Space above and below */
    color: #fff;
}

.website-details p {
    font-size: 16px; /* Adjust font size */
    color: #bbb; /* Subtle text color */
}

/* Mobile View Adjustments */
@media (max-width: 768px) {
    .featured-websites-section {
        padding: 20px; /* Adjust padding for smaller screens */
    }

    .featured-websites-section h2 {
        font-size: 28px; /* Smaller title size */
        margin-bottom: 15px; /* Reduce spacing */
    }

    .websites-container {
        grid-template-columns: 1fr; /* Single column layout */
        gap: 20px; /* Maintain spacing between cards */
    }

    .website-card {
        padding: 10px; /* Compact padding for smaller screens */
    }

    .website-details h3 {
        font-size: 18px; /* Adjust heading size */
    }

    .website-details p {
        font-size: 14px; /* Adjust paragraph size */
    }
}

/* Very Small Screens (e.g., smartphones) */
@media (max-width: 480px) {
    .featured-websites-section h2 {
        font-size: 24px; /* Smaller title size */
        margin-bottom: 10px; /* Less space below title */
    }

    .website-card {
        padding: 8px; /* Compact padding */
    }

    .website-details h3 {
        font-size: 16px; /* Smaller heading size */
    }

    .website-details p {
        font-size: 12px; /* Smaller paragraph size */
    }
}

/* Fullscreen Videos Section with Overlay (Simplified) */
.promo-videos-section {
    position: relative;
    background: linear-gradient(to bottom right, rgba(17, 17, 17, 0.7), rgba(34, 34, 34, 0.7)),
                url('https://cdn.luisicanales.com/licmedia/main/img/video-bg.webp') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    color: #fff;
}

/* Title Styling */
.promo-videos-section h2 {
    font-size: 36px; /* Large title size for desktop */
    margin-bottom: 20px; /* Space below title */
    text-align: center; /* Center-align text */
    color: #fff;
}

/* Video Container */
.video-container {
    display: flex; /* Flexbox layout */
    flex-direction: row; /* Horizontal layout for larger screens */
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
    gap: 40px; /* Space between videos */
    justify-content: center; /* Center videos horizontally */
    width: 100%; /* Full width for the container */
    max-width: 1200px; /* Limit maximum width */
}

/* Individual Video */
.video {
    flex: 1 1 calc(33.333% - 40px); /* Three columns by default with gaps */
    max-width: 400px; /* Limit maximum width */
    width: 100%; /* Full width within container */
}

.video iframe {
    width: 100%; /* Full width iframe */
    height: auto; /* Maintain proportions */
    aspect-ratio: 16/9; /* Ensure 16:9 aspect ratio */
    border-radius: 10px; /* Rounded corners for iframe */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Subtle shadow */
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .promo-videos-section {
        padding: 20px; /* Adjust padding for smaller screens */
    }

    .promo-videos-section h2 {
        font-size: 28px; /* Reduce title size for mobile */
        margin-bottom: 15px; /* Adjust spacing below title */
    }

    .video-container {
        flex-direction: column; /* Stack videos vertically */
        gap: 15px; /* Adjust spacing between videos */
        align-items: center; /* Center videos horizontally */
    }

    .video {
        width: 100%; /* Full width for each video */
        max-width: 600px; /* Set maximum width */
    }

    .video iframe {
        width: 100%; /* Ensure iframe is fully responsive */
        aspect-ratio: 16/9; /* Maintain aspect ratio */
    }
}

/* Very Small Screens (e.g., smartphones) */
@media (max-width: 480px) {
    .promo-videos-section h2 {
        font-size: 24px; /* Smaller title size for small screens */
        margin-bottom: 10px; /* Reduce spacing below title */
    }

    .video-container {
        gap: 10px; /* Minimize spacing between videos */
    }

    .video iframe {
        width: 100%; /* Full width for smallest devices */
        max-width: 100%; /* Prevent overflow */
        aspect-ratio: 16/9; /* Maintain aspect ratio */
    }
}

/* Contact Form Section */
.contact-form-section {
    position: relative;
    background: linear-gradient(to bottom right, #111, #222);
    height: 100vh; /* Full viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    box-sizing: border-box;
}

  .contact-form-content {
    width: 100%;
    max-width: 500px;
    height: 100%; /* Ensures it fills the section’s height */
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .contact-form-wrapper {
    width: 100%;
    max-width: 500px;  /* Or your preferred width */
    height: 400px;     /* Fixed height for the entire block */
    margin: 0 auto;    /* Centers the wrapper horizontally */
    text-align: center;/* Centers inline content (like the heading) */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertical centering */
    align-items: center;     /* Horizontal centering for flex items */
}

.form-wrapper {
    width: 100%;
    /* Remove any settings that force full width if you want the content centered */
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-form-section h2 {
    margin-bottom: 25px;
    font-size: 36px;
    animation: slide-in 1s ease-out;
    font-family: 'Poppins', sans-serif;
}

/* Form Styling */
.contact-form {
    background: #222;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 500px; /* Limit form width */
    margin: 0 auto; /* Center form horizontally */
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin: 0;
    border: none;
    border-radius: 5px;
    background: #333;
    color: #f5f5f5;
    font-size: 16px;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #bbb;
    font-family: 'Poppins', sans-serif;
}

.contact-form textarea {
    height: 150px;
    resize: none; /* Prevent resizing */
}

.contact-form #send {
    width: 100%;
    padding: 15px;
    border: none;
    background: linear-gradient(to right, #ff6b6b, #ff5252);
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.3s, background 0.3s;
    font-family: 'Poppins', sans-serif;
}

.contact-form #send:hover {
    background: linear-gradient(to right, #ff5252, #ff6b6b);
    transform: scale(1.05);
}

/* Adjustments for Centering and Resizing on Mobile */
@media (max-width: 768px) {
    .contact-form-content {
        display: column; /* Use flexbox for centering */
        justify-content: center; /* Horizontally center */
        align-items: center; /* Vertically center (optional, for full-screen centering) */
        padding: 20px; /* Add some padding for spacing */
        box-sizing: border-box; /* Include padding in width calculations */
    }

    .contact-form {
        width: 90%; /* Reduce form width for smaller screens */
        max-width: 400px; /* Limit maximum width */
        padding: 15px; /* Adjust padding for a smaller form */
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 14px; /* Slightly smaller font for inputs */
        padding: 12px; /* Reduce padding for smaller inputs */
    }

    .contact-form #send {
        font-size: 16px; /* Adjust button font size */
        padding: 12px; /* Ensure button fits well */
    }

    .contact-form-section h2 {
        text-align: center; /* Center the heading text */
        font-size: 24px; /* Adjust font size for mobile */
        margin-bottom: 15px; /* Space below heading */
    }
}

/* Adjustments for very small devices (e.g., smartphones) */
@media (max-width: 480px) {
    .contact-form-section {
        display: flex;
        flex-direction: column;
        align-items: center; /* Center content horizontally */
        justify-content: center; /* Center content vertically */
        height: 100vh; /* Ensure full height for centering */
        padding: 10px; /* Add padding to avoid content being cut off */
        box-sizing: border-box; /* Include padding in size calculations */
    }

    .contact-form-content {
        max-width: 90%; /* Allow form to fit smaller screens */
        width: 100%; /* Utilize available width */
        margin: 0 auto; /* Center horizontally */
        text-align: center; /* Center-align text */
    }

    .contact-form {
        width: 100%; /* Full width for form */
        padding: 15px; /* Adjust padding for compact design */
        box-sizing: border-box; /* Include padding in size calculations */
    }

    .contact-form h2 {
        font-size: 20px; /* Smaller font size for heading */
        margin-bottom: 15px; /* Adjust spacing below heading */
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 14px; /* Adjust input font size */
        padding: 10px; /* Ensure inputs don't overflow */
    }

    .contact-form #send {
        font-size: 14px; /* Adjust button font size */
        padding: 10px; /* Compact button */
    }
}

/* Footer Styles */
.site-footer {
    background: linear-gradient(to right, #ff6b6b, #ff5252);
    color: #fff;
    padding: 40px 20px;
    text-align: center;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo h2 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: bold;
}

.footer-social {
    margin-bottom: 20px;
}

.footer-social a {
    color: #fff;
    font-size: 24px;
    margin: 0 10px;
    display: inline-block;
    transition: transform 0.3s, color 0.3s;
}

.footer-social a:hover {
    transform: translateY(-5px);
    color: #000;
}

.footer-social i {
    pointer-events: none;
}

.site-footer p {
    font-size: 14px;
    opacity: 0.8;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer-logo h2 {
        font-size: 24px;
    }

    .footer-social a {
        font-size: 20px;
        margin: 0 8px;
    }
}

/* Default Text Selection Styles */
::selection {
    background: #ff5252; /* Default red highlight */
    color: #fff;
}

/* Text Selection Styles in Footer */
body.in-footer ::selection {
    background: #222; /* Dark background for better visibility */
    color: #fff;
}

/* For contact form inputs and textareas */
.contact-form input::selection,
.contact-form textarea::selection {
    background: #ff5252; /* Highlight background color for form inputs */
    color: #fff; /* Text color */
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px; /* Narrow scrollbar width */
}

::-webkit-scrollbar-track {
    background: #2e2e2e; /* Dark background for track */
    border-radius: 4px; /* Smooth edges for the track */
}

::-webkit-scrollbar-thumb {
    background: #4d4d4d; /* Thumb color (slightly lighter than the track) */
    border-radius: 4px; /* Rounded thumb */
    border: 2px solid #2e2e2e; /* Adds space between thumb and track */
    transition: background 0.3s; /* Smooth transition for hover effect */
}

::-webkit-scrollbar-thumb:hover {
    background: #6d6d6d; /* Lighter color for hover effect */
}

/* Custom Cursor Base Styles */
.custom-cursor {
    position: fixed;
    width: 15px;
    height: 15px;
    background: linear-gradient(45deg, #ff5252, #ff6b6b); /* Default pink gradient */
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: width 0.3s ease, height 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
    box-shadow: 0 0 10px rgba(255, 82, 82, 0.5);
    mix-blend-mode: lighten;
    opacity: 0.8; /* Default transparency */
}

/* Hover Effects for Buttons (Outside Footer) */
button:hover ~ .custom-cursor {
    transform: scale(2);
    background: rgba(52, 199, 89, 0.4); /* Semi-transparent green */
    box-shadow: 0 0 20px rgba(52, 199, 89, 0.5);
}

/* Hover Effects for Input Fields */
input:hover ~ .custom-cursor,
textarea:hover ~ .custom-cursor {
    transform: scale(1.8);
    background: rgba(0, 132, 255, 0.4); /* Semi-transparent blue for input fields */
    box-shadow: 0 0 15px rgba(0, 132, 255, 0.5);
}

/* Hover Effects for Dropdowns */
select:hover ~ .custom-cursor {
    transform: scale(1.8);
    background: rgba(255, 159, 10, 0.4); /* Semi-transparent orange for dropdowns */
    box-shadow: 0 0 15px rgba(255, 159, 10, 0.5);
}

/* Hover Effects for Links */
a:hover ~ .custom-cursor {
    transform: scale(2.5);
    background: rgba(255, 195, 66, 0.4); /* Semi-transparent yellow-orange for links */
    box-shadow: 0 0 20px rgba(255, 195, 66, 0.5);
}

/* Footer Area */
.site-footer:hover ~ .custom-cursor {
    background: rgba(34, 34, 34, 0.4); /* Semi-transparent dark gray */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    transform: scale(1.5); /* Slightly larger */
    mix-blend-mode: normal;
    opacity: 0.8;
}

/* Footer-Specific Buttons */
.site-footer button:hover ~ .custom-cursor {
    transform: scale(2);
    background: rgba(135, 135, 245, 0.4); /* Semi-transparent blue for footer buttons */
    box-shadow: 0 0 20px rgba(135, 135, 245, 0.5);
    opacity: 0.6; /* Lighter opacity for footer buttons */
}

/* Hover Effects for Iframes and Videos */
iframe:hover ~ .custom-cursor,
.video-container:hover ~ .custom-cursor {
    transform: scale(3);
    background: rgba(135, 66, 245, 0.4); /* Semi-transparent purple */
    box-shadow: 0 0 25px rgba(135, 66, 245, 0.5);
}

/* Hover Effects for Carousels */
.carousel:hover ~ .custom-cursor {
    transform: scale(2.5);
    background: rgba(66, 245, 245, 0.4); /* Semi-transparent cyan */
    box-shadow: 0 0 20px rgba(66, 245, 245, 0.5);
}

/* Text Selection Cursor Effects */
body ::selection ~ .custom-cursor {
    width: 30px;
    height: 30px;
    background: rgba(245, 66, 245, 0.4); /* Semi-transparent magenta */
    box-shadow: 0 0 15px rgba(245, 66, 245, 0.5);
}

/* Default Transparent Hover State for All Other Interactions */
.custom-cursor.interacting {
    width: 30px;
    height: 30px;
    background: rgba(253, 219, 146, 0.3); /* Semi-transparent gold */
    box-shadow: 0 0 20px rgba(253, 219, 146, 0.4);
}

/* Remove custom cursor for touch devices */
@media (hover: none) and (pointer: coarse) {
    .custom-cursor {
        display: none; /* Hide the custom cursor */
    }

    /* Restore default cursor for all elements */
    body, * {
        cursor: auto !important; /* Revert to default cursor */
    }

    /* Disable hover effects on touch devices */
    .logo:hover .hidden-text {
        max-width: none; /* Prevent hover-based expansion */
    }
}

/* Center buttons horizontally with proper spacing */
.form-group {
    display: flex; /* Enable flexbox for alignment */
    justify-content: center; /* Center items horizontally */
    gap: 15px; /* Add spacing between buttons */
    width: 100%; /* Full width of the container */
    margin-bottom: 20px; /* Adjust margin below each group */
}

/* Add extra margin for the last button (Go Back) */
.form-group:last-child {
    margin-top: 20px; /* Add spacing above the last group */
}

/* Base Button Styles */
.choice-button {
    width: 100%; /* Full width within parent */
    max-width: 250px; /* Reduce max width slightly for better layout */
    font-size: 16px;
    padding: 12px 20px; /* Adjust padding for a balanced look */
    text-align: center;
    border: none;
    border-radius: 25px; /* Matches all buttons */
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    transition: transform 0.3s, background 0.3s; /* Smooth hover effect */
    margin: 0; /* Remove default margin */
}

/* WhatsApp Button */
.whatsapp-button {
    background: linear-gradient(to right, #25d366, #128c7e); /* WhatsApp green gradient */
    color: #fff;
}

.whatsapp-button:hover {
    background: linear-gradient(to right, #128c7e, #25d366); /* Reverse hover gradient */
    transform: scale(1.05); /* Slight scale on hover */
}

/* Email Button */
.email-button {
    background: linear-gradient(to right, #ffb74d, #ffa726); /* Orange gradient */
    color: #fff;
}

.email-button:hover {
    background: linear-gradient(to right, #ffa726, #ffb74d); /* Reverse hover gradient */
    transform: scale(1.05);
}

/* Cancel Button */
.cancel-button {
    background: linear-gradient(to right, #e57373, #ef5350); /* Red gradient */
    color: #fff;
}

.cancel-button:hover {
    background: linear-gradient(to right, #ef5350, #e57373);
    transform: scale(1.05);
}

/* Share via Other Button */
.other-button {
    background: linear-gradient(to right, #8e44ad, #9b59b6); /* Purple gradient */
    color: #fff;
}

.other-button:hover {
    background: linear-gradient(to right, #9b59b6, #8e44ad); /* Reverse hover gradient */
    transform: scale(1.05);
}

/* Smooth fade-in and fade-out transitions */
.fade-in {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.fade-out {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Adjustments for choice buttons on very small devices */
@media (max-width: 480px) {
    .choice-button {
        width: 100%; /* Full width for buttons */
        font-size: 16px; /* Adjust font size for smaller screens */
        padding: 12px; /* Adjust padding for compact design */
        margin-bottom: 10px; /* Add spacing between buttons */
        box-sizing: border-box; /* Include padding in size calculations */
    }

    .choice-button.cancel {
        background: #ff6b6b; /* Ensure distinct color for cancel button */
        font-size: 14px; /* Slightly smaller font for cancel button */
    }

    .choice-button:hover {
        transform: scale(1.02); /* Subtle hover effect */
    }

    /* Center-align text for the message */
    .contact-form p {
        font-size: 14px; /* Adjust text size */
        margin-bottom: 20px; /* Add spacing below the message */
    }
}