/********** Template CSS **********/
:root {
    --primary: #FF6F0F;
    --secondary: #FFF0E6;
    --light: #F8F8F9;
    --dark: #001D23;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn.btn-primary:hover {
    color: var(--primary);
    background: transparent;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.fixed-top {
    transition: .5s;
}

.top-bar {
    height: 45px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #d8272b;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        margin-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, .07);
        background: var(--dark);
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
        left: -280px;left: -280px;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* background: rgba(0, 29, 35, .8); */
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--dark);
    border: 12px solid var(--dark);
    border-radius: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    padding-top: 12rem;
    padding-bottom: 6rem;
    /* background: linear-gradient(rgba(0, 29, 35, .8), rgba(0, 29, 35, .8)), url(../img/globel-chord-image/breadcrumb.webp) center center no-repeat; */
    background:  url(../img/globel-chord-image/breadcrumb.webp) center center no-repeat;
    background-size: cover;


}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}


/*** Causes ***/
.causes-item .progress {
    height: 5px;
    border-radius: 0;
    overflow: visible;
}

.causes-item .progress .progress-bar {
    position: relative;
    overflow: visible;
    width: 0px;
    border-radius: 0;
    transition: 5s;
}

.causes-item .progress .progress-bar span {
    position: absolute;
    top: -7px;
    right: 0;
    width: 40px;
    height: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    background: var(--primary);
    color: #FFFFFF;
}

.causes-item .causes-overlay {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.causes-item:hover .causes-overlay {
    height: 100%;
    opacity: 1;
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .06);
}


/*** Donate ***/
.donate {
    background: rgba(0, 29, 35, .8);
}

.btn-group .btn-light:hover,
.btn-group input[type="radio"]:checked+label {
    color: var(--primary);
    border-color: var(--primary);
}


/*** Team ***/
.team-item img {
    position: relative;
    top: 0;
    transition: .5s;
}

.team-item:hover img {
    top: -30px;
}

.team-item .team-text {
    position: relative;
    height: 100px;
    transition: .5s;
}

.team-item:hover .team-text {
    margin-top: -60px;
    height: 160px;
}

.team-item .team-text .team-social {
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-text .team-social {
    opacity: 1;
}

.team-item .team-social .btn {
    display: inline-flex;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px;
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {

    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {

    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text {
    background: var(--light);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary);
    transform: scale(1);
}

.testimonial-carousel .owl-item .testimonial-text *,
.testimonial-carousel .owl-item .testimonial-item img {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: var(--light) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item img {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}


/*** Footer ***/

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: rgba(255, 255, 255, 0.5);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: rgb(229 38 41);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-square {
    color: #d8272b;
    border: 1px solid #d8272b;
}

.footer .btn.btn-square:hover {
    color: var(--secondary);
    border-color: var(--light);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--secondary);
}

.footer .copyright a:hover {
    color: var(--primary);
}

/* .ban-vid
{
    background: url('videos/baner-vid.mp4');
} */



/* my css start */
.home-main {
    width: 100%;
    height: 383px;
}

.home-main img {
    width: 100%;
    height: 100%;
}

/* Main Container */
.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Individual Card - Increased Height */
.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    aspect-ratio: 3/4;
    /* Taller aspect ratio (3:4) */
}

/* Card Image */
.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

/* Card Content (hidden by default) */
.gallery-content {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    transition: bottom 0.7s ease;
    box-sizing: border-box;
}

/* Card Title */
.gallery-title {
    margin: 0;
    font-size: 18px;
    color: #333;
    font-weight: 600;
}

/* Card Description */
.gallery-desc {
    margin: 8px 0 0;
    font-size: 14px;
    color: #666;
}

/* Hover Effects */
.gallery-card:hover .gallery-content {
    bottom: 0;
}

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

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

    .gallery-card {
        aspect-ratio: 3/4;
        /* Maintain tall ratio on tablets */
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: fr;
    }

    .gallery-card {
        aspect-ratio: 3/4;
        /* Maintain tall ratio on mobile */
        max-height: 500px;
        /* Prevent excessive height on mobile */
    }
}

.audio-service li {
    list-style: none;
    margin-bottom: 5px;
}

.audio-service li i {
    padding-right: 27px;
    font-size: 15px;
    color: #d8272b;
}

.audio-image {
    width: 100%;
    height: 300px;
}

.audio-image img {
    width: 100%;
    height: 100%;
}

.service-item {
    padding: 20px;
    /* background-color: whitesmoke; */

}

.service-item h4 {
    font-size: 18px;
}

.service-item img {
    width: 53px;
}

.service-item i {
    font-size: 35px;
    color: #d8272b;
    margin-bottom: 18px;
}



.bg-dark {
    background-color: var(--bg-dark);
}

.training-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
    padding: 20px 0;
}

