/* ---------------------- Nav bar -------------------------- */
/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

body {
    font-family: Arial, sans-serif;
}

/* Navbar */
.nav-bar {
    width: 100%;
    background-color: white;
    padding: 15px 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

/* Logo */
.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.navbar-title {
    color: #00B98E;
    font-size: 24px;
    font-weight: bold;
}

/* Links */
.navbar-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    color: #0E2E50;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: #00B98E;
}


/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #0E2E50;
    margin: 4px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 15px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    }

    .navbar-links.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }
}

/* --------------------------------- hero section -------------------------- */

/* Hero Section */
.hero {
    position: relative;
    background: url('https://img.freepik.com/free-photo/green-business-meeting-working-room-office-building-with-bookshelf_105762-1790.jpg?t=st=1743751690~exp=1743755290~hmac=6e7c9b5dec39396ba372ebabc22c30f8d11adedae813ba8123a22db579bd4ddc&w=1380') center/cover no-repeat;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.hero-content {
    max-width: 600px;
    color: white;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    background: #00B98E;
    color: white;
    padding: 12px 25px;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.btn:hover {
    background: #009472;
}
/*  ------------------ hero section end ---------------------- */

/* --------------------------- services section ---------------------------- */

/* Services Section */
.services {
    padding: 60px 20px;
    text-align: center;
    background: #f8f9fa;
}

.section-title {
    font-size: 2rem;
    color: #0E2E50;
    margin-bottom: 30px;
}

/* Fixed 3x2 Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Always 3 columns */
    grid-template-rows: repeat(2, auto);  /* Always 2 rows */
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

/* Service Box Styling */
.service-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.service-box i {
    font-size: 2rem;
    color: #00B98E;
    margin-bottom: 15px;
}

.service-box h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.service-box p {
    color: #555;
}

/* Hover Effect */
.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* Two per row on tablets */
        grid-template-rows: auto; /* Adjust row height dynamically */
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr; /* One per row on small screens */
    }
}

/* --------------------------- pricing section ------------------------------- */

/* Pricing Section */
.pricing {
    padding: 60px 20px;
    text-align: center;
    background: #f8f9fa;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: auto;
}

.pricing-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    position: relative;
}

/* Hover Effect - Highlight on Hover */
.pricing-box:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 185, 142, 0.3);
    border: 2px solid #00B98E;
}

.pricing-box h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #0E2E50;
}

.pricing-box ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.pricing-box ul li {
    font-size: 1rem;
    color: #555;
    padding: 5px 0;
}

.pricing-box .btn {
    display: inline-block;
    background: #00B98E;
    color: white;
    padding: 12px 20px;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
}

.pricing-box .btn:hover {
    background: #009472;
}

/* Fully Responsive Grid */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}


/* ---------------------------- frequently asked questions -------------------------- */

/* FAQ Section */
.faq {
    padding: 60px 20px;
    background: #f8f9fa;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    color: #0E2E50;
    margin-bottom: 30px;
}

/* FAQ List */
.faq-list {
    max-width: 800px;
    margin: auto;
    text-align: left;
}

/* FAQ Item */
.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* FAQ Question */
.faq-question {
    width: 100%;
    background: #00B98E;
    color: white;
    font-size: 1.2rem;
    padding: 15px;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: #009472;
}

/* Toggle Icon */
.toggle-icon {
    font-weight: bold;
    font-size: 1.5rem;
}

/* FAQ Answer (Hidden by Default) */
.faq-answer {
    display: none;
    padding: 15px;
    background: white;
    color: #333;
    border-top: 1px solid #ddd;
}


/* -------------------------- call to action section ------------------------------- */

/* ------------------------------------ Call ----------------------------------- */

/* :root {
    --primary: #00B98E;
    --dark: #0E2E50;
    --light-bg: #F8F9FA;
    --border-color: rgba(0, 185, 142, 0.3);
} */

.call-to-action {
    padding: 60px 0;
    background: #F8F9FA;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-box {
    background: #fff;
    border: 8px solid rgba(0, 185, 142, 0.3);
    border-radius: 10px;
    padding: 5px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between; /* Ensures better spacing */
    gap: 20px;
    border-radius: 10px;
}


