@font-face {
    font-family: "DIN Pro";
    src: url("../fonts/DINPro.eot");
    src: url("../fonts/DINPro.eot?#iefix") format("embedded-opentype"),
        url("../fonts/DINPro.woff2") format("woff2"),
        url("../fonts/DINPro.woff") format("woff"),
        url("../fonts/DINPro.ttf") format("truetype"),
        url("../fonts/DINPro.svg#DINPro") format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Bureau Grot Condensed";
    src: url("../fonts/BureauGrotCondensed-Bold.eot");
    src: url("../fonts/BureauGrotCondensed-Bold.eot?#iefix")
            format("embedded-opentype"),
        url("../fonts/BureauGrotCondensed-Bold.woff2") format("woff2"),
        url("../fonts/BureauGrotCondensed-Bold.woff") format("woff"),
        url("../fonts/BureauGrotCondensed-Bold.ttf") format("truetype"),
        url("../fonts/BureauGrotCondensed-Bold.svg#BureauGrotCondensed-Bold")
            format("svg");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "DIN Pro Medium";
    src: url("../fonts/DINPro-Medium.eot");
    src: url("../fonts/DINPro-Medium.eot?#iefix") format("embedded-opentype"),
        url("../fonts/DINPro-Medium.woff2") format("woff2"),
        url("../fonts/DINPro-Medium.woff") format("woff"),
        url("../fonts/DINPro-Medium.ttf") format("truetype"),
        url("../fonts/DINPro-Medium.svg#DINPro-Medium") format("svg");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

.font-white {
    color: #ffffff;
}
.font-black {
    color: #000000;
}

.yellow-bg {
    background-color: #e3fd0b;
}

.orange-bg {
    background-color: #f47e20;
}

.green-bg {
    background-color: #19c52b;
}

.font-15 {
    font-size: 15px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mt-10 {
    margin-top: 10px;
}
.mt-50 {
    margin-top: 50px;
}
.mt-100 {
    margin-top: 100px;
}

.no-padding{padding: 0px;}

body {
    font-family: "DIN Pro Medium", Helvetica, sans-serif;;
    font-size: 1em;
    color: #fff;
    background-color: #000;
/*    margin-top: 10%;*/
}

h1,
h3,
h5 {
    font-family: "Bureau Grot Condensed", Helvetica, sans-serif;;
}

h2,
h4 {
    font-family: "DIN Pro";
}

a{
    color:#f47e20;
}

.header-tag {
    width: 500px;
    margin: 0 auto; /* Center the <h1> tag */
}

.tilted-right{
    
    transform: translateX(-50%) rotate(10deg); /* Tilt the <p> tag and center it */
    z-index: 1;
    padding: 4px 10px;
    transition: all 1s ease-in-out;
    font-size: 1em;

}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
/*     transition: justify-content 1s ease-in-out; /* Add this line */*/
}

.container.move-left {
    justify-content: flex-start;
}

.header-container {
    display: flex; /* Establishes this container as a flex container */
    justify-content: space-between; /* Distributes the space between children (logo and share button) */
    align-items: center; /* Vertically aligns the items in the center */
    padding: 0 10px; /* Optional: Provides some space on the sides */
}


.header {
    width: 100%;
    margin-top: 100px;
    margin-bottom: 50px;

    display: flex;
    justify-content: center;
    transition: all 1s ease-in-out;
}

/*.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    
}
*/
/* When the animation class is added, apply the transformations */
.header.animate {
    justify-content: flex-start;

}

.logo-container.animate {
    transform: scale(0.6);
}

.logo {
    z-index: 10;
    display: block; /* To ensure the logo takes up its full width and doesn't have any extra space below it */
    margin: 0 auto; /* Center the logo horizontally */
    width: 400px;
}

.logo-container {
    display: inline-block;
    position: relative;
     transition: transform 1s ease-in-out, top 1s ease-in-out, left 1s ease-in-out;
   
}

.logo-container.small-logo {
    transform: scale(0.6); /* Adjust this value to control the size */
    position: absolute;
    top: 0px;
    left: 0px;
    transition: transform 1s ease-in-out, top 1s ease-in-out;
}

.logo-container img.logo {
    transition: all 1s ease-in-out;
/*    width: 100%; /* Assuming the logo takes the full width of its container */*/
}


.logo-top-left {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 150px; /* or whatever size you want when it's smaller */
    font-size: 10px;
}


.btn-primary {
    background-color: #54c982;
    border-color: #46af6f;
}

#chatbox {
    width: 500px;
    height: 800px;
    border: 1px solid black;
}

