/*
    Internal Page Template Stylesheet
    - Implements the required design system and component styles.
    - Fully responsive for desktop, tablet, and mobile.
*/

/* 4. Design System & Global Settings */
:root {
    --primary-color: #285375;
    --secondary-color: #285375;
    --bg-light: #FFFFFF;
    --text-dark: #222222;
    --text-light: #f8f9fa;
    --border-color: #dee2e6;
    --border-radius: 8px;
    --container-width: 1200px;
    --section-padding: 80px;
    --card-padding: 30px;
    --font-heading: 'Raleway', sans-serif;
    --font-body: 'Raleway', sans-serif;
    --shadow-sm: 0 .125rem .25rem rgba(0, 0, 0, .075);
}

/* --- Global Styles --- */
body {
    font-family: 'Raleway', sans-serif;
    color: #222222;
    background-color: var(--bg-light);
    line-height: 1.7;
    font-size: 16px;
}

h1, h2, h3, h4, h5 {
    font-family: 'PT Serif', serif;
    color: #222222;
    font-weight: 700;
}

h6 {
    font-family: 'Raleway', sans-serif;
    color: #222222;
    font-weight: 700;
}

.container {
    max-width: var(--container-width);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
}

.btn-primary:hover {
    background-color: #1a3f5e;
    border-color: #1a3f5e;
}
.btn-custom-primary {
    background-color: #23527c;
    border-color: #23527c;
    color: #fff;
}
.btn-custom-primary:hover {
    background-color: #1a3f5e;
    border-color: #1a3f5e;
    color: #fff;
}
.contact-icon-circle { background-color: #e8eff6 !important; }

.btn-register-cta {
    background-color: #7CB342;
    border-color: #7CB342;
    color: #fff;
}
.btn-register-cta:hover {
    background-color: #649734;
    border-color: #649734;
    color: #fff;
}

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    font-family: var(--font-heading);
}

/* 1. Global Layout: Header */
.top-bar {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #222222;
    background-color: #e8edf2 !important;
    line-height: 54px;
    height: 54px;
}
.top-bar .container {
    padding-left: 0;
    padding-right: 0;
    height: 54px;
    max-width: 960px;
}
@media (min-width: 1200px) {
    .top-bar .container { max-width: 1140px; }
}
@media (min-width: 1400px) {
    .top-bar .container { max-width: 1320px; }
}
.contact-info span {
    font-size: 13px;
    font-weight: 600;
    color: #222222;
}
.navbar-nav .nav-link {
    color: #000 !important;
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}
.dropdown-menu {
    border-radius: 0;
    top: 90%;
}
.btn-download {
    font-size: 13px !important;
    font-weight: 600;
    border-width: 1.5px;
    letter-spacing: 0.5px;
}
.btn-download:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

/* 2. Global Layout: Page Banner */
.page-banner {
    position: relative;
    height: 250px;
    background-size: cover;
    background-position: center;
    color: var(--text-light);
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(14, 58, 93, 0.5); /* 50% dark overlay using secondary color */
    z-index: 1;
}

.page-banner .container {
    position: relative;
    z-index: 2;
}

