body {
    overflow-x: hidden;
}

#whatapp_msg {
    display: none;
    position: fixed;
    height: 100%;
    width: 100%;
    background: #000000ad;
    top: 0;
    left: 0;
    z-index: 9999;
}

.box_models {
    width: 300px;
    height: 300px;
    background: #ECFAE5;
    position: absolute;
    left: 40%;
    top: 30%;
    padding: 30px;
    border-radius: 10px;
}

.box_models h4 {
    color: #000;
    margin: 10px 0;
}

textarea#whatsapp_message {
    min-height: 60%;
}

#whtappBtn {
    background-color: green;
    width: 100%;
    height: 40px;
    border-radius: 10px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin: 10px 0;
}

button#whatsappcloseBtn {
    width: 30px;
    height: 30px;
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    border: none;
    font-size: 20px;
}

section.headertop {
    background-color: #e8237c;
    position: fixed;
    width: 100%;
    z-index: 99;
    height: 30px;
    padding: 5px 0;
}

.container_width {
    width: 90%;
    margin: auto;
}

.grid_row {
    display: grid;

}

.grid_col-2 {
    grid-template-columns: repeat(2, 1fr);
}

.header_cta {
    text-align: end;
}

.header_cta a {
    color: #fff;
    text-decoration: none;
}



.who_we_are img {
    height: 600px;
}

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

.who_we_are h3 {
    font-size: 20px;
    font-weight: 400;
    margin: 10px 0;
    display: flex;
    gap: 10px;
    align-items: center;
    color: #fff;
}

.who_we_are h2 {
    font-size: 53px;
    margin: 10px 0;
    color: #fff;
}

.who_we_are p {
    line-height: 25px;
    margin-top: 35px;
    color: #fff;
}

.who_we_are a {
    margin-top: 30px;
}

.who_we_are a.btn-primary:hover {
    background: #fff;
    color: var(--primary);
}

.who_we_are a.btn-outline {
    color: var(--primary);
    border: 1px solid var(--primary);
    background-color: #fff;
    min-height: 37px;
}

.who_we_are a.btn-outline:hover {
    color: #fff;

}

.who_we_are .grid_col2 img {
    animation: floatUpDown 3s ease-in-out infinite;
    display: block;
    max-width: 100%;
    height: auto;
}

@keyframes floatUpDown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

section.section-services {
    position: relative;
    padding: 80px 0 0 0;
}

.section-services::before {
    content: '';
    position: absolute;
    top: 42px;
    left: -34px;
    background-image: url('../images/new/boxleft.png');
    height: 200px;
    width: 200px;
    background-size: cover;
    transform: rotate(4deg);
    animation: floatUpDown 3s ease-in-out infinite;
}

.section-services h2 {
    position: relative;
}

.section-services .colmd12 {
    text-align: center;
    position: relative;
}

.text-center {
    text-align: center;
}

.servicecontainer h4 {
    font-size: 30px;
    margin: 10px 0 40px 0;
}

.domain_cloud {
    margin-top: 80px;
    background-color: #e7237c;
}

.section-services::after {
    content: '';
    background-image: url('../images/new/triangle.png');
    position: absolute;
    right: -57px;
    bottom: -236px;
    height: 100px;
    width: 100px;
    background-repeat: no-repeat;
    background-size: contain;
    transform: rotate(21deg);
    animation: 3s ease-in-out 0s infinite normal none running floatUpDown;
}

.section-services .header-section {
    text-align: center;
    margin-bottom: 34px;
    position: absolute;
    width: 100%;
    top: 77px;
}

.servicecontainer .colmd12 img {
    width: 54%;
    animation: 3s ease-in-out 0s infinite normal none running floatUpDown;
}

.section-services .header-section .title {
    font-size: 40px;
}


.benifit {
    padding: 100px 0 0 0;
    position: relative;
}

.benifit h2 {
    font-size: 60px;
    margin-top: -50px;
    margin-bottom: 0;
    color: #fff;
}

.benifit p {
    font-size: 23px;
    width: 53%;
    color: #fff;
}

