/* General Styling */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f4f4f9;
    color: #333;
    margin: 0;
    padding: 0;
}
/* App Store and Google Play Store Buttons */
.store-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px; /* Space between the buttons */
    margin-top: 30px; /* Space above the buttons */
}

.store-btn-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px; /* Increased height for larger buttons */
    padding: 8px;  /* Increased padding for a larger click area */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.store-btn-wrapper:hover {
    transform: scale(1.2);  /* Slightly larger hover effect */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Hover shadow */
}

.store-btn {
    height: 100%;  /* SVGs scale to fit the increased height */
    width: auto;   /* Width adjusts automatically */
    object-fit: contain;  /* Ensures the image maintains its aspect ratio */
}



h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 3.5rem;
}
/* Navigation Menu */

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 1px 20px 50px; /* Adjust this padding as needed */
    background-color: #01203F;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-image: none 
}

/* Center the Navigation Links */
.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* Base Navigation Link Styling */
.nav-links li a {
    font-size: 1.7rem;
    color: #ffffff;
    font-weight: 600;
    padding: 10px 15px;
    text-decoration: none;   
    display: inline-block; /* Allows transform to apply correctly */
    transition: transform 0.3s ease;
}

/* Hover Effect: Adjust padding and font weight */
.nav-links li a:hover {
    transform: scale(1.2);
}


/* Social Icon (Instagram) */
.social-icon {
    display: flex;
    align-items: center;
    margin: 0; /* Ensure no extra margin */
    padding: 0; /* Ensure no extra padding */
}

.icon {
    width: 35px;
    height: 35px;
    margin: 0; /* Remove any margin that might push it away from the right edge */
    transition: transform 0.3s ease;
}

.icon:hover {
    transform: scale(1.2);
}


/* Logo Container */
.logo-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 2px; /* Minimal gap for close alignment */
}

.logo-svg {
    width: 60px; /* Increase the size of the logo icon */
    height: auto;
}

.logo-text {
    font-size: 3rem; /* Make the text even larger */
    font-weight: bold;
    color: #00bcd4; /* Cyan color to match your theme */
    text-transform: lowercase; /* Keep "rabit" in lowercase */
}

.logo-tagline {
    font-size: 1.2rem;
    color: #ffffff;
    margin-top: -8px;
    opacity: 0.8;
}



.nav-links {
    display: flex;
    gap: 20px; /* Space between links */
    list-style-type: none;
    margin: 0;
    padding: 0;
}



.nav-links li {
    list-style: none; /* Additional coverage for list items */
}


.social-icon, .nav-links {
    display: flex;
    align-items: center;
}

.icon {
    width: 35px;
    height: 35px;
    margin-left: px;
    transition: transform 0.3s ease;
}

.icon:hover {
    transform: scale(1.2);
}

/* Burger and Instagram for Mobile */
.burger-and-instagram {
    display: flex;
    align-items: center;
}

.mobile-instagram {
    display: none;
}

/* Burger Menu */
.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 5px;
    transition: all 0.3s ease;
}


/* Default Desktop Layout */
.hero {
    background:  #01203F;
    color: #fff;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
}

.hero-content-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.newsletter-signup {
    flex-basis: 30%;
    text-align: left;
}

