.hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 600px;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    z-index: 1;
    justify-content: center;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

.content-hero {
    width: 90%;
    margin: auto;
    text-align: center;
    color: var(--color-white);
    position: relative;
    z-index: 2;
}

.content-hero h1 {
    font-size: 40px;
    font-family: "font_semibold";
    margin-bottom: 20px;
}

.content-hero h1 span {
    color: var(--color-Primary3);
}

.content-hero p {
    font-size: 18px;
    font-family: "font_medium";
}

.content-hero p {
    color: var(--color-white);
    width: 60%;
    margin: auto;
    line-height: 1.5;
    margin-bottom: 20px;
}

.aboutus-index {
    background-color: var(--color-Primary4);
}

.img-about-index {
    padding-bottom: 80px;
    position: relative;
}

.img-about-index>.img-about-index-item:nth-of-type(1) img {
    width: 65%;
    height: 369px;
    object-fit: cover;
    border-radius: 25px;
}

.img-about-index>.img-about-index-item:nth-of-type(2) img {
    width: 60%;
    position: absolute;
    left: 0;
    bottom: 10%;
    height: 270px;
    object-fit: cover;
    border-radius: 25px;
}


.content-img-aboutindex {
    position: absolute;
    bottom: 0;
    width: 65%;
    right: 0;
    z-index: 1;

    padding: 25px;
}

.content-img-aboutindex::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 70%;
    right: 0;
    border-radius: 20px;
    z-index: -1;
    bottom: 0;
    background-color: var(--color-Primary1);
}

.content-img-aboutindex p {
    margin-top: 15px;
    color: var(--color-white);
}

.sub-content-img-aboutindex {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-Primary2);
    border-radius: 10px;
}

.sub-content-img-aboutindex img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    animation: infinite;
    -webkit-animation-name: jackInTheBox;
    animation-name: jackInTheBox;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.text-aboutus-index .title-start {
    margin-bottom: 0;
}

.text-aboutus-index>p {
    margin: 30px 0;
    font-size: 20px;
}

.more-aboutus-index img {
    width: 65px;
    height: 80px;
    object-fit: contain;
}

.aboutus-index {
    position: relative;
}

.more-aboutus-index p {
    margin-top: 10px;
    font-family: "font_medium";
    color: var(--color-black);
}


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

.title-start,
.title-center {
    margin-bottom: 50px;
}

.title-start h2,
.title-center h2 {
    color: var(--color-Primary1);
    font-size: 26px;
    padding: 0 45px 0 0;
    display: inline-block;
    position: relative;
    font-family: "font_semibold";
}

.title-start h2::after,
.title-center h2::after {
    content: "";
    position: absolute;
    width: 35px;
    height: 2px;
    top: 15px;
    right: 0;
    background-color: var(--color-Primary2);
}

.title-start h2::before,
.title-center h2::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 2px;
    top: 10px;
    right: 0;
    background-color: var(--color-Primary2);
}

.title-start p,
.title-center p {
    color: var(--color-black);
    font-size: 20px;
    font-family: "font_medium";
    margin-top: 10px;
}


.services-index .owl-nav {
    position: absolute;
    top: -120px;
    left: 0;
    display: flex;
    align-items: center;
    gap: 0px;
}

.owl-nav button {
    width: 45px;
    background-color: var(--color-Primary2) !important;
    height: 45px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-image: url(../images/arrow-right.png) !important;
    background-size: 60% !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    color: transparent !important;
}

.owl-prev {
    transform: scale(-1);
}

.owl-nav button:hover {
    background-color: var(--color-Primary1) !important;
}

.service-item {
    box-shadow: 0 0 5px #00000034;
}

.img-service-item {
    height: 450px;
    width: 100%;
    overflow: hidden;
}

.img-service-item img {
    height: 100%;
    object-fit: cover;
    width: 100%;
    transition: all .3s linear;
}

.item {
    margin: 5px;
}

.text-service-item {
    background-color: var(--color-white);
    padding: 20px;
    transition: all .3s linear;

}

.text-service-item h2 {
    font-size: 20px;
    color: var(--color-Primary2);
    font-family: "font_semibold";
    transition: all .3s linear;

}

.text-service-item p {
    height: 76px;
    transition: all .3s linear;
    margin-top: 5px;
    overflow: hidden;
}

.service-item:hover img {
    transform: scale(1.2) rotate(5deg);

}

.service-item:hover .text-service-item {
    background-color: var(--color-Primary1);
}

.service-item:hover .text-service-item h2 {
    color: var(--color-Primary3);
}

.service-item:hover .text-service-item p {
    color: var(--color-white);
}

.projects-index {
    min-height: 400px;
    z-index: 1;
    position: relative;
}

.projects-index::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 250px;
    background-color: var(--color-Primary1);
    z-index: -1;
    top: 0;
    left: 0;
}

.projects-index::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 280px;
    background-image: url(../images/bg-p.png);
    background-size: contain;
    background-position: center;
    background-repeat: repeat;
    z-index: 0;
    top: 0;
    left: 0;
    opacity: 0.5;
}

.title-start.title-w h2,
.title-start.title-w p {
    color: var(--color-white);


}

.text-project-item {
    padding: 30px 20px;
    background-color: var(--color-Primary2);
    transition: all .3s linear;
    color: var(--color-white);
}

.text-project-item h2 {
    font-size: 20px;
    font-family: "font_semibold";

    transition: all .3s linear;
}

.img-project-item {
    height: 400px;
    width: 100%;
    overflow: hidden;
}

.img-project-item img {
    height: 100%;
    object-fit: cover;
    width: 100%;
    transition: all .3s linear;
}

.text-project-item p {
    font-size: 15px;
    font-family: "font_medium";
    transition: all .3s linear;
    margin-top: 10px;
    color: var(--color-white);
    overflow: hidden;
}

.projects-index .owl-nav {
    position: absolute;
    transform: translateY(-50%);
    top: 45%;
    right: -5%;
}

.project-item:hover .img-project-item img {
    transform: scale(1.2) rotate(5deg);
}

.project-item:hover .text-project-item {
    background-color: var(--color-Primary1);
}

.projects-index .main-container::before {
    content: "";
    position: absolute;
    width: 10%;
    height: 20px;
    background-color: var(--color-Primary2);
    z-index: 1;
    top: 240px;
    transition: all .3s linear;
    right: 0;

}