.benifit::after {
    content: '';
    position: absolute;
    right: -10px;
    top: -2px;
    background-image: url('../images/new/benifit_girl.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    width: 300px;
}

.benifit::before {
    content: '';
    position: absolute;
    right: 160px;
    bottom: 0;
    background-image: url('../images/new/circle.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    height: 200px;
    width: 200px;
    z-index: 9;
    animation: floatUpDown 3s ease-in-out infinite;
}

.principle {
    padding: 40px 20px;
    position: relative;
}

.principle h2 {
    font-size: 40px;
    position: relative;
    color: #fff;
}

.principle .grid_col3 {
    padding: 40px;
    border-radius: 8px;
    box-shadow: 2px 0 5px 2px rgb(253 253 253 / 21%);
    box-shadow: 0 0 5px #ffffff1f, 0 0 0px #ffffff, 0 0 5px #fff, 0 0 5px #fff;
    transition: transform 0.3s ease;
}

.principle .grid_col3:hover {
    transform: translateY(-5px);
}

.principle .grid_col3 h3 {
    margin-bottom: 10px;
    color: #fff;

}

.principle .grid_col3 p {
    color: #fff;
    line-height: 1.5;
}

.principle .grid_row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 65px;
}

.text-end {
    text-align: end;
}

.ratio_content {
    width: 30%;
    margin-left: 10%;
    margin-top: 10%;
}

.ratio_content h2 {
    font-size: 40px;
    color: #fff;
}

.ratio_content p {
    font-size: 25px;
    margin: 15px 0;
    color: #fff;
}

.ratio_content ul {
    font-size: 20px;
    list-style: none;
    line-height: 40px;
    color: #fff;
}

.left_white {
    background: #fff;
    height: 100%;
    width: 300px;
    position: absolute;
    left: -154px;
    border-top-left-radius: 123px;
    border-top-right-radius: 123px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

section.ratio {
    padding: 0px 0 100px 0;
    position: relative;
}

section.ratio span.counting {
    font-size: 30px;
    margin-right: 10px;
    font-weight: 700;
}

.benifit .content {
    width: 30%;
}

.benifit .content img {
    width: 100%;
}

.gif {
    position: absolute;
    top: 50px;
    right: 261px;
    width: 31%;
}

.gif img {
    width: 100%;
}

.principle::after {
    content: '';
    position: absolute;
    right: -1px;
    top: 15px;
    background-image: url('../images/new/boxes.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    height: 140px;
    width: 140px;
    animation: 3s ease-in-out 0s infinite normal none running floatUpDown;
}

.principle h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -20px;
    background: #f8a6d7;
    width: 360px;
    height: 1px;
}

.tools img {
    width: 100%;
}

.right_white img {
    width: 50%;
    animation: rotate 4s infinite forwards;
}

@keyframes rotate {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

.right_white {
    position: absolute;
    width: 50%;
    right: 0;
    background: #fff;
    border-top-left-radius: 45%;
    border-top-right-radius: 45%;
    text-align: center;
    padding-top: 10%;
    top: 0;
    height: 100%;
}

.live-badge {
    display: flex;
    align-items: center;
    background: linear-gradient(to right, #ffffff 30%, #ff416c 30%);
    border-radius: 999px;
    padding: 5px 12px 5px 5px;
    width: fit-content;
    margin-bottom: 20px;
}

.live-dot {
    width: 14px;
    height: 14px;
    background: radial-gradient(circle, #ff5722 0%, #ff3c38 100%);
    border-radius: 50%;
    margin-right: 8px;
}

.live-text {
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.brand_logo {
    padding: 50px 0;
    background-color: #e8237c;
}

.brand_logo .grid_row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    align-items: center;
    justify-items: center;
    padding: 20px;
}

.brand_logo .grid_col img {
    max-width: 50%;
    height: auto;
    display: block;
}

.refer img {
    width: 100%;
}

.tech_support h2 {
    font-size: 62px;
}

.tech_support a.mailto {
    color: #e8237c;
}

.phone_link {
    margin: 15px 0px;
}

section.tech_support {
    padding: 20px 0 20px 0;
    background-color: #e8237c;
}

.tech_support img {
    width: 70%;
}

.tech_support .grid_row {
    align-items: center;
}

.countdown-banner {
    background: linear-gradient(67deg, #e2be4c, #d81c6f);
    color: white;
    padding: 20px;
    text-align: center;
    margin: 30px 0;
    border-radius: 5px;
}



.time-box {
    background-color: #e7237c;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    min-width: 40px;
    font-weight: bold;
    font-size: 20px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 15px 0;
}

.time-label {
    font-size: 12px;
    opacity: 0.8;
}


/* Stats Comparison */
.ct-stats-comparison {
    display: flex;
    gap: 30px;
}

.ct-stats-column {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.ct-stats-title {
    margin-bottom: 30px;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
    transition: 0.6s ease;
}

.ct-stats-title:hover {
    transform: scale(1.1);
}

.ct-stats-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
}

.ct-stats-before .ct-stats-title {
    color: #7f8c8d;
}

.ct-stats-before .ct-stats-title::after {
    background: #7f8c8d;
}

.ct-stats-after .ct-stats-title {
    color: #27ae60;
}

.ct-stats-after .ct-stats-title::after {
    background: #27ae60;
}

.ct-stat-bar {
    margin-bottom: 25px;
    transition: 0.6s ease;
}

.ct-stat-bar:hover {
    transform: scale(1.1);
}

.ct-stat-bar-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.ct-stat-bar-name {
    font-size: 14px;
    font-weight: 600;
}

.ct-stats-before .ct-stat-bar-name {
    color: #7f8c8d;
}

.ct-stats-after .ct-stat-bar-name {
    color: #27ae60;
}

.ct-stat-bar-value {
    font-size: 14px;
    font-weight: 700;
    color: #d81c6f;
}

.ct-stat-bar-track {
    height: 8px;
    background: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
}

.ct-stat-bar-progress {
    height: 100%;
    border-radius: 4px;
}

.ct-stats-before .ct-stat-bar-progress {
    background: #7f8c8d;
}

.ct-stats-after .ct-stat-bar-progress {
    background: #27ae60;
}

.custom-about-section {
    display: flex;
    flex-direction: row;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    margin: 50px 0;
}

.custom-about-content {
    flex: 1;
    padding: 50px;
    background: linear-gradient(to right, #f3e9f5, #f3e9f5);
    color: black;
    padding-left: 120px;
}

.custom-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.custom-section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 400;
    opacity: 0.9;
}

.custom-about-paragraph {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.custom-about-paragraph {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.custom-about-paragraph {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.custom-trust-badge {
    margin-top: 20px;
    font-size: 0.85rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 5px;
}

.custom-stat-item {
    text-align: left;
}

.custom-stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e11f09;
    margin-bottom: 5px;
}

.custom-stat-label {
    font-size: 0.85rem;
    opacity: 0.8;
}

.custom-stats-container {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.custom-about-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e6e5e3;
    /* padding: 20px; */
    padding-right: 120px;
}

.custom-about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.brand_logo {
    overflow: hidden;
    padding: 20px 0;
}

.slider_wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    background-color: #fff;
}

.slider_track {
    display: flex;
    width: calc(12 * 150px);
    animation: scroll 30s linear infinite;
    align-items: center;
}

.slide {
    flex: 0 0 auto;
    width: 150px;
    padding: 0 15px;
}

.slide img {
    width: 100%;
    height: auto;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.sfc-magic-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(90deg, #d81c6f, #d81c6f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    text-align: center;
}

.sfc-magic-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.sfc-magic-subtitle {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 50px;
    text-align: center;
}

.sfc-magic-avatar img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 3px solid #ff00cc;
    box-shadow: 0 0 20px #ff00cc55;
    margin-bottom: 15px;
}

.sfc-magic-card {
    position: relative;
    width: 280px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px 20px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    border: 2px solid #eaeaea;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.sfc-magic-avatar {
    text-align: center;
}

.sfc-magic-card h3,
p.sfc-role,
p.sfc-quote {
    text-align: center;
}

.sfc-magic-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, #ff00cc, #3333ff, #ff00cc);
    animation: rotateAura 6s linear infinite;
    z-index: 0;
    opacity: 0.2;
}

.sfc-quote {
    font-size: 0.95rem;
    color: #fff;
    font-style: italic;
    padding: 10px 0;
    background: linear-gradient(90deg, #ff00cc20, #3333ff20);
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.sfc-role {
    font-size: 0.9rem;
    color: #fff;
    margin-bottom: 15px;
}

.blog-posts-wrapper {
    justify-content: space-between;
}

.blog-posts-wrapper .blog-post.cat2 {
    width: 30%;
}

.blog-card img {
    width: 100%;
}

.support-section {
    padding: 20px 0;
    background: radial-gradient(ellipse at top left, #f0f4ff, transparent),
        radial-gradient(ellipse at bottom right, #e0fdff, transparent),
        linear-gradient(to bottom right, var(--light-color), #e0e7ff);
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}

.support-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 58% 42% 38% 62% / 42% 55% 45% 58%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    opacity: 0.08;
    z-index: 0;
    animation: float 15s infinite alternate ease-in-out;
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.section-header {
    text-align: center;
    position: relative;
    z-index: 1;
}

.support_cta .section-subtitle {
    font-size: 1.2rem;
    color: #d81c6f;
    max-width: 700px;
    margin: 0 auto;
}

.support_cta .section-title {
    font-size: 3.5rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 6px;
    background: var(--gradient-1);
    border-radius: var(--border-radius-full);
    box-shadow: 0 3px 10px rgba(99, 102, 241, 0.3);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 6px;
    background: var(--gradient-1);
    border-radius: var(--border-radius-full);
    box-shadow: 0 3px 10px rgba(99, 102, 241, 0.3);
}

.support_cta .support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 50px;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
    animation: cardFadeIn 1s ease-in-out forwards;
}

.support_cta .support-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.8);
    isolation: isolate;
    backdrop-filter: blur(10px);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.support_cta .support-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    backdrop-filter: blur(10px);
    z-index: -1;
    transition: transform 0.6s ease;
    transform-origin: center;
}

.support_cta .card-icon {
    height: 140px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1f0159, #e7237c);
    position: relative;
    overflow: hidden;
}

.support_cta .card-content {
    padding: 35px;
    position: relative;
}

.support_cta .card-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
    transition: all 0.4s ease;
}

.support_cta .card-description {
    margin-bottom: 25px;
    color: #64748b;
    line-height: 1.7;
    font-size: 1.1rem;
    transform: translateZ(20px);
}

.offer p {
    color: #fff;
    display: flex;
    justify-content: space-around;
}

.offer p a {
    color: #fff;
}

.support_cta .card-link {
    display: inline-flex;
    align-items: center;
    color: #6366f1;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
    padding: 10px 20px;
    border-radius: 20px;
    background-color: rgba(99, 102, 241, 0.1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.support_cta .card-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
    z-index: 1;
}

.support_cta .card-icon svg {
    width: 70px;
    height: 70px;
    fill: white;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
    z-index: 2;
    transition: all 0.5s ease;
}

.support_cta .card-link svg {
    width: 18px;
    height: 18px;
    margin-left: 8px;
    transition: transform 0.4s ease;
}

.support_cta .support-card:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.support_cta .support-card .card-link:hover {
    background-color: var(--primary-color);
    box-shadow: 0 10px 20px -10px rgba(99, 102, 241, 0.5);
    color: white;
}

.bcg_container {
    padding: 20px 120px 50px 120px;
   
    margin: 0 auto;
}

.bcg_heading {
    text-align: center;
    margin-bottom: 40px;
}

.bcg_title {
    font-size: 2.5rem;
    background: linear-gradient(45deg, #ff0844, #6f0eff);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 10px;
    padding-top: 50px;
}

.bcg_subtitle {
    font-size: 1.1rem;
    color: #fff;
}

/* Tab Navigation */
.bcg_tabs_wrapper {
    margin-bottom: 30px;
}

.bcg_tabs_list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    list-style: none;
    padding: 0;
}

.bcg_tab_item {
    padding: 12px 24px;
    /* background-color: #fff; */
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    color: #fff;
}

.bcg_tab_item:hover {
    background: linear-gradient(45deg, #ff0844, #6f0eff);
    color: #fff;
}

.bcg_tab_item.bcg_active {
    background: linear-gradient(45deg, #ff0844, #6f0eff);
    color: white;
}

/* Blog Grid */
.bcg_posts_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.bcg_post_card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: bcg_fadeIn 0.6s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.bcg_post_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.bcg_post_image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.bcg_post_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bcg_post_card:hover .bcg_post_image img {
    transform: scale(1.1);
}

.bcg_post_category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
    color: white;
}

.bcg_category_all {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
}

.bcg_category_career {
    background: linear-gradient(135deg, #ff9966 0%, #ff5e62 100%);
}

.bcg_category_assignment {
    background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
}

.bcg_category_abroad {
    background: linear-gradient(135deg, #16a085 0%, #2ecc71 100%);
}

.bcg_category_tips {
    background: linear-gradient(135deg, #834d9b 0%, #d04ed6 100%);
}

.bcg_post_content {
    padding: 20px;
}

.bcg_post_title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    color: #1f0159;
}

.bcg_post_title:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #55025f;
    transition: width 0.3s ease;
}

.bcg_post_card:hover .bcg_post_title:after {
    width: 100%;
}

.bcg_post_excerpt {
    color: #7f8c8d;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.bcg_readmore {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(45deg, #ff0844, #6f0eff);
    border-radius: 20px;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.bcg_readmore:hover {
    background-color: #55025f;
    color: white;
}

.bcg_hidden {
    display: none;
}

/* Show More Button */
.bcg_show_more_btn {
    display: block;
    margin: 40px auto 0;
    padding: 15px 25px;
    background: linear-gradient(45deg, #ff0844, #6f0eff);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bcg_show_more_btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Animation */
@keyframes bcg_fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media screen and (max-width: 992px) {
    .bcg_posts_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .bcg_container {
        padding: 20px;
        margin-bottom: 50px;
    }

    .bcg_posts_grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .section-services .header-section .title {
        font-size: 16px !important;
        font-weight: 600 !important;
        padding-bottom: 0 !important;
    }

    .principle::after {
        height: 100px;
        width: 100px;
        top: 100px;
    }

    .custom-about-section {
        flex-wrap: wrap;
    }

    .custom-about-content {
        padding: 20px;
    }

    .domain_cloud {
        margin-top: 50px;
    }

    .course-flip-card-back {
        display: none !important;
    }

    .course-flip-tabs {
        flex-wrap: wrap;
    }

    .principle h2::after {
        width: 100%;
    }

    .ratio_content {
        width: 100%;
        margin-left: 0;
    }

    .principle .grid_col3 {
        padding: 20px 10px;
    }

    .right_white,
    .left_white {
        display: none;
    }

    .who_we_are .grid_row {
        grid-template-columns: 1fr;
    }

    .headertop {
        display: none;
    }

    .header.scrolled,
    header {
        top: 0 !important;
    }

    .who_we_are img {
        height: 100%;
        margin: 10px 0;
    }

    .who_we_are h2 {
        font-size: 30px;
    }

    .who_we_are a.btn-outline {
        top: -12px;
        display: inline;
    }

    .btnwhite {
        font-size: 14px;
        padding: 5px 10px;
        margin-top: 0;
        height: 34px;
    }

    .heading .layoutbtn {
        display: flow;
    }

    .section-services::before {
        left: -20px;
        height: 100px;
        width: 100px;
    }

    .servicecontainer .colmd12 img {
        width: 100%;
    }

    .section-services .header-section {
        top: 20px;
    }

    .section-services::after {
        right: -57px;
        bottom: -200px;
        height: 200px;
        width: 200px;

    }

    .benifit .container_width {
        width: 100%;
        padding: 10px;
    }

    .benifit::after {
        right: -68px;
        top: -2px;
        height: 70%;
        width: 281px;
    }

    .benifit::before {
        width: 100px;
        height: 100px;
        right: 0;
        bottom: 15px;
    }

    .benifit .content {
        width: 100%;
    }

    .gif {
        top: 0;
        left: 12px;
        width: 31%;
    }

    .grid_col-2 {
        grid-template-columns: repeat(1, 1fr);
    }

    .tech_support h2 {
        font-size: 35px;
    }

}

@media (max-width: 992px) {
    .principle .grid_row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .principle .grid_row {
        grid-template-columns: 1fr;
    }
}