#chatlogs {
    min-height: 100px;
    overflow: auto;
    background-color: #424242;
    display: none;
}

#chat-interface {
    height: 100px;
}

#userInput {
    width: 400px;
    height: 90px;
}

#send, #send-update {
    position: absolute;
}

#message, #message-update {
    min-height: 100px;
    border: none;
    color: #a2a2a2;
    font-size: 15px;
    background-color: #424242;
    width: 100%;
    border-radius: 10px;
    padding: 10px 10px;
    text-align: left; /* aligns text to the left */
    vertical-align: top; /* aligns text to the top */
    resize: none; /* prevents the textarea from being resizable */
    overflow: auto; /* adds a scrollbar if the content overflows */
     border: none; /* Remove the border */
    outline: none; /* Remove the default browser outline */
    transition: border-color 0.3s ease; /* Smooth transition for border color */
}

/* Focused state of the textarea */
#message:focus {
    border-color: #f47e20; /* Set the border color when focused */
}

.input-wrapper {
    position: relative;
    display: inline-block; /* or 'flex' if you want it to take full width */
    width: 100%; /* remove this if you're using inline-block */
}

.send-button {
    position: absolute;
    right: 10px;
    bottom: 10px;
    background-color: #19c52b;
    border: none;
    border-radius: 50%; /* makes it circular */
    width: 30px; /* adjust as needed */
    height: 30px; /* adjust as needed */
    cursor: pointer;
    color: white; /* arrow color */
    transform: translateY(0); /* reset the transform */
}

.submit-arrow {
    position: absolute;
   /* top: 35%;
    left: 50%;*/
    transform: translate(-50%, -50%);
    color: #000;
    width: 20px;
}

.share-arrow
{
    display: none;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-color: white;
    align-items: center;
    padding: 16px 26px;
}


.share-arrow a {
    display: flex; /* Use flexbox to align items horizontally */
    align-items: center; /* Vertically center the items */
    text-decoration: none; /* Remove the default underline from the link */
/*    color: white; /* Make the text color white */*/
}

.share-arrow img {
    margin-right: 5px; /* Add some space between the image and the text */
    height: 25px;
}

.share-arrow h3 {
    margin: 0; /* Remove default margin from the paragraph */
    font-size: 15px;
    color: #000;
}

/* General modal styling */
.custom-modal-content {
    background-color: #000;
    border: 3px solid #f47e20;
    border-radius: 9px;
    color: #fff;
}

.custom-modal-header, .custom-modal-footer {
    border: none; /* Remove borders */
}

.custom-close {
    color: #fff; /* White close button */
}

.custom-close:hover, .custom-close:focus {
    color: #f47e20; /* Accent color on hover */
}

.custom-btn-close {
    background-color: #f47e20; /* Accent color */
    color: #fff;
}

.custom-btn-close:hover, .custom-btn-close:focus {
    background-color: #c66a16; /* Darker shade on hover */
}

/* Social media icons styling */
.social-icons {
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
}

.social-icon {
    display: inline-block;
    font-size: 1.5rem; /* Adjust icon size */
    color: #fff; /* White icons */
    transition: color 0.3s ease; /* Smooth color transition */
}

