﻿/*=============== BANNER / SLIDER ===============*/
header .nav__data .nav__logo .logo-img,
.nav__data .nav__logo .logo-img,
.nav__logo .logo-img,
.logo-img {
    max-width: none !important;
    max-height: none !important;
    height: 64px !important; /* desired size: change 64px to 55/70 as needed */
    width: 160px !important;
    display: block !important;
    object-fit: contain !important;
    vertical-align: middle !important;
    transform: none !important;
}

body {
    font-family: "Poppins", sans-serif;
    margin: 0;
    color: #111827;
}

/* COMMON */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
}

h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
}

/* BUTTONS */
.btn {
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .btn.primary {
        background: #2563eb;
        color: #fff;
        box-shadow: 0 6px 16px rgba(37, 99, 235, 0.25);
    }

        .btn.primary:hover {
            background: #1e40af;
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
        }

    /*    .btn.secondary {
        border: 1px solid #2563eb;
        color: #2563eb;
    }*/
    .btn.secondary {
        position: relative;
        overflow: hidden;
        border: 1px solid #2563eb;
        color: #2563eb;
        background: transparent;
        z-index: 1;
    }

        .btn.secondary:hover {
            color: #2563eb;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
        }

/* HERO */
.hero {
    min-height: 570px;
    padding: 150px 0;
    /* BACKGROUND IMAGE + GRADIENT */
    background-image: url("../images/office_hero.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

    .hero-content h1 {
        font-size: 42px;
        margin-bottom: 16px;
    }

    .hero-content p {
        font-size: 18px;
        color: #555;
        margin-bottom: 28px;
    }

.hero-buttons {
    display: flex;
    gap: 16px;
}

@media (max-width: 992px) {
    .hero {
        background-position: center;
        background-size: auto;
        padding: 120px 0;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-content {
        margin: 0 auto;
    }

    .span {
    }
}




/* APPS */
.apps {
    padding: 80px 0;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 24px;
}

.app-card {
    background: #fff;
    padding: 24px;
    text-align: center;
    transition: 0.3s;
}

    .app-card span,
    .app-card p {
        display: block;
        font-size: 14px;
        margin-top: 6px;
    }


    .app-card i {
        font-size: 36px;
        color: #2563eb;
        display: block;
        margin-bottom: 10px;
    }

    .app-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 25px rgba(0,0,0,0.08);
    }

/*@media (min-width: 769px){
    .app-card{

    }
}*/

/* MICROSOFT STYLE b  FOR EVERYONE */
/* USECASE ITEM b  SUBTLE HOVER BOX */
/* MICROSOFT STYLE b  FOR EVERYONE */
.usecases {
    background: linear-gradient(135deg, #e0f7fa 0%, #f1f6fa 100%);
    padding: 80px 0;
}

/* GRID FIX */
.usecase-grid.microsoft-style {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

/* ITEM */
.usecase-item {
    padding: 32px 20px;
    border-radius: 14px;
    border: 1px solid transparent;
    transition: border 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

    /* HOVER */
    .usecase-item:hover {
        background: #f9fafb;
        border-color: #e5e7eb;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
        transform: translateY(-6px);
    }

    /* ICON */
    .usecase-item i {
        font-size: 42px;
        color: #2563eb;
        margin-bottom: 14px;
        display: inline-block;
        transition: transform 0.3s ease;
    }

    .usecase-item:hover i {
        transform: scale(1.08);
    }

    /* TITLE */
    .usecase-item h3 {
        font-size: 18px;
        font-weight: 500;
        margin-bottom: 8px;
    }

    /* LINK */
    .usecase-item a {
        font-size: 14px;
        color: #2563eb;
        text-decoration: none;
        font-weight: 500;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        transition: all 0.3s ease;
    }

    .usecase-item:hover a {
        color: #1e40af;
    }

        .usecase-item:hover a i {
            transform: translateX(6px);
        }

/* RESPONSIVE */
@media (max-width: 992px) {
    .usecase-grid.microsoft-style {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .usecase-grid.microsoft-style {
        grid-template-columns: 1fr;
    }
}


/* WHY */
.why {
    margin-top: -80px;
    padding: 80px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.why-card {
    background: #fff;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
}

    .why-card:hover {
        transform: translateY(-6px);
    }

/* STEPS */
.steps {
    padding: 80px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.step {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

    .step span {
        display: inline-block;
        width: 40px;
        height: 40px;
        background: #2563eb;
        color: #fff;
        border-radius: 50%;
        line-height: 40px;
        margin-bottom: 12px;
    }

/* PRICING */
.pricing {
    margin-top: -80px;
    background: linear-gradient(135deg, #e0f7fa 0%, #f1f6fa 100%);
    padding: 80px 0;
}

    .pricing h2 {
        text-align: center;
        font-size: 34px;
        margin-bottom: 50px;
    }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

/* CARD */
.price-card {
    background: #fff;
    padding: 36px 28px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

/*    .price-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 40px rgba(0,0,0,0.08);
    }*/

/*    .price-card.featured {
        border: 2px solid #2563eb;
    }*/

    /* TEXT */
    .price-card h3 {
        font-size: 20px;
        font-weight: 600;
    }

.plan-subtitle {
    color: #6b7280;
    margin-bottom: 18px;
}

/* PRICE */
.price {
    font-size: 42px;
    font-weight: 700;
    margin-top: 10px;
}

.billing {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 20px;
}

/* DIVIDER */
.divider {
    height: 1px;
    background: #e5e7eb;
    margin: 24px 0;
}

/* BUTTON */
.btn-buy {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 8px;
    border: 2px solid #0f172a;
    color: #0f172a;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}

    .btn-buy:hover {
        background: #0f172a;
        color: #fff;
    }

/*    .btn-buy.primary {
        background: #0f172a;
        color: #fff;
    }*/

        .btn-buy.primary:hover {
            background: #020617;
        }

/* PLAN HIGHLIGHT */
.plan-highlight {
    margin-top: 24px;
    text-align: left;
}

.highlight-title {
    color: #808080;
    font-size: 14px;
    margin-bottom: 12px;
    font-weight: 500;
}

.plan-highlight ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .plan-highlight ul li {
        position: relative;
        padding-left: 22px;
        margin-bottom: 10px; /* ✅ space below each tick */
        font-size: 14px;
        color: #111827;
        line-height: 1.5;
    }

        .plan-highlight ul li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 0;
            color: #0f172a;
            font-weight: 600;
        }



/* ==================== FAQ SECTION ==================== */
/*FAQ*/
.cont {
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
    color: #222;
    position: relative;
    overflow: hidden;
    text-align: left;
}

.faq {
    padding: 0;
    font-family: 'Poppins', sans-serif;
    color: black;
    max-width: 1200px;
    margin-left: 170px;
    margin-right: 170px;
}

.faq-item {
    display: block;
    background: none;
    border: none;
    border-bottom: 1px solid #ddd; /* underline */
    margin-bottom: 12px;
    border-radius: 0;
    overflow: visible;
}

.faq-title {
    padding: 16px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    background: none;
}

    .faq-title::before {
        content: ">"; /* arrow */
        font-size: 26px;
        font-weight: 600;
        color: #806666; /* blue arrow */
        transition: transform 0.3s ease;
    }

.faq-item.expanded .faq-title::before {
    transform: rotate(90deg);
}

.faq-title h2 {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    /*        font-size: 2.5rem;*/
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    padding-left: 38px; /* aligns with text after arrow */
    transition: max-height 0.3s ease, padding 0.3s ease;
}

    .faq-content p {
        margin: 15px 0;
    }

.faq-item.expanded .faq-content {
    padding-top: 8px;
    padding-bottom: 16px;
    /* max-height now set dynamically via JS */
}

.faq-item.expanded .title-icon {
    transform: rotate(-180deg);
    transition: transform 0.3s ease;
}
/* For very small mobile screens like 300px */
@media screen and (max-width: 300px) {
    .faq {
        margin: 0 10px;
    }

    .faq-title {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
    }

        .faq-title h2 {
            font-size: 1em;
        }

    .faq-content {
        font-size: 14px;
        padding: 0 10px;
    }

    .faq-item.expanded .faq-content {
        padding: 10px;
    }

    .consultant-button {
        justify-content: center; /* Center the button for smaller screens */
        margin-top: 10px;
    }
}

/* For screens up to 1118px (tablet/laptop range) */
@media screen and (max-width: 1118px) {
    .faq {
        margin-left: 40px;
        margin-right: 40px;
    }

    .faq-title {
        padding: 12px;
    }

        .faq-title h2 {
            font-size: 1.1em;
        }

    .faq-content {
        font-size: 15px;
        padding: 0 12px;
    }

    .faq-item.expanded .faq-content {
        padding: 12px;
    }

    .consultant-button {
        justify-content: flex-end; /* Keep button aligned to the right */
        margin-top: 15px;
    }
}

/* For screens up to 1152px */
@media screen and (max-width: 1152px) {
    .faq {
        margin-left: 60px;
        margin-right: 60px;
    }

    .faq-title h2 {
        font-size: 1.1em;
    }
}


/* ================= CTA SECTION ================= */
.cta-section {
    padding: 0 20px;
    background: #ffffff;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #f8fbfd;
    border-radius: 6px;
    padding: 40px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

/* CTA text */
.cta-text h3 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: #1d1b1b;
}

/* CTA button */
.cta-btn {
    background: #ff4d4f;
    color: #ffffff;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 2px;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
}

    .cta-btn:hover {
        background: #e84446;
        transform: translateY(-2px);
        box-shadow: 0 6px 14px rgba(255, 77, 79, 0.25);
    }

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .cta-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px 25px;
    }

    .cta-text h3 {
        font-size: 22px;
    }
}
