*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.heading_main{
    font-family: 'league_sparten' sans-serif;
    font-size: 50px;
    font-weight: 700;
}
.sub_heading_main{
    font-size: clamp(20px, 4vw, 35px);
    font-weight: 500;
    color: rgb(177, 43, 43);
}
.services_heading{
    line-height: 30px;
}

.service_card{
    background-color: rgb(89, 89, 214);
}
.services_card_number {
    font-family: 'Anton', sans-serif;
    font-size: 80px;
    font-weight: 500;
    color: transparent;                    /* fill hatao */
    -webkit-text-stroke: 1px white;        /* sirf outline white */
}
.services_card_heading {
    display: inline-block;
    border-top: 2px solid white;
    border-bottom: 2px solid white;
    color: white;
    padding-left: 4px;
    padding-right: 4px;  /* yeh 20% extra ka kaam karega */
}
.services_card_description{
    color: white;
    font-size: 13px;
}
.kw-stat-box {
    background: #f1f1f1;
    border-radius: 15px;
    padding: 25px;
    height: 100%;
}

.kw-stat-icon {
    width: 60px;
}

.kw-stat-number {
    color: #e63946;
    font-weight: 700;
    margin: 0;
}

.kw-stat-title {
    font-weight: 800;
    margin: 0;
}

/* Remove blue background */
.accordion-button:not(.collapsed) {
    background-color: #fff !important;
    color: #000 !important;
    box-shadow: none !important;
}

/* Remove focus blue outline */
.accordion-button:focus {
    box-shadow: none !important;
    outline: none !important;
}

/* Make question bold */
.accordion-button {
    font-weight: 700;
}

.kw-blog-card {
    position: relative;
    overflow: hidden;
}

.kw-blog-img img {
    height: 220px;
    object-fit: cover;
}

/* RED CONTENT BOX */
.kw-blog-content {
    background: #c93b42;
    color: #fff;
    /* padding: 20px; */
    position: relative;
}

/* META */
.kw-blog-content {
    background: #c93b42;
    color: #fff;
    /* padding: 20px; */
}

/* META */
.kw-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

/* Divider */
.kw-divider {
    width: 1px;
    height: 18px;
    background: #fff;
}

/* READ MORE COLUMN */
.kw-read-more {
    background: #b13238;
    height: 100%;
    padding-bottom: 200px;
     border-left: 2px solid white;
}

/* Vertical text */
.kw-read-more span {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-weight: 600;
   
}
.blogs_title{
    border-top: 2px solid white;
    /* border-right: 2px solid white; */
}
.kw-blog-content .row {
    height: 100%;
}



/* NAME */
.kw-name {
    color: #c93b42;
    font-weight: 700;
    margin-bottom: 0;
}

/* ROLE */
.kw-role {
    margin: 0;
    color: #333;
}

/* STARS */
.kw-stars i {
    color: #f4a300;
    margin-left: 3px;
}

/* DESCRIPTION */
.kw-desc {
    margin-top: 15px;
    color: #333;
    line-height: 1.7;
}

.kw-testimonial-content {
    position: relative;
    padding-bottom: 20px; 
}

/* bottom right buttons */
.kw-testimonial-controls {
    position: absolute;
    left: 65%;
    bottom: 0;
    transform: translateX(-50%);
}
@media (max-width: 768px) {

    .kw-testimonial-controls {
        bottom: -10px; /* thoda neeche space */
        width: 100%;
        display: flex;
        justify-content: space-between; /* buttons alag ho jaye */
        padding: 0 15px;
        transform: none;
        left: 0;
    }

    .kw-testimonial-controls button {
        width: 40px;
        height: 40px;
        border-radius: 50%;
    }
}

.kw-contact-left {
    background: #183d73;
    color: #fff;
    padding: 50px 40px;
}

.kw-contact-left h2 {
    font-size: 36px;
    font-weight: 800;
}

.kw-sub {
    margin-bottom: 30px;
    border-bottom: 2px solid #fff;
    display: inline-block;
    padding-bottom: 5px;
}