.projects-index .main-container::after {
    content: "";
    position: absolute;
    width: 8%;
    transition: all .3s linear;
    height: 20px;
    background-color: #847669;
    z-index: 1;
    top: 265px;
    right: 0;
}

.projects-index:hover .main-container::after {
    width: 15%;
}

.projects-index:hover .main-container::before {
    width: 13%;
}

.img-channel-item {
    height: 450px;
    position: relative;
    z-index: 1;
    display: block;
    overflow: hidden;
}

.img-channel-item::before {
    content: "";
    position: absolute;
    width: 100%;
    display: block;
    height: 100%;
    background-color: rgb(0, 0, 0);
    z-index: -1;
    top: 0;
    left: 0;
}

.img-channel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    z-index: -1;
}

.img-channel-item::before {
    content: "";
    position: absolute;
    width: 100%;
    display: block;
    height: 100%;
    background-color: rgb(0 0 0 / 56%);
    z-index: 0;
    transition: all .3s linear;

    top: 0;
    left: 0;
}

.btn-play-video {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    border-radius: 50%;
    left: 0;
    margin: auto;

    right: 0;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
    justify-content: center;
    background-color: var(--color-white);
}

.btn-play-video a {
    line-height: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 var(--color-white);
    }

    80% {
        box-shadow: 0 0 0 14px var(--color-white);
    }
}

.btn-whatsapp-pulse-border {
    bottom: 60px;
    left: 20px;
    animation-play-state: paused;
}

.btn-whatsapp-pulse-border:hover {
    color: #fff;
}

.btn-play-video::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    padding: 25px;
    border: 5px solid var(--color-white);
    opacity: 0.75;
    animation-name: pulse-border;
    animation-duration: 1.5s;
    pointer-events: none;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

@keyframes pulse-border {
    0% {
        padding: 25px;
        opacity: 0.75;
    }

    75% {
        padding: 50px;
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.price-channel-item {
    position: absolute;
    padding: 10px;
    color: var(--color-white);
    background-color: var(--color-Primary3);
    border-radius: 10px;
    font-size: 16px;
    font-family: "font_semibold";
    top: 20px;
    left: 20px;
}

.text-channel-item {
    padding: 20px;
}

.channel-item {
    box-shadow: 0 0 5px #00000034;
    transition: all .3s linear;
}

.channel-item:hover {
    box-shadow: 0 0 10px #00000034;
}

.channel-item:hover .img-channel-item::before {
    background-color: rgb(0 0 0 / 76%);
}

.channel-item:hover .img-channel-item img {
    transform: scale(1.2) rotate(5deg);
}

.text-channel-item h2 {
    color: var(--color-Primary2);
    font-family: "font_medium";
    transition: all .3s linear;
}

.text-channel-item p {
    color: var(--color-gray);
    font-family: "font_medium";
    transition: all .3s linear;
    margin: 15px 0;
}

.text-channel-item a {
    color: var(--color-white);
    background-color: var(--color-Primary2);
    padding: 10px 20px;
    border-radius: 5px;
}

.channels-index .owl-nav {
    display: flex;
    position: absolute;
    top: -130px;
    left: 0px;
}

.title-news-index {
    background-color: var(--color-Primary4);
    height: 100%;
    min-height: 350px;
    display: flex;
    align-items: center;
    padding: 50px;
}

.title-news-index h2 {
    color: var(--color-Primary2);
    font-family: "font_medium";
    transition: all .3s linear;
}

.title-news-index p {
    color: var(--color-gray);
    font-family: "font_medium";
    margin-top: 25px;
    transition: all .3s linear;
}

.news-item {
    display: flex;
    align-items: center;
    gap: 20px;
    height: 100%;
    transition: all .3s linear;
    min-height: 350px;
}

.img-news-item {
    width: 40%;
    height: 100%;
    overflow: hidden;
}

.news-item:hover h3 {
    color: var(--color-white);
}

.news-item:hover h2 {
    color: var(--color-Primary3);
}

.news-item:hover p {
    color: var(--color-white);
}

.news-item:hover a {
    color: var(--color-white);
}

.img-news-item img {
    width: 100%;
    height: 100%;
    transition: all .3s linear;
    object-fit: cover;
}

.news-item:hover img {
    transform: scale(1.2) rotate(5deg);

}

.news-item:hover {
    background-color: var(--color-Primary2);
}

.text-news-item h3 {
    color: var(--color-Primary2);
    font-family: "font_medium";
    transition: all .3s linear;
}

.text-news-item {
    width: calc(60% - 20px);
    height: 100%;
    display: flex;
    padding: 15px 19px;
    align-items: center;
    align-content: start;
    flex-wrap: wrap;
}

.text-news-item h3 {
    display: flex;
    padding: 20px 0;
    width: 100%;
    border-bottom: 1px solid #0000000f;
    margin: 0 0 20px 0px;
    gap: 10px;
    transition: all .3s linear;
    font-size: 20px;
}

.news-item {
    display: flex;
    align-items: center;
    gap: 20px;
    height: 100%;
    min-height: 350px;
    transition: all .3s linear;
    background: var(--color-Primary4);
}

.text-news-item h2 {
    color: var(--color-Primary2);
    font-family: 'font_semibold';
    transition: all .3s linear;
}

.text-news-item p {
    margin: 10px 0;
    height: 129px;
    transition: all .3s linear;
    overflow: hidden;
}

.text-news-item a {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    gap: 10px;
    margin-top: 25px;
}

#map {
    width: 50%;
    height: 100%;
    height: 650px;
}

.main-contactus-index {
    display: flex;
}

.form-contactus-index {
    width: 50%;
    padding: 50px 35px;
    background-color: var(--color-Primary2);
}

.title-start.title-w {
    margin-bottom: 20px;
}

.btn-contactus-index {
    text-align: center;
    margin-top: 20px;

}

.btn-contactus-index .ctm-btn {
    background-color: var(--color-Primary3) !important;
    border: none !important;

}

.sub-footer p {
    width: 80%;
    margin: 10px 0 20px 0;
}


.title-pages {
    height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.breadcrumb-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.title-pages {
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    background-color: var(--color-Primary2);
    padding: 20px;
    color: var(--color-white);
    font-size: 20px;
    font-family: "font_semibold";
    text-align: center;
    text-transform: uppercase;
    z-index: 1;
    position: relative;
}

.title-pages::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--color-black);
    z-index: -1;
    top: 0;
    left: 0;
    opacity: .5;

}

