/* Logo Responsive CSS */
.th-logo-img {
    width: 100%;
    max-width: 100px; /* your desired size */
    height: auto;
    display: block;
}
@media (max-width: 480px) {
    .th-logo-img {
        max-width: 90px;
    }
}

/* Wrapper UL */
.th-service-list {
    margin-top: 20px;
    padding-left: 0;
    list-style: none;
}

/* List Items */
.th-service-list li {
    position: relative;
    padding: 12px 16px 12px 45px;
    margin-bottom: 12px;
    background: #fffaf0; /* light warm background */
    border-radius: 8px;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    transition: all 0.3s ease;
    border-left: 4px solid #febc0d;
}

/* Creative Bullet */
.th-service-list li::before {
    content: "•";
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    color: #febc0d;
    font-weight: bold;
}

/* Hover Effect */
.th-service-list li:hover {
    background: #fff3cc;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(254, 188, 13, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
    .th-service-list li {
        font-size: 15px;
        padding: 10px 14px 10px 40px;
    }
}

@media (max-width: 480px) {
    .th-service-list li {
        font-size: 14px;
        padding: 10px 12px 10px 38px;
    }
}

/* Wrapper (safe scoped) */
.creative-list {
    list-style: none;
    counter-reset: custom-counter;
    padding: 0;
    margin: 20px 0;
}

/* List items */
.creative-list li {
    counter-increment: custom-counter;
    position: relative;
    padding: 15px 15px 15px 60px;
    margin-bottom: 15px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    font-size: 16px;
    line-height: 1.5;
    transition: 0.3s ease;
}

/* Hover effect */
.creative-list li:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Number circle */
.creative-list li::before {
    content: counter(custom-counter);
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background: #febc0d;
    color: #fff;
    font-weight: bold;
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .creative-list li {
        padding: 12px 12px 12px 50px;
        font-size: 14px;
    }

    .creative-list li::before {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 12px;
    }
}

/* Scoped Contact Section */
.thind-contact-section {
    background: #f9f9f9;
    padding: 60px 20px;
    font-family: inherit;
}

.thind-contact-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Left Content */
.thind-contact-left {
    flex: 1;
    min-width: 280px;
}

.thind-contact-left h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #222;
}

.thind-contact-left p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
}

/* Contact List */
.thind-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.thind-contact-list li {
    background: #fff;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    border-left: 4px solid #febc0d;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    font-size: 15px;
}

.thind-contact-list a {
    color: #febc0d;
    text-decoration: none;
    font-weight: bold;
}

/* Right Card */
.thind-contact-right {
    flex: 1;
    min-width: 280px;
    display: flex;
    justify-content: center;
}

