.reg {

    display: flex;
    align-content: flex-start;
    justify-content: space-around;
    padding: 100px;
        padding-top: 200px;
    padding-bottom: 100px;
}
#user {
    background-image: url(assets/images/backgrounds/page-header-bg.jpg);
}

#user form {
    background-color: #ffffff;
    padding: 30px;
    border: 2px solid #ddd;
    /* Thicker border */
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

#user form h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

#user form .form-group {
    margin-bottom: 15px;
    text-align: left;
}

#user form .control-label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

#user form .rtcl-required {
    color: #e63946;
}

#user form .form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
}

#user form .form-control:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

#user form .btn {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#user form .btn:hover {
    background-color: #0056b3;
}

#user form .rtcl-forgot-password {
    margin-top: 10px;
    font-size: 14px;
}

#user form .rtcl-forgot-password a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

#user form .rtcl-forgot-password a:hover {
    color: #0056b3;
}

#loginError {
    margin-top: 15px;
    font-size: 14px;
    color: red;
    text-align: center;
}


.page-header {
background-color: inherit;
    padding: 200px 0 10px;

}

.main-slider-two .item,
.services-five__img,
.portfolio-details__img {
    background-color: inherit;
}

.services-five__title a:hover,
.main-menu-two__btn:hover,
.main-slider-two__btn:hover,
.contact-info__single h3 a:hover,
.mobile-nav__content .main-menu__list>li>a>button.expanded, .mobile-nav__content .main-menu__list>li>ul>li>a>button.expanded, .mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button.expanded ,
.mobile-nav__contact li>i,
.team-one-sec__name a:hover{
    color: black;
}

.section-title__tagline,
.testimonial-two__name a:hover,
.services-two__title a:hover,
.why-choose-two__single-list li:hover h4 a {
    color: #e3000f;
}

.carousel-dot-style.owl-carousel .owl-dots .owl-dot{
 background-color: #e3000f;
}
.site-footer-two__top {

    padding: 100px 0 10px;
}
.service-details__need-help,
.vission-mission__icon,
.contact-page__input-box .nice-select .list{
    background-color: black;
}
.service-details__img img,
.team-one-sec__img img,
.portfolio-three__img img,
.portfolio-three__single:hover .portfolio-three__img img,
img.mfp-img,
.about-two__img img,
.why-choose-two__img img{
    filter: none;
}

.contact-page {
    padding: 0 0 60px;
}
.page-header__inner h2{
    font-size: 50px;
}
.services-five__title{
    font-size: 25px;
}
.services-five__text p{
    font-size: 20px;
}


@media (max-width: 768px) {
    
    .about-two__img {
    width: 300px !important;
}
    
    .reg {
        padding: 20px;
        display: flex;
        flex-direction: column;
            padding-top: 100px;
    padding-bottom: 100px;
    }
    .thm-btn{
        padding: 10px;
    }
    
    .about-two__img-2{
        display:none;
    }
}
.team-one-sec__img-wrapper {
    position: relative;
    overflow: hidden;
}

.team-one-sec__img {
    position: relative;
}

.team-one-sec__description {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent background */
    color: #fff; /* White text */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
    font-size: 14px;
}

.team-one-sec__img:hover .team-one-sec__description {
    opacity: 1;
    visibility: visible;
}
 .team-one-sec__img img{
         height: 300px;
    width: 300px;
    object-fit: cover;
 }
 .services-five__img,
 .services-five__img img{
         height: 300px;
    width: 100%;
    object-fit: cover;
 }
 .main-slider-two__title{
         font-size: 60px;
 }


/* Container for the entire PDF section */
.pdf-section {
    padding: 20px 0 90px;
    background-color: #f9f9f9;
    margin-bottom: 100px;
}

/* Heading for the PDF section */
.pdf-heading {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
}

/* Row container for PDF cards */
.pdf-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* Individual PDF card styling */
.pdf-card {
    width: 300px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pdf-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

/* PDF download link styling */
.pdf-download a {
    font-size: 16px;
    font-weight: bold;
    color: #007bff;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 10px;
}

.pdf-download a:hover {
    text-decoration: underline;
}

/* Icon before the PDF title */
.pdf-icon {
    font-size: 20px;
    color: #007bff;
    margin-right: 5px;
}

/* Description styling */
.pdf-description p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

.services-two__single {
        height: 275px;
}

.contact-info__single h3{
        font-size: 25px;
}
.contact-info__single {
        height: 275px;
}
.testimonial-two__img {
    width: 120px;
}
.about-two__img{
        width: 500px;
}
.service-details__img img{
    height: 400px;
    object-fit: contain;
}

.owl-carousel .owl-item img{
    height: 100px;
        object-fit: fill;
}
.page-header__bg {
         background-image: none !important; 
    background: black;
}