/* ===========================
   Import Fonts
   =========================== */
@import url('https://fonts.googleapis.com/css2?family=Fustat:wght@200;300;400;500;600;700;800&display=swap');

/* ===========================
   Reset & Global Styles
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6D2B50;
    --secondary-color: #2c3e50;
    --text-dark: #2c3e50;
    --text-light: #666;
    --border-color: #e0e0e0;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --sidebar-width: 420px;
}

body {
    font-family: 'Fustat', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--bg-light);
}

/* ===========================
   Page Layout
   =========================== */
.page-wrapper {
    display: flex;
    min-height: 100vh;
    max-width: 1600px;
    margin: 5rem auto;
    background-color: var(--white);
}

/* ===========================
   Sidebar
   =========================== */
.sidebar {
    width: var(--sidebar-width);
    background-color: var(--bg-light);
    padding: 0px 25px;
    position: sticky;
    top: 0;
    height: auto;

}
form .form-group{margin:0}

.sidebar-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: sticky;
    top: 150px;
}

/* Contact Form Widget */
.contact-form-widget {
    background-color: var(--white);
    padding: 30px 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.form-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.form-description {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.5;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    width: 100%;
}
/* Prometric Exam Coaching Section */
.prometric-coaching-section {
    margin-bottom: 70px;
}

.coaching-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.coaching-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    background-color: var(--bg-light);
    border-radius: 20px;
    overflow: hidden;
    padding: 40px;
    transition: all 0.3s ease;
}

.coaching-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.coaching-card-reverse .coaching-image {
    order: 2;
}

.coaching-card-reverse .coaching-content {
    order: 1;
}

.coaching-image {
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
}

.coaching-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.coaching-card:hover .coaching-image img {
    transform: scale(1.05);
}

.coaching-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
}

.coaching-content h3 svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.coaching-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    text-align: justify;
}

/* Responsive Styles - Tablet (max-width: 992px) */
@media (max-width: 992px) {
    .coaching-card {
        grid-template-columns: 1fr;
        padding: 30px;
        gap: 25px;
    }

    .coaching-card-reverse .coaching-content {
        order: 0;
    }

    .coaching-card-reverse .coaching-image {
        order: 0;
    }

    .coaching-image {
        height: 250px;
    }
}

/* Responsive Styles - Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .coaching-card {
        grid-template-columns: 1fr;
        padding: 25px;
        gap: 20px;
    }

    .coaching-card-reverse .coaching-content {
        order: 0;
    }

    .coaching-card-reverse .coaching-image {
        order: 0;
    }

    .coaching-image {
        height: 220px;
    }

    .coaching-content h3 {
        font-size: 18px;
    }

    .coaching-content p {
        font-size: 14px;
    }
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Fustat', sans-serif;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(109, 43, 80, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    width: 100%;
    padding: 14px 20px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Fustat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #5a2342;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(109, 43, 80, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Contact Card */
.contact-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    display: none;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.contact-info {
    padding: 25px;
}

.contact-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.contact-info > p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.5;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-dark);
}

.contact-item svg {
    flex-shrink: 0;
    color: var(--primary-color);
}

/* ===========================
   Main Content
   =========================== */
.main-content {
    flex: 1;
    padding: 50px 60px;
    max-width: calc(100% - var(--sidebar-width));
}

/* Hero Section */
.hero-section {
    margin-bottom: 60px;
}

.hero-image {
    width: 100%;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    max-width: 100%;
}

.hero-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    text-align: justify;
}


h2 {
    font-size: 35px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 900;
}

h2 .highlight {
    color: var(--primary-color);
}

.section-intro {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
    text-align: justify;
}

.section-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: justify;
}

/* Business Analysis */
.analysis-list {
    list-style: none;
    margin: 30px 0;
}

.analysis-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 12px 0;
    font-size: 14px;
    color: var(--text-dark);
}

.analysis-list li svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.analysis-image {
    width: 100%;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    margin-top: 30px;
}

.analysis-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Business Process */
.process-steps {
    margin-top: 40px;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* text-align: center; */
}

.step-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(109, 43, 80, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.step-content h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 600;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #ddd;
}

.step-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);

}

/* Slick Carousel Styling */
.process-steps .slick-slide {
    padding: 0 15px;
    height: auto;
}

.process-steps .slick-arrow {
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    border-radius: 50%;
    z-index: 10;
    transition: all 0.3s ease;
}

