/* -----------------------------------
   Root Fonts
----------------------------------- */
:root {
    --font-primary: 'Manrope', sans-serif;
    --font-secondary: 'Sora', sans-serif;
}

/* Brand Identity Section */

.brand-hero {
    max-width: 1100px;
}

.brand-label {
    color: #6f6f6f;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 10px;
    font-family: var(--font-primary);
}

.brand-title {
    font-size: 66px;
    font-weight: 400;
    line-height: 1.1;
    color: #111;
    letter-spacing: -0.5px;
    font-family: var(--font-primary);
}

.hero-image-wrapper {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .brand-title {
        font-size: 30px;
    }
}

/* Brand Identity Services */

.brand-services {
    max-width: 1100px;
}

.section-label {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
    font-family: var(--font-primary);
}

.section-title {
    font-size: 50px;
    font-weight: 500;
    letter-spacing: -0.5px;
    margin-bottom: 15px;
    font-family: var(--font-primary);
}

.section-desc {
    font-size: 26px;
    font-family: var(--font-secondary);
}

.service-item {
    margin-bottom: 32px;
}

.service-item h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 6px;
    font-family: var(--font-primary);
}

.service-item p {
    color: #0b0b0b;
    font-size: 19px;    
    line-height: 1.6;
    font-family: var(--font-secondary);
}

/* Right side image collage */

.services-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.services-images img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    object-fit: cover;
}

/* Adjust sizes */
.img-1 {
    /* width: 408px; */
    height: 519px;
    padding: 20px 0 0 90px;
}

/* .img-2 {
    width: 408px;
    height: 395px;
}

.img-3 {
    width: 408px;
    height: 270px;
}

.img-4 {
    width: 408px;
    height: 408px;
} */

@media (max-width: 768px) {
    .services-images {
        grid-template-columns: 1fr 1fr;
    }

    .section-title {
        font-size: 28px;
    }
}


/* CTA Banner Section */

.cta-banner {
    background: linear-gradient(90deg, #ffb23f, #ff6a00, #ff4d00);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}

.cta-content h2 {
    font-size: 32px;
    font-weight: 500;
    color: #fff;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
    font-family: var(--font-primary);
    /* padding: 10px 0  0 50px ; */
    
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    color: #111;
    padding: 10px 22px 0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
    font-family: var(--font-secondary);
    
}

.cta-btn:hover {
    background: #f1f1f1;
}

.cta-image {
    width: 40%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    /* padding-left: 55px;
    margin-left: 130px; */
}

.cta-image img {
    max-width: 80%;
    height: auto;
    object-fit: contain;
    /* margin: 20px 10px 0 10px; */
        /* fixed px issue */
    border-radius: 60px;
    
}

@media (max-width: 768px) {
    .cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 35px 25px;
    }

    .cta-image {
        margin-top: 25px;
        width: 100%;
        justify-content: center;
    }

    .cta-content h2 {
        font-size: 26px;
    }
}

/* Branding Process Section */

.process-label {
    font-size: 16px;
    color: #444;
    margin-bottom: 10px;
    font-family: var(--font-secondary);
}

.process-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    font-family: var(--font-primary);
}

.process-desc {
    font-size: 26px;
    color: #555;
    line-height: 1.7;
    text-align: justify;
    font-family: var(--font-secondary);
}

.process-grid {
    margin-top: 40px;
}

.process-box {
    display: flex;
    gap: 22px;
    padding: 28px;
    border: 1px solid #e4e4e4;
    border-radius: 18px;
    margin-bottom: 25px;
    align-items: flex-start;
    background: #fff;
    font-family: var(--font-secondary);
}

.step-number {
    background: #000;
    color: #fff;
    width: 42px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-weight: 600;
    font-size: 17px;
    font-family: var(--font-primary);
}

.process-box h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
    font-family: var(--font-primary);
}

.process-box p {
    font-size: 15px;
    color: #555;
    margin: 0;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .process-title {
        font-size: 32px;
    }
}

/* FAQ Section */

.faq-label {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
    font-family: var(--font-secondary);
}

.faq-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 40px;
    font-family: var(--font-primary);
}

/* FAQ Item */
.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 20px 0;
}

.faq-item.open .faq-answer {
    display: block;
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
}

/* Question Style */
.faq-question {
    width: 100%;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    padding: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    font-family: var(--font-primary);
}

.faq-arrow {
    transition: 0.3s;
    font-size: 16px;
    color: #333;
}

.faq-answer {
    font-size: 15px;
    color: #555;
    margin-top: 10px;
    line-height: 1.6;
    display: none;
    font-family: var(--font-secondary);
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 32px;
    }

    .faq-question {
        font-size: 17px;
    }
}