.social-icon-facebook:hover { color: #19c52b; } /* Accent color on hover */
.social-icon-whatsapp:hover { color: #f47e20; } /* Accent color on hover */
.social-icon-email:hover { color: #19c52b; } /* Accent color on hover */



.fa-arrow-right {
    text-shadow: 1px 0px 0px #000, -1px 0px 0px #000, 0px 1px 0px #000,
        0px -1px 0px #000; /* Assuming the background is white */
}

.bg-gray-800 {
    background-color: red;
}

.user-message {
    background-color: #f0f0f0; /* Light gray */
    padding: 10px;
    border-radius: 10px;
}

.bot-message {
    background-color: #b8fbd2;
    margin: 20px; /* Adjust this value to your liking */
    padding: 20px;
    border-radius: 10px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/**/

#spinner-container {
    display: none;

    justify-content: center;
    align-items: center;
    position: fixed; /* Fixed position */
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999; /* High z-index so it's above other content */
    background-color: rgba(255, 255, 255, 0.5); /* Optional: for dimmed background effect */
}

#spinner {
    /* Replace with your own spinner styles */
    width: 50px;
    height: 50px;
   
    border-radius: 50%;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


.user-message i,
.bot-message i {
    margin-right: 10px;
}

.example-questions {
    display: flex;
    flex-direction: row;
}

.questions-container {
    /*display: flex;
    align-items: center;*/
}

#example-questions-container {
    /* display: flex;
    flex-wrap: wrap; */
}

.scroll-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.example-question {
     font-family: "Bureau Grot Condensed", Helvetica, sans-serif;
    color: #000;
    padding: 5px 10px;
    font-size: 0.975rem;
    cursor: pointer;
    margin: 10px;
    max-width: 150px;
    border: none;
    margin-right: 10px;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow-wrap: break-word;
    word-wrap: break-word; /* Ensures words are broken properly */
    word-break: break-word; /* Breaks words at the end of the line */
}




@keyframes pulse-questions {
    0% { transform: scale(1) rotate(var(--tilt-angle)); }
    50% { transform: scale(1.05) rotate(var(--tilt-angle)); }
    100% { transform: scale(1) rotate(var(--tilt-angle)); }
}

.pulse-question {
    animation: pulse-questions 1s;
    animation-iteration-count: 3;
}

.question, .answer {
    position: relative;
}

.question
{
    margin-bottom: 35px;
}

.bottom-border
{
    border-bottom: 1px solid #636363;
    padding-bottom: 20px;
}

.tilted {
    font-family: "Bureau Grot Condensed";
    position: absolute;
    top: -45px; /* Adjust this value as needed */
/*    left: 5%;*/
    transform: translateX(-50%) rotate(-8deg);
    z-index: 1;
    padding: 4px 10px;
    transition: all 1s ease-in-out;
    font-size: 1em;

}

.answer-text {
    margin-top: 40px; /* Adjust this value based on the height of the <p> tags */
}



.question-text
{
    font-family: "Bureau Grot Condensed";
    font-size: 2.5em;
    text-align: left;
    line-height: 44px;
}

.answer-text
{
    font-family: "DIN Pro";
    font-size: 1em;
    text-align: left;
}


.question-text, .answer-text {
    margin-top: 40px; /* Adjust this value based on the height of the <p> tags */
}

.landing-screen
{
/*    display: none;*/
}

.answer-screen
{
    display: none;
}

#backToLanding
{
    background-color: #19c52b;  
    color: #000; 
    font-family: "Bureau Grot Condensed";
}

.back-arrow {
       position: absolute;
      display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;  /* Adjust the width as needed */
    height: 50px;  /* Adjust the height as needed */
    padding: 0;
    bottom: 10px;
    background-color: #19c52b;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    color: white;
    transform: translateY(0);
}

.rotated-arrow {
     transform: rotate(180deg);
    width: 20px;  /* Adjust the size as needed */
    height: auto;
}


.popular-questions
{
    font-family: "Bureau Grot Condensed";
    color: #c8c8c8;
    text-align: left;
    padding-top:20px;
}

.popular-questions-list {
    list-style-type: none; /* Remove default bullet points */
    padding-left: 0; /* Remove default padding */
}

.popular-questions-list li {
    position: relative; /* Set to relative so we can position the icon relative to the list item */
    border-bottom: 1px solid #636363;
    padding: 8px 0px;
    
}

.popular-questions-list li a{
    color: #c8c8c8;
}


.popular-questions-list li:last-child {
    border-bottom: none; /* Remove the bottom border for the last list item */
}

.popular-questions-list li::after {
    content: ''; /* This is necessary for the pseudo-element to work */
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%); /* Vertically center the icon */
    width: 20px; /* Width of your icon */
    height: 20px; /* Height of your icon */
/*    background-image: url('/images/plus-sign.png'); /* Replace with the path to your icon */*/
/*    background-size: contain;*/
    background-repeat: no-repeat;
}

#message-update.small-message-input
{
    min-height: 50px;
    border-radius: 50px;
    vertical-align: middle;
    padding-top: 13px;
}

.footer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 0;
/*    background-color: #333; /* Dark background for contrast */*/
}