.process-steps .slick-arrow:hover {
    background-color: #5a2342;
    transform: scale(1.1);
}

.process-steps .slick-arrow::before {
    display: none;
}

.process-steps .slick-arrow svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
}

.process-steps .slick-prev {
    left: -60px;
}
.business-process{padding-bottom:5rem}
.process-steps .slick-next {
    right: -60px;
}

.process-steps .slick-dots {
    bottom: -50px;
}
.slick-dots li{    background-color: #6d2b50;}

.process-steps .slick-dots li button:before {
    font-size: 12px;
    color: var(--primary-color);
    opacity: 0.4;
}

.process-steps .slick-dots li.slick-active button:before {
    opacity: 1;
    color: var(--primary-color);
}

/* Process in DataFlow - Accordion Style */
.dataflow-process {
    margin-bottom: 70px;
}

.accordion-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background-color: rgba(109, 43, 80, 0.02);
}

.accordion-header h3 {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
}

.accordion-item.active .accordion-header h3 {
    color: var(--primary-color);
}

.accordion-toggle {
    width: 30px;
    height: 30px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--text-light);
}

.accordion-item.active .accordion-toggle {
    color: var(--primary-color);
    transform: rotate(180deg);
}

.accordion-toggle svg {
    width: 20px;
    height: 20px;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 25px;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 0 25px 25px;
}

.accordion-content p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0;
}

/* Add checkmark icon before active accordion titles */
.accordion-item.active .accordion-header h3::before {
    content: '';
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
    position: relative;
}

.accordion-item.active .accordion-header h3::after {
    content: '✓';
    position: absolute;
    left: 30px;
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
}

/* Business Planning */
.planning-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.planning-image {
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
}

.planning-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dataflow Services Section */
.dataflow-services-section {
    margin-bottom: 70px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.service-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.service-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 25px;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;

}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

/* Commitment & Guarantee Section */
.commitment-section {
    margin-bottom:0;
    text-align: center;
    background-color: var(--bg-light);
    padding: 5rem 40px;
    margin-left: -60px;
    margin-right: -60px;
    border-radius: 0;
}

.commitment-slider {
    margin-top: 50px;
    padding: 0 20px;
}

.commitment-item {
    padding: 0 12px;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    text-align: center;
    outline: none;
    background: #fff;
    padding: 1rem 2rem;
}

.commitment-icon {
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, rgba(109, 43, 80, 0.08) 0%, rgba(109, 43, 80, 0.03) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(109, 43, 80, 0.08);
}

.commitment-item:hover .commitment-icon {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(109, 43, 80, 0.12) 0%, rgba(109, 43, 80, 0.05) 100%);
    box-shadow: 0 5px 15px rgba(109, 43, 80, 0.15);
}

.commitment-icon svg {
    filter: drop-shadow(0 2px 4px rgba(109, 43, 80, 0.15));
}

.commitment-item h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.5;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
}

/* Slick Carousel styles for commitment section */
.commitment-slider .slick-slide {
    padding: 0 10px;
    height: auto;
}
.testimonials-slider .slick-slide{
    height: auto;
}
.commitment-slider .slick-dots {
    bottom: -50px;
}

.commitment-slider .slick-dots li button:before {
    font-size: 12px;
    color: var(--primary-color);
    opacity: 0.4;
}

.commitment-slider .slick-dots li.slick-active button:before {
    opacity: 1;
    color: var(--primary-color);
}