.thind-contact-card {
    background: linear-gradient(135deg, #febc0d, #ff9f00);
    padding: 30px;
    border-radius: 15px;
    color: #fff;
    text-align: center;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.thind-contact-card h3 {
    margin-bottom: 10px;
    font-size: 22px;
}

.thind-contact-card p {
    margin-bottom: 20px;
    font-size: 14px;
}

/* Call Button */
.thind-call-btn {
    display: inline-block;
    background: #fff;
    color: #febc0d;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s ease;
}

.thind-call-btn:hover {
    background: #222;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .thind-contact-container {
        flex-direction: column;
        text-align: center;
    }

    .thind-contact-left h2 {
        font-size: 26px;
    }

    .thind-contact-list li {
        font-size: 14px;
    }
}

/* Banner Section */
.th-banner-section {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

/* Wrapper */
.th-banner-wrapper {
    position: relative;
    width: 100%;
}

/* Image */
.th-banner-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

/* Overlay Content */
.th-banner-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 90%;              /* important */
    max-width: 600px;        /* control size */

    text-align: center;
    color: #ffffff;
    padding: 10px;
}

/* Text Styling */
.th-banner-overlay h1 {
    font-size: 60px;
    margin-bottom: 10px;
    color: #f0af0b;
}

.th-banner-overlay p {
    font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
    .th-banner-img {
        height: 350px;
    }

    .th-banner-overlay h1 {
        font-size: 26px;
    }

    .th-banner-overlay p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .th-banner-img {
        height: 250px;
    }

    .th-banner-overlay h1 {
        font-size: 20px;
    }

    .th-banner-overlay p {
        font-size: 13px;
    }
}

/* Creative Call Box */
.th-call-box {
    background: rgba(0, 0, 0, 0.55);
    padding: 20px;
    border-radius: 12px;
    width: 100%;            /* important */
    max-width: 100%;        /* prevent overflow */
    margin: auto;
    backdrop-filter: blur(6px);
    box-sizing: border-box; /* critical fix */
}

/* Heading */
.th-call-box h1 {
    font-size: 38px;
    margin-bottom: 10px;
    color: #fff;
}

/* Subtext */
.th-call-text {
    font-size: 16px;
    margin-bottom: 20px;
    color: #ddd;
}

/* Buttons */
.th-call-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.th-call-btn,
.th-whatsapp-btn {
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s ease;
}

/* Call Button */
.th-call-btn {
   background: #FFFFFF;
    border: 4px solid #febc0d;
    color: #000;
}

.th-call-btn:hover {
    background: #febc0d;
    color: #fff;
}

/* WhatsApp Button */
.th-whatsapp-btn {
    background: #25D366;
    color: #fff;
}

.th-whatsapp-btn:hover {
    background: #fff;
}

/* Features List */
.th-call-features {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.th-call-features li {
    font-size: 13px;
    color: #eee;
    display: flex;
    align-items: center;
    gap: 6px;
}

.th-call-features i {
    color: #febc0d;
}

/* Responsive */
@media (max-width: 768px) {
    .th-call-box {
        padding: 18px;
    }

    .th-call-box h1 {
        font-size: 26px;
    }

    .th-call-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .th-call-actions {
        flex-direction: column;
    }

    .th-call-btn,
    .th-whatsapp-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {

    .th-banner-overlay {
        top: 55%; /* slightly lower for better view */
        transform: translate(-50%, -50%);
        width: 95%;
    }

    .th-call-box {
        padding: 15px;
    }

    .th-call-box h1 {
        font-size: 22px;
        margin: -10px;
    }

    .th-call-text {
        font-size: 13px;
    }

    .th-call-features {
        flex-direction: row;   /* stack properly */
        align-items: center;
        gap: 3px;
        margin: -10px;
    }
}

/* Simple & Safe Scoped OL */
.simple-ol {
    padding-left: 20px;
    margin: 15px 0;
}

.simple-ol li {
    margin-bottom: 8px;
    font-size: 15px;
    color: #333;
}

/* Highlight numbers only */
.simple-ol li::marker {
    color: #febc0d;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .simple-ol li {
        font-size: 14px;
    }
}

/* Scoped FAQ Section */
.thind-faq-section {
    padding: 60px 20px;
    background: #f9f9f9;
}

.thind-faq-container {
    max-width: 800px;
    margin: auto;
}

.thind-faq-container h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    color: #222;
}

/* FAQ Item */
.thind-faq-item {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Question Button */
.thind-faq-question {
    width: 100%;
    text-align: left;
    padding: 15px 20px;
    font-size: 16px;
    background: #fff;
    border: none;
    outline: none;
    cursor: pointer;
    position: relative;
    transition: 0.3s;
}

/* Hover */
.thind-faq-question:hover {
    background: #f1f1f1;
}

/* Plus Icon */
.thind-faq-question::after {
    content: "+";
    position: absolute;
    right: 20px;
    font-size: 18px;
    color: #febc0d;
}

/* Active State */
.thind-faq-item.active .thind-faq-question::after {
    content: "-";
}

/* Answer */
.thind-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.thind-faq-answer p {
    padding: 10px 0 15px;
    margin: 0;
    color: #555;
    font-size: 14px;
}

/* Open State */
.thind-faq-item.active .thind-faq-answer {
    max-height: 200px;
}

/* Responsive */
@media (max-width: 768px) {
    .thind-faq-container h2 {
        font-size: 24px;
    }

    .thind-faq-question {
        font-size: 14px;
        padding: 12px 15px;
    }

    .thind-faq-answer p {
        font-size: 13px;
    }
}
.thind-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}