/* General Styles */
body {
    font-family: 'Open Sans', Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #000000;
    line-height: 1.6;
    background-color: #ffffff;/*#414141*/
}

h1, h2, h3 {
    margin: 0;
}

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

/* Header Styles */
header {
    background: linear-gradient(90deg, #000000, #000000);
    color: #d4af37;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* For a web-safe cursive font */
/*.about-us {
    background-color: #414141;
    font-family: cursive;
}*/

#about {
    background-color: #808080; /* Gray background */
    padding: 0 0; /* Optional padding for spacing */
    width: 100%; /* Ensures the section spans full width */
    box-sizing: border-box; /* Includes padding and border in width and height calculations */
    text-align: center;
}

@import url('https://fonts.googleapis.com/css2?family=Merienda&display=swap');

.about-us {
    font-family: Merienda;
    background-color: #545454;
    padding: 40px 40px;
    box-sizing: border-box;
}



header .container {
    width: 100%;
    max-width: 1400px;
    margin: 0 20px;
    padding: 0 20px;
    justify-content: space-between;
    display: flex;
}

header h1 {
    font-size: 28px;
    display: flex;
    align-items: center;
}

header h1 img {
    height: 40px;
    margin-right: 10px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background 0.3s;
}

nav ul li a:hover {
    background: #c7a602;
}

/* Hamburger Button */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    position: absolute;
    top: 3px;
    right: 30px;
    background-color: #000000; /* Dark grey background for button */
    padding: 0px; /* Ensure there's enough space around the spans */
    border-radius: 0px; /* Optional: to round the corners of the button */
}

/* Hamburger span elements */
.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #fff; /* White color for the hamburger lines */
    border-radius: 0px;
    transition: transform 0.3s, background 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(39, 39, 40, 0.8), rgba(32, 33, 34, 0.8)), url('hero-bg.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 150px 20px;
}

.hero-content {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h2 {
    font-size: 48px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 25px;
}

.hero .btn {
    background: #ff9900;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    transition: transform 0.3s, background 0.3s;
}

.hero .btn:hover {
    background: #cc7a00;
    transform: scale(1.05);
}

/* Section Styles */
section {
    padding: 70px 20px;
}

#about {
    background: #f8f9fa;
    text-align: center;
}

#about p {
    font-size: 18px;
    max-width: 800px;
    margin: auto;
    line-height: 1.8;
}
#about h2 {
    color: #ffffff;
}
#about h3 {
    color: #ffffff;
    font-size: 22px;
}
#about h1 {
    color: #ffffff;
}
/* Service List */
.service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.service-item {
    background: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 25px;
    flex: 1 1 calc(33.333% - 20px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}
/* General Styling */
/*.service-item {
    padding: 20px;
    margin: 10px 0;
    border-radius: 8px;
    color: #ffffff;
}*/

/*
#digital-transformation {
    background: url('assets/images/DTI.jpg') no-repeat center center;
    background-size: cover;
    filter: blur(1px);
}*/


/* Middleware Consultancy */
/*#middleware-consultancy {
    background: url('assets/images/mw.jpg') no-repeat center center;
    background-size: cover;
}

/* Software Development */
/*#software-development {
    background: url('assets/images/sd.jpg') no-repeat center center;
    background-size: cover;
}*/
/* Digital Transformation */
#digital-transformation {
    background: linear-gradient(135deg, #000000, #403f3f);
}

/* Middleware Consultancy */
#middleware-consultancy {
    background: linear-gradient(135deg, #000000, #403f3f);
}

/* Software Development */
#software-development {
    background: linear-gradient(135deg, #000000, #403f3f);
}

/* Proof of Concept */
#poc-evaluation {
    background: linear-gradient(135deg, #000000, #403f3f);
}

/* Architecture Design */
#architecture-design {
    background: linear-gradient(135deg, #000000, #403f3f);
}

/* Post-Implementation Support */
#post-implementation-support {
    background: linear-gradient(135deg, #000000, #403f3f);
}


.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

#services .container {
    width: 100%; /* Ensure the container spans full width */
    padding: 0 5px; /* Optional: Add padding to avoid content touching edges */
    margin: 0 auto;
    /*background: linear-gradient(135deg, #000000, #000000);*/
}

#services .service-item {
    display: block;
    width: 100%; /* Service items span the full width */
    margin-bottom: 20px;
}