/* Testimonials Section */
.testimonials-section {
    margin-bottom: 70px;
    background-image:linear-gradient(135deg, rgba(109, 43, 80, 0.08) 0%, rgba(109, 43, 80, 0.03) 100%);
    padding: 60px 50px;
    margin-left: -60px;
    margin-right: -60px;
    border-radius: 0;
    position: relative;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-label svg {
    width: 20px;
    height: 20px;
}

.testimonials-slider {
    position: relative;
    padding: 0 0px;
}

.testimonials-slider .slick-slide {
    padding: 0 15px;
    box-sizing: border-box;
}

.testimonial-card {
    background-color: var(--white);
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 40px 35px;
    margin: 0;
    min-height: 380px;
    display: flex !important;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.testimonial-card.active {
    border-color: #5bb5b5;
    box-shadow: 0 8px 25px rgba(91, 181, 181, 0.15);
}

.quote-icon {
    margin-bottom: 25px;
}

.quote-icon svg {
    opacity: 0.3;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: #6b7280;
    margin-bottom: 30px;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 4px 0;
}

.author-info p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

.testimonials-slider .slick-arrow {
   display: none!important;
    width: 45px;
    height: 45px;
    background-color: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    color: var(--primary-color);
    z-index: 10;
    transition: all 0.3s ease;
}

.testimonials-slider .slick-arrow:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.testimonials-slider .slick-arrow::before {
    display: none;
}

.testimonials-slider .slick-prev {
    left: 0;
}

.testimonials-slider .slick-next {
    right: 0;
}

.testimonials-slider .slick-dots {
    bottom: -45px;
    display: flex !important;
    justify-content: center;
    gap: 8px;
}

.testimonials-slider .slick-dots li {
    width: 40px;
    height: 4px;
    margin: 0;
}

.testimonials-slider .slick-dots li button {
    width: 100%;
    height: 100%;
    padding: 0;
}

.testimonials-slider .slick-dots li button:before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: #d1d5db;
    border-radius: 2px;
    opacity: 1;
}

.testimonials-slider .slick-dots li.slick-active button:before {
    background-color:var(--primary-color);
}

/* Partners Section */
.partners-section {
    margin-bottom: 70px;
}

.partners-label {
    margin-bottom: 15px;
}

.partners-prefix {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.partner-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    min-height: 140px;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.partner-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.partner-logo svg {
    flex-shrink: 0;
}

.partner-logo span {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

/* FAQ Section */
.faq-list {
    margin-top: 30px;
}

.faq-item {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--primary-color);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    background-color: transparent;
    border: none;
    color: var(--text-dark);
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.faq-item.active .faq-toggle {
    color: var(--primary-color);
    transform: rotate(45deg);
}

.faq-answer {
    padding:  20px;
    background-color: var(--primary-color);
    color: var(--white);
}

.faq-answer p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--white);
    margin: 0;
}

.faq-item:not(.active) .faq-answer {
    display: none;
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 1200px) {
    .main-content {
        padding: 40px;
    }

    .commitment-section {
        margin-left: -40px;
        margin-right: -40px;
        padding: 50px 30px;
    }

    .testimonials-section {
        margin-left: -40px;
        margin-right: -40px;
        padding: 50px 30px;
    }

    .testimonials-slider {
        padding: 0 50px;
    }

    .process-steps .slick-prev {
        left: -40px;
    }

    .process-steps .slick-next {
        right: -40px;
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    :root {
        --sidebar-width: 280px;
    }

    .sidebar {
        padding: 30px 20px;
    }

    .main-content {
        padding: 30px;
    }

    .commitment-section {
        margin-left: -30px;
        margin-right: -30px;
        padding: 40px 25px;
    }

    .testimonials-section {
        margin-left: -30px;
        margin-right: -30px;
        padding: 40px 25px;
    }

    .testimonials-slider {
        padding: 0 40px;
    }

    .testimonial-card {
        min-height: 400px;
    }

    h2 {
        font-size: 28px;
    }

    .planning-images {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .page-wrapper {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .main-content {
        max-width: 100%;
        padding: 20px;
    }

    .commitment-section {
        margin-left: -20px;
        margin-right: -20px;
        padding: 40px 20px;
    }

    .commitment-icon {
        width: 90px;
        height: 90px;
    }

    .commitment-item h3 {
        font-size: 14px;
        min-height: 42px;
    }

    .testimonials-section {
        margin-left: -20px;
        margin-right: -20px;
        padding: 40px 20px;
    }

    .testimonials-slider {
        padding: 0 0px;
    }

    .testimonial-card {
        padding: 30px 25px;
        min-height: 420px;
    }

    .testimonials-slider .slick-arrow {
        width: 38px;
        height: 38px;
    }

    .hero-image {
        height: 220px;
    }

    .analysis-image {
        height: 250px;
    }

    .planning-image {
        height: 220px;
    }

    h2 {
        font-size: 24px;
    }

    .section-intro,
    .section-text,
    .hero-text {
        font-size: 14px;
    }

    .process-steps .slick-prev {
        left: -25px;
    }

    .process-steps .slick-next {
        right: -25px;
    }

    .process-steps .slick-arrow {
        width: 35px;
        height: 35px;
    }

    .partners-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .partner-card {
        padding: 30px 20px;
        min-height: 100px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .service-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }

    .service-card h3 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .page-wrapper{margin:1rem 0}
    .main-content {
        padding: 15px;
    }

    .sidebar {
        padding: 20px 15px;
    }

    .services-category,
    .contact-card {
        padding: 20px;
    }

    h2 {
        font-size: 22px;line-height: normal;
    }

    .hero-image {
        height: 180px;
        border-radius: 10px;
    }

    .analysis-image,
    .planning-image {
        height: 200px;
        border-radius: 10px;
    }
}

/* ===========================
   Scrollbar Styling
   =========================== */
.sidebar::-webkit-scrollbar {
    width: 6px;
}

.sidebar::-webkit-scrollbar-track {
    background: var(--bg-light);
}

.sidebar::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
    background: #5a2342;
}
/* ===========================
   Import Fonts
   =========================== */
@import url('https://fonts.googleapis.com/css2?family=Fustat:wght@200;300;400;500;600;700;800&display=swap');

/* ===========================
   Reset & Global Styles
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6D2B50;
    --secondary-color: #2c3e50;
    --text-dark: #2c3e50;
    --text-light: #666;
    --border-color: #e0e0e0;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --sidebar-width: 420px;
}

body {
    font-family: 'Fustat', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--bg-light);
}

/* ===========================
   Page Layout
   =========================== */
.page-wrapper {
    display: flex;
    min-height: 100vh;
    max-width: 1600px;
    margin: 5rem auto;
    background-color: var(--white);
}

/* ===========================
   Sidebar
   =========================== */
.sidebar {
    width: var(--sidebar-width);
    background-color: var(--bg-light);
    padding: 0px 25px;
    position: sticky;
    top: 0;
    height: auto;

}
form .form-group{margin:0}

.sidebar-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: sticky;
    top: 150px;
}

/* Contact Form Widget */
.contact-form-widget {
    background-color: var(--white);
    padding: 30px 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.form-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.form-description {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.5;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    width: 100%;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Fustat', sans-serif;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(109, 43, 80, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    width: 100%;
    padding: 14px 20px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Fustat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #5a2342;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(109, 43, 80, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Contact Card */
.contact-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    display: none;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.contact-info {
    padding: 25px;
}

.contact-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.contact-info > p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.5;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-dark);
}

.contact-item svg {
    flex-shrink: 0;
    color: var(--primary-color);
}

/* ===========================
   Main Content
   =========================== */
.main-content {
    flex: 1;
    padding: 50px 60px;
    max-width: calc(100% - var(--sidebar-width));
}

/* Hero Section */
.hero-section {
    margin-bottom: 60px;
}

.hero-image {
    width: 100%;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    max-width: 100%;
}

.hero-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    text-align: justify;
}


h2 {
    font-size: 35px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 900;
}

h2 .highlight {
    color: var(--primary-color);
}

.section-intro {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
    text-align: justify;
}

.section-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: justify;
}

