

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Georgia', serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;

}
h1{
color: #333;
}

h2 {
color: #333;

    /*font-family: 'Georgia', serif;*/

}

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

footer {
    width: 100%;
    height: 20px;
    color: grey;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    box-shadow: 0 -4px 4px rgba(0, 0, 0, 0.2);
}

#copyright {
    display: flex;
    justify-content: center;
    padding: 1px;
    font-family: 'Garamond', serif;
}


.logo {
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
}

.logo img {
    height: 60px;
}


.content {
    flex: 1;
    padding: 20px;
    margin: 10px 20px;
}

.styled-hr{
    display: flex;
    align-items: center;
}

.text {
   color: #FF7600;
   margin: 0;
   padding-right: 10px;
}

.hr {
     flex-grow: 1;
     border: none;
     border-top: 1px solid grey;
     margin: 0;
 }


.display-hr {
    text-align: center;
}

.contact {
    display: inline-block;
    margin: 0 20px;
}

.contact-hr {
    border: 0;
    border-top: 1px solid #ccc;
    width: 30%;
    display: inline-block;
    vertical-align: middle;
}

.card_img_{
    height:30px;
    width:50%;
}



/* Navbar styling
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 15px;
    background-color: #0000FF;
    color: white;
    position: relative;
    border-bottom: 2px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
}


.nav-links {
    list-style-type: none;
    padding: 0;
    display: flex;
    gap: 20px;
}

.nav-links li a {
    color: white;
    font-weight: bold;
    text-decoration: none;
}

.navbar-toggler {
    background-color: transparent;
    border: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    display: none;
}*/


/* Navbar styles */
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 20px;
    background-color: #0000FF;
    color: white;
    position:relative;
    box-shadow: 0 4px 4px 0 rgba(0,0,0,.2);

}

.nav-links {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.nav-links li {
    position: relative;
}

.nav-links li a {
    color: white;
    font-weight: bold;
    text-decoration: none;
    padding: 12px 16px;
}

.nav-links li a:hover {
    background-color: none;
}

/* Dropdown menu styles */
.dropdown-menu {
    display: none;
    position: absolute;
    background-color: blue;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    top: 100%; /* Position below the dropdown trigger */
    left: 0;
    min-width: 160px; /* Adjust width as needed */
}

.dropdown-menu li {
    position: relative;
}

.dropdown-menu li a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-menu li a:hover {
    background-color: #555;
}

/* Show dropdown menu on hover */
.dropdown:hover .dropdown-menu {
    display: block;
}



.container {
    display: flex;
    text-align:justify;
    padding: 20px;
    margin: 10px 20px;
    border: 1px solid blue;
    font-family: 'Poppins', arial, sans-serif;
    color: rgb(94, 94, 94);
    font-weight: 400;
    box-shadow: 0 4px 4px 0 rgba(0,0,0,.2);
}

.fixed-column {
    width: 63%;
    padding: 50px;
}

.right-section {
    flex-grow: 1;
    padding: 50px;
}

.row {
    margin-bottom: 20px;
    padding: 10px;
    border-bottom: 1px solid #ccc;
    border-radius: 5px;
}

/* Contact */
.contact-container {
    text-align: center;
    font-style: italic;
    color: rgb(94, 94, 94);
    font-family: 'Courier New', monospace;
    display: grid;
    place-items: center;
    height: 10vh;

}

.contact {
            text-align: center;
            font-style: italic;

}

/* Products styling */
.left-columns {
    display: flex;
    width: 50%;
    justify-content: center;
}

.column {
    flex: 1;
    padding: 20px;
    margin: 5px;
    background-color: #f0f0f0;
    border-radius: 5px;
}

.gif-img {
    max-width: 100%;
    height: 150px;
    margin: 1px 10px;
}

.products-container {
    width: 100%;
    margin: 0 auto;
}

.products-row {
    display: flex;
    margin-bottom: 20px;
}

.products-column {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.services-container {
    width: 100%;
    margin: 0 auto;
}

.services-row {
    display: flex;
    margin-bottom: 20px;
}

.services-column {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}


/* Chatbot styling */
#chat-modal {
    display: none;
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 300px;
    height: 300px;
    background-color: white;
    border: 1px solid #ccc;
    overflow-y: auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    transition: opacity 0.3s ease-in-out;
}

#chat-header {
    background-color: hsl(233deg 36% 38%);
    color: white;
    padding: 10px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

#chat-header img {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

#chat-body {
    padding: 10px;
    overflow-y: auto;
    height: 210px;
}