.breadcrumb-header a {
    color: var(--color-white);
    font-size: 16px;
    font-family: "font_medium";
    transition: all .3s linear;
}

.breadcrumb-header a:hover {
    color: var(--color-Primary3);
}

.breadcrumb-header img {
    width: 20px;
    height: 20px;
}

.breadcrumb-header a {
    color: var(--color-white);
    font-size: 16px;
    font-family: "font_medium";
    transition: all .3s linear;
    font-size: 20px;
    font-family: 'font_semibold';
}

.info-aboutus-page-item {
    background-color: var(--color-white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 0 5px #00000034;
    transition: all .3s linear;
}

.info-aboutus-page-item:hover {
    box-shadow: 0 0 10px #00000034;
}

.icon-aboutus-page {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
}

.icon-aboutus-page {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-Primary2);
    border-radius: 50%;
    margin-right: auto;
}

.text-aboutus-page-item h3 {
    font-size: 30px;
    margin: 20px 0;
    font-family: "font_semibold";
    color: var(--color-Primary2);
}

.text-aboutus-page-item p {
    font-size: 16px;
    font-family: "font_medium";
    color: var(--color-gray);
}

.info-aboutus-page-item:hover {
    box-shadow: 0 0 10px #00000034;
    transform: translateY(-10px);
    transition: all .3s linear;
}

.sub-our-team {
    overflow: hidden;
    z-index: 1;
    position: relative;
    border-radius: 20px;
}

.sub-our-team {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
}

.sub-our-team img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.sub-our-team::after {
    content: "";
    position: absolute;
    background-image: linear-gradient(to top, var(--color-Primary2), #ffffff00);
    height: 50%;
    transition: all .3s linear;
    bottom: 0;
    width: 100%;
    z-index: 0;
    display: block;
}

.content-our-team {
    position: absolute;
    bottom: 0;
    padding: 20px;
    z-index: 1;
    transition: all .3s linear;

    color: var(--color-white);
    width: 100%;
}

.content-our-team p {
    height: 0;
    opacity: 0;
    transform: translateX(-100%);
    color: var(--color-white);
    transition: all .3s linear;
    margin-top: 25px;
    font-size: 15px;
    line-height: 1.5;
    max-height: 231px;
    overflow: hidden;
}

.sub-our-team:hover::after {
    background-color: var(--color-Primary1) !important;
    height: 500%;
}

.sub-our-team:hover .content-our-team {
    top: 0;
}

.sub-our-team:hover .content-our-team p {
    height: auto;
    opacity: 1;
    transform: translateX(0%);
}

/* Video Section Styles */
.video-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.responsive-video {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
    min-height: 400px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease;
}

.video-overlay:hover {
    background: rgba(0, 0, 0, 0.5);
}

.play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-Primary3) 0%, var(--color-Primary2) 100%);
    border: 3px solid #fff;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.5);
}

.play-btn i {
    margin-left: 5px;
}

@media (max-width: 768px) {
    .video-container {
        max-width: 100%;
        border-radius: 10px;
    }

    .responsive-video {
        min-height: 250px;
    }

    .play-btn {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

/* Service Details Page Styles */
.service-details-page {
    background-color: var(--color-white);
}

.service-images-slider {
    position: relative;
}

.service-detail-img {
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.service-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.service-detail-img:hover img {
    transform: scale(1.05);
}

.service-details-page .owl-theme .owl-nav {
    margin-top: 10px;
    display: flex;
    position: absolute;
    bottom: 47px;
    right: 15px;
}

.service-details-content {
    padding: 0 30px;
}

.service-description {
    margin-top: 30px;
}

.service-description>p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-gray);
    margin-bottom: 20px;
    font-family: "font_medium";
}

.service-features {
    margin: 30px 0;
    padding: 30px;
    background-color: var(--color-Primary4);
    border-radius: 10px;
    border-right: 4px solid var(--color-Primary2);
}

.service-features h3 {
    font-size: 22px;
    color: var(--color-Primary2);
    font-family: "font_semibold";
    margin-bottom: 20px;
}

.service-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features ul li {
    font-size: 17px;
    color: var(--color-black);
    font-family: "font_medium";
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-features ul li i {
    color: var(--color-Primary3);
    font-size: 18px;
    width: 25px;
    height: 25px;
    background-color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-request-btn {
    margin-top: 30px;
}

.service-request-btn .ctm-btn {
    width: 100%;
}

.service-full-description {
    padding: 40px;
    background-color: var(--color-Primary4);
    border-radius: 15px;
    margin-top: 50px;
}

.service-full-description h3 {
    font-size: 26px;
    color: var(--color-Primary1);
    font-family: "font_semibold";
    margin-bottom: 20px;
}

.service-full-description p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-gray);
    margin-bottom: 15px;
    font-family: "font_medium";
}

/* Service Request Popup Styles */

/* Bootstrap Modal Customization */
.bd-example-modal-lg .modal-content {
    border-radius: 20px;
    border: none;
    overflow: hidden;
}

.bd-example-modal-lg .modal-header {
    border: none;
}

.bd-example-modal-lg .modal-body {
    padding: 30px;
}

.popup-header {
    padding: 30px;
    background: linear-gradient(135deg, var(--color-Primary2) 0%, var(--color-Primary1) 100%);
    border-radius: 20px 20px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.popup-header h2,
.popup-header .modal-title {
    color: var(--color-white);
    font-size: 26px;
    font-family: "font_semibold";
    margin: 0;
}

.close-popup {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--color-white);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 1;
}

.close-popup:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
    opacity: 1;
}

.close-popup span {
    color: var(--color-white);
}

.popup-body {
    padding: 30px;
}

.service-request-form .input-form {
    margin-bottom: 20px;
}

.service-request-form .input-form label {
    display: block;
    font-size: 16px;
    font-family: "font_semibold";
    color: var(--color-Primary2);
    margin-bottom: 8px;
}

.service-request-form .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    font-family: "font_medium";
    transition: all 0.3s ease;
}