/* Business Analysis */
.analysis-list {
    list-style: none;
    margin: 30px 0;
}

.analysis-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 12px 0;
    font-size: 14px;
    color: var(--text-dark);
}

.analysis-list li svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.analysis-image {
    width: 100%;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    margin-top: 30px;
}

.analysis-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Business Process */
.process-steps {
    margin-top: 40px;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* text-align: center; */
}

.step-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(109, 43, 80, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.step-content h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 600;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #ddd;
}

.step-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);

}

/* Slick Carousel Styling */
.process-steps .slick-slide {
    padding: 0 15px;
    height: auto;
}

.process-steps .slick-arrow {
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    border-radius: 50%;
    z-index: 10;
    transition: all 0.3s ease;
}

.process-steps .slick-arrow:hover {
    background-color: #5a2342;
    transform: scale(1.1);
}

.process-steps .slick-arrow::before {
    display: none;
}

.process-steps .slick-arrow svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
}

.process-steps .slick-prev {
    left: -60px;
}
.business-process{padding-bottom:5rem}
.process-steps .slick-next {
    right: -60px;
}

.process-steps .slick-dots {
    bottom: -50px;
}
.slick-dots li{    background-color: #6d2b50;}

.process-steps .slick-dots li button:before {
    font-size: 12px;
    color: var(--primary-color);
    opacity: 0.4;
}

.process-steps .slick-dots li.slick-active button:before {
    opacity: 1;
    color: var(--primary-color);
}

/* Process in DataFlow - Accordion Style */
.dataflow-process {
    margin-bottom: 70px;
}

.accordion-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background-color: rgba(109, 43, 80, 0.02);
}