.hero-image-container {
    width: 380px; /* Adjust as needed */
    height: 590px;
    position: relative;
    margin: 0 20px;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.hero-content {
    flex-basis: 30%;
    text-align: left;
}

/* Mobile Layout */
@media screen and (max-width: 768px) {
    .hero {
        padding: 20px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-content-container {
        flex-direction: column;
        align-items: center;
    }

    .newsletter-signup,
    .hero-image-container,
    .hero-content,
    .store-buttons {
        width: 100%;
        max-width: 300px;
        margin-bottom: 20px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        color: #00bcd4;
    }

    .mission-description {
        font-size: 1rem;
    }
}




/* Hero Content Container */
.hero-content-container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Left Side Content (Newsletter and App Store Buttons) */
.left-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    flex-basis: 30%;
    padding-left: 0;
}

/* Hero Image Styling */
.hero-image-container {
    position: relative;
    width: 380px; /* Increase width */
    height: 590px; /* Increase height */
    flex-shrink: 0;
    margin: 0 20px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display:none
}

.hero-image.active {
    opacity: 1;
    display:block
}

/* Mission Description Styling */
.mission-description {
    font-size: 1.2rem;
    color: #fff; /* Set text color to white */
}

.mission-description .brand-name {
    color: #00bcd4; /* Cyan color for 'Prabit' */
    font-weight: bold;
}


/* Right Side Content (Mission Statement) */
.hero-content {
    max-width: 350px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-basis: 30%;
    color: #00bcd4;
    ;
}


/* App Store and Google Play Store Buttons */
.store-buttons {
    display: flex;
    gap: 15px;
}

.store-btn-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.store-btn-wrapper:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.store-btn {
    width: 150px;
    height: auto;
}

/* Newsletter Styling */
.newsletter-signup {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.newsletter-signup p {
    font-size: 2.1rem;
    margin: 0;
}

.newsletter-input-group {
    display: flex;
    gap: 10px;
}

.newsletter-input {
    padding: 10px;
    width: 220px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.newsletter-btn {
    padding: 10px 20px;
    background-color: #2e9ac5;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.newsletter-btn:hover {
    background-color: #217292;
}





/* Section Styling */
section {
    padding: 80px 20px;
    text-align: center;
}

h2 {
    margin-bottom: 60px;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}




/* Team Section Styling */
.team {
    background-color: #f9f9f9; /* Light background to differentiate section */
    padding: 80px 20px;
    text-align: center;
}

/* Title Styling */
.team h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Grid Layout */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Adjusted min-width */
    gap: 20px; /* Added gap for better spacing */
    justify-items: center;
}

/* Team Member Card Styling */
.team-member {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    width: 100%;
    max-width: 320px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect for team members */
.team-member:hover {
    transform: translateY(-5px); /* Slightly lift the card on hover */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); /* Slightly softer hover shadow */
}

/* Circular Team Member Images */
.team-image {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
    border: 3px solid #00bcd4; /* Accent border color */
    transition: transform 0.3s ease;
}

/* Slight zoom on image hover */
.team-member:hover .team-image {
    transform: scale(1.08); /* Subtle zoom on hover */
}

/* Team Member Name Styling */
.team-member h3 {
    font-size: 1.6rem;
    color: #333;
    margin: 15px 0 10px;
    font-weight: 600;
}

/* Fix text width and alignment */
.team-member p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    max-width: 85%;  /* Limits text width */
    margin: 0 auto;  /* Centers the text */
    text-align: center; /* Keeps the layout consistent */
}





/* FAQ Styling */
/* FAQ Section */
/* FAQ Section */
.faq {
    background-color: #f9f9f9;
    padding: 80px 20px;
    text-align: center;
}

.faq h2 {
    font-size: 2.5rem;
    color: #00bcd4;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* FAQ List Styling */
.faq-list {
    list-style-type: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-list li {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* FAQ Question Styling */
.faq-question {
    font-weight: bold;
    font-size: 1.2rem;
    color: #333;
    cursor: pointer;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #e0e0e0;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #d0d0d0;
}

/* FAQ Icon Styling */
.faq-icon {
    font-size: 1.5rem;
    color: #00bcd4;
    transition: transform 0.3s ease; /* Smooth rotation */
}

/* Rotate the icon when active */
.faq-question.active .faq-icon {
    transform: rotate(180deg); /* Rotate 180 degrees to flip arrow */
}

/* FAQ Answer Styling with Smooth Height Animation */
.faq-answer {
    padding: 0 20px;
    max-height: 0; /* Start hidden */
    overflow: hidden; /* Hide overflowing content */
    background-color: #f4f4f4;
    font-size: 1rem;
    color: #555;
    border-top: 1px solid #ddd;
    transition: max-height 0.3s ease; /* Smooth height transition */
}

/* When FAQ answer is shown */
.faq-answer.open {
    max-height: 200px; /* Set a max height to smoothly expand */
    padding: 15px 20px; /* Padding only visible when open */
}



/* Button Hover Animation */
.cta-btn, button {
    transition: transform 0.3s ease;
}

.cta-btn:hover, button:hover {
    transform: scale(1.05);
}

/* Consistent Image Sizing */
img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 5px;
}


/* Contact Section */
.contact {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #D6E4F0;
    color: #01203F;
    padding: 100px 20px;
    text-align: center;
}

.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 2500px; /* Increase max width for larger screens */
    margin: 0 auto;
    width: 100%; /* Full width for smaller screens */
}


.contact h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 40px;
    font-weight: 700;
    letter-spacing: 1px;
}



/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    width: 100%; /* Ensure form fills the container width */
    max-width: 600px; /* Control max width of the form for readability */
    margin: 0 auto; /* Center horizontally within the .contact container */
    background-color: #ffffff;
    padding: 20px; /* Reduced padding for smaller screens */
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    box-sizing: border-box; /* Ensure padding and borders are included in width calculations */
}