.training-card {
    background: rgba(20, 20, 20, 0.4);
    border-radius: 15px;
    padding: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    color: var(--text-light);
}

.training-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(110, 142, 251, 0.1), rgba(167, 119, 227, 0.1));
    z-index: -1;
    opacity: 0;
    transition: all 0.4s ease;
}

.training-card:hover {
    transform: translateY(-8px);
    background: rgba(30, 30, 30, 0.6);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.training-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 45px;
    height: 45px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.1);
    color: #d8272b;
    font-size: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.training-card:hover .card-icon {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary);
    transform: scale(1.1);
}

.card-title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.card-description {
    font-size: 13px;
    color: var(--text-lighter);
    line-height: 1.6;
    transition: all 0.3s ease;
}

.training-card:hover .card-description {
    color: rgba(255, 255, 255, 0.8);
}

/* Individual card accent colors */
.producer-card:hover {
    border-color: rgba(255, 126, 179, 0.3);
}

.producer-card:hover .card-icon {
    color: #ff758c;
    background: white;
}

.dj-card:hover {
    border-color: rgba(255, 175, 189, 0.3);
}

.dj-card:hover .card-icon {
    color: #ff7eb3;
}

.musician-card:hover {
    border-color: rgba(161, 140, 209, 0.3);
}

.musician-card:hover .card-icon {
    color: #a18cd1;
}

.creator-card:hover {
    border-color: rgba(132, 250, 176, 0.3);
}

.creator-card:hover .card-icon {
    color: #84fab0;
}

.engineer-card:hover {
    border-color: rgba(166, 193, 238, 0.3);
}

.engineer-card:hover .card-icon {
    color: #a6c1ee;
}

.designer-card:hover {
    border-color: rgba(255, 236, 210, 0.3);
}

.designer-card:hover .card-icon {
    color: #ffecd2;
}

.student-card:hover {
    border-color: rgba(194, 233, 251, 0.3);
}

.student-card:hover .card-icon {
    color: #c2e9fb;
}

.hobbyist-card:hover {
    border-color: rgba(212, 252, 121, 0.3);
}

.hobbyist-card:hover .card-icon {
    color: #d4fc79;
}

.filmmaker-card:hover {
    border-color: rgba(102, 126, 234, 0.3);
}

.filmmaker-card:hover .card-icon {
    color: #667eea;
}

.ott-card:hover {
    border-color: rgba(238, 96, 156, 0.3);
}

.ott-card:hover .card-icon {
    color: #ee609c;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .training-cards {
        grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    }
}




.why-choose-us {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    /* padding: 80px 0; */
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--primary-color);
    opacity: 0.1;
    border-radius: 50%;
}

.why-choose-us::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: var(--accent-color);
    opacity: 0.1;
    border-radius: 50%;
}

