/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f4f4f9;
    color: #333;
    line-height: 1.6;
}

/* Navigation Bar */
header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #4b0082;
    padding: 10px 50px; /* Keep header size the same */
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header nav .logo img {
    height: 100px; /* Make logo bigger */
    object-fit: contain;
}
.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Style for the brand name */
.brand-name {
    font-size: 18px; /* Slightly smaller */
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    text-align: center;
    margin-top: 8px;
    letter-spacing: 2px; /* Adds a bit of space between the letters */
    font-family: 'Arial', sans-serif; /* Clean, modern font */
}

/* Menu Styles */
.menu {
    list-style: none;
    display: flex;
    gap: 25px;
}

.menu li a {
    font-size: 1.1rem;
    font-weight: bold;
    color: #fff;
    padding: 10px;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.menu li a:hover {
    color: #ffd700;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

/* Hamburger Menu Styles (Hidden by default) */
.hamburger-menu {
    display: none;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

/* Mobile styles */
@media (max-width: 768px) {
    /* Hide the menu on small screens */
    .menu {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

    .menu.active {
        display: flex;
    }

    /* Show hamburger menu on mobile */
    .hamburger-menu {
        display: block;
    }

    /* Style for menu items on mobile */
    .menu li {
        padding: 10px 0;
        border-bottom: 1px solid white;
    }

    .menu li a {
        font-size: 18px;
    }
}


/* Home Section */
#home {
    height: 100vh;
    position: relative;
    background-color: #1c1b29;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}

.overlay h1 {
    font-size: 4rem;
    color: #ffd700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.overlay p {
    font-size: 1.5rem;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Section Headings */
section h2 {
    font-size: 2.5rem;
    color: #4b0082;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

section h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background-color: #ffd700;
    margin: 10px auto;
}

/* About Us Section */
.about-us-section {
    background-color: #fff;
    padding: 50px 20px;
}

.about-us-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-us-content img {
    width: 350px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-us-content img:hover {
    transform: scale(1.05);
}

.about-text {
    flex: 1;
    max-width: 600px;
}

.about-text p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 20px;
}

/* Center the button in About Us */
.about-button-wrapper {
    text-align: center;
}

.about-us-content button {
    background-color: #4b0082;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.about-us-content button:hover {
    background-color: #ffd700;
    color: #4b0082;
}

/* Services Section with Darker Background */
.services-section {
    background-color: #333; /* Darker gray background */
    padding: 50px 20px;
}

/* Updated Services Section Heading to White */
.services-section h2 {
    color: #fff; /* White heading for better contrast */
}

/* Service blocks */
.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.service-block {
    background-color: #fff;
    border-radius: 10px;
    width: 280px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    text-align: center;
    color: #000; /* Black text in the blocks */
}

.service-block:hover {
    transform: scale(1.05);
    background-color: #4b0082; /* Purple background on hover */
    color: #000; /* Ensure text remains black when background changes */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.service-block img {
    width: 100%;
    height: 150px;
    border-radius: 10px;
    object-fit: cover;
    margin-bottom: 15px;
}

.service-block h3 {
    font-size: 1.4rem;
    color: #000000; /* Keep the title purple */
    margin-bottom: 10px;
}

.service-block p {
    font-size: 1.1rem;
    color: #000; /* Ensure paragraph text remains black */
    margin-bottom: 20px;
}

.service-block button {
    background-color: #ffd700;
    color: #4b0082;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.service-block button:hover {
    background-color: #4b0082;
    color: #fff;
}

/* Contact Us Section */
.contact-section {
    background-color: #fff;
    padding: 50px 20px;
}

.contact-section h3 {
    font-size: 1.8rem;
    color: #666;
    margin-bottom: 30px;
    text-align: center;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    font-size: 1.1rem;
    color: #333;
    font-weight: bold;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #4b0082;
    background-color: #fff;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    background-color: #4b0082;
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.contact-form button:hover {
    background-color: #ffd700;
    color: #4b0082;
}

/* Portfolio Section */
#portfolio {
    padding: 50px 20px;
    background-color: #f8f8f8;
    text-align: center;
}

#portfolio h2 {
    color: #4b0082;
}

#portfolio p {
    font-size: 1.2rem;
    color: #666;
}
/* Our Vision Section */
.vision-section {
    padding: 60px 20px;
    background-color: #f4f4f9;
    text-align: center;
}

.vision-section h2 {
    font-size: 2.5rem;
    color: #4b0082;
    margin-bottom: 30px;
    position: relative;
}

.vision-section h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: #ffd700;
    margin: 10px auto;
}

/* Vision Content Layout */
.vision-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.vision-text {
    flex: 1;
    max-width: 600px;
    text-align: left;
    font-size: 1.2rem;
    color: #333;
}

.vision-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.vision-image {
    flex: 1;
}

.vision-image img {
    width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.vision-image img:hover {
    transform: scale(1.05);
}
/* Web Development Section */
.webdev-section {
    padding: 60px 20px;
    background-color: #f8f8f8;
    text-align: center;
}

.webdev-section h2 {
    font-size: 2.5rem;
    color: #4b0082;
    margin-bottom: 30px;
}

.webdev-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.webdev-text {
    flex: 1;
    max-width: 600px;
    text-align: left;
    font-size: 1.2rem;
    color: #333;
}

.webdev-text ul {
    margin-top: 20px;
    list-style-type: disc;
    margin-left: 20px;
}

.webdev-text ul li {
    margin-bottom: 15px;
}

.webdev-image {
    flex: 1;
}

.webdev-image img {
    width: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Development Process Section */
.process-section {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}

.process-section h2 {
    font-size: 2.5rem;
    color: #4b0082;
    margin-bottom: 30px;
}

.process-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: #333;
    text-align: left;
}

.process-content ul {
    list-style-type: none;
    padding: 0;
}

.process-content ul li {
    margin-bottom: 20px;
    padding-left: 15px;
    position: relative;
}

.process-content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4b0082;
    font-size: 1.5rem;
}

/* Call to Action Section */
.cta-section {
    padding: 50px;
    background-color: #4b0082;
    text-align: center;
    color: #fff;
}

/* App Development Section */
.appdev-section {
    padding: 60px 20px;
    background-color: #f8f8f8;
    text-align: center;
}

.appdev-section h2 {
    font-size: 2.5rem;
    color: #4b0082;
    margin-bottom: 30px;
}

.appdev-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.appdev-text {
    flex: 1;
    max-width: 600px;
    text-align: left;
    font-size: 1.2rem;
    color: #333;
}

.appdev-text h3 {
    margin-top: 20px;
    font-size: 1.5rem;
    color: #4b0082;
}

.appdev-text ul {
    margin-top: 20px;
    list-style-type: disc;
    margin-left: 20px;
}

.appdev-text ul li {
    margin-bottom: 15px;
}

.appdev-image {
    flex: 1;
}

.appdev-image img {
    width: 300px;  /* Smaller image size */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Development Process Section */
.process-section {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}

.process-section h2 {
    font-size: 2.5rem;
    color: #4b0082;
    margin-bottom: 30px;
}

.process-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: #333;
    text-align: left;
}

.process-content ul {
    list-style-type: none;
    padding: 0;
}

.process-content ul li {
    margin-bottom: 20px;
    padding-left: 15px;
    position: relative;
}

.process-content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4b0082;
    font-size: 1.5rem;
}

/* Call to Action Section */
.cta-section {
    padding: 50px;
    background-color: #4b0082;
    text-align: center;
    color: #fff;
}

.cta-section h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.cta-section button {
    background-color: #ffd700;
    color: #4b0082;
    padding: 15px 30px;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-section button:hover {
    background-color: #fff;
    color: #4b0082;
}
/* Wireframe Design Section */
.wireframe-section {
    padding: 60px 20px;
    background-color: #f8f8f8;
    text-align: center;
}

.wireframe-section h2 {
    font-size: 2.5rem;
    color: #4b0082;
    margin-bottom: 30px;
}

.wireframe-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.wireframe-text {
    flex: 1;
    max-width: 600px;
    text-align: left;
    font-size: 1.2rem;
    color: #333;
}

/* Wireframe Image */
.wireframe-image {
    flex: 1;
}

.wireframe-image img {
    width: 400px;  /* Increased image size */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Development Process Section */
.process-section {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}

.process-section h2 {
    font-size: 2.5rem;
    color: #4b0082;
    margin-bottom: 30px;
}

.process-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: #333;
    text-align: left;
}

.process-content ul {
    list-style-type: none;
    padding: 0;
}

.process-content ul li {
    margin-bottom: 20px;
    padding-left: 15px;
    position: relative;
}

.process-content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4b0082;
    font-size: 1.5rem;
}

/* Call to Action Section */
.cta-section {
    padding: 50px;
    background-color: #4b0082;
    text-align: center;
    color: #fff;
}

.cta-section h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.cta-section button {
    background-color: #ffd700;
    color: #4b0082;
    padding: 15px 30px;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-section button:hover {
    background-color: #fff;
    color: #4b0082;
}
/* Logo Design Section */
.logo-design-section {
    padding: 60px 20px;
    background-color: #f8f8f8;
    text-align: center;
}

.logo-design-section h2 {
    font-size: 2.5rem;
    color: #4b0082;
    margin-bottom: 30px;
}

.logo-design-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.logo-design-text {
    flex: 1;
    max-width: 600px;
    text-align: left;
    font-size: 1.2rem;
    color: #333;
}

.logo-design-text h3 {
    margin-top: 20px;
    font-size: 1.5rem;
    color: #4b0082;
}

.logo-design-text ul {
    margin-top: 20px;
    list-style-type: disc;
    margin-left: 20px;
}

.logo-design-text ul li {
    margin-bottom: 15px;
}

.logo-design-image {
    flex: 1;
}

.logo-design-image img {
    width: 400px;  /* Appropriate image size */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Development Process Section */
.process-section {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}

.process-section h2 {
    font-size: 2.5rem;
    color: #4b0082;
    margin-bottom: 30px;
}

.process-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: #333;
    text-align: left;
}

.process-content ul {
    list-style-type: none;
    padding: 0;
}

.process-content ul li {
    margin-bottom: 20px;
    padding-left: 15px;
    position: relative;
}

.process-content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4b0082;
    font-size: 1.5rem;
}

/* Call to Action Section */
.cta-section {
    padding: 50px;
    background-color: #4b0082;
    text-align: center;
    color: #fff;
}

/* Override heading color inside CTA section */
.cta-section h3 {
    color: #fff; /* Ensure CTA heading remains white */
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.cta-section button {
    background-color: #ffd700;
    color: #4b0082;
    padding: 15px 30px;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-section button:hover {
    background-color: #fff;
    color: #4b0082;
}
/* Logo Design Image */
.logo-design-image {
    flex: 1;
}

.logo-design-image img {
    width: 400px;  /* Adjust as needed for logopage.jpg */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
/* Digital Marketing Section */
.dm-section {
    padding: 60px 20px;
    background-color: #f8f8f8;
    text-align: center;
}

.dm-section h2 {
    font-size: 2.5rem;
    color: #4b0082;
    margin-bottom: 30px;
}

.dm-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.dm-text {
    flex: 1;
    max-width: 600px;
    text-align: left;
    font-size: 1.2rem;
    color: #333;
}

.dm-text ul {
    list-style-type: disc;
    margin-left: 20px;
}

.dm-image img {
    width: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Pricing Packages */
.pricing-section {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}

.packages-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.package-box {
    border: 1px solid #4b0082;
    border-radius: 10px;
    padding: 30px;
    width: 300px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.package-box h3 {
    font-size: 1.8rem;
    color: #4b0082;
    margin-bottom: 20px;
}

.package-box ul {
    list-style-type: none;
    padding-left: 0;
}

/* Custom Package Box */
.custom-package {
    background-color: #e8e8e8;
}
/* Copywriting Section */
.copywriting-section {
    padding: 60px 20px;
    background-color: #f8f8f8;
    text-align: center;
}

.copywriting-section h2 {
    font-size: 2.5rem;
    color: #4b0082;
    margin-bottom: 30px;
}

.copywriting-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    font-size: 1.2rem;
    color: #333;
}

/* Development Process Section */
.process-section {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}

.process-section h2 {
    font-size: 2.5rem;
    color: #4b0082;
    margin-bottom: 30px;
}

.process-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: #333;
    text-align: left;
}

.process-content ul {
    list-style-type: none;
    padding: 0;
}

.process-content ul li {
    margin-bottom: 20px;
    padding-left: 15px;
    position: relative;
}

.process-content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4b0082;
    font-size: 1.5rem;
}

/* Call to Action Section */
.cta-section {
    padding: 50px;
    background-color: #4b0082;
    text-align: center;
    color: #fff;
}

.cta-section h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.cta-section button {
    background-color: #ffd700;
    color: #4b0082;
    padding: 15px 30px;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-section button:hover {
    background-color: #fff;
    color: #4b0082;
}
/* Copywriting Image */
.copywriting-image {
    flex: 1;
}

.copywriting-image img {
    width: 400px;  /* Adjust as needed for copy.jpg */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
/* Content Creation Section */
.content-creation-section {
    padding: 60px 20px;
    background-color: #f8f8f8;
    text-align: center;
}

.content-creation-section h2 {
    font-size: 2.5rem;
    color: #4b0082;
    margin-bottom: 30px;
}

.content-creation-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.content-creation-text {
    flex: 1;
    max-width: 600px;
    text-align: left;
    font-size: 1.2rem;
    color: #333;
}

.content-creation-image {
    flex: 1;
}

.content-creation-image img {
    width: 400px;  /* Adjust as needed for cc.jpg */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Development Process Section */
.process-section {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}

.process-section h2 {
    font-size: 2.5rem;
    color: #4b0082;
    margin-bottom: 30px;
}

.process-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: #333;
    text-align: left;
}

.process-content ul {
    list-style-type: none;
    padding: 0;
}

.process-content ul li {
    margin-bottom: 20px;
    padding-left: 15px;
    position: relative;
}

.process-content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4b0082;
    font-size: 1.5rem;
}

/* Call to Action Section */

.cta-section {
    padding: 50px;
    background-color: #4b0082;
    text-align: center;
    color: #fff;
}

.cta-section h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.cta-section button {
    background-color: #ffd700;
    color: #4b0082;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold; /* Makes the button text bold */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-section button:hover {
    background-color: #fff;
    color: #4b0082;
}
.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #4b0082; /* Same as header */
    color: #fff; /* White text for contrast */
    padding: 20px 50px;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1); /* Shadow at the top for separation */
    text-align: center;
}

.footer p {
    margin: 0; /* Removes unnecessary spacing around text */
    font-size: 14px;
}

.footer a {
    color: #ffccff; /* Light purple for links */
    text-decoration: none;
    font-size: 14px;
    margin: 5px;
}

.footer a:hover {
    text-decoration: underline; /* Add underline on hover for better accessibility */
}
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #4b0082; /* Matches your theme */
    color: #fff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.2);
    font-size: 14px;
}

.cookie-consent-banner p {
    margin: 0;
}

.cookie-consent-banner a {
    color: #ffccff; /* Light purple links */
    text-decoration: underline;
}

.cookie-consent-banner button {
    background-color: #ffccff; /* Light purple buttons */
    color: #4b0082; /* Dark text for contrast */
    border: none;
    padding: 8px 12px;
    margin-left: 5px; /* Reduced space between buttons */
    cursor: pointer;
    font-size: 14px;
    border-radius: 5px;
    transition: background-color 0.3s; /* Smooth transition for hover and active states */
}

.cookie-consent-banner button:hover,
.cookie-consent-banner button:focus {
    background-color: #ffd700; /* Yellow on hover or focus */
}

.cookie-consent-banner button:active {
    background-color: #ffd700; /* Yellow when clicked */
}
.ai-automation-section {
    position: relative;
    height: 400px; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.ai-automation-content {
    z-index: 1;
}

.ai-automation-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.ai-automation-content p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.ai-automation-content button {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
}

.ai-automation-content button:hover {
    background-color: #0056b3;
}
/* Hero Section */
.hero-section {
    text-align: center;
    padding: 50px;
    background-color: #f4f4f4;
}

.hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-image {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
}

/* How We Work */
.work-section {
    padding: 50px;
    background-color: #fff;
    text-align: center;
}

.work-section ol {
    text-align: left;
    margin: 20px auto;
    max-width: 800px;
}

/* AI Services */
.services-section {
    padding: 50px;
    background-color: #f4f4f4;
    text-align: center;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.service-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    max-width: 300px;
    text-align: left;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Pricing Section */
.pricing-section {
    padding: 50px;
    background-color: #fff;
    text-align: center;
}

.pricing-tiers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.tier {
    background-color: #f4f4f4;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    max-width: 300px;
    text-align: center;
}

/* Contact Form */
.contact-section {
    padding: 50px;
    background-color: #f9f9f9;
    text-align: center;
}

.contact-section form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.contact-section form label {
    font-weight: bold;
}

.contact-section form input,
.contact-section form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.contact-section form button {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 4px;
}
/* General Styles */
body {
    font-family: Arial, sans-serif;
    color: black; /* Default text color */
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: #4b0082; /* Purple headings */
}

/* Paragraphs */
p {
    color: black; /* Black text */
}

/* Lists */
ul li {
    color: black; /* Ensures all list text is black */
}

/* Strong inside lists */
ul li strong {
    color: #4b0082; /* Purple for bold parts */
}

/* Call to Action Button */
.cta-section button {
    font-weight: bold; /* Bold button text */
}
/* WhatsApp Floating Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    z-index: 1000;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

/* WhatsApp Icon */
.whatsapp-button img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    animation: shake 3s infinite ease-in-out;
}

/* Tooltip Text */
.whatsapp-tooltip {
    position: absolute;
    bottom: 65px;
    right: 0;
    background-color: #25D366;
    color: white;
    padding: 8px 12px;
    font-size: 12px;
    border-radius: 5px;
    display: none;
    white-space: nowrap;
}

/* Show Tooltip on Hover */
.whatsapp-button:hover .whatsapp-tooltip {
    display: block;
}

/* Shake Animation */
@keyframes shake {
    0%, 100% { transform: rotate(0); }
    10%, 90% { transform: rotate(-5deg); }
    20%, 80% { transform: rotate(5deg); }
    30%, 50%, 70% { transform: rotate(-3deg); }
    40%, 60% { transform: rotate(3deg); }
}
.footer .social-links {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.footer .social-icon {
    width: 30px;
    height: 30px;
}