.kw-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.kw-contact-item i {
    font-size: 22px;
    background: #fff;
    color: #183d73;
    padding: 10px;
    border-radius: 50%;
}

.kw-contact-item h6 {
    margin: 0;
    font-weight: 700;
}

.kw-contact-item p {
    margin: 0;
    font-size: 14px;
}

/* RIGHT SIDE */
.kw-contact-right {
    background: #f3f3f3;
    padding: 50px 60px;
}

.kw-form-title {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 20px;
}

.kw-contact-right label {
    font-size: 14px;
    margin-top: 10px;
}

.kw-contact-right .form-control {
    background: #e6e6e6;
    border: none;
    border-radius: 5px;
    margin-bottom: 10px;
}

.kw-submit-btn {
    width: 100%;
    background: #183d73;
    color: #fff;
    border: none;
    padding: 12px;
    margin-top: 15px;
    border-radius: 25px;
    font-weight: 600;
}

/* MOBILE */
@media (max-width: 768px) {

    .kw-contact-left,
    .kw-contact-right {
        padding: 30px 20px; /* reduce padding */
    }

    .kw-contact-left h2 {
        font-size: 28px;
    }

    .kw-form-title {
        font-size: 30px;
    }

    .kw-contact-item {
        gap: 10px;
    }

    .kw-contact-item i {
        font-size: 18px;
        padding: 8px;
    }

    .kw-submit-btn {
        padding: 10px;
        font-size: 14px;
    }
}
.kw-footer {
    background: #e9e9ec;
    padding: 50px 0 20px;
}

/* LOGO */
.kw-footer-logo {
    width: 200px;
    margin-bottom: 20px;
}

/* TEXT */
.kw-news-text {
    font-size: 14px;
    margin-bottom: 15px;
}

/* NEWSLETTER */
.kw-newsletter {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 30px;
    overflow: hidden;
    max-width: 280px;
}

.kw-newsletter input {
    border: none;
    padding: 10px 15px;
    flex: 1;
    outline: none;
    background: transparent;
}

.kw-newsletter button {
    background: #1c0f2e;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 50%;
    margin: 3px;
}

/* HEADINGS */
.kw-footer h5 {
    font-weight: 700;
    margin-bottom: 15px;
}

/* LIST */
.kw-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.kw-footer ul li {
    margin-bottom: 8px;
    font-size: 14px;
}

/* BOTTOM */
.kw-footer-bottom {
    border-top: 1px solid #ccc;
    margin-top: 30px;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}
.kw-footer {
    background: #e9e9ec;
    padding: 50px 0 20px;
}

/* LOGO */
.kw-footer-logo {
    width: 200px;
    margin-bottom: 20px;
}

/* TEXT */
.kw-news-text {
    font-size: 14px;
    margin-bottom: 15px;
}

/* NEWSLETTER */
.kw-newsletter {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 30px;
    overflow: hidden;
    max-width: 280px;
}

.kw-newsletter input {
    border: none;
    padding: 10px 15px;
    flex: 1;
    outline: none;
    background: transparent;
}

.kw-newsletter button {
    background: #1c0f2e;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 50%;
    margin: 3px;
    cursor: pointer;
}

/* HEADINGS */
.kw-footer h5 {
    font-weight: 700;
    margin-bottom: 15px;
}

/* LIST */
.kw-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.kw-footer ul li {
    margin-bottom: 8px;
}

/* LINKS */
.kw-footer ul li a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: 0.3s;
}

.kw-footer ul li a:hover {
    color: #c93b42;
    padding-left: 5px;
}

/* BOTTOM */
.kw-footer-bottom {
    border-top: 1px solid #ccc;
    margin-top: 30px;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.kw-footer-bottom a {
    text-decoration: none;
    color: #333;
}

.kw-footer-bottom a:hover {
    color: #c93b42;
}
@media (max-width: 768px) {

    .kw-footer {
        /* text-align: center; */
    }

    .kw-newsletter {
        max-width: 100%;
        margin: auto;
    }

    .kw-footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}