/* Columns */
.col {
    flex: 1;
    min-width: 280px; /* Works better on smaller screens */
}

/* Image Styling */
.left img {
    width: 100%;
    max-width: 250px; /* Prevents over-sizing */
    border-radius: 10px;
    display: block;
    margin: 0 auto;
}

/* Text Section */
.right h1 {
    font-size: 28px;
    color: #0E2E50;
    margin-bottom: 15px;
}

.right p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

/* Button Section */
.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* Buttons */
.btn-primary,
.btn-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center; /* Centers text & icon */
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 5px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease-in-out;
    white-space: nowrap; /* Prevents text wrapping */
}

.btn-primary {
    background: #00B98E;
}

.btn-dark {
    background:#0E2E50;
}

.btn-primary:hover {
    background: #008f75;
}

.btn-dark:hover {
    background: #09213c;
}

.btn-primary i,
.btn-dark i {
    margin-right: 8px;
}

/* 🔥 FULLY RESPONSIVE - Works on All Screens */
@media (max-width: 1024px) {
    .row {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .row {
        flex-direction: column;
        text-align: center;
    }

    .cta-buttons {
        justify-content: center;
        flex-direction: column; /* Stacks buttons on mobile */
        align-items: center;
        width: 100%;
    }

    .btn-primary,
    .btn-dark {
        width: 90%; /* Makes buttons full-width on smaller screens */
        text-align: center;
    }

    .left img {
        width: 80%;
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    .btn-primary,
    .btn-dark {
        font-size: 14px;
        padding: 10px 16px;
    }

    .right h1 {
        font-size: 24px;
    }
}

/* -------------------------------- productivity ------------------------------ */

/* Blog Section */
.blog {
    padding: 60px 20px;
    text-align: center;
    background: #ffffff;
}

.section-title {
    font-size: 2rem;
    color: #0E2E50;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

/* Grid Layout */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: auto;
}

/* Blog Box */
.blog-box {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

.blog-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

/* Blog Image */
.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Blog Content */
.blog-content {
    padding: 20px;
}

.blog-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #0E2E50;
}

.blog-content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
}

/* Read More Button */
.read-more {
    text-decoration: none;
    color: #00B98E;
    font-weight: bold;
    transition: 0.3s;
}

.read-more:hover {
    color: #009472;
}

/* Responsive */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

:root {
    --primary: #00B98E;
    --secondary: #FF6922;
    --light: #EFFDF5;
    --dark: #0E2E50;
}

/* Footer Background & Text */
.footer {
    background-color: var(--dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 50px 20px;
    font-family: Arial, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.column {
    flex: 1;
    min-width: 220px;
    margin-bottom: 30px;
}

h5 {
    color: var(--light);
    margin-bottom: 15px;
}

/* Quick Links */
.column a {
    display: block;
    color: var(--light);
    text-decoration: none;
    margin-bottom: 8px;
    transition: 0.3s;
}

.column a:hover {
    color: var(--primary);
    letter-spacing: 1px;
}

/* Social Icons */
.social-icons a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--light);
    border-radius: 50%;
    margin-right: 8px;
    font-size: 18px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: var(--primary);
    border-color: var(--light);
}

/* Photo Gallery */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}

.photo-gallery img {
    width: 100%;
    border-radius: 5px;
    background: var(--light);
    padding: 3px;
}

/* Newsletter */
.newsletter {
    position: relative;
    max-width: 300px;
}

.newsletter input {
    width: 100%;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    color: white;
}

.newsletter button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 15px;
    margin-top: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter button:hover {
    background: var(--secondary);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(256, 256, 256, 0.1);
    text-align: center;
    padding-top: 20px;
    font-size: 14px;
}

.footer-bottom a {
    color: var(--light);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--primary);
}

.footer-menu {
    margin-top: 10px;
}

.footer-menu a {
    margin: 0 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 10px;
}

.footer-menu a:last-child {
    border-right: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .row {
        flex-direction: column;
        text-align: center;
    }

    .social-icons a {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}



