/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #37474f;
    font-size: 16px;
    line-height: 1.6;
    background-color: #f9fbfb;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 15px;
}

h1 {
    font-size: 38px;
}

h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 10px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px;
    font-weight: 600;
}

p {
    margin-bottom: 15px;
}

a {
    color: #0277bd;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #039be5;
}

ul {
    list-style: none;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #546e7a;
}

/* Header Styles */
.site-header {
    padding: 20px 0;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 50px;
}

.main-nav {
    display: flex;
    align-items: center;
}

.main-nav ul {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.main-nav ul li {
    margin-left: 25px;
}

.main-nav ul li a {
    font-weight: 500;
    color: #37474f;
}

.main-nav ul li a:hover {
    color: #0277bd;
}

.btn_one {
    background-color: #0277bd;
    color: white !important;
    padding: 8px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn_one:hover {
    background-color: #039be5;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background-color: #ffffff;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.signup-btn, .get-started-btn {
    display: inline-block;
    background: linear-gradient(45deg, #0277bd, #039be5);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    margin-top: 15px;
    box-shadow: 0 8px 15px rgba(2, 119, 189, 0.2);
    transition: all 0.3s ease;
}

.signup-btn:hover, .get-started-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(2, 119, 189, 0.3);
    color: white;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background-color: #f9fbfb;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-item {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-icon img {
    height: 60px;
}

/* Taskboard Section */
.taskboard {
    padding: 80px 0;
    background-color: #ffffff;
}

.taskboard .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.taskboard-content {
    flex: 1;
}

.taskboard-image {
    flex: 1;
}

.taskboard-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background-color: #f9fbfb;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.pricing-item {
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    width: 350px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pricing-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.pricing-item.popular {
    border: 2px solid #0277bd;
}

.popular-tag {
    position: absolute;
    top: 15px;
    right: -30px;
    background: #0277bd;
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-header h3 {
    color: #0277bd;
}

.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-top: 15px;
}

.currency {
    font-size: 22px;
    font-weight: 600;
    margin-right: 5px;
}

.amount {
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.period {
    font-size: 14px;
    color: #78909c;
    margin-left: 5px;
    align-self: flex-end;
}

.pricing-features ul li {
    margin-bottom: 12px;
    color: #546e7a;
}

.pricing-features ul li:before {
    content: "✓";
    color: #0277bd;
    margin-right: 8px;
    font-weight: bold;
}

.pricing-footer {
    text-align: center;
    margin-top: 30px;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: #ffffff;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    background-color: #f9fbfb;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.03);
}

.faq-item h5 {
    margin-bottom: 10px;
    color: #0277bd;
}

/* Clients Section */
.clients {
    padding: 80px 0;
    background-color: #f9fbfb;
}

.client-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.client-logos img {
    height: 40px;
    margin: 10px 20px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logos img:hover {
    opacity: 1;
}

.client-text {
    padding: 10px 20px;
    background-color: #f9fbfb;
    border-radius: 8px;
    color: #546e7a;
    font-weight: 500;
    margin: 10px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.client-text:hover {
    opacity: 1;
    background-color: #e3f2fd;
    color: #0277bd;
}

/* Footer */
footer {
    background-color: #263238;
    color: white;
    padding: 40px 0;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo img {
    height: 30px;
    margin-right: 15px;
}

.social-links {
    display: flex;
}

.social-icon {
    display: block;
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container, .taskboard .container {
        flex-direction: column;
    }
    
    .hero-content, .taskboard-content {
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .faq-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .main-nav ul {
        display: none;
    }
    
    h1 {
        font-size: 30px;
    }
    
    h2 {
        font-size: 26px;
    }
    
    footer .container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-logo {        flex-direction: column;
        margin-bottom: 20px;
    }
    
    .footer-logo img {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

/* Fixed header */
header.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(26, 45, 98, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    animation: slideDown 0.3s ease-in-out;
    z-index: 1000;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Override for login button style */
.btn_one {
    display: inline-block;
    background-color: #2eca7f;
    color: #ffffff !important;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(97, 196, 177, 0.3);
}

.btn_one:hover {
    background-color: #1a2d62;
    color: #ffffff !important;
}
