.logo-img {
    width: 80px;
}

.extra-content {
    padding: 30px;
    background-color: #f9f9f9;
    /* light background for section */
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-top: 30px;
}

.extra-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0a1d37;
    /* dark blue/blackish title */
}

.extra-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
}

.extra-content .list-style {
    list-style: none;
    padding: 0;
}

.extra-content .list-style li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 17px;
    color: #333;
    text-align: left;
}

.extra-content .list-style li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;
    color: #ff6600;
    /* orange checkmark */
    font-size: 18px;
}

.padding-top60 {
    margin-top: 60px;
}

/* General Styles */
.content-64 {
    padding: 40px 20px;
    background-color: #f9f9f9;
    color: #333;
    font-family: Arial, sans-serif;
}

h2 {
    font-size: 28px;
    font-weight: bold;
    color: #FC5A11;
    margin-bottom: 20px;
}

h3 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
}

/* Paragraph Styling */
p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Unordered List Styling */
ul {
    list-style-type: none;
    padding-left: 0;
}

ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
}

ul li strong {
    font-weight: bold;
    color: #FC5A11;
}

/* Testimonial Section */
h3+.testimonials {
    margin-top: 20px;
    font-style: italic;
    font-size: 16px;
    color: #777;
}

.testimonials p {
    margin-bottom: 15px;
}

.testimonials p strong {
    color: #333;
}

/* Button or Call to Action Section */
.cta-button {
    background-color: #FC5A11;
    color: #fff;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin-top: 30px;
}

.cta-button:hover {
    background-color: #e74a00;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        padding: 20px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 20px;
    }

    p,
    ul li {
        font-size: 14px;
    }

    .cta-button {
        width: 100%;
        padding: 12px 20px;
        font-size: 16px;
    }
}


/* Service Detail */
@media (max-width: 768px) {
    .service-details {
        padding: 40px 10px !important;
    }
}
.service-details {
    padding: 40px 30px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.service-details .content {
    margin-bottom: 40px;
}

.service-details h2,
.service-details h3 {
    color: #1a202c;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-details p {
    color: #4a5568;
    font-size: 16px;
    line-height: 1.8;
}

.service-details .thumb img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 30px 0;
}

.service-list ul {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.service-list ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
    color: #2d3748;
}

.service-list ul li img {
    width: 24px;
    margin-right: 12px;
}

.highlight {
    background-color: #f7fafc;
    padding: 20px;
    border-left: 4px solid #3182ce;
    margin: 30px 0;
    border-radius: 8px;
}

.builder-info {
    margin: 50px 0;
    background: #edf2f7;
    padding: 30px;
    border-radius: 10px;
}

.builder-info h3 {
    margin-bottom: 20px;
}

.builder-info ul {
    list-style: none;
    padding-left: 0;
}

.builder-info ul li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #2d3748;
}

.builder-info ul li i {
    color: #38a169;
    margin-right: 8px;
}

.services-faq {
    margin-top: 70px;
}

.services-faq .title h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #2b6cb0;
    text-align: center;
}

.proj-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Increased gap for better spacing */
}

.proj-accordion-item {
    background: #f7fafc;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.proj-accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 25px; /* Increased padding for better spacing */
    background: #ebf4ff;
    font-weight: 600;
    font-size: 18px;
    color: #2c5282;
    border-bottom: 2px solid #cbd5e0; /* Soft border for separation */
    transition: background-color 0.3s ease;
}

.proj-accordion-header:hover {
    background: #dbeafe;
    color: #3182ce; /* Slightly darker color on hover */
}

.proj-accordion-body {
    padding: 18px 25px;
    display: none;
    font-size: 16px;
    color: #4a5568;
    background-color: #ffffff;
    border-top: 1px solid #e2e8f0; /* Border for separation */
    transition: all 0.3s ease;
    max-height: 0; /* Initially collapsed */
    overflow: hidden;
}

.proj-active .proj-accordion-body {
    display: block;
    max-height: 500px; /* Allow body to expand */
}

.proj-accordion-number {
    color: #4299e1;
    font-weight: bold;
    margin-right: 15px;
    font-size: 20px;
}

.proj-accordion-question {
    font-weight: 500;
    font-size: 18px;
    color: #2c5282;
    flex-grow: 1;
}

.proj-accordion-arrow {
    transition: transform 0.3s ease;
}

.proj-active .proj-accordion-arrow {
    transform: rotate(180deg); /* Arrow rotates when active */
}

.proj-accordion-header .proj-accordion-arrow {
    transform: rotate(0deg); /* Default state of arrow */
}

.proj-accordion-body p {
    margin: 0;
    line-height: 1.6;
}

.proj-accordion-item:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Slightly deeper shadow on hover */
}


.full-width {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
}