@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap');

/* Background Image Container */
.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('background.jpg'); /* Path to the background image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1; /* Ensure it stays behind other content */
    filter: blur(10px); /* Apply blur effect */
}

/* Body Content */
body {
    position: relative;
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    color: #fff;
    z-index: 1;
}

/* Sticky Header Styles */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid #333;
    box-sizing: border-box;
}

.header-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 10px;
}

.logo {
    max-width: 50px;
}

.nav-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex: 1; /* Center the navigation buttons */
}

.nav-button {
    color: #fff;
    font-size: 16px;
    padding: 5px 5px;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-button:hover {
    opacity: 0.7;
}

.get-started {
    display: inline-block;
    padding: 6px 14px;
    font-size: 14px;
    font-weight: 500;
    color: white;
    background-color: #1a73e8;
    border: 2px solid #1a73e8;
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
}

.get-started:hover {
    background-color: #0dd7e9;
    color: #fff;
    transform: translateY(-3px);
}

.center-content {
    max-width: 600px;
    margin: 0 auto;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
    font-weight: 700;
}

header p {
    margin: 20px 0 30px;
    font-size: 1.1em;
    font-weight: 400;
}

/* Chat Box */
.chat-box {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 300px; /* Original chat box padding */
    max-width: 800px; /* Original max width */
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.chat-window {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 30px;
    margin-top: 30px;
    max-width: 70%; /* Original max width */
    margin-left: auto;
    margin-right: auto;
    max-height: 300px; /* Original max height */
    overflow-y: auto;
}

.chat-input-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.chat-input {
    flex: 1;
    padding: 10px;
    font-size: 1.2em;
    border: 2px solid #ccc;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.chat-input::placeholder {
    color: #fff; /* Make the placeholder text color white for better readability */
    opacity: 1; /* Ensure it's fully opaque */
}

.chat-submit {
    margin-left: 10px;
    padding: 10px 20px;
    font-size: 1.2em;
    font-weight: 500;
    color: white;
    background-color: #0dd7e9;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.chat-submit:hover {
    background-color: #0bb5d4;
    transform: translateY(-3px);
}

.container {
    max-width: 90%;
    margin: 0 auto;
    padding: 20px;
    padding-top: 100px;
}

.about, .portfolio, .advantages, .contact-form {
    margin-bottom: 60px;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

h1, h2 {
    color: #fff;
    text-align: center;
}

h1 {
    font-size: 2.5em;
    font-weight: 700;
    margin-top: 20px;
}

h2 {
    font-size: 2em;
    margin-bottom: 20px;
    position: relative;
    font-weight: 700;
}

h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #0dd7e9;
}

p {
    line-height: 1.7;
    font-size: 1.1em;
    margin-bottom: 20px;
    font-weight: 400;
    text-align: center;
}

.video-slider-horizontal {
    margin-top: 20px;
    position: relative;
}

.slick-dots {
    text-align: center;
    margin-top: 20px;
    bottom: -30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: relative;
}

.slick-dots li {
    list-style: none;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.slick-dots li button::before {
    content: none !important;
    display: none !important;
}

.slick-dots li button {
    background: none;
    border: none;
    width: 10px;
    height: 10px;
    padding: 5px;
    border-radius: 50%;
    background-color: #0dd7e9;
    cursor: pointer;
    margin: 0 5px;
    font-size: 0;
    line-height: 0;
}

.slick-dots li.slick-active button {
    background-color: #1a73e8;
}

.slick-prev, .slick-next {
    display: none;
}

.video-slide {
    text-align: center;
}

.video-slide video {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

/* Responsive Sections */
.section {
    padding: 60px 20px;
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.section p {
    font-size: 1.1em;
    line-height: 1.7;
    text-align: center;
}

.section h2 {
    margin-bottom: 20px;
    font-size: 2em;
}

.gif-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.feature-item {
    text-align: center;
    flex: 1;
}

.gif-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.portfolio-items {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.portfolio-item {
    flex: 1 1 calc(33.333% - 20px);
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
}

.portfolio-item h3 {
    color: #fff;
    font-size: 1.6em;
    margin-bottom: 15px;
    font-weight: 500;
}

.contact-form {
    width: 50%;
    margin: 0 auto;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #fff;
}

.contact-form input, .contact-form textarea {
    padding: 10px;
    margin-bottom: 20px;
    font-size: 1.1em;
    border: 2px solid #ccc;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.contact-form button {
    padding: 14px 28px;
    font-size: 1.2em;
    font-weight: 500;
    color: white;
    background-color: #0dd7e9;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.contact-form button:hover {
    background-color: #0bb5d4;
    transform: translateY(-3px);
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0; /* Slimmer footer */
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.5);
    font-size: 0.7em;
}

footer p {
    margin: 0;
    font-weight: 400;
}

/* Popup Styles */
.popup {
    display: none;
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.popup-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.popup-content h2 {
    margin-top: 0;
    font-size: 24px;
    color: #0dd7e9;
}

.popup-content p {
    font-size: 16px;
    color: #333;
}

.close-popup {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    padding: 0;
    margin: -10px;
}

.close-popup:hover,
.close-popup:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    header {
        flex-direction: row;
        justify-content: space-between;
        padding: 8px 10px;
    }

    .nav-buttons {
        gap: 5px;
        justify-content: center;
    }

    .get-started {
        position: absolute;
        top: 10px;
        right: 10px;
        margin: 0;
    }

    .gif-container {
        flex-direction: column;
        align-items: center;
    }

    .portfolio-items {
        flex-direction: column;
    }

    .portfolio-item {
        flex: 1 1 100%;
    }

    .bottom-row {
        flex-direction: column;
    }

    .chat-input-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .chat-submit {
        margin-left: 10px;
        width: auto;
    }

    .chat-box {
        padding: 20px;
        width: 100%;
        max-width: 800px;
    }

    .chat-window {
        max-width: 100%;
        max-height: 300px;
    }

    .section {
        padding: 40px 15px;
        margin-bottom: 30px;
    }

    .contact-form {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .nav-button {
        font-size: 12px;
        padding: 5px 8px;
    }

    .chat-submit {
        font-size: 1em;
        padding: 8px 15px;
    }

    .chat-input {
        font-size: 1em;
        padding: 8px;
    }

    h1 {
        font-size: 1.5em;
    }

    h2 {
        font-size: 1.4em;
    }

    p {
        font-size: 0.9em;
    }

    .chat-box {
        padding: 80px 0px; /* Increase vertical padding for a longer chat-box */
        max-height: 600px; /* Optional: Set a maximum height if necessary */
        margin-bottom: 60px;
    }

    .section {
        padding: 40px 15px; /* Keep padding reasonable to avoid shrinking */
        margin-bottom: 30px;
        max-width: 100%; /* Ensure the section takes the full width */
    }

    .contact-form {
        width: 90%; /* Ensure contact form takes full width */
    }

    .portfolio-items {
        flex-direction: column; /* Stack portfolio items vertically */
    }

    .portfolio-item {
        flex: 1 1 100%; /* Ensure items take full width */
    }
}




/* Import Font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');

/* Global Font Style */
body, h1, h2, h3, h4, h5, h6, p, a, input, button, textarea, label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: #fff;
}

/* Headings */
h1 {
    font-size: 2.5em;
    font-weight: 700;
    margin-top: 20px;
    text-align: center;
}

h2 {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    text-align: center;
}

h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #0dd7e9;
}

/* Paragraphs */
p {
    font-size: 1.1em;
    font-weight: 400;
    text-align: center;
    color: #ddd;
}

/* Navigation Buttons */
.nav-button {
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    transition: opacity 0.3s;
}

.get-started {
    padding: 6px 14px;
    font-size: 14px;
    font-weight: 700;
    color: white;
    background-color: #1a73e8;
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
}

.get-started:hover {
    background-color: #0dd7e9;
    transform: translateY(-3px);
}

/* Form Inputs and Buttons */
.chat-input, .contact-form input, .contact-form textarea {
    font-size: 1em;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px solid #ccc;
    border-radius: 30px;
}

.chat-submit, .contact-form button {
    font-weight: 700;
    color: white;
    background-color: #0dd7e9;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.chat-submit:hover, .contact-form button:hover {
    background-color: #0bb5d4;
    transform: translateY(-3px);
}

/* Contact Form Labels */
.contact-form label {
    font-size: 1.2em;
    color: #fff;
}

/* Footer Text */
footer p {
    font-size: 0.9em;
    color: #ddd;
    font-weight: 400;
}

/* Portfolio and Feature Item Titles */
.portfolio-item h3, .feature-item h3 {
    font-size: 1.5em;
    color: #fff;
    font-weight: 700;
}

/* Portfolio and Feature Items */
.portfolio-item, .feature-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
    padding: 20px;
    text-align: center;
}

.portfolio-item:hover, .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
}






/* Slick Carousel Dots with Consistent Styling */
.slick-dots {
    position: absolute;
    bottom: 15px; /* Adjust as needed */
    width: 100%;
    display: flex !important;
    justify-content: center !important;
    z-index: 1000; /* Ensure it's above other elements */
}

.slick-dots li {
    list-style: none;
    margin: 0 5px; /* Space out the dots */
}

.slick-dots li button {
    background-color: #0dd7e9; /* Base color for dots */
    width: 12px; /* Standard size for dots */
    height: 12px;
    border-radius: 50%; /* Round shape */
    border: none; /* Remove any border */
    cursor: pointer;
    outline: none; /* Remove focus outline */
    transition: background-color 0.3s ease; /* Smooth transition */
}

.slick-dots li.slick-active button {
    background-color: #1a73e8; /* Different color for active dot */
}





/* Updated styling for video slider without flex */
.video-slider-horizontal {
    position: relative;
    width: 100%; /* Full width of the container */
    overflow: hidden;
    margin: 0 auto;
}

.video-slide {
    text-align: center; /* Centers the video horizontally */
    width: 100%;
    margin: 0 auto;
}

.video-slide video {
    width: 100%; /* Full width of the slide */
    height: auto; /* Maintain aspect ratio */
    max-width: 100%;
    object-fit: contain; /* Prevents cropping */
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5); /* Optional: Adds shadow */
}



.about .slick-dots {
    position: relative; /* Ensures it stays within the about section */
    display: flex !important;
    justify-content: center;
    margin: 20px 0 0 0; /* Adds some space above the dots */
    padding: 0;
    list-style-type: none;
}

.about .slick-dots li {
    margin: 0 5px;
}

.about .slick-dots li button {
    background-color: #0dd7e9;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s ease;
}

.about .slick-dots li.slick-active button {
    background-color: #1a73e8;
}


/* GIF Section Styling */
.gif-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.feature-item {
    text-align: center;
    flex: 1;
    padding: 10px;
}

.gif-placeholder img {
    width: 100%;
    max-width: 650px; /* Increased size for desktop view */
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .gif-container {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-top: 10px;
    }

    .gif-placeholder img {
        max-width: 500px; /* Increased size for mobile view */
    }
}



/* Adjust Navigation Links to Align Left for Mobile */
@media (max-width: 768px) {
    .nav-buttons {
        display: flex;
        flex-direction: row;
        gap: 5px; /* Adjusted gap for compact layout */
        justify-content: flex-start; /* Align navigation links to the left */
        padding-left: 10px; /* Adds space between links and the screen edge */
    }

    .nav-button {
        font-size: 10px; /* Reduced font size for mobile view */
        padding: 5px 5px; /* Adjusted padding for a smaller button size */
    }

    .get-started {
        position: absolute;
        top: 20px;
        right: 10px; /* Keep the Get Started button on the top-right */
        padding: 8px 16px;
        font-size: 10px;
        background-color: #1a73e8;
        border-radius: 20px;
        z-index: 1000;
    }
}

.notification {
    display: none;
    color: #ff4d4d;
    font-size: 0.9em;
    margin-top: 5px;
    text-align: center;
}