.footer-link {
    margin: 0 5px;
    color: #636363; /* White text for contrast */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #f47e20; /* Change color on hover */
}

.tooltip .tooltip-inner {
    background-color: #333; /* Background color */
    color: #fff; /* Text color */
    border-radius: 5px; /* Rounded corners */
    padding: 10px; /* Padding */
}

.tooltip.bs-tooltip-top .arrow::before,
.tooltip.bs-tooltip-auto[x-placement^="top"] .arrow::before {
    border-top-color: #333; /* Arrow color for top tooltip */
}

.tooltip.bs-tooltip-right .arrow::before,
.tooltip.bs-tooltip-auto[x-placement^="right"] .arrow::before {
    border-right-color: #333; /* Arrow color for right tooltip */
}

.tooltip.bs-tooltip-bottom .arrow::before,
.tooltip.bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
    border-bottom-color: #333; /* Arrow color for bottom tooltip */
}

.tooltip.bs-tooltip-left .arrow::before,
.tooltip.bs-tooltip-auto[x-placement^="left"] .arrow::before {
    border-left-color: #333; /* Arrow color for left tooltip */
}


.tooltip .tooltip-inner {
    font-family: "DIN Pro";
    font-size: 14px; /* Font size */
}

.tooltip .arrow {
    width: 10px; /* Adjust width */
    height: 5px; /* Adjust height */
}

.bs-tooltip-top .arrow {
    bottom: -4px; /* Adjust for top tooltip */
}
.bs-tooltip-right .arrow {
    left: -4px; /* Adjust for right tooltip */
}
.bs-tooltip-bottom .arrow {
    top: -4px; /* Adjust for bottom tooltip */
}
.bs-tooltip-left .arrow {
    right: -4px; /* Adjust for left tooltip */
}

@keyframes just-ask-pulse {
    0% {
        font-size: 1em;
    }
    50% {
        font-size: 1.3em;
    }
    100% {
        font-size: 1em;
    }
}

.just-ask
{
 animation: just-ask-pulse 2s;
 animation-iteration-count: 4;
}

.animate .just-ask
{
    font-size: 1.5em;
   
}
/*
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.pulse {
    animation-name: pulse;
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}
*/

@media (min-width: 768px) { /* This targets tablets and above, adjust the value for different screen sizes */
  .col-md-12 {
    /* These styles will only apply to medium devices and up */
    padding-right: 0 !important; /* Remove padding */
    padding-left: 0 !important; /* Remove padding */
  }
  /* If you have custom padding or margins set elsewhere that affect the layout, you might want to override them here. */
}


/* Adjust size for larger screens (e.g., desktop) */
@media (max-width: 768px) {

    .mb-mt-50
    {
        margin-top: 50px;
    }

    body {
/*        margin-top: 20%;*/
        font-size: 0.7em !important;
    }

    .header-tag {
        width: 300px;
        margin: 0 auto; /* Center the <h1> tag */
    }

    .header{
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .header.small {
        margin-top: 30px;
        margin-bottom: 10px;

    }

    .question
        {
            margin-bottom: 0px;
        }

    .tilted
    {
        top: -30px;
        left: 5%;
    }


    img.logo {
        width: 200px; /* or whatever size you find appropriate for desktop */
    }

    .question-text
    {
        line-height: 25px;
    }

    .share-arrow
    {
    /*    display: none;*/
        opacity: 0;
        /* Transition effect for the opacity change, lasting 1 second */
        transition: opacity 1s ease-in-out;
        background-color: white; /* White background for the entire block */
        align-items: center; /* Vertically center the items */
        padding: 0px 10px;
         position: absolute;
        top: 50px;
        right: 10px;

    }



   

    #chatlogs {
        min-height: 100px;
    }

    h1,
    h4,
    h5,
    h6,
    button,
    btn {
        font-size: 13px !important;
    }

    .footer-container {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 40px 0;
        /*    background-color: #333; /* Dark background for contrast */*/
        }
}