.section-title {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50%;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 16px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 300px;
    border-left: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card2 {
    background: white;
    border-radius: 15px;
    padding: 16px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 210px;
    border-left: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 35px;
    color: #d8272b;
    margin-bottom: 7px;
}

.feature-title {
    color: black;
    font-weight: 600;
    margin-bottom: 15px;
}

.cta-section {
    background: var(--primary-color);
    padding: 60px 0;
    border-radius: 15px;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1511671782779-c97d3d27a1d4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') center/cover;
    opacity: 0.1;
}

.cta-title {
    color: white;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-text {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.btn-cta {
    background: white;
    color: var(--primary-color);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.btn-cta:hover {
    background: transparent;
    color: white;
}

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

.about-main {
    width: 100%;
    height: 430px;
}

.about-main img {
    width: 100%;
    height: 100%;
}

.mv-div {
    width: 100%;
    height: 250px;
    /* border: solid red 4px; */
    padding: 20px;
    box-shadow: rgb(246 246 246 / 77%) 0px 3px 8px;
}

.mv-div i {
    font-size: 30px;
    padding-bottom: 10px;
    color: #d8272b;
}


.our-aim-section {
    background: linear-gradient(to right, #f8f9fa, #ffffff);
    /* padding: 80px 0; */
    position: relative;
    overflow: hidden;
}

.aim-title {
    color: #2a2a72;
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

/* .aim-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: #6c63ff;
            border-radius: 2px;
        } */

.aim-card {
    background: white;
    border-radius: 12px;
    /* padding: 30px; */
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 4px solid #d8272b;
    text-align: center;
}

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

.aim-icon {
    font-size: 2.5rem;
    color: #d8272b;
    margin-bottom: 20px;
}

.aim-item {
    font-size: 1.1rem;
    color: #495057;
    margin-bottom: 15px;
    position: relative;
    padding-left: 16px;
    text-align: left;
}

/* .aim-item::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: #6c63ff;
        } */

.aim-item i {
    font-size: 15px;
    margin-right: 4px;
    color: #d8272b;
}


.harmony-strengths-section {
    background: black;
}

.harmony-section-title {
    color: #2c3e50;
    position: relative;
    display: inline-block;
}

.harmony-section-title:after {
    content: '';
    position: absolute;
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, #8e44ad, #9b59b6);
    bottom: -10px;
    left: 20%;
    border-radius: 2px;
}

.harmony-section-subtitle {
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto;
}

.harmony-benefit-card {
    background: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.harmony-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.harmony-benefit-img {
    height: 250px;
    width: 250px;
    margin: 20px auto;
    position: relative;
}

.harmony-img-frame {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border: 5px solid #d8272b;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.harmony-benefit-card:hover .harmony-img-frame {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.harmony-benefit-title {
    color: #2c3e50;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
    font-size: 20px;
}

/* .harmony-benefit-title:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: #9b59b6;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 1px;
} */

@media (max-width: 768px) {
    .harmony-benefit-img {
        height: 120px;
        width: 120px;
    }
}




.gc-institute-overview {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.gc-main-title {
    color: #2c3e50;
    position: relative;
    padding-bottom: 15px;
}

/* .gc-title-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #8e44ad, #3498db);
    border-radius: 2px;
} */

.gc-overview-table {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.gc-table-row {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.gc-table-row:last-child {
    border-bottom: none;
}

.gc-label-cell {
    width: 30%;
    color: #7f8c8d;
    background-color: rgba(142, 68, 173, 0.03);
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.gc-value-cell {
    width: 70%;
    color: #2c3e50;
}

.gc-badge-online,
.gc-badge-offline {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.gc-badge-online {
    background-color: rgba(46, 204, 113, 0.2);
    color: #27ae60;
}

.gc-badge-offline {
    background-color: rgba(52, 152, 219, 0.2);
    color: #2980b9;
}

.gc-program-list,
.gc-feature-list {
    list-style-type: none;
    padding-left: 0;
}

.gc-program-list li,
.gc-feature-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}

.gc-program-list li:before,
.gc-feature-list li:before {
    content: "•";
    color: #8e44ad;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: -2px;
}

.gc-software-tags,
.gc-service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.gc-software-tag,
.gc-service-tag {
    background-color: rgba(52, 152, 219, 0.1);
    color: #2980b9;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.gc-service-tag {
    background-color: rgba(142, 68, 173, 0.1);
    color: #8e44ad;
}

.gc-certified-badge {
    background-color: rgba(46, 204, 113, 0.2);
    color: #27ae60;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
    margin-right: 8px;
}

.gc-location-icon {
    color: #e74c3c;
}

@media (max-width: 768px) {

    .gc-label-cell,
    .gc-value-cell {
        width: 100%;
        display: block;
    }

    .gc-label-cell {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .gc-software-tags,
    .gc-service-tags {
        gap: 6px;
    }

    .gc-software-tag,
    .gc-service-tag {
        font-size: 0.75rem;
        padding: 3px 8px;
    }
}


.custom-card-wrapper {
    /* padding-top: 50px; */
}

.custom-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 10px;
    height: 300px;
    background-color: white;
}

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

.custom-card-img {
    height: 219px;
    object-fit: cover;
}

.custom-card-btn {
    background-color: #ff6b6b;
    color: white;
    border: none;
}

.custom-card-btn:hover {
    background-color: #ff4757;
}

.custom-card-title {
    font-weight: bold;
    font-size: 18px;
    text-align: center;
}


/* Tab Styles */
.tabs {
    display: flex;
    border-bottom: 1px solid #ddd;
}

.tab-btn {
    padding: 12px 20px;
    background: #f1f1f1;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    font-size: 16px;
    flex: 1;
    text-align: center;
}

.tab-btn:hover {
    background: #ddd;
}

.tab-btn.active {
    background: #d8272b;
    color: white;
}

.tab-content {
    display: none;
    padding: 20px;
}

.tab-content.active {
    display: block;
}

/* Video Tab Content */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    margin-bottom: 20px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Gallery Styles */
.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    cursor: pointer;
    aspect-ratio: 1/1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    margin-top: 50px;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close:hover {
    color: #bbb;
}

.caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .tabs {
        flex-direction: column;
    }
}

@media screen and (max-width: 480px) {
    .gallery {
        grid-template-columns: fr;
    }
}




video {
    width: 100%;
    border-radius: 4px;
}

.logo-image {
    width: 184px;
    margin-bottom: 10px;
}




.contact-div {
    width: 100%;
    height: 350px;
    border: solid #d8272b 2px;
    padding: 16px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.enq-btn {
    width: 150px;
    height: 40px;
    background-color: #d8272b;
    border: none;
    color: white;
}

.contact-div i {
    color: #d8272b;
    padding-right: 23px;
    font-size: 20px;
}

.contact-div h2 {
    margin-top: 19px;
}

.contact-div p a {
    color: black;
}


.f-icn i {
    color: #d8272b;
}


/* Responsive video container */
.video-container {
    position: relative;
    overflow: hidden;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Mobile-specific adjustments */
@media (max-width: 768px) {
    .ban-vid {
        height: 70vh !important;
        min-height: 400px !important;
    }

    .carousel-caption .display-4 {
        font-size: 2rem !important;
    }

    .carousel-caption .fs-5 {
        font-size: 1rem !important;
    }

    .close {
        position: absolute;
        top: 162px !important;
        right: 35px;
        color: #f1f1f1;
        font-size: 40px;
        font-weight: bold;
        transition: 0.3s;
        cursor: pointer;
    }

    .modal-content {
        margin: auto;
        display: block;
        max-width: 90%;
        max-height: 90%;
        margin-top: 221px !important;
    }
   
      
}


.f-icn p a {
    color: #7f8e91;
}


@media (max-width: 768px) {

    .home-main {
        width: 100%;
        height: 250px !important;
        margin-bottom: 10px !important;
    }

    .service-item h4 {
        font-size: 14px !important;
    }

    .service-item i {
        font-size: 24px !important;
        color: #d8272b;
        margin-bottom: 18px;
    }

    .gallery-title {
        margin: 0;
        font-size: 14px;
        color: #333;
        font-weight: 600;
    }


    .audio-image {
    width: 100%;
    height: 250px !important;
}

.feature-title {
    color: black;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 14px !important;
}

.feature-icon {
    font-size: 22px !important;
    color: #d8272b;
    margin-bottom: 7px;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 10px !important;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 255px;
    border-left: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card p
{
    font-size: 12px ;
}

.feature-card2 p
{
    font-size: 12px;
}

.feature-card2 {
    background: white;
    border-radius: 15px;
    padding: 8px;
    margin-bottom: 0px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 167px;
    border-left: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}


.about-main {
    width: 100%;
    height: 250px !important;
    margin-bottom: 20px !important;
}

.mv-div {
    width: 100%;
    height: 250px;
    /* border: solid red 4px; */
    padding: 10px;
    box-shadow: rgb(246 246 246 / 77%) 0px 3px 8px;
    margin-bottom: 20px;
}

.mv-div i {
    font-size: 22px !important;
    padding-bottom: 10px;
    color: #d8272b;
}

.mv-div h2
{
    font-size: 20px !important;
}

.mv-div p 
{
    font-size: 11px;
}
p
{
    font-size: 13px;
}

.aim-card {
    background: white;
    border-radius: 12px;
    /* padding: 30px; */
    margin-bottom: 22px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 161px !important;
    border-top: 4px solid #d8272b;
    text-align: center;
}

.aim-icon {
    font-size: 30px !important;
    color: #d8272b;
    margin-bottom: 7px !important;
}

.aim-item {
    font-size: 13px !important;
    color: #495057;
    margin-bottom: 15px;
    position: relative;
    padding-left: 16px;
    text-align: left;
}


.harmony-benefit-title {
    color: #2c3e50;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
    font-size: 14px !important;
}


.custom-card-title {
    font-weight: bold;
    font-size: 13px !important;
    text-align: center;
}


.custom-card-img {
    height: 161px !important;
    object-fit: cover;
}

.custom-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 10px;
    height: 244px !important;
    background-color: white;
}

.contact-div {
    width: 100%;
    height: 350px;
    border: solid #d8272b 2px;
    padding: 16px;
    margin-bottom: 20px !important;
}
.text-des{
font-size:13px !important;
}

}

.bg-dark2 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                     url('../img/globel-chord-image/who-can-join.webp');
    height: auto;
    background-size: cover;
    background-position: center;
}

.bg-dark3
{
    background-image: url('../img/globel-chord-image/vision-mission-back.webp');
}


p {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 15px;
}
.download-brochure {
    background: #e8eaed; 
    color: #fff;
    padding: 0px 20px;
    text-align: center;
    height:100px;
    margin-top: 0px;
  }


  .key-baner
  {
    width: 100%;
    height: 350px;
    margin-bottom: 20px;
  }

   .key-baner img
  {
    width: 100%;
    height:100%;
    
  }

  .fs 
  {
    font-size: 35px;
    margin-bottom: 20px;
  }

  .key-about
  {
    width: 100%;
    height: 350px;
    border: solid red 2px;
    padding: 10px;
    margin-bottom: 20px;
  }

   .key-service
  {
    width: 100%;
    height: 430px;
    border: solid red 2px;
    padding: 10px;
    margin-bottom: 20px;
  }

  .key-service a
  {
    color: black;
  }

    .key-contacts
  {
    width: 100%;
    height: 200px;
    border: solid red 2px;
    padding: 10px;
    margin-bottom: 20px;
  }

  .key-contacts a
  {
    color: black;
  }

  .key-contacts i
  {
    padding-right: 25px;
    color: #d8272b;
    font-size: 17px;
  }


          .step-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 400px;
        }
        
        .step-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            background: #d8272b;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: bold;
            margin: 17px auto 7px;
            box-shadow: 0 5px 15px rgba(108, 56, 160, 0.3);
        }
        
        .step-icon {
            font-size: 2.5rem;
            color: #d8272b;
            margin-bottom: 1rem;
        }
        
        .card-content {
            padding: 10px;
        }
        
        .card-title {
            color: #d8272b;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .card-text {
            color: #555;
            line-height: 1.6;
        }
        
        .cta-section {
            background: linear-gradient(135deg, var(--secondary) 0%, #ff8e8e 100%);
            color: white;
            padding: 3rem 0;
            margin-top: 3rem;
            border-radius: 20px 20px 0 0;
            text-align: center;
        }
        
        .btn-primary {
            background: #e5252a;
            border: none;
            padding: 0.8rem 2rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            background: #5a2c8c;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(108, 56, 160, 0.4);
        }
        
        .section-title {
            position: relative;
            margin-bottom: 3rem;
            font-weight: 800;
            text-align: center;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--secondary);
            margin: 15px auto;
            border-radius: 2px;
        }
        
        .header-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: rgba(255, 255, 255, 0.9);
        }

        .carrier-div
        {
            width: 100%;
            height: 340px;

        }

         .carrier-div img
        {
            width: 100%;
            height:100%;
            
        }

        .why-key-image
        {
            width: 100%;
            height: 330px;
        }

        .why-key-image img
        {
            width: 100%;
            height:100%;
        }

         .pathway {
            background: linear-gradient(135deg, var(--dark) 0%, #16213e 100%);
            color: white;
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
            position: relative;
            overflow: hidden;
        }
        
        .pathway::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,128L48,117.3C96,107,192,85,288,112C384,139,480,213,576,218.7C672,224,768,160,864,138.7C960,117,1056,139,1152,149.3C1248,160,1344,160,1392,160L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-size: cover;
            background-position: center;
        }
        
        .pathway-content {
            position: relative;
            z-index: 1;
        }
        
        .steps {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            margin: 1.5rem 0;
        }
        
        .step {
            background: rgba(255, 255, 255, 0.1);
            padding: 8px 15px;
            border-radius: 50px;
            display: inline-flex;
            align-items: center;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .step i {
            margin-right: 8px;
            color: var(--accent);
        }
        
        .arrow {
            color: rgba(255, 255, 255, 0.5);
        }
        
        .tips-list {
            list-style: none;
            padding: 0;
        }
        
        .tips-list li {
            padding: 1rem 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: flex-start;
        }
        
        .tips-list li:last-child {
            border-bottom: none;
        }
        
        .icon-wrapper {
            background: #d8272b;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            flex-shrink: 0;
        }
        
        .conclusion {
            background: linear-gradient(135deg, var(--secondary) 0%, #ff8e8e 100%);
            color: white;
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            margin-top: 2rem;
        }
        
        .btn-enroll {
            background: var(--accent);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
            margin-top: 1rem;
        }
        
        .btn-enroll:hover {
            background: #3bbdb4;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .music-icon {
            font-size: 1.5rem;
            margin: 0 5px;
            color: var(--primary);
        }
        
        @media (max-width: 768px) {
            .header h1 {
                font-size: 2rem;
            }
            
            .steps {
                flex-direction: column;
                align-items: center;
            }
            
            .arrow {
                transform: rotate(90deg);
                margin: 5px 0;
            }
        }

        .background-bg
        {
            background-color: #d8272b;
        }

/* my css end */

/* -funnels-Css--- */
/*mobile footer css starts*/
 
.navbar-footer a {
    float: left;
    display: none;
    width: 25%;
    color: #fff;
    text-align: center;
    padding: 25px 22px 38px 20px;
    text-decoration: none;
    font-size: 21px;
    /* margin-right: 22px;
    margin-left: 21px; */
  }
  .navbar-footer a:hover {
    background: #F1F1F1;
    color: black;
  }
  .w_app > i {
    color: #fff;
  }
  .w_app {
    background-color: #28A745;
  }
  .e_mail > i {
    color: #fff;
  }
  .e_mail {
    background-color: #DC3545;
  }
  .ems_call > i {
    color: #fff;
  }
  .ems_call {
    background-color: #007BFF;
  }
  .ems_enquiry > i {
    color: #fff;
  }
  .ems_enquiry {
    background-color: #FFC107;
  }
  .upside{
      display: none;
  }
  .mobile-hidden i {
    color: white;
  }
  @media screen and (min-width :315px) and (max-width :768px) {
  .upside{
      display: block;
  }
  .funnal-mobile{
    display:none!important;
  }
  .mobile-footer{
  display:block!important;
  }
  .social-mobile li a .fa{
  display:none;
  }
  .navbar-footer
  {
    overflow:scroll;
    z-index:9999999!important;
   background-color:#ccc;
  position: fixed;
   bottom: -16px;
  width: 100%;
  }
  .navbar-footer a:hover {
  background: #f1f1f1;
  color: black;
  }
   
  .main {
  padding: 0px;
  margin-bottom: 54px;
  }
  .navbar-footer{
    display:block!important;
  }
   
  }
  .mobile-hidden a {
    font-size: 16px;
  }
  /* mobile footer css end*/
    @media only screen and (max-width:768px){
 
 
    .mobile-hidden{
      display: none!important;
    }
    .tab{
      margin: 4px 4px!important;
    }
    .brochures-prgs .fa-plus{
      margin-right: 30px!important;
    }
  }
  /* Funnel css start */
  .btn-success {
      color: #fff !important;
      background-color: #5cb85c;
      border-color: #4cae4c;
      padding: 15px 30px;
    }
   .btn-success:hover {
      color: #fff;
      background-color: #449d44;
     border-color: #398439
    }
    .btn-danger {
      color: #fff!important;
      background-color: #d9534f;
      border-color: #d43f3a;
      padding: 15px 30px;
    }
    .btn-danger:hover {
      color: #fff;
      background-color: #c9302c;
      border-color: #ac2925
    }
    .btn-warning {
      color: #fff!important;
      background-color: #f0ad4e;
      border-color: #eea236;
      padding: 15px 30px;
    }
    .btn-warning:hover {
      color: #fff;
      background-color: #ec971f;
      border-color: #d58512
    }
    /* .btn-primary {
      color: #fff!important;
      background-color: #0084bd;
      border-color: #0d668d;
      padding: 15px 30px;
    }
    .btn-primary:hover {
      color: #fff;
      background-color: #0d668d;
      border-color: #204d74
    } */
  .pb-20{
    padding-top: 10px;
    padding-bottom: 30px;
  }
   
 
/* -funnels-Css-Ends--- */


/* onnn */
.ptb-20 {
	padding-top: 10px;
	padding-bottom: 30px;
  }
  
  
  .brochures-prgs {
	cursor: pointer;
	border-top: 4px solid #dc0030;
	;
	border-left: 3px solid #dc0030;
	;
	padding: 11px;
	color: #373333;
	border-radius: 9px;
	background: #d3d3d336;
	font-size: 16px;
	margin-bottom: 15px;
	position: relative;
  }
  
  .disp {
	display: none;
	padding: 20px;
  }
  
  
  .rotate {
	transform: rotate(180deg);
  }
  
  .brochures-prgs .fa {
	font-size: 18px;
    right: 0;
    position: absolute;
    padding: 10px;
    border-radius: 6px;
    margin-top: -7px;
    margin-right: 6px;
    background: #dc0030;
    color: #fff;
  }
  
  .trin-trin {
	animation-name: trin;
	animation-duration: 1.8s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
  }
  
  @keyframes trin {
	from {
	  transform: rotate3d(0, 0, 1, 0deg);
	}
  
	20%,
	32%,
	44%,
	56%,
	68% {
	  transform: rotate3d(0, 0, 1, 0deg);
	}
  
	23%,
	35%,
	47%,
	59%,
	71% {
	  transform: rotate3d(0, 0, 1, 12deg);
	}
  
	26%,
	38%,
	50%,
	62%,
	74% {
	  transform: rotate3d(0, 0, 1, 0deg);
	}
  
	29%,
	41%,
	53%,
	65%,
	77% {
	  transform: rotate3d(0, 0, 1, -12deg);
	}
  
	80% {
	  transform: rotate3d(0, 0, 1, 0deg);
	}
  }



  
  
  /* onnn */
        .music-courses-section {
            padding: 5rem 0;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4efe9 100%);
        }
        
        .music-courses-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .music-courses-heading {
            font-size: 2.8rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 1rem;
            text-align: center;
        }
        
        .music-courses-subheading {
            font-size: 1.2rem;
            color: #7f8c8d;
            text-align: center;
            max-width: 700px;
            margin: 0 auto 3rem;
        }
        
        .music-courses-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(268px, 1fr));
            gap: 2rem;
        }
        
        .music-course-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        
        .music-course-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }
        
        .music-course-img-container {
            height: 254px;
            overflow: hidden;
            position: relative;
        }
        
        .music-course-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .music-course-card:hover .music-course-image {
            transform: scale(1.05);
        }
        
        .music-course-content {
            padding: 10px;
        }
        
        .music-course-title {
            font-size: 17px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 0.5rem;
        }
        
        @media (max-width: 768px) {
            .music-courses-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin: 0 auto;
            }
            
            .music-courses-heading {
                font-size: 2.2rem;
            }
        }


           .gc-section-title {
            font-weight: 700;
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }
        
        .gc-section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gc-accent);
            border-radius: 2px;
        }
        
        .gc-section-subtitle {
            max-width: 700px;
            margin: 0 auto 4rem;
            opacity: 0.9;
        }
        
        .gc-strength-card {
            background: white;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 16px;
            transition: all 0.3s ease;
            height: 100%;
            padding: 2rem 1.5rem;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .gc-strength-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%); */
            z-index: -1;
        }
        
        .gc-strength-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
            border-color: rgba(255, 255, 255, 0.3);
        }
        
        .gc-strength-img {
            margin-bottom: 1.5rem;
            position: relative;
        }
        
        .gc-img-frame {
            width: 247px;
            height: 247px;
            object-fit: cover;
            border: 4px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }
        
        .gc-strength-card:hover .gc-img-frame {
            transform: scale(1.1);
            border-color: rgba(255, 255, 255, 0.4);
        }
        
        .gc-strength-title {
            font-weight: 600;
            margin-bottom: 1rem;
            position: relative;
            padding-bottom: 0.5rem;
        }
        
        .gc-strength-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 2px;
            background: var(--gc-accent);
            transition: all 0.3s ease;
        }
        
        .gc-strength-card:hover .gc-strength-title::after {
            width: 80px;
        }
        
        .gc-strength-icon {
            position: absolute;
            top: -15px;
            right: -15px;
            font-size: 5rem;
            opacity: 0.03;
            z-index: -1;
            color: red !important;
        }
        
        @media (max-width: 768px) {
            .gc-strength-card {
                margin-bottom: 1.5rem;
            }
        }

          .gc-strengths-section {
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
        }
        
        .gc-strengths-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.03' d='M0,288L48,272C96,256,192,224,288,197.3C384,171,480,149,576,165.3C672,181,768,235,864,250.7C960,267,1056,245,1152,224C1248,203,1344,181,1392,170.7L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
            background-size: cover;
            z-index: -1;
        }

        .pdf-btn
        {
            width: 150px;
            height: 40px;
            background-color: #e5252a;
            border: none;
         
        }

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

        .pdf-btn a
        {
            color: white;
        }