.accordion-header h3 {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
}

.accordion-item.active .accordion-header h3 {
    color: var(--primary-color);
}

.accordion-toggle {
    width: 30px;
    height: 30px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--text-light);
}

.accordion-item.active .accordion-toggle {
    color: var(--primary-color);
    transform: rotate(180deg);
}

.accordion-toggle svg {
    width: 20px;
    height: 20px;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 25px;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 0 25px 25px;
}

.accordion-content p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0;
}

/* Add checkmark icon before active accordion titles */
.accordion-item.active .accordion-header h3::before {
    content: '';
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
    position: relative;
}

.accordion-item.active .accordion-header h3::after {
    content: '✓';
    position: absolute;
    left: 30px;
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
}

/* Business Planning */
.planning-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.planning-image {
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
}

.planning-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dataflow Services Section */
.dataflow-services-section {
    margin-bottom: 70px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.service-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.service-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 25px;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;

}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

/* Commitment & Guarantee Section */
.commitment-section {
    margin-bottom:0;
    text-align: center;
    background-color: var(--bg-light);
    padding: 5rem 40px;
    margin-left: -60px;
    margin-right: -60px;
    border-radius: 0;
}

.commitment-slider {
    margin-top: 50px;
    padding: 0 20px;
}

.commitment-item {
    padding: 0 12px;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    text-align: center;
    outline: none;
    background: #fff;
    padding: 1rem 2rem;
}

.commitment-icon {
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, rgba(109, 43, 80, 0.08) 0%, rgba(109, 43, 80, 0.03) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(109, 43, 80, 0.08);
}

.commitment-item:hover .commitment-icon {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(109, 43, 80, 0.12) 0%, rgba(109, 43, 80, 0.05) 100%);
    box-shadow: 0 5px 15px rgba(109, 43, 80, 0.15);
}

.commitment-icon svg {
    filter: drop-shadow(0 2px 4px rgba(109, 43, 80, 0.15));
}

.commitment-item h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.5;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
}

/* Slick Carousel styles for commitment section */
.commitment-slider .slick-slide {
    padding: 0 10px;
    height: auto;
}
.testimonials-slider .slick-slide{
    height: auto;
}
.commitment-slider .slick-dots {
    bottom: -50px;
}

.commitment-slider .slick-dots li button:before {
    font-size: 12px;
    color: var(--primary-color);
    opacity: 0.4;
}

.commitment-slider .slick-dots li.slick-active button:before {
    opacity: 1;
    color: var(--primary-color);
}