.icon-description-wrapper {
    display: flex;
    align-items: flex-start; /* Align the items to the top */
    gap: 15px; /* Space between the icon and the description */
}

.service-icon {
    width: 150px; /* Adjust as needed */
    height: 150px; /* Maintain aspect ratio */
    filter: brightness(60%); /* Darken the image */
    transition: filter 0.3s ease; /* Optional: Smooth transition for effects */
}
.description h3 {
    margin: 0;
    font-size: 1.5em; /* Adjust for heading size */
    color: #d4af37; /* Replace with your desired golden color */
}

.description p {
    margin: 5px 0;
    color: #ffffff; /* Replace with your desired golden color */
}

.service-item h3 {
    margin-bottom: 15px;
    font-size: 22px;
    color: #d4af37;
}

/* Contact Section */
#contact form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: auto;
}

#contact label {
    font-weight: bold;
}

#contact input, #contact textarea, #contact button {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

#contact button {
    background: #000000;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.3s;
}

#contact button:hover {
    background: #c7a602;
}

/* Footer */
footer {
    background: #000000;
    color: white;
    text-align: center;
    padding: 15px 0;
    font-size: 14px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
}

footer a {
    color: #ff9900;
    text-decoration: none;
    margin: 0 5px;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .container {
        padding: 0 10px;
    }

    .hero h2 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .service-item {
        flex: 1 1 calc(50% - 20px);
    }

    #about p {
        font-size: 16px;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        background: #000;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        display: none;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        margin: 10px 0;
    }

    footer {
        font-size: 12px;
    }

    .hamburger {
        display: flex;
    }
}

@media screen and (max-width: 480px) {
    .hero h2 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

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

    #about p {
        font-size: 14px;
    }

    footer {
        font-size: 12px;
    }
}
/* Chatbot Styles */
/* Chatbot Styles */
.chatbot {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

/* Floating Chat Icon */
.floating-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #0078ff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.floating-icon img {
    width: 35px;
    height: 35px;
}

/* Chatbox Styles */
/* Floating Chat Icon */
.chat-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    cursor: pointer;
    z-index: 1000;
}

.chat-icon img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Chat Container */
.chat-container {
    display: none;
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 300px;
    background: #ffffff;
    border: 1px solid #ccc;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    flex-direction: column;
}

.chat-container.visible {
    display: flex;
}

.chat-box {
    max-height: 300px;
    overflow-y: auto;
    padding: 10px;
    background: #f9f9f9;
    border-bottom: 1px solid #ddd;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    color: black; /* Set the text color to black */
}

.message {
    display: flex;
    margin-bottom: 10px;
}

.message .avatar {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.message .avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.message .text {
    background: #f1f1f1;
    border-radius: 10px;
    padding: 8px 12px;
    max-width: 200px;
    font-size: 14px;
    line-height: 1.4;
}

.message.user .text {
    background: #d1f7c4;
}

textarea {
    width: 100%;
    border: none;
    padding: 10px;
    box-sizing: border-box;
    resize: none;
    border-top: 1px solid #ddd;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

button#sendMessage {
    width: 100%;
    padding: 10px;
    background: #000000;
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: bold;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

/* Avatar Styles */
.message .avatar {
    width: 40px;
    height: 40px;
    margin-right: 12px;
    flex-shrink: 0;
}

.message .avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #0078d4;
}

/* User's Message Styles */
.message.user .avatar img {
    border: 2px solid #4CAF50; /* Green border for user */
}

button#sendMessage:hover {
    background: #c7a602;
}

#about .founder-info {
    text-align: center;
    margin-top: 30px;
}
.founder-photo {
    width: 100px;
    height: 100px;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;

}
.founder-info .founder-photo {
    width: 100px; /* Adjust the size */
    height: 100px; /* Equal height for round shape */
    border-radius: 50%; /* Circular shape */
    margin-bottom: 15px;
    object-fit: cover; /* Ensures the image covers the circle evenly */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional subtle shadow */
}

.founder-info h3 {
    font-size: 22px; /* Founder name size */
    color: #003366; /* Color for the name */
    margin-bottom: 5px;
}

.founder-info p {
    font-size: 16px; /* Font size for the description */
    color: #555;
    line-height: 1.6;
    margin: 5px 0;
}