/* Form Group Styling */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-size: 1rem;
    color: #34495e;
    margin-bottom: 6px;
    display: block;
    font-weight: 500;
}

/* Input Fields Styling */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    display: block;
    margin: 0 auto;
    padding: 12px;
    font-size: 1rem;
    color: #34495e;
    background-color: #f7f9fc;
    border: 1px solid #dcdfe6;
    border-radius: 8px;
    outline: none;
    width: 100%; /* Full width of the form container */
    max-width: 500px; /* Restrict width to prevent excessive stretching */
    box-sizing: border-box;
    transition: border-color 0.3s, background-color 0.3s;
    text-align: left; /* Align text to the left */
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Focus effect */
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #00bcd4;
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(52, 152, 219, 0.15);
}

/* Button Styling */
.contact-form button {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background-color: #00bcd4;
    border: none;
    padding: 12px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #019caf;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .contact-form {
        padding: 15px; /* Reduce padding for smaller screens */
    }

    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form textarea {
        width: 100%; /* Ensure fields fill the container */
        font-size: 0.9rem; /* Adjust font size for smaller screens */
    }

    .contact-form button {
        font-size: 0.9rem; /* Adjust button size */
        padding: 10px 15px;
    }
}
/* Footer */
footer {
    padding: 20px;
    background-color: #01203F;
    color: #00bcd4; 
    text-align: center;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}




/* Screenshots Section */
.screenshots {
    background: #6E7F8D;
    padding: 60px 20px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden; /* Ensures floating emojis don't overflow the section */
}

.screenshots h2 {
    font-size: 2.5rem;
    color: #00bcd4;
    margin-bottom: 40px;
    text-transform: uppercase;
}

/* Screenshot Container */
/* Screenshot Section */
.screenshot-container {
    display: flex; /* Aligns items horizontally */
    align-items: center; /* Ensures arrows align vertically in the middle */
    gap: 20px; /* Adjust space between screenshots and arrows */
}

.screenshot-item {
    text-align: center; /* Centers text and images within each item */
}


/* Flow Diagram Styling */
/* Flow Diagram Styling */
.flow-diagram {
    margin-top: 40px; /* Space above the diagram */
    text-align: center;
}

.flow-diagram h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #00bcd4; /* Matches your theme's cyan color */
}

/* Resized Flow Diagram Image */
.flow-diagram-image {
    max-width: 35%; /* Shrinks the image to 25% of the parent container */
    height: auto;   /* Maintains aspect ratio */
    margin: 0 auto; /* Centers the image horizontally */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Optional shadow for visibility */
}