.chat-message {
    padding: 5px;
    margin: 5px 0;
    max-width: 80%;
    border-radius: 10px;
}

.user-message {
    text-align: right;
    background-color: #d3e6ff;
}

.bot-message {
    text-align: left;
    background-color: #e6ffe6;
}

.chat-text {
    display: inline-block;
    max-width: 100%;
    word-wrap: break-word;
}

#chat-input {
    width: calc(100% - 20px);
    padding: 5px;
    border: 1px solid #ccc;
    margin-bottom: 10px;
    border-radius: 5px;
}

.chatbot-logo {
    position: fixed;
    bottom: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 2rem;
    transform: translateY(-50%);
    transition: opacity 0.3s ease-in-out;
}

.chatbot-logo img {
    height: 70px;
}

button {
    background-color: transparent;
    color: #007bff;
    border: 1px solid #007bff;
    border-radius: 20px;
    font-size: 0.875rem;
    padding: 0.25rem 0.5rem;
}

button:hover {
    background-color: #0056b3;
    color: white;
}

input {
    font-size: 0.875rem;
    padding: 0.25rem;
    border-color: #28a745;
    border-radius: 10px;
}



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

h3{
 color: #333;
 text-align:center;
    font-family: 'Georgia', serif;
    font-weight: bold;}

.colour-number {
    color: #0000FF
}


video{
height:290;}
}



  .carousel-item img {
    max-width: 100%;
    height: auto;
    align-items: center;
}

.container {
    display: flex;
}

.accordion-container {
    width: 300px;
    margin-right: 20px;
}

.accordion-item {

    margin-bottom: 10px;
}

.accordion-button {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    background-color: #007bff;
    color: white;
    border: none;
    text-align: left;
    outline: none;
    transition: background-color 0.3s;
}

.accordion-button:hover {
    background-color: #0056b3;
}

.accordion-content {
    display: none;
    padding: 10px;
    background-color: white;
    border-top: 1px solid #ccc;
    margin-top: 10px;
}

.list {
    list-style-type: none;
    padding: 0;
}

.list-item {
    padding: 10px;
    cursor: pointer;
    margin: 5px 0;
}

.list-item:hover {
    background-color: #f0f0f0;
}

.right-section {
    flex-grow: 1;
}

.card {
    padding: 20px;
    border: 1px solid #ccc;
    width: 300px;
    text-align: center;
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    transition: transform 0.5s ease-in-out;
}

.card.active {
    display: block;
}


.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
}

#details-button {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
}

.update-content-page {
    margin-top: 20px;
}

.update-content-page input,
.update-content-page button {
    margin-right: 10px;
}

.admin-controls {
    display: none; /* Initially hidden */
    margin-top: 20px;
}

.admin-controls input,
.admin-controls button {
    margin-right: 10px;
}

.accordion-container .accordion-button {
    display: block;
    width: 100%;
    padding: 10px;
    text-align: left;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
}

.accordion-container .accordion-button:hover {
    background-color: #0056b3;
}

.accordion-container .list-item {
    cursor: pointer;
    margin: 5px 0;
}


/* Mobile view styles */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 10px;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
    }

    .nav-links li a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        color: white;
        font-size: 1.2rem;
        transition: background-color 0.3s;
    }

    .nav-links li a:hover {
        background-color: #0056b3;
    }

    .nav-links li a .nav-text {
        display: none; /* Hide text on small screens */
    }

    .nav-links li a .nav-icon {
        display: inline; /* Show icons on small screens */
    }

    .container {
        flex-direction: column;
        padding: 10px;
        margin: 5px;
    }

    .fixed-column,
    .right-section {
        width: 100%;
        padding: 20px;
    }

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

    .products-column {
        margin-bottom: 10px;
    }

    .logo {
        position: relative;
        left: 0;
        top: 0;
        transform: translateY(0);
        margin-bottom: 10px;
    }

    .center {
        flex-direction: column;
        text-align: center;
    }

    .footer {
        flex-direction: column;
        text-align: center;
    }

    .accordion-container {
        width: 100%;
        margin-right: 0;
    }

    .card-container {
        flex-direction: column;
    }

    .card {
        width: 100%;
        margin-bottom: 10px;
    }

    #chat-modal {
        width: 100%;
        right: 0;
        bottom: 0;
        height: auto;
        border-radius: 0;
    }

    #chat-input {
        width: calc(100% - 10px);
    }
}
