/* General Layout & Colors */
:root {
    --primary-color: #343a40; /* Dark gray for professional look */
    --secondary-color: #6a1b9a; /* Purple accent */
    --accent-color: #ffb74d; /* Gold */
    --bg-light: #f8f9fa; /* Light gray background */
    --bg-dark: #1f1f1f; /* Dark background */
    --text-color: #333; /* Standard text color */
    --text-light: #fff; /* Light text color */
    --divider-color: #dee2e6; /* Light divider */
    --footer-bg: #2f3640; /* Darker gray for footer */
}

/* Reset and General Body */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--bg-light);
    color: var(--text-color);
    line-height: 1.6;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(90deg, #4a148c, #6a1b9a); /* Gradient for a sleek look */
    color: var(--text-light);
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.top-bar .contact-info p {
    margin: 0 15px 0 0;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
}

.top-bar .contact-info p i {
    margin-right: 8px; /* Spacing between icon and text */
}

.top-bar .social-icons a {
    color: var(--text-light);
    margin-left: 20px;
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease; /* Smooth hover effect */
}

.top-bar .social-icons a:hover {
    transform: scale(1.1);
    color: var(--accent-color); /* Gold hover color */
}

/* Responsive Design for Top Bar */
@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        padding: 10px 20px;
    }
    .top-bar .container {
        flex-direction: column;
        align-items: center;
    }
    .top-bar .contact-info,
    .top-bar .social-icons {
        margin-bottom: 10px;
    }
}

/* Sticky Header */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #fff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Logo Styling */
.sticky-header .logo {
    font-size: 1.8rem; /* Slightly smaller logo for fitting */
    font-weight: bold;
    color: #6a1b9a; /* Primary accent color for the logo */
    text-transform: uppercase;
    letter-spacing: 1.5px; /* Spacing between letters for a modern look */
    transition: color 0.3s ease;
}

.sticky-header .logo:hover {
    color: #4b0082; /* Darker purple on hover */
}

/* Navigation Menu Styling */
.sticky-header nav {
    display: flex;
    gap: 20px; /* Gap between menu items */
    align-items: center;
    flex-grow: 1; /* Allow nav to grow and take space between logo and button */
    justify-content: center; /* Center the nav items */
}

.sticky-header nav a {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    padding: 10px;
    text-decoration: none;
    border-radius: 3px; /* Slightly rounded corners */
    transition: background-color 0.3s ease, color 0.3s ease;
}

.sticky-header nav a:hover {
    background-color: #f0f0f0;
    color: #6a1b9a;
}

/* CTA Button */
.sticky-header .cta-btn {
    background-color: #ffb74d; /* Gold for the consultation button */
    color: #fff;
    padding: 10px 25px;
    border-radius: 25px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add a button shadow for depth */
    margin-left: 20px; /* Space between nav and CTA button */
text-decoration: none;
}

.sticky-header .cta-btn:hover {
    background-color: #e68a00;
    transform: translateY(-3px); /* Lift button slightly on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Hamburger Menu Icon (Mobile) */
.menu-toggle {
    display: none; /* Hidden by default, shown on mobile */
    font-size: 2rem;
    cursor: pointer;
}

/* Mobile Menu Hidden by Default */
.sticky-header nav {
    display: flex;
    transition: max-height 0.3s ease-in-out;
}

/* Mobile View - Hide Navigation by Default */
@media (max-width: 768px) {
    .menu-toggle {
        display: block; /* Show the hamburger icon on mobile */
    }

    .sticky-header nav {
        display: none; /* Hide navigation menu by default */
        flex-direction: column;
        width: 100%;
        background-color: #fff;
        position: absolute;
        top: 100%;
        left: 0;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
        padding: 10px 0;
    }

    /* Show the Navigation Menu When Active */
    .sticky-header nav.active {
        display: flex;
    }

    .sticky-header nav a {
        padding: 15px;
        width: 100%; /* Full width for mobile menu */
        text-align: center;
    }

    /* CTA Button Adjustment for Mobile */
    .sticky-header .cta-btn {
        margin-top: 10px;
text-decoration: none;
    }
}


/* Hero Section */
.hero {

    background: linear-gradient(135deg, #4B0082, #8A2BE2, #9370DB);
    height: 100vh; /* Full viewport height */

    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-light);
    text-align: center;
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1s ease-in-out; /* Add a fade-in animation */
}

.hero h1 {
    font-size: 3.5rem; /* Large heading */
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); /* Text shadow for readability */
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    color: #f1f1f1;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.hero .cta-btn {
    background-color: var(--accent-color);
    padding: 15px 30px;
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
text-decoration: none;
}