/* Screenshot Images */
.screenshot-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 15px 0;
    transition: transform 0.3s ease;
}

.screenshot-item:hover .screenshot-image {
    transform: scale(1.05);
}

/* Overlay Emojis on Titles */
.feature-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #00bcd4;
    margin-bottom: 10px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}



/* Arrows Between Screenshots */
.arrow {
    font-size: 2rem; /* Adjust size of the arrow */
    display: flex;
    align-items: center; /* Vertically centers the arrow */
    justify-content: center; /* Ensures proper horizontal alignment */
    color: #00bcd4; /* Optional: Add color for the arrow */
}

/* Bounce Animation for Arrows */




/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .screenshot-container {
        flex-direction: column;
        align-items: center;
    }

    .arrow {
        transform: rotate(90deg); /* Rotate arrows vertically for smaller screens */
    }
}

/* Video Player Styling */
.feature-video {
    padding: 75px 20px;
    text-align: center;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    padding-top: 20px; /* Removes extra padding at the top */

}

.feature-video h2 {
    font-size: 3.4;
    color: #00bcd4;
    margin-bottom: 20px;    
    margin-top: 0; /* Removes top margin on the heading */

}



.custom-video-player {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}
/* Mobile View Styling */
@media screen and (max-width: 768px) {
    
    /* Initially hidden and styled for the center */
    .nav-links {
       display: none;
       flex-direction: column;
       background-color: #01203F;
       position: fixed; /* Fix it to the viewport */
       top: 13%; /* Center vertically */
       left: 7%; /* Center horizontally */
       transform: translate(-50%, -50%) scale(0); /* Start scaled down */
       width: 80%; /* Adjust width */
       padding: 20px; /* Add padding for content */
       border-radius: 10px; /* Rounded edges */
       text-align: center; /* Center the text */
       z-index: 1000; /* Ensure it appears above other elements */
       transition: transform 0.3s ease; /* Smooth animation */
   }
   
   
       .nav-links.active {
           display: flex;
           transform: translateY(0);
   
       }
   
       .burger-and-instagram {
           display: flex;
       }
   
       .mobile-instagram {
           display: block;
           margin-right: 10px;
       }
   
       .burger {
           display: block;
           ;
       }
       /* Burger Animation */
   .burger.active .line1 {
       transform: rotate(45deg) translate(5px, 5px);
   }
   .burger.active .line2 {
       opacity: 0;
   }
   .burger.active .line3 {
       transform: rotate(-45deg) translate(5px, -5px);
   }
   
   
      
       
           
   
       /* Team Section */
       .team-grid {
           grid-template-columns: 1fr;
           gap: 20px;
           
       }
   
       .team-member {
           max-width: 100%;
       }
   
       /* FAQ Section */
       .faq-list li {
           font-size: 1rem;
           padding: 10px;
       }
   
       .faq-question {
           padding: 10px 15px;
           font-size: 1rem;
       }
   
       /* Contact Form */
       .contact-form {
           padding: 20px;
       }
   
       /* Footer */
       footer {
           font-size: 0.9rem;
           padding: 10px;
       }
   }
/* Define the color variables */
:root {
    --dark-blue: #01203F;  /* Dark blue used in the hero section */
    --light-blue: #6E7F8D; /* Light blue */
}

/* General section styling */
section {
    padding: 80px 20px;
    text-align: center;
    color: #fff;
}



/* Alternating Backgrounds */
section:nth-of-type(odd) {
    background-color: var(--dark-blue);
}

section:nth-of-type(even) {
    background-color: var(--light-blue);
    color: #01203F;  /* Darker text color for better contrast */
}

/* Additional styling for better readability on light background */
section:nth-of-type(even) h2,
section:nth-of-type(even) p {
    color: #01203F; /* Darker text color on light blue background */
}




/* Remove border radius from common containers */
section {
    border-radius: 0 !important; /* Force removal of any rounded corners */
}

