/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 80%;
    margin: 0 auto;
    max-width: 1200px;
}

/* Header */
header {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 120px;
    height: auto;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 15px;
    position: relative;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95em;
}

nav ul li a:hover {
    color: #f2bc1c;
}

/* Dropdown Sign */
nav ul li.dropdown::after {
    content: "▼";
    font-size: 0.7em;
    margin-left: 5px;
}

/* Dropdown Menu */
nav ul li .dropdown-content {
    display: none;
    position: absolute;
    background-color: #333;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

nav ul li .dropdown-content a {
    color: #fff;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.95em;
}

nav ul li .dropdown-content a:hover {
    background-color: #575757;
}

/* Show the dropdown on hover */
nav ul li:hover .dropdown-content {
    display: block;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
    transition: transform 0.3s, opacity 0.3s;
}

/* Responsive Styles */
@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #333;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        align-items: center; /* Center menu items */
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        margin: 10px 0;
    }

    .menu-toggle {
        display: block;
    }
}

/* Button Styles */
button {
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
    padding: 12px 20px;
}

/* CTA Button */
.cta-btn {
    background-color: #93c843;
    color: #fff;
    text-decoration: none;
    padding: 12px 30px;
    margin: 10px;
}

.cta-btn:hover {
    background-color: #f2bc1c;
    transform: scale(1.05);
}

/* Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    position: relative;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
    transition: transform 0.3s, opacity 0.3s;
}

/* Responsive Menu Toggle */
@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #333;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        align-items: center; /* Center menu items */
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        margin: 10px 0;
    }

    .menu-toggle {
        display: block;
    }
}

/* Hero Section */
#hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/banner3.jpg");
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-align: center;
}

#hero h1,
#hero p,
#hero .cta {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

#hero h1 {
    font-size: 3em;
    margin: 0 0 20px;
}

#hero p {
    font-size: 1.5em;
    margin-bottom: 40px;
}

#hero .cta {
    font-size: 1.2em;
    padding: 12px 30px;
    background-color: #93c843;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

#hero .cta:hover {
    background-color: #f2bc1c;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* About Us Section */
#about {
    padding: 80px 0;
    background-color: #f9f9f9;
    text-align: center;
}

#about h2 {
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #333333;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

#about h2::after {
    content: '';
    width: 60px;
    height: 4px;
    background: #93c843;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.about-content p {
    font-size: 1.2em;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 30px;
}

.about-content .cta {
    display: inline-block;
    padding: 12px 30px;
    background: #93c843;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.about-content .cta:hover {
    background: #f2bc1c;
}

/* Services Section */
#services {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

#services .container {
    max-width: 1200px;
    margin: 0 auto;
}

#services h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #333;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

#services h2::after {
    content: '';
    width: 50px;
    height:     3px;
    background-color: #93c843;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.service:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service .icon {
    font-size: 3em;
    color: #93c843;
    margin-bottom: 20px;
}

.service h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #333;
}

.service p {
    font-size: 1em;
    line-height: 1.6;
    color: #666;
}

.button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #93c843;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    margin-top: 40px;
}

.button:hover {
    background-color: #f2bc1c;
}

/* Cybersecurity Section */
#cybersecurity {
    background-color: #f0f0f0;
    padding: 80px 0;
    text-align: center;
    position: relative;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/cyber-banner.jpg");
    background-size: cover;
    background-position: center;
    color: #fff;
}

#cybersecurity .container {
    width: 80%;
    margin: 0 auto;
}

#cybersecurity h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #93c843;
    font-weight: 700;
    letter-spacing: 1px;
}

#cybersecurity p {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #d3d3d3;
    line-height: 1.6;
}

#cybersecurity ul {
    list-style-type: none;
    padding: 0;
    margin: 0 0 40px;
}

#cybersecurity ul li {
    font-size: 1.2em;
    margin-bottom: 10px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    transition: background 0.3s, transform 0.3s;
}

#cybersecurity ul li:hover {
    background: #93c843;
    transform: translateY(-5px);
}

#cybersecurity .cta {
    padding: 15px 30px;
    background: #93c843;
    color: #1d1f21;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    transition: background 0.3s, transform 0.3s;
}

#cybersecurity .cta:hover {
    background: #f2bc1c;
    transform: translateY(-5px);
}

/* Features Section */
#features {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

#features .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#features h2 {
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #333;
    font-weight: 700;
    position: relative;
}

#features h2::after {
    content: '';
    width: 60px;
    height: 3px;
    background-color: #93c843;
    display: block;
    margin: 20px auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature {
    padding: 40px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}

.feature i {
    color: #93c843;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.feature:hover i {
    color: #f2bc1c;
}

.feature h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #333;
}

.feature p {
    font-size: 1em;
    line-height: 1.6;
    color: #666;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    text-decoration: underline;
}

/* Sales Section */
#sales {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

#sales .container {
    max-width: 1200px;
    margin: 0 auto;
}

#sales h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #333;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

#sales h2::after {
    content: '';
    width: 50px;
    height: 3px;
    background-color: #93c843;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

#sales p {
    font-size: 1.2em;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

#sales .sales-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: start;
}

#sales .sales-item {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: left;
}

#sales .sales-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

#sales .sales-item img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

#sales .sales-item h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: #333;
}

#sales .sales-item p {
    font-size: 1em;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

#sales .button {
    display: inline-block;
    padding: 15px 30px;
    margin-top: 40px;
    background-color: #93c843;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
}

#sales .button:hover {
    background-color: #f2bc1c;
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    #sales h2 {
        font-size: 2rem;
    }
    #sales p {
        font-size: 1em;
    }
    #sales .sales-item h3 {
        font-size: 1.5em;
    }
    #sales .sales-item p {
        font-size: 0.9em;
    }
    #sales .cta {
        padding: 12px 20px;
    }
}
/* General Button Styles */
.btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1em;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: #fff;
}

/* Shop Now Button Styles */
.shop-now {
    background-color: #93c843;
    border: none;
}

.shop-now:hover {
    background-color: #f2bc1c;
    transform: translateY(-2px);
}


/* WhatsApp Chatbot Icon */
.whatsapp-chatbot {
    position: fixed; /* Fixes the icon relative to the viewport */
    bottom: 20px; /* Distance from the bottom of the viewport */
    right: 20px; /* Distance from the right of the viewport */
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1000; /* Ensure it is above other content */
}

.whatsapp-chatbot a {
    background-color: #25D366;
    color: white;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
    text-align: center;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none; /* Remove underline from the link */
}

.whatsapp-chatbot a:hover {
    background-color: #128C7E;
}

/* Chatbot message bubble */
.chatbot-message {
    display: none; /* Initially hidden */
    background-color: #25D366;
    color: white;
    padding: 10px;
    border-radius: 10px;
    margin-top: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    max-width: 200px;
    text-align: center;
}

/* Mobile-friendly adjustments */
@media (max-width: 768px) {
    .whatsapp-chatbot a {
        padding: 10px;
        font-size: 20px;
    }

    .chatbot-message {
        max-width: 150px;
    }
}