.service-request-form .form-control:focus {
    border-color: var(--color-Primary2);
    outline: none;
    box-shadow: 0 0 0 3px rgba(116, 56, 55, 0.1);
}

.service-request-form select.form-control {
    cursor: pointer;
}

.popup-footer {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.popup-footer .ctm-btn {
    width: 100%;
}

.popup-footer .btn-cancel {
    background-color: #6c757d;
}

.popup-footer .btn-cancel:hover {
    background-color: #5a6268;
}

button.close {
    padding: 0;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: absolute;
    left: 29px;
    font-size: 32px;
}

.service-detail-img {
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 0px 4px rgba(0, 0, 0, 0.3);
}

/* Responsive Styles for Service Details */
@media (max-width: 991px) {
    .service-details-content {
        padding: 30px 0;
        margin-top: 30px;
    }

    .service-detail-img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .service-detail-img {
        height: 300px;
    }

    .service-full-description {
        padding: 25px;
    }

    .popup-content {
        width: 95%;
        margin: 20px;
    }

    .popup-header {
        padding: 20px;
    }

    .popup-header h2 {
        font-size: 22px;
    }

    .popup-body {
        padding: 20px;
    }

    .popup-footer {
        flex-direction: column;
    }
}

/* Project Details Page Styles */
.project-details-page {
    background-color: var(--color-white);
}

.project-images-slider {
    position: relative;
}

.project-detail-img {
    width: 100%;
    height: auto;
    max-height: 750px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.project-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.project-detail-img:hover img {
    transform: scale(1.05);
}

.project-details-content {
    padding: 0 30px;
}

.project-header h1 {
    font-size: 32px;
    color: var(--color-Primary1);
    font-family: "font_semibold";
    margin-bottom: 20px;
    line-height: 1.4;
}

.project-category {
    margin-bottom: 30px;
}

.project-category span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background-color: var(--color-Primary4);
    color: var(--color-Primary2);
    border-radius: 25px;
    font-family: "font_medium";
    font-size: 15px;
    border: 1px solid var(--color-Primary2);
}

.project-category span i {
    color: var(--color-Primary3);
}

.project-meta {
    margin: 30px 0;
}

.meta-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    margin-bottom: 20px;
    background-color: var(--color-Primary4);
    border-radius: 10px;
    border-right: 3px solid var(--color-Primary2);
    transition: all 0.3s ease;
}

.meta-item:hover {
    background-color: var(--color-Primary2);
    transform: translateX(-5px);
}

.meta-item:hover .meta-icon i {
    color: var(--color-Primary3);
}

.meta-item:hover .meta-content h4,
.meta-item:hover .meta-content p {
    color: var(--color-white);
}

.meta-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-white);
    border-radius: 50%;
    flex-shrink: 0;
}

.meta-icon i {
    font-size: 20px;
    color: var(--color-Primary2);
    transition: all 0.3s ease;
}

.meta-content h4 {
    font-size: 16px;
    color: var(--color-Primary2);
    font-family: "font_semibold";
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.meta-content p {
    font-size: 15px;
    color: var(--color-gray);
    font-family: "font_medium";
    margin: 0;
    transition: all 0.3s ease;
}

.project-description {
    margin-top: 30px;
}

.project-description p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-gray);
    font-family: "font_medium";
}

.project-full-description {
    padding: 50px;
    background-color: var(--color-Primary4);
    border-radius: 15px;
    margin-top: 50px;
}

.project-full-description h2 {
    font-size: 28px;
    color: var(--color-Primary1);
    font-family: "font_semibold";
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.project-full-description h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(to left, var(--color-Primary2), var(--color-Primary3));
}

.project-full-description p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-gray);
    margin-bottom: 20px;
    font-family: "font_medium";
}