/* Footer Styling */
footer {
    padding: 20px;
    background-color: #01203F;
    color: #00bcd4;
    text-align: center;
    font-size: 0.9rem;
}

/* Footer Links */
.footer-links {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-links a {
    color: #00bcd4;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
}
/* Cookie Banner Styling */
.cookie-banner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dims the background */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.cookie-banner {
    background-color: #01203F;
    color: #ffffff;
    padding: 20px;
    max-width: 500px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cookie-banner p {
    margin: 0 0 20px 0;
    font-size: 1rem;
}

.cookie-banner a {
    color: #00bcd4;
    text-decoration: underline;
}

.cookie-banner button {
    background-color: #00bcd4;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cookie-banner button:hover {
    background-color: #008bb5;
}
.form-consent {
    display: flex;
    align-items: center;
    margin: 10px 0;
    font-size: 0.9rem;
}

.form-consent input[type="checkbox"] {
    margin-right: 8px;
}

/* Sticky Support Banner Styling */
/* Enhanced Sticky Support Banner Styling */
.support-banner {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%; /* Adjust width as needed */
    max-width: 1200px; /* Optional: Limit the banner's width */
    padding: 15px;
    background: linear-gradient(135deg, #00bcd4, #01203F);
    color: white;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    border-radius: 10px; /* Add a rounded look */
}

.support-banner p {
    margin: 0;
    font-size: 1rem;
    text-align: center;
}

.support-banner a {
    color: #ffd700;
    font-weight: bold;
    text-decoration: underline;
    margin-left: 10px;
}

.support-banner button {
    background: white;
    color: #01203F;
    border: none;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    margin-left: 10px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
}

.support-banner button:hover {
    background: #ffd700;
}


/* Animation to slide the banner up when it appears */
@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}



.support-banner a:hover {
    color: #ffffff;
}

/* Updated Close Button Styling */
/* Compact Close Button Styling */
/* Compact Close Button with Hold-Down Effect */
/* Compact Close Button with Hold-Down Effect and 'X' Icon */
/* Compact Close Button with Hold-Down Effect and Centered 'X' Icon */


/* 'X' icon for close button */
.support-banner button::before {
    content: "✕"; /* The 'X' symbol */
    font-size: 1.1rem; /* Adjusted size for better centering */
    color: #01203F;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hold-down progress animation inside the button */
.support-banner button::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2); /* Semi-transparent overlay */
    transform-origin: bottom;
    transform: scaleY(0); /* Start with no overlay */
    transition: transform 1s linear; /* Animate over 2 seconds */
}

/* Progress overlay when holding down */
.support-banner button.holding::after {
    transform: scaleY(1); /* Full overlay to indicate hold completion */
}

.support-banner {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%; /* Adjust width as needed */
    max-width: 1200px; /* Optional: Limit the banner's width */
    padding: 15px;
    background: linear-gradient(135deg, #00bcd4, #01203F);
    color: white;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    border-radius: 10px; /* Add a rounded look */
}

.support-banner p {
    margin: 0;
    font-size: 1rem;
    text-align: center;
}

.support-banner a {
    color: #ffd700;
    font-weight: bold;
    text-decoration: underline;
    margin-left: 10px;
}

.support-banner button {
    color: #083f01;
    border: none;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    margin-left: 10px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
}

.support-banner button:hover {
    background: #ffd700;
}



/* Learn More Button Styling */
.description-button {
    text-align: center;
    margin-top: 20px;
}

.description-button button {
    padding: 12px 20px;
    font-size: 1rem;
    background-color: #00bcd4;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.description-button button:hover {
    background-color: #019caf;
}

/* App Details Section */
.app-details {
    background-color: #f4f4f9;
    color: #333;
    padding: 60px 20px;
    text-align: center;
}

.app-details h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #00bcd4;
}

.app-details p {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 20px;
}