.page-banner .page-title {
    font-family: "PT Serif", serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.page-banner .breadcrumb-nav {
    position: absolute;
    bottom: 14px;
    left: 0;
    right: 0;
    z-index: 5;
    padding: 0 12px;
}

.page-banner .breadcrumb-nav .breadcrumb {
    justify-content: flex-start !important;
}

.page-intro-text {
    font-family: "PT Serif", serif;
    font-size: 24px;
    font-weight: 500;
    color: rgb(0, 0, 0);
    text-align: center;
    line-height: 26.4px;
    max-width: 780px;
    margin: 0 auto;
    box-sizing: border-box;
}

.breadcrumb-nav .breadcrumb {
    background-color: transparent;
    padding: 0;
    margin-top: 1rem;
}

.breadcrumb-nav .breadcrumb-item {
    font-family: var(--font-heading);
}

.breadcrumb-nav .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-nav .breadcrumb-item a:hover {
    color: var(--text-light);
}

.breadcrumb-nav .breadcrumb-item.active {
    color: var(--text-light);
}

.breadcrumb-item+.breadcrumb-item::before {
    content: ">";
    color: rgba(255, 255, 255, 0.5);
}

/* 3. Content Section Layout */
.page-content {
    padding: var(--section-padding) 0;
}

/* Sidebar */
.sidebar-wrapper {
    position: sticky;
    top: 100px; /* Adjust based on header height */
}

.sidebar-nav .sidebar-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.sidebar-nav ul li a {
    display: block;
    padding: 0.75rem 1.25rem;
    margin-bottom: 0.5rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    color: var(--text-dark);
    border-left: 4px solid transparent;
}

.sidebar-nav ul li a:hover {
    background-color: #f1f1f1;
    color: var(--secondary-color);
}

.sidebar-nav ul li.active a {
    background-color: #f0f7ea;
    color: var(--primary-color);
    font-weight: 600;
    border-left-color: var(--primary-color);
}

/* Main Content */
.main-content h2, .main-content h3 {
    margin-bottom: 1.5rem;
}

.main-content ul, .main-content ol {
    margin-bottom: 1.5rem;
}

p {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    color: #000;
    line-height: 24px;
    font-weight: 500;
}

.main-content .table {
    border-radius: var(--border-radius);
    overflow: hidden;
}

/* 6. Reusable Components: CTA Block */
.cta-block {
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 40px 0;
}

.cta-block .cta-title {
    color: var(--text-light);
    font-size: 1.6rem;
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.4;
    max-width: 70%;
}

.btn-cta-outline {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
    padding: 12px 28px;
    letter-spacing: 1px;
    font-size: 0.85rem;
    white-space: nowrap;
    flex-shrink: 0;
}
.btn-cta-outline:hover {
    background-color: #fff;
    color: var(--secondary-color);
}

@media (max-width: 767px) {
    .cta-block .cta-title { max-width: 100%; font-size: 1.3rem; }
}

/* 6. Reusable Components: Footer */
.bg-light-gray { background-color: #f5f6f7; }
.bg-dark-theme { background-color: #1a1a1a; }

.custom-separator { position: relative; display: inline-block; width: 150px; }
.custom-separator::before,
.custom-separator::after { content: ""; position: absolute; top: 50%; width: 45px; height: 1px; background-color: #8ec3eb; }
.custom-separator::before { left: 0; }
.custom-separator::after  { right: 0; }
.custom-separator .dots { display: block; text-align: center; color: #8ec3eb; font-size: 1.2rem; letter-spacing: 3px; line-height: 1; }

.site-footer { border-top: 1px solid #eaeaea; }

.footer-title { font-family: 'Raleway', sans-serif; color: var(--primary-color); font-weight: 700; font-size: 1.25rem; letter-spacing: 0.5px; }

.footer-about-text { font-family: "PT Serif", sans-serif; font-size: 0.95rem; line-height: 1.6; color: #000; }

.footer-links li { margin-bottom: 12px; }
.footer-links li a { font-family: 'Raleway', sans-serif; font-size: 0.95rem; color: #000; text-decoration: none; font-weight: 500; display: inline-flex; align-items: center; transition: all 0.3s ease; }
.footer-links li a i { font-size: 10px; transition: transform 0.3s ease; }
.footer-links li a:hover { color: var(--primary-color); }
.footer-links li a:hover i { transform: translateX(3px); }

.footer-news-title { font-family: 'Raleway', sans-serif; font-size: 0.95rem; color: #000; text-decoration: none; font-weight: 600; line-height: 1.4; transition: color 0.3s ease; }
.footer-news-title:hover { color: var(--primary-color); }
.footer-news-date { font-family: 'Raleway', sans-serif; font-size: 0.8rem; color: #888888; }

.footer-contact li { font-family: "PT Serif", sans-serif; font-size: 0.95rem; color: #000; line-height: 1.5; }
.footer-contact li a { color: #000; text-decoration: none; transition: color 0.3s ease; }
.footer-contact li a:hover { color: var(--primary-color); }

.footer-socket { border-top: 1px solid rgba(255,255,255,0.05); }
.socket-copy { font-family: "PT Serif", sans-serif; font-size: 0.9rem; opacity: 0.8; }
.socket-links a { font-family: 'Raleway', sans-serif; opacity: 0.8; transition: opacity 0.3s ease; }
.socket-links a:hover { opacity: 1; }

.text-primary-color { color: var(--primary-color) !important; }

/* 7b. Shared Component: Thought Leaders / Team Carousel */
.tl-team-section { padding: 50px 0; }
.tl-section-title {
    position: relative;
    margin-bottom: 50px;
    text-align: center;
}
.tl-section-title h4 {
    font-family: 'Raleway', sans-serif;
    color: #285375;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
}
.tl-section-title h2 {
    font-family: 'PT Serif', serif;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 28px;
    color: #222;
    padding-bottom: 20px;
    position: relative;
    display: inline-block;
}
.tl-section-title h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -83px;
    width: 166px;
    height: 4px;
    background: #285375;
}
.tl-card {
    border: 1px solid #f4f4f4;
    overflow: hidden;
    height: 100%;
}
.tl-card .img-wrap {
    position: relative;
    display: inline-block;
    width: 270px;
    height: 270px;
    box-sizing: border-box;
    overflow: hidden;
}
.tl-card .img-wrap img {
    width: 270px;
    height: 270px;
    display: block;
    object-fit: cover;
    object-position: top;
}
.tl-linkedin {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #0a66c2;
    color: #fff !important;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none !important;
    z-index: 5;
    transition: background 0.3s;
}
.tl-linkedin:hover { background: #285375; }
.tl-card .tl-content { text-align: center; border-top: 1px solid #f4f4f4; padding-bottom: 10px; }
.tl-card .tl-author { padding: 16px 10px 10px; }
.tl-card .tl-author h4 {
    font-family: 'PT Serif', serif;
    font-weight: 400;
    font-size: 20px;
    color: #222;
    margin-bottom: 6px;
}
.tl-card .tl-author p {
    font-family: 'Raleway', sans-serif;
    color: #42c0e5;
    font-size: 13px;
    font-weight: 400;
    margin: 0;
    padding-bottom: 10px;
    position: relative;
}
.tl-card .tl-author p::before {
    position: absolute;
    content: "";
    height: 1px;
    width: 50px;
    background: #f4f4f4;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.tl-card .tl-text {
    text-align: justify;
    padding: 10px 20px;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    color: #222222;
    line-height: 24px;
    height: 200px;
    overflow-y: auto;
    scrollbar-width: thin;
}
.tl-card .tl-text ul {
    list-style: disc;
    padding-left: 18px;
    margin: 0;
}
.tl-card .tl-text ul li {
    margin-bottom: 6px;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    color: #222222;
    line-height: 24px;
}
#thoughtLeadersCarousel .carousel-control-prev,
#thoughtLeadersCarousel .carousel-control-next {
    width: 40px;
    height: 40px;
    top: 35%;
    background: #333;
    border-radius: 50%;
    opacity: 1;
}
#thoughtLeadersCarousel .carousel-control-prev { left: -20px; }
#thoughtLeadersCarousel .carousel-control-next { right: -20px; }
#thoughtLeadersCarousel .carousel-control-prev:hover,
#thoughtLeadersCarousel .carousel-control-next:hover { background: #285375; }
#thoughtLeadersCarousel .carousel-control-prev-icon,
#thoughtLeadersCarousel .carousel-control-next-icon { width: 14px; height: 14px; }
#thoughtLeadersCarousel .carousel-indicators { bottom: -30px; }
#thoughtLeadersCarousel .carousel-indicators [data-bs-target] {
    background-color: #285375;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
@media (max-width: 767.98px) {
    #thoughtLeadersCarousel .carousel-item .row {
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
        margin: 0;
    }
    #thoughtLeadersCarousel .carousel-item .row > [class*="col-"] {
        flex: 0 0 82%;
        max-width: 82%;
        scroll-snap-align: start;
    }
    .tl-card .img-wrap,
    .tl-card .img-wrap img {
        width: 100%;
        height: 220px;
    }
    .tl-card .tl-text {
        height: 170px;
    }
    #thoughtLeadersCarousel .carousel-control-prev { left: 0; }
    #thoughtLeadersCarousel .carousel-control-next { right: 0; }
}

/* 8. Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* 5. Responsiveness */

/* Tablet: 30% Sidebar + 70% Content */
@media (min-width: 768px) and (max-width: 991.98px) {
    .page-content .row > .col-lg-3 {
        flex: 0 0 auto;
        width: 30%;
    }
    .page-content .row > .col-lg-9 {
        flex: 0 0 auto;
        width: 70%;
    }
}

/* Mobile: Single Column Layout */
@media (max-width: 991.98px) {
    .page-banner {
        height: 200px;
    }
    .page-banner .page-title {
        font-size: 2.5rem;
    }
    .sidebar-wrapper {
        position: static;
        top: auto;
    }
}

@media (max-width: 767.98px) {
    :root {
        --section-padding: 50px;
    }
    .page-banner {
        height: auto;
        min-height: 180px;
        padding: 30px 0;
    }
    .page-banner .page-title {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }
    .page-banner .breadcrumb-nav {
        position: static;
        margin-top: 10px;
        padding: 0;
    }
}

/* --- Laptop 14" fix: 992px–1400px --- */
@media (min-width: 992px) and (max-width: 1400px) {
    .navbar-nav .nav-link    { font-size: 13.5px; }
    .navbar-nav .nav-item    { padding-left: 4px !important; padding-right: 4px !important; }
    .btn-download            { font-size: 12px !important; padding: 0.25rem 0.6rem !important; letter-spacing: 0; }
    .contact-info span       { font-size: 12px; }
    .top-bar                 { font-size: 13px; }
    .page-banner .page-title { font-size: 2.8rem; }
}

/* ===================================================
   Service Cards — exact match to optiserve.co.in
   =================================================== */

/* Single card wrapper */
.single-item {
    background: #fff;
    margin-bottom: 30px;
}

/* Image + overlay */
.single-item figure.img-box {
    position: relative;
    overflow: hidden;
    margin: 0;
}
.single-item figure.img-box img {
    width: 100%;
    display: block;
    height: auto;
}
.single-item figure.img-box .overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.80);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
}
.single-item:hover figure.img-box .overlay {
    opacity: 1;
}

/* Read More button inside overlay */
a.thm-btn {
    display: inline-block;
    background: #285375;
    color: #fff !important;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    padding: 10px 38px;
    border: 2px solid #285375;
    border-radius: 0;
    letter-spacing: normal;
    line-height: 1.6;
    transition: background 0.3s ease, color 0.3s ease;
}
a.thm-btn:hover {
    background: transparent;
    color: #fff !important;
    border-color: #fff;
}

/* Content area below image */
.single-item .content {
    position: relative;
    padding: 18px 10px 10px 80px;
}

/* Icon box — positioned absolute on the left */
.single-item .icon-box {
    position: absolute;
    left: 10px;
    top: 14px;
}
.single-item .icon-box span {
    font-size: 38px;
    color: #285375;
    line-height: 1;
}

/* Title & description */
.single-item .text h4 {
    font-family: 'PT Serif', serif;
    font-size: 22px;
    font-weight: 500;
    color: #222222;
    margin: 0 0 10px;
    line-height: 1.35;
}
.single-item .text h4 a {
    color: #222222;
    text-decoration: none;
}
.single-item .text h4 a:hover {
    color: #285375;
}
.single-item .text p {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    text-align: justify;
    margin: 0;
    line-height: 1.7;
}

/* Institutions list */
.reach-out-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #000;
    margin-bottom: 16px;
}
.reach-out-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.reach-out-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-family: 'Hind', sans-serif;
    font-size: 16px;
    color: #000;
    line-height: 1.5;
}
.reach-out-list li::before {
    content: none !important;
}
.reach-out-list li .list-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 3px;
    fill: #48C7EC;
}

/* Comprehensive Services — reference match */
.cs-intro-para {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    text-align: justify;
    line-height: 1.75;
    margin-bottom: 22px;
}

.cs-service-block {
    margin-bottom: 18px;
}

.cs-service-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
}

.cs-check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 6px 0;
}

.cs-check-list li {
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #000;
    padding: 3px 0;
    padding-left: 0 !important;
    line-height: 1.5;
}

.cs-check-list li::before {
    content: none !important;
}

.cs-check-list li .fa-check {
    color: #48C7EC;
    font-size: 12px;
    margin-right: 8px;
    font-weight: 900;
}

/* Sidebar active item — solid green like reference */
.sidebar-card-nav li.active a {
    background-color: var(--primary-color) !important;
    color: #fff !important;
    border-left-color: transparent !important;
    font-weight: 700 !important;
}

.sidebar-card-nav li.active a:hover {
    background-color: #6a9d3b !important;
    padding-left: 1.25rem !important;
}

/* Comprehensive Services Cards */
.cs-card {
    background: #fff;
    border: 1px solid #e8edf2;
    border-radius: 8px;
    padding: 28px 24px 24px;
    position: relative;
    box-shadow: 0 2px 10px rgba(14, 58, 93, 0.07);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.cs-card:hover {
    box-shadow: 0 6px 24px rgba(14, 58, 93, 0.13);
    transform: translateY(-3px);
}
.cs-card-num {
    width: 36px;
    height: 36px;
    background-color: var(--secondary-color);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.cs-card-title {
    font-family: "PT Serif", serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 12px;
    line-height: 1.4;
}
.cs-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.cs-card-list li {
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    color: #000;
    padding: 5px 0 5px 18px;
    position: relative;
    border-bottom: 1px solid #f3f3f3;
    line-height: 1.5;
}
.cs-card-list li:last-child {
    border-bottom: none;
}
.cs-card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

/* Management Consultancy Page */
.mc-main-heading {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #000;
    line-height: 20px;
    margin: 0 0 20px 0;
    padding: 0;
    text-align: justify;
}
.mc-subheading {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #000;
    margin-top: 18px;
    margin-bottom: 4px;
}
.mc-para {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    text-align: justify;
    line-height: 16px;
    margin: 0;
    padding: 0;
}
.mc-bullet-list {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 12px;
}
.mc-bullet-list li {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #7a7a7a;
    padding: 2px 0;
    line-height: 22.8571px;
    text-align: justify;
}
.mc-bullet-list li::before { content: none !important; }
.mc-numbered-list {
    padding-left: 18px;
    margin-bottom: 14px;
}
.mc-numbered-list li {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #7a7a7a;
    padding: 3px 0;
    line-height: 22.8571px;
    text-align: justify;
}
.mc-numbered-list li::before { content: none !important; }

.hi-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 12px;
}
.hi-list li {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #54595F;
    line-height: 22.8571px;
    list-style-type: none;
    text-align: justify;
    transition: color 0.3s ease;
}
.hi-list li::before { content: none !important; }

/* Legacy classes kept for other pages */
.service-card { background: #fff; }
.service-img-box { position: relative; overflow: hidden; }
.service-img-box img { width: 100%; display: block; height: auto; }
.service-icon { font-size: 1.2rem; color: #285375; display: inline-flex; align-items: center; min-width: 32px; }
.service-text-box { flex: 1; }
.service-card-title { font-family: 'PT Serif', serif; font-size: 22px; color: #222; font-weight: 500; }
.service-card-desc { font-family: 'Raleway', sans-serif; font-size: 14px; color: #000; font-weight: 500; text-align: justify; }