/* Testimonials Section */
.testimonials-section {
    margin-bottom: 70px;
    background-image:linear-gradient(135deg, rgba(109, 43, 80, 0.08) 0%, rgba(109, 43, 80, 0.03) 100%);
    padding: 60px 50px;
    margin-left: -60px;
    margin-right: -60px;
    border-radius: 0;
    position: relative;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-label svg {
    width: 20px;
    height: 20px;
}

.testimonials-slider {
    position: relative;
    padding: 0 0px;
}

.testimonials-slider .slick-slide {
    padding: 0 15px;
    box-sizing: border-box;
}

.testimonial-card {
    background-color: var(--white);
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 40px 35px;
    margin: 0;
    min-height: 380px;
    display: flex !important;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.testimonial-card.active {
    border-color: #5bb5b5;
    box-shadow: 0 8px 25px rgba(91, 181, 181, 0.15);
}

.quote-icon {
    margin-bottom: 25px;
}

.quote-icon svg {
    opacity: 0.3;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: #6b7280;
    margin-bottom: 30px;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 4px 0;
}

.author-info p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

.testimonials-slider .slick-arrow {
   display: none!important;
    width: 45px;
    height: 45px;
    background-color: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    color: var(--primary-color);
    z-index: 10;
    transition: all 0.3s ease;
}

.testimonials-slider .slick-arrow:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.testimonials-slider .slick-arrow::before {
    display: none;
}

.testimonials-slider .slick-prev {
    left: 0;
}

.testimonials-slider .slick-next {
    right: 0;
}

.testimonials-slider .slick-dots {
    bottom: -45px;
    display: flex !important;
    justify-content: center;
    gap: 8px;
}

.testimonials-slider .slick-dots li {
    width: 40px;
    height: 4px;
    margin: 0;
}

.testimonials-slider .slick-dots li button {
    width: 100%;
    height: 100%;
    padding: 0;
}

.testimonials-slider .slick-dots li button:before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: #d1d5db;
    border-radius: 2px;
    opacity: 1;
}

.testimonials-slider .slick-dots li.slick-active button:before {
    background-color:var(--primary-color);
}

/* Partners Section */
.partners-section {
    margin-bottom: 70px;
}

.partners-label {
    margin-bottom: 15px;
}

.partners-prefix {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.partner-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    min-height: 140px;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.partner-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.partner-logo svg {
    flex-shrink: 0;
}

.partner-logo span {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

/* FAQ Section */
.faq-list {
    margin-top: 30px;
}

.faq-item {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--primary-color);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    background-color: transparent;
    border: none;
    color: var(--text-dark);
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.faq-item.active .faq-toggle {
    color: var(--primary-color);
    transform: rotate(45deg);
}

.faq-answer {
    padding:  20px;
    background-color: var(--primary-color);
    color: var(--white);
}

.faq-answer p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--white);
    margin: 0;
}

.faq-item:not(.active) .faq-answer {
    display: none;
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 1200px) {
    .main-content {
        padding: 40px;
    }

    .commitment-section {
        margin-left: -40px;
        margin-right: -40px;
        padding: 50px 30px;
    }

    .testimonials-section {
        margin-left: -40px;
        margin-right: -40px;
        padding: 50px 30px;
    }

    .testimonials-slider {
        padding: 0 50px;
    }

    .process-steps .slick-prev {
        left: -40px;
    }

    .process-steps .slick-next {
        right: -40px;
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    :root {
        --sidebar-width: 280px;
    }

    .sidebar {
        padding: 30px 20px;
    }

    .main-content {
        padding: 30px;
    }

    .commitment-section {
        margin-left: -30px;
        margin-right: -30px;
        padding: 40px 25px;
    }

    .testimonials-section {
        margin-left: -30px;
        margin-right: -30px;
        padding: 40px 25px;
    }

    .testimonials-slider {
        padding: 0 40px;
    }

    .testimonial-card {
        min-height: 400px;
    }

    h2 {
        font-size: 28px;
    }

    .planning-images {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .page-wrapper {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .main-content {
        max-width: 100%;
        padding: 20px;
    }

    .commitment-section {
        margin-left: -20px;
        margin-right: -20px;
        padding: 40px 20px;
    }

    .commitment-icon {
        width: 90px;
        height: 90px;
    }

    .commitment-item h3 {
        font-size: 14px;
        min-height: 42px;
    }

    .testimonials-section {
        margin-left: -20px;
        margin-right: -20px;
        padding: 40px 20px;
    }

    .testimonials-slider {
        padding: 0 0px;
    }

    .testimonial-card {
        padding: 30px 25px;
        min-height: 420px;
    }

    .testimonials-slider .slick-arrow {
        width: 38px;
        height: 38px;
    }

    .hero-image {
        height: 220px;
    }

    .analysis-image {
        height: 250px;
    }

    .planning-image {
        height: 220px;
    }

    h2 {
        font-size: 24px;
    }

    .section-intro,
    .section-text,
    .hero-text {
        font-size: 14px;
    }

    .process-steps .slick-prev {
        left: -25px;
    }

    .process-steps .slick-next {
        right: -25px;
    }

    .process-steps .slick-arrow {
        width: 35px;
        height: 35px;
    }

    .partners-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .partner-card {
        padding: 30px 20px;
        min-height: 100px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .service-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }

    .service-card h3 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .page-wrapper{margin:1rem 0}
    .main-content {
        padding: 15px;
    }

    .sidebar {
        padding: 20px 15px;
    }

    .services-category,
    .contact-card {
        padding: 20px;
    }

    h2 {
        font-size: 22px;line-height: normal;
    }

    .hero-image {
        height: 180px;
        border-radius: 10px;
    }

    .analysis-image,
    .planning-image {
        height: 200px;
        border-radius: 10px;
    }
}

/* ===========================
   Scrollbar Styling
   =========================== */
.sidebar::-webkit-scrollbar {
    width: 6px;
}

.sidebar::-webkit-scrollbar-track {
    background: var(--bg-light);
}

.sidebar::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
    background: #5a2342;
}