.project-features {
    margin: 40px 0;
    padding: 35px;
    background-color: var(--color-white);
    border-radius: 10px;
    border-right: 4px solid var(--color-Primary3);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.project-features h3 {
    font-size: 24px;
    color: var(--color-Primary1);
    font-family: "font_semibold";
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.project-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-features ul li {
    font-size: 17px;
    color: var(--color-black);
    font-family: "font_medium";
    padding: 15px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.project-features ul li:last-child {
    border-bottom: none;
}

.project-features ul li:hover {
    padding-right: 10px;
    color: var(--color-Primary2);
}

.project-features ul li i {
    color: var(--color-Primary3);
    font-size: 20px;
    width: 30px;
    height: 30px;
    background-color: var(--color-Primary4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.project-challenge {
    padding: 35px;
    background-color: var(--color-white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.project-challenge:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.project-challenge h3 {
    font-size: 22px;
    color: var(--color-Primary2);
    font-family: "font_semibold";
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.project-challenge h3 i {
    color: var(--color-Primary3);
    font-size: 24px;
}

.project-challenge p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-gray);
    font-family: "font_medium";
}

/* Related Projects Section */
.related-projects-section {
    background-color: var(--color-Primary4);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(116, 56, 55, 0.9), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.project-item {
    position: relative;
}

.project-item:hover .project-overlay {
    opacity: 1;
}

.view-project {
    background-color: var(--color-white);
    color: var(--color-Primary2);
    padding: 12px 30px;
    border-radius: 25px;
    font-family: "font_semibold";
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.project-item:hover .view-project {
    transform: translateY(0);
}

.view-project i {
    font-size: 18px;
}

.view-all-projects {
    text-align: center;
    margin-top: 50px;
}

.view-all-projects .ctm-btn {
    padding: 15px 40px;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Project Details Slider Customization */
#slider-project-details .owl-nav {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
}

#slider-project-details .owl-dots {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    gap: 8px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--color-Primary2);
}

/* Responsive Styles for Project Details */
@media (max-width: 991px) {
    .project-details-content {
        padding: 30px 0;
        margin-top: 30px;
    }

    .project-detail-img {
        max-height: 400px;
    }

    .project-full-description {
        padding: 35px;
    }

    .project-header h1 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .project-detail-img {
        height: 300px;
    }

    .project-full-description {
        padding: 25px;
    }

    .project-header h1 {
        font-size: 24px;
    }

    .project-features {
        padding: 25px;
    }

    .project-challenge {
        padding: 25px;
        margin-bottom: 20px;
    }

    .meta-item {
        padding: 15px;
    }

    .meta-icon {
        width: 40px;
        height: 40px;
    }

    .meta-icon i {
        font-size: 18px;
    }
}

/* Course Details Page Styles */
.course-details-page {
    background-color: var(--color-white);
}

.course-intro-video {
    margin-bottom: 30px;
}

.course-intro-video .video-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    background-color: #000;
    position: relative;
}

.course-intro-video .responsive-video {
    width: 100%;
    height: 650px;
    display: block;
    background-color: #000;
    object-fit: cover;
}

.course-intro-video video::-webkit-media-controls-panel {
    background-color: rgba(0, 0, 0, 0.8);
}

.course-intro-video video::-webkit-media-controls-play-button,
.course-intro-video video::-webkit-media-controls-current-time-display,
.course-intro-video video::-webkit-media-controls-time-remaining-display {
    color: var(--color-white);
}

.course-description-section {
    padding: 30px 0;
}

.course-description-section p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-gray);
    margin-bottom: 20px;
    font-family: "font_medium";
}

.course-benefits {
    margin: 40px 0;
    padding: 35px;
    background-color: var(--color-Primary4);
    border-radius: 15px;
    border-right: 4px solid var(--color-Primary3);
}

.course-benefits h3 {
    font-size: 22px;
    color: var(--color-Primary1);
    font-family: "font_semibold";
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.course-benefits h3 i {
    color: var(--color-Primary3);
    font-size: 24px;
}

.course-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.course-benefits ul li {
    font-size: 17px;
    color: var(--color-black);
    font-family: "font_medium";
    padding: 15px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.course-benefits ul li:last-child {
    border-bottom: none;
}

.course-benefits ul li:hover {
    padding-right: 10px;
    color: var(--color-Primary2);
}

.course-benefits ul li i {
    color: var(--color-Primary3);
    font-size: 18px;
    width: 25px;
    height: 25px;
    flex-shrink: 0;
}

/* Course Content Section */
.course-content-section {
    padding: 40px 0;
    border-top: 2px solid var(--color-Primary4);
    margin-top: 40px;
}

.locked-content-notice {
    background: linear-gradient(135deg, var(--color-Primary2) 0%, var(--color-Primary1) 100%);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 30px;
    color: var(--color-white);
    box-shadow: 0 10px 30px rgba(116, 56, 55, 0.2);
}

.locked-content-notice .lock-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.locked-content-notice .lock-icon i {
    font-size: 36px;
    color: var(--color-white);
}

.locked-content-notice h3 {
    font-size: 26px;
    font-family: "font_semibold";
    margin-bottom: 15px;
}

.locked-content-notice p {
    font-size: 17px;
    font-family: "font_medium";
    opacity: 0.95;
}

.course-curriculum {
    margin-top: 30px;
}

.curriculum-module {
    background-color: var(--color-Primary4);
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.curriculum-module:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.curriculum-module.locked {
    opacity: 0.7;
    position: relative;
}

.module-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background-color: var(--color-white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.module-header:hover {
    background-color: var(--color-Primary4);
}

.module-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.module-info i {
    color: var(--color-Primary2);
    font-size: 22px;
}

.module-info h4 {
    font-size: 18px;
    color: var(--color-Primary2);
    font-family: "font_semibold";
    margin: 0;
}

.module-meta {
    display: flex;
    gap: 20px;
    font-size: 15px;
    color: var(--color-gray);
    font-family: "font_medium";
}

.module-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.module-meta i {
    color: var(--color-Primary3);
}

.module-lessons {
    padding: 0 25px 10px 25px;
}

.lesson-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    margin: 10px 0;
    background-color: var(--color-white);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.lesson-item:hover {
    background-color: var(--color-Primary4);
    transform: translateX(-5px);
}

.lesson-item.locked {
    opacity: 0.6;
}

.lesson-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lesson-info i {
    color: var(--color-Primary2);
    font-size: 18px;
}

.lesson-info span {
    font-size: 16px;
    color: var(--color-black);
    font-family: "font_medium";
}

.lesson-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    color: var(--color-gray);
}

.lesson-meta i {
    color: var(--color-Primary3);
}

/* Course Reviews Section */
.course-reviews-section {
    padding: 40px 0;
    border-top: 2px solid var(--color-Primary4);
    margin-top: 40px;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.reviews-header .title-start {
    margin-bottom: 0;
}

.add-review-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    white-space: nowrap;
    font-size: 16px;
}

.add-review-btn i {
    font-size: 18px;
}

.overall-rating {
    display: flex;
    gap: 40px;
    padding: 30px;
    background-color: var(--color-Primary4);
    border-radius: 15px;
    margin-bottom: 30px;
}

.rating-score {
    text-align: center;
    min-width: 200px;
}

.rating-score h1 {
    font-size: 56px;
    color: var(--color-Primary2);
    font-family: "font_semibold";
    margin-bottom: 10px;
}

.rating-score .stars {
    margin-bottom: 10px;
}

.rating-score .stars i {
    color: #FFA500;
    font-size: 20px;
}

.rating-score p {
    color: var(--color-gray);
    font-size: 15px;
    font-family: "font_medium";
}

.rating-breakdown {
    flex: 1;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.rating-bar span:first-child {
    min-width: 60px;
    font-size: 15px;
    color: var(--color-black);
    font-family: "font_medium";
}

.rating-bar .bar {
    flex: 1;
    height: 8px;
    background-color: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.rating-bar .bar .fill {
    height: 100%;
    background: linear-gradient(to right, var(--color-Primary2), var(--color-Primary3));
    border-radius: 10px;
    transition: width 0.5s ease;
}

.rating-bar span:last-child {
    min-width: 45px;
    text-align: left;
    font-size: 15px;
    color: var(--color-gray);
    font-family: "font_medium";
}

.reviews-list {
    margin-top: 30px;
}

.review-item {
    padding: 25px;
    background-color: var(--color-Primary4);
    border-radius: 12px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.review-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.reviewer-info {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-Primary2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reviewer-avatar i {
    color: var(--color-white);
    font-size: 22px;
}

.reviewer-details h4 {
    font-size: 17px;
    color: var(--color-Primary2);
    font-family: "font_semibold";
    margin-bottom: 5px;
}

.review-stars {
    margin-bottom: 5px;
}

.review-stars i {
    color: #FFA500;
    font-size: 14px;
}

.review-date {
    font-size: 13px;
    color: var(--color-gray);
    font-family: "font_medium";
}

.review-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-black);
    font-family: "font_medium";
}

/* Course Sidebar */
.course-sidebar {
    position: sticky;
    top: 120px;
}

.course-card {
    background-color: var(--color-white);
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    margin-bottom: 25px;
}

.course-price {
    background: linear-gradient(135deg, var(--color-Primary2) 0%, var(--color-Primary1) 100%);
    padding: 25px;
    text-align: center;
}

.price-tag {
    color: var(--color-white);
}

.price-tag .current-price {
    font-size: 48px;
    font-family: "font_semibold";
}

.price-tag .currency {
    font-size: 20px;
    font-family: "font_medium";
}

.course-info-list {
    padding: 25px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.info-item:last-child {
    border-bottom: none;
}

.info-item i {
    color: var(--color-Primary2);
    font-size: 20px;
    width: 25px;
    flex-shrink: 0;
    margin-top: 3px;
}

.info-text {
    flex: 1;
}

.info-text .label {
    display: block;
    font-size: 14px;
    color: var(--color-gray);
    font-family: "font_medium";
    margin-bottom: 3px;
}

.info-text .value {
    display: block;
    font-size: 16px;
    color: var(--color-black);
    font-family: "font_semibold";
}

.subscribe-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: calc(100% - 50px);
    margin: 0 25px 25px 25px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--color-white);
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-family: "font_semibold";
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    color: var(--color-white);
}

.subscribe-btn i {
    font-size: 24px;
}

.complaints-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: calc(100% - 50px);
    margin: 0 25px 25px 25px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--color-white);
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-family: "font_semibold";
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.complaints-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    color: var(--color-white);
}

.complaints-btn i {
    font-size: 24px;
}

.course-features {
    padding: 0 25px 25px 25px;
}

.course-features h4 {
    font-size: 18px;
    color: var(--color-Primary2);
    font-family: "font_semibold";
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.course-features h4 i {
    color: var(--color-Primary3);
}

.course-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.course-features ul li {
    font-size: 15px;
    color: var(--color-black);
    font-family: "font_medium";
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.course-features ul li i {
    color: var(--color-Primary2);
    font-size: 16px;
}

/* Instructor Card */
.instructor-card {
    background-color: var(--color-white);
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    padding: 25px;
    margin-bottom: 25px;
}

.instructor-card h4 {
    font-size: 18px;
    color: var(--color-Primary2);
    font-family: "font_semibold";
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.instructor-card h4 i {
    color: var(--color-Primary3);
}

.instructor-info {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.instructor-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-Primary2) 0%, var(--color-Primary1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.instructor-avatar i {
    color: var(--color-white);
    font-size: 30px;
}

.instructor-details h5 {
    font-size: 18px;
    color: var(--color-Primary2);
    font-family: "font_semibold";
    margin-bottom: 5px;
}

.instructor-details p {
    font-size: 14px;
    color: var(--color-gray);
    font-family: "font_medium";
}

.instructor-bio {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-black);
    font-family: "font_medium";
    margin-bottom: 20px;
}

.instructor-stats {
    display: flex;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.instructor-stats .stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.instructor-stats .stat i {
    color: var(--color-Primary3);
    font-size: 20px;
}

.instructor-stats .stat span {
    font-size: 13px;
    color: var(--color-gray);
    font-family: "font_medium";
    text-align: center;
}

/* Responsive Styles for Course Details */
@media (max-width: 991px) {
    .course-intro-video .responsive-video {
        min-height: 350px;
    }

    .course-sidebar {
        position: static;
        margin-top: 40px;
    }

    .overall-rating {
        flex-direction: column;
        gap: 25px;
    }

    .rating-score {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .course-intro-video .responsive-video {
        min-height: 250px;
    }

    .course-benefits,
    .locked-content-notice {
        padding: 25px;
    }

    .overall-rating {
        padding: 20px;
    }

    .rating-score h1 {
        font-size: 42px;
    }

    .review-item {
        padding: 20px;
    }

    .course-price {
        padding: 20px;
    }

    .price-tag .current-price {
        font-size: 36px;
    }

    .instructor-stats {
        flex-wrap: wrap;
    }
}

/* Course Rating Modal Styles */
.bd-rating-modal-lg .modal-content {
    border-radius: 20px;
    border: none;
    overflow: hidden;
}

.bd-rating-modal-lg .modal-header {
    border: none;
}

.bd-rating-modal-lg .modal-body {
    padding: 30px;
}

.course-rating-form .input-form {
    margin-bottom: 20px;
}

.course-rating-form .input-form label {
    display: block;
    font-size: 16px;
    font-family: "font_semibold";
    color: var(--color-Primary2);
    margin-bottom: 8px;
}

.course-rating-form .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    font-family: "font_medium";
    transition: all 0.3s ease;
}

.course-rating-form .form-control:focus {
    border-color: var(--color-Primary2);
    outline: none;
    box-shadow: 0 0 0 3px rgba(116, 56, 55, 0.1);
}

.course-rating-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Rating Stars Input */
.rating-stars-container {
    margin-bottom: 30px;
    text-align: center;
    padding: 30px;
    background-color: var(--color-Primary4);
    border-radius: 15px;
}

.rating-label {
    display: block;
    font-size: 18px;
    font-family: "font_semibold";
    color: var(--color-Primary2);
    margin-bottom: 20px;
}

.stars-rating-input {
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
    gap: 10px;
    margin-bottom: 15px;
}

.stars-rating-input input[type="radio"] {
    display: none;
}

.stars-rating-input .star {
    cursor: pointer;
    font-size: 45px;
    color: #ddd;
    transition: all 0.3s ease;
}

.stars-rating-input .star i {
    transition: all 0.3s ease;
}

/* Hover effect - all stars to the right of hovered star */
.stars-rating-input .star:hover,
.stars-rating-input .star:hover~.star {
    color: #FFA500;
    transform: scale(1.1);
}

/* Selected state - all stars to the right of selected star */
.stars-rating-input input[type="radio"]:checked~.star {
    color: #FFA500;
}

.rating-text {
    font-size: 18px;
    font-family: "font_semibold";
    color: var(--color-Primary2);
    min-height: 30px;
    margin-top: 10px;
}

/* Rating text messages */
.rating-text[data-rating="5"]::after {
    /* content: "ممتاز"; */
    color: #4CAF50;
}

.rating-text[data-rating="4"]::after {
    /* content: "جيد جداً"; */
    color: #8BC34A;
}

.rating-text[data-rating="3"]::after {
    /* content: "جيد"; */
    color: #FFC107;
}

.rating-text[data-rating="2"]::after {
    /* content: "مقبول"; */
    color: #FF9800;
}

.rating-text[data-rating="1"]::after {
    /* content: "ضعيف"; */
    color: #F44336;
}

.rating-text.rating-5 {
    color: #4CAF50;
}

.rating-text.rating-4 {
    color: #8BC34A;
}

.rating-text.rating-3 {
    color: #FFC107;
}

.rating-text.rating-2 {
    color: #FF9800;
}

.rating-text.rating-1 {
    color: #F44336;
}

.stars-rating-input label.star {
    cursor: pointer;
}

.stars-rating-input label.star i {
    pointer-events: none;
}

/* Responsive for Rating Modal */
@media (max-width: 768px) {
    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .add-review-btn {
        width: 100%;
        justify-content: center;
    }

    .stars-rating-input .star {
        font-size: 35px;
    }

    .rating-stars-container {
        padding: 20px;
    }
}

/* ==================== News Details Page Styles ==================== */

/* News Details Section */
.news-details-section {
    background-color: #f8f9fa;
}

/* Main News Content */
.news-details-content {
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

/* News Header */
.news-details-header {
    padding: 30px;
    border-bottom: 1px solid #eee;
}

.news-details-title {
    font-size: 32px;
    font-family: "font_semibold";
    color: var(--color-Primary2);
    line-height: 1.5;
    margin-bottom: 20px;
}

.news-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    font-size: 14px;
    color: #666;
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "font_medium";
}

.news-meta i {
    color: var(--color-Primary3);
    font-size: 16px;
}

/* News Main Image */
.news-details-image {
    width: 100%;
    height: 450px;
    overflow: hidden;
}

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

.news-details-image:hover img {
    transform: scale(1.05);
}

/* News Body Content */
.news-details-body {
    padding: 40px;
}

.news-details-body .lead-paragraph {
    font-size: 20px;
    font-family: "font_medium";
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
    padding: 25px;
    background-color: #f8f9fa;
    border-right: 4px solid var(--color-Primary3);
    border-radius: 10px;
}

.news-details-body h3 {
    font-size: 24px;
    font-family: "font_semibold";
    color: var(--color-Primary2);
    margin-top: 35px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.news-details-body h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-Primary3), transparent);
}

.news-details-body p {
    font-size: 18px;
    font-family: "font_main";

    color: #666;
    line-height: 2;
    margin-bottom: 20px;
    text-align: justify;
}

/* Quote Styling */
.news-quote {
    background: var(--color-Primary2);
    border-right: 5px solid var(--color-Primary3);
    padding: 30px;
    margin: 35px 0;
    border-radius: 15px;
    color: #fff;
    font-size: 20px;
    font-family: "font_medium";
    line-height: 1.8;
    position: relative;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.news-quote::before {
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 40px;
    color: rgba(255, 255, 255, 0.2);
    position: absolute;
    top: 20px;
    right: 20px;
}

.news-quote cite {
    display: block;
    margin-top: 15px;
    font-size: 16px;
    font-style: normal;
    opacity: 0.9;
    text-align: left;
}

/* Social Share */
.news-share {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #eee;
}

.news-share h4 {
    font-size: 20px;
    font-family: "font_semibold";
    color: var(--color-Primary2);
    margin-bottom: 20px;
}


.share-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.share-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.share-btn.facebook {
    background-color: #3b5998;
}

.share-btn.twitter {
    background-color: #1da1f2;
}

.share-btn.linkedin {
    background-color: #0077b5;
}

.share-btn.whatsapp {
    background-color: #25d366;
}

.share-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Sidebar */
.news-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background-color: #fff;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.widget-title {
    font-size: 24px;
    font-family: "font_semibold";
    color: var(--color-Primary2);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--color-Primary3);
    position: relative;
}

.widget-title::after {
    content: "";
    position: absolute;
    bottom: -3px;
    right: 0;
    width: 50px;
    height: 3px;
    background-color: var(--color-Primary2);
}

/* Related News */
.related-news-item {
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.related-news-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.related-news-item:hover {
    transform: translateX(-5px);
}

.related-news-img {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
}

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

.related-news-item:hover .related-news-img img {
    transform: scale(1.1);
}

.related-news-content {
    flex: 1;
}

.related-date {
    font-size: 12px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 8px;
}

.related-date i {
    color: var(--color-Primary3);
}

.related-news-content h4 {
    font-size: 16px;
    font-family: "font_semibold";
    line-height: 1.5;
    margin: 0;
}

.related-news-content h4 a {
    color: var(--color-Primary2);
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-news-content h4 a:hover {
    color: var(--color-Primary3);
}

/* Categories Widget */
.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-list li {
    margin-bottom: 15px;
}

.categories-list li:last-child {
    margin-bottom: 0;
}

.categories-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    background-color: #f8f9fa;
    border-radius: 10px;
    color: var(--color-Primary2);
    font-family: "font_medium";
    text-decoration: none;
    transition: all 0.3s ease;
}

.categories-list a:hover {
    background-color: var(--color-Primary3);
    color: #fff;
    transform: translateX(-5px);
}

.categories-list i {
    margin-left: 10px;
    color: var(--color-Primary3);
}

.categories-list a:hover i {
    color: #fff;
}

.categories-list span {
    background-color: #fff;
    color: var(--color-Primary2);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-family: "font_semibold";
}

/* Responsive Design */
@media (max-width: 991px) {
    .news-sidebar {
        position: static;
        margin-top: 30px;
    }

    .news-details-title {
        font-size: 26px;
    }

    .news-details-image {
        height: 350px;
    }

    .news-details-body {
        padding: 25px;
    }

    .news-details-body .lead-paragraph {
        font-size: 18px;
        padding: 20px;
    }

    .news-details-body h3 {
        font-size: 22px;
    }

    .news-details-body p {
        font-size: 16px;
    }

    .news-quote {
        font-size: 18px;
        padding: 25px;
    }
}

@media (max-width: 767px) {
    .news-details-header {
        padding: 20px;
    }

    .news-details-title {
        font-size: 22px;
    }

    .news-meta {
        gap: 15px;
        font-size: 12px;
    }

    .news-details-image {
        height: 250px;
    }

    .news-details-body {
        padding: 20px;
    }

    .news-details-body .lead-paragraph {
        font-size: 16px;
        padding: 15px;
    }

    .news-details-body h3 {
        font-size: 20px;
        margin-top: 25px;
    }

    .news-details-body p {
        font-size: 15px;
        line-height: 1.8;
    }

    .news-quote {
        font-size: 16px;
        padding: 20px;
        margin: 25px 0;
    }

    .news-quote::before {
        font-size: 30px;
    }

    .sidebar-widget {
        padding: 20px;
    }

    .widget-title {
        font-size: 20px;
    }

    .related-news-img {
        width: 80px;
        height: 80px;
    }

    .related-news-content h4 {
        font-size: 14px;
    }

    .share-buttons {
        justify-content: center;
    }
}




.info-contactus-page-item {
    width: 100%;
    padding: 28px;
    background: #fff;
    box-shadow: 0 0 6px #0000002e;
    border-radius: 20px;
}

.text-contactus-page h2 {
    font-size: 20px;
    font-family: "font_semibold";
    color: var(--color-Primary2);
    margin: 25px 0;
    margin-bottom: 10px;
}


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

.text-contactus-page p {
    font-size: 19px;
}

.icon-contactus-page {
    width: 60px;
    height: 68px;
}

.aosh-page {
    display: flex;
    min-height: 100vh;
}

.bg-aosh-page {
    width: 50%;
    z-index: 1;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.bg-aosh-page:hover::before {
    width: 75%;
    opacity: 0.7;
}

.bg-aosh-page:hover span {
    width: 60%;
    opacity: 0.7;
}

.bg-aosh-page span {
    content: "";
    position: absolute;
    width: 100px;
    z-index: 1;
    height: 25px;
    transition: all 0.6s linear;
    background-color: var(--color-Primary3);
    left: 0;
    bottom: 20px;
}

.bg-aosh-page::after {
    content: "";
    position: absolute;
    transition: all 0.3s linear;

    width: 100%;
    height: 100%;
    background-color: var(--color-Primary1);
    opacity: 0.9;
    top: 0;
    right: 0;
}

.bg-aosh-page::before {
    content: "";
    position: absolute;
    width: 170px;
    z-index: 1;
    transition: all 0.6s linear;
    transition-delay: 0.5s;
    height: 25px;
    background-color: var(--color-Primary2);
    left: 0;
    bottom: 50px;
}

.bg-aosh-page>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1s linear;
    transform: scale(1.5);
}

.form-aosh {
    width: 50%;
    height: 100vh;
    overflow: auto;
    padding: 40px 5%;
}

.logo-bg-aosh {
    position: absolute;
    right: 10px;
    width: 20%;
    height: 80%;
    z-index: 1;
    top: 10px;
}

.logo-bg-aosh img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.aosh-page.active .bg-aosh-page>img {
    transform: scale(1);
}

.main-form-aosh>h2 {
    font-size: 22px;
    margin: 30px 0 45px;
    color: var(--color-gray);
    font-family: "font_medium";
}

.logo-aosh {
    margin-bottom: 45px;
}

.forget-password a {
    color: var(--color-Primary2);
}

.btn-aosh .ctm-btn {
    height: 55px;
}

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

.links-aosh p {
    color: var(--color-gray);
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    margin-top: 25px;
}

.links-aosh p a {
    color: var(--color-text);
    font-family: "font_medium";
}

.links-aosh p a:hover {
    color: var(--color-Primary2);
}

.show-password {
    position: absolute;
    font-size: 24px;
    left: 25px;
    top: 54px;
    color: var(--color-gray);
    cursor: pointer;
}

.form-aosh {
    direction: ltr;
    scrollbar-width: thin;
    scrollbar-color: var(--thumbBG) var(--scrollbarBG);
}

.form-aosh::-webkit-scrollbar-track {
    background: var(--scrollbarBG);
}

.form-aosh::-webkit-scrollbar-thumb {
    right: 0;
    background-color: var(--thumbBG);

    border-radius: 0;
    border: 0 solid var(--scrollbarBG);
}

.form-aosh::-webkit-scrollbar {
    writing-mode: horizontal-tb;

    width: 11px;
}

.main-form-aosh {
    direction: rtl;
}

.input-form input {
    text-align: right;
}

.check-aosh input {
    width: 0;
    height: 0;
    position: absolute;
}

.check-aosh label {
    padding-right: 35px;
    position: relative;
    margin: 0;
    cursor: pointer;
    user-select: none;
    font-size: 16px;
    color: var(--color-Primary2);
}

.check-aosh label::after {
    content: "";
    position: absolute;
    width: 25px;
    top: 0;
    height: 25px;
    right: 0;
    border: 1px solid #e9e9e9;
}

.check-aosh input:checked~label::before {
    background-color: var(--color-Primary2);
    color: var(--color-Primary2);
    content: "";
    position: absolute;
    top: 0;
    width: 25px;
    height: 25px;
    display: flex;
    cursor: pointer;

    border: 1px solid var(--color-Primary2);
    background-image: url(../images/check.png);
    background-position: center;
    background-size: 60%;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    right: 0;
}

.otp-container {
    display: flex;
    align-items: center;
    margin-top: 50px;
    justify-content: center;
    gap: 5px;
}

.otp-container input {
    width: 60px;
    border: none;
    height: 60px;
    text-align: center;
    border: 1px solid #e9e9e9;
    background: #f9f9f9;
    color: var(--color-Primary2) !important;
}

.otp-container input:focus {
    border-color: var(--color-Primary2);
    color: var(--color-Primary2) !important;
}


.img-channel-item {
    height: 320px;
}
.newsletter-footer h2::after {
    right: auto;
    left: 0;
}
.top-bar .content-top-bar ul li a {
    direction: ltr;
}
.text-channel-item p {
    height: 53px;
    overflow: hidden;
}