.hero .cta-btn:hover {
    background-color: var(--secondary-color);
    color: var(--text-light);
    transform: translateY(-3px); /* Lift button on hover */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); /* Enhance shadow on hover */
text-decoration: none;
}

/* Animation for fade-in effect */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 40px 20px;
        height: 80vh; /* Adjust height for smaller screens */
    }

    .hero h1 {
        font-size: 2.5rem; /* Adjust heading size */
    }

    .hero p {
        font-size: 1.1rem; /* Adjust paragraph size */
    }

    .hero .cta-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.section-title p {
    color: var(--text-color);
    font-size: 1.1rem;
}

.section-divider {
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 20px auto;
    border: none;
}

/* Services Section */
.services {
    background-color: var(--bg-light);
    padding: 60px 5%;
    text-align: center;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Responsive grid */
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: var(--text-light);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Add shadow for depth */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px); /* Lifting effect on hover */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-card i {
    font-size: 3rem;
    color: var(--accent-color); /* Icon color */
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-color);
    font-size: 1.1rem;
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.section-title p {
    color: var(--text-color);
    font-size: 1.1rem;
}

.section-divider {
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 20px auto;
    border: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-card {
        padding: 20px;
    }

    .service-card h3 {
        font-size: 1.4rem;
    }

    .service-card p {
        font-size: 1rem;
    }

    .service-card i {
        font-size: 2.5rem;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 60px 5%;
    background-color: var(--bg-light);
    text-align: center;
}

.choose-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.choose-us-card {
    background-color: var(--text-light);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.choose-us-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.choose-us-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

/* Partners Section */
.partners {
    background-color: var(--bg-light);
    padding: 60px 5%;
    text-align: center;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.section-divider {
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 20px auto;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Responsive grid */
    gap: 40px;
    justify-items: center; /* Center-align the logos */
    margin-top: 40px;
}

.partner-logo {
    width: 100%;
    max-width: 180px; /* Control the maximum size of the logo */
    transition: transform 0.3s ease, filter 0.3s ease;
}

.partner-logo img {
    width: 100%;
    filter: grayscale(100%); /* Grayscale effect for logos */
    transition: filter 0.3s ease, transform 0.3s ease; /* Smooth transition for hover effect */
}

.partner-logo:hover img {
    filter: grayscale(0%); /* Remove grayscale on hover */
    transform: scale(1.1); /* Slightly enlarge the logo on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    .partner-logo {
        max-width: 150px; /* Adjust logo size for smaller screens */
    }
}

.clients {
        background-color: #f8f9fa;
        padding: 50px 0;
        text-align: center;
    }

    .section-title h2 {
        font-size: 2.5rem;
        color: #343a40;
    }

    .section-divider {
        width: 60px;
        height: 3px;
        background-color: #ffb74d;
        margin: 20px auto;
    }

    .clients-slider {
        overflow: hidden; /* Hide overflow for smooth scrolling */
        width: 100%;
        margin: 0 auto;
        position: relative;
    }

    .scrolling-logos {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        width: max-content;
        animation: scroll 20s linear infinite; /* Animation for scrolling */
    }

    .client-logo {
        flex: 0 0 auto;
        margin: 0 20px;
        min-width: 150px;
    }

    .client-logo img {
        width: 150px;
        height: auto;
        filter: grayscale(100%);
        transition: filter 0.3s ease-in-out;
    }

    .client-logo img:hover {
        filter: grayscale(0%);
    }

    /* Keyframes for smooth scrolling animation */
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .scrolling-logos {
            flex-wrap: nowrap;
            animation-duration: 30s; /* Slow down scrolling on smaller screens */
        }
        .client-logo {
            min-width: 100px;
        }
    }
</style>


/* Blog Section */
.blog-articles {
    padding: 60px 5%;
    background-color: var(--bg-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.blog-card {
    background-color: var(--text-light);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.blog-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.blog-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

 .read-more {
        display: inline-block;
        margin-top: 15px;
        padding: 10px 20px;
        background-color: #6a1b9a; /* Dark purple */
        color: white;
        text-decoration: none;
        font-weight: bold;
        border-radius: 30px;
        font-size: 0.9rem;
        transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .read-more:hover {
        background-color: #4a148c; /* Slightly darker on hover */
        transform: translateY(-3px); /* Lift effect on hover */
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    }

    .read-more:active {
        transform: translateY(0); /* Remove lift effect when clicked */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    }


/* Footer */
footer {
    background-color: var(--footer-bg); /* Dark background */
    color: var(--text-light);
    padding: 60px 5%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    flex-wrap: wrap;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    width: 100%;
    max-width: 1200px;
}

.footer-column h4 {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-column a {
    color: var(--text-light);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent-color); /* Gold color on hover */
}

.footer-column p {
    margin-bottom: 10px;
    font-size: 1rem;
}

.footer-column a i {
    margin-right: 10px; /* Add spacing between icon and text */
    font-size: 1.1rem;
}

/* Responsive Footer */
@media (max-width: 768px) {
    footer {
        text-align: center;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.bottom-bar {
    background: linear-gradient(90deg, #4a148c, #6a1b9a); /* Gradient for a sleek look */
    padding: 15px 5%;
    text-align: center;
    color: var(--text-light);
    font-size: 0.85rem;
}

.bottom-bar a {
    color: var(--accent-color);
    text-decoration: none;
}

.bottom-bar a:hover {
    color: var(--text-light);
}


/* Social Media Icons */
.social-icons {
    display: flex; /* Use flexbox to place icons in a row */
    gap: 15px; /* Space between icons */
}

.social-icons a {
    font-size: 1.5rem; /* Increase icon size */
    color: white; /* Set icon color */
    transition: color 0.3s ease; /* Smooth transition on hover */
}

.social-icons a:hover {
    color: Gold; /* Change color on hover */
}

/* LinkedIn Newsletter Section */
.linkedin-newsletter-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #f8f9fa;
}

.linkedin-newsletter-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.linkedin-newsletter-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #666;
}

.linkedin-newsletter-btn {
    padding: 12px 25px;
    background-color: #0073b1; /* LinkedIn blue */
    color: #fff;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.linkedin-newsletter-btn:hover {
    background-color: #005582; /* Darker LinkedIn blue on hover */
}

/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.7;
    color: #333;
    background-color: #f4f6f9;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Headings */
h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #6a1b9a; /* Primary color */
    margin-bottom: 30px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    font-size: 1.3rem;
    color: #666;
    line-height: 1.8;
    letter-spacing: 0.5px;
}

/* Grid for Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns */
    gap: 20px; /* Space between cards */
}

/* Feature Cards */
.feature-card {
    background-color: #fff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3.5rem;
    color: #ffb74d; /* Accent color */
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.feature-card p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

/* Why Choose Us Grid */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns */
    gap: 20px; /* Space between cards */
}

/* Why Choose Us Cards */
.why-choose-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.why-choose-card i {
    font-size: 3rem;
    color: #6a1b9a; /* Primary color */
    margin-bottom: 15px;
}

.why-choose-card h3 {
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 15px;
}

.why-choose-card p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}

/* CTA Section */
.contact-cta {
    background-color: #6a1b9a;
    color: #fff;
    padding: 70px 20px;
    text-align: center;
    background: linear-gradient(135deg, #6a1b9a, #4a148c);
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.contact-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #f1f1f1;
}

.cta-btn {
    padding: 15px 50px;
    background-color: #ffb74d; /* Accent color */
    color: #333;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s;
}

.cta-btn:hover {
    background-color: #e68a00;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Media Queries */
@media (max-width: 1024px) {
    .features-grid, .why-choose-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on medium screens */
    }
}

@media (max-width: 768px) {
    .features-grid, .why-choose-grid {
        grid-template-columns: 1fr; /* 1 column on small screens */
    }
}

/* CTA Section */
.contact-cta {
    background-color: #6a1b9a;
    color: #fff;
    padding: 70px 20px;
    text-align: center;
    background: linear-gradient(135deg, #6a1b9a, #4a148c);
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.contact-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #f1f1f1;
}

.cta-btn {
    padding: 15px 50px;
    background-color: #ffb74d; /* Accent color */
    color: #333;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s;
}

.cta-btn:hover {
    background-color: #e68a00;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
     .cta-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}
