* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

/* img {
    max-width: 100%;
    display: block;
} */

/* .container {
    width: 95%;
    margin: auto;
} */



.top-header {
    background: #550609;
    color: #fff;
    padding: 10px 0;
    font-size: 15px;
}

.top-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.top-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-right {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.top-right a {
    color: #fff;
    font-weight: 400;
    transition: 0.3s;
    
}

.top-right a:hover {
    color: #ddd;
}



.logo-section {
    background: #ffffff;
    /* padding: 18px 0; */
    padding: 8px 0;
}

.logo-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
}

.logo img {
    width: 100px;
}

.banner img {
    width: 100%;
    max-width: 800px;
    height: auto;
}

.social-box {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #550609;
    font-weight: 700;
    white-space: nowrap;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #550609;
    font-size: 18px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #550609;
    transform: translateY(-2px);
}


/* menu */
.navbar {
    background: #550609;
    border-top: 2px solid #550609;
    position: sticky;
    top: 0;
    z-index: 9999;

}

.nav-flex {
    position: relative;
}

.menu {
    display: flex;
    justify-content: center;
    align-items: center ;
    gap: 38px;
}

.menu li a {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    padding: 5px 0;
    display: block;
    transition: 0.3s;
}

.menu li a:hover {
    color: #fb464c;
}



.toggle-btn {
    display: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    padding: 18px 0;
}



.menu-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}



.mobile-close {
    display: none;
}


/* breaking-news */

.breaking-news {
    display: flex;
    align-items: center;
    background: #000000;
    overflow: hidden;
    width: 100%;
}

/* TITLE */

.breaking-title {
    background: #d90000;
    color: #ffffff;
    padding: 14px 30px;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
    position: relative;
    z-index: 2;
    letter-spacing: 0.5px;
}

/* CONTENT */

.breaking-content {
    width: 100%;
    overflow: hidden;
    padding-left: 25px;
}

/* MARQUEE */

.breaking-content marquee {
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    padding-top: 12px;
}

/* NEWS ITEM */

.news-item {
    margin-right: 70px;
    display: inline-flex;
    align-items: center;
}

/* DOT */

.dot {
    color: #d90000;
    font-size: 18px;
    margin-right: 12px;
}




@media(max-width:1200px) {

    .menu {
        gap: 24px;
    }

    .menu li a {
        font-size: 15px;
    }

}



@media(max-width:991px) {

    

    .logo-flex {
        flex-direction: column;
        text-align: center;
    }

    .social-box {
        justify-content: center;
    }

    .nav-flex {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    .toggle-btn {
        display: block;
        padding: 0px !important;
    }

    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: #032d68;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 0;
        padding-top: 80px;
        transition: 0.4s ease;
        z-index: 9999;
        overflow-y: auto;
    }

    .menu.active {
        right: 0;
    }

    .menu li {
        width: 100%;
    }

    .menu li a {
        width: 100%;
        padding: 18px 28px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    /* CLOSE BUTTON */

    .mobile-close {
        display: block;
        position: absolute;
        top: 18px;
        right: 22px;
        color: #fff;
        font-size: 30px;
        cursor: pointer;
    }

    .breaking-title {
        font-size: 18px;
        padding: 14px 18px;
    }

    .breaking-content marquee {
        font-size: 18px;
    }

}


@media(max-width:768px){
    .logo-flex{
        gap: 10px;
    }

    .banner{
        display: none;
    }
}

@media(max-width:576px) {

    .top-flex {
        flex-direction: column;
        text-align: center;
    }

    .top-left {
        justify-content: center;
    }

    .top-right {
        justify-content: center;
    }

    .logo img {
        width: 100px;
    }

    .menu {
        width: 280px;
    }

    .breaking-title {
        font-size: 16px;
        padding: 12px 15px;
    }

    .breaking-content marquee {
        font-size: 16px;
    }

    /* .top-header{
        display: none;
    } */

    .top-left{
        display: none;
    }

}


@media(max-width:375px){
    .top-right a{
        font-size: 12px;
    }
}



/* header end */


/* footer start */


.footer-section {
    padding-bottom: 15px;
    background-color: #ffffff;
}


/* .footer-section {
    position: relative;
    padding-bottom: 15px;
    background: url('../');
    background-repeat: no-repeat;
    background-position:center;
    background-size: cover;
}

.footer-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(36, 15, 126, 0.85);
}

.footer-section > * {
    position: relative;
    z-index: 2;
} */

.footer-bg {

    padding-top: 50px;
    /* padding-bottom: 10px; */
    border-radius: 15px;
}

/* .footer-row{
    border-bottom: 1px solid #ffffff;
} */



.footer-logo img {
    width: 100px;
}

.footer-about p {
    margin-top: 15px;
    color: #000000;
    font-size: 15px;
    font-weight: 400;
}

.social-icon {
    padding-top: 5px;
}

.social-icon a {
    font-size: 20px;
    color: #000000;
    padding: 0px 25px 0px 0px;

    transition: all 0.4s ease-in-out;
    opacity: 1;
    display: inline-block;
}

.social-icon a:hover {

    /* opacity: 0.6; */
    transform: translateY(-5px);
    color: #ed212c;
}


.footer-menu {
    display: flex;
    justify-content: center;
}

.footer-menu ul {
    padding: 0px;
}

.footer-menu li {
    list-style: none;
    margin: 10px;
    margin-left: 0px;

}

.footer-menu h2 {
    color: #000000;

    font-weight: 500;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 0%;
    padding-bottom: 10px;

}

.footer-menu a {
    color: #000000;
    font-weight: 400;
    font-size: 15px;
    line-height: 100%;
    letter-spacing: 0%;

}

.footer-menu a:hover {
    color: #ed212c;
}

.copy-right {
    display: flex;

    justify-content: center;
    padding-top: 25px;
    /* padding: 30px 20px 0px 20px; */
}

.copy-right p {

    font-weight: 400;
    font-size: 15px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #000000;

}

.copy-right a {
    color: #000000;
}


@media(max-width:768px) {
    .footer-menu {
        padding: 20px;
        display: flex;
        justify-content: left;
    }

    .footer-content {
        padding: 20px;
    }
}

@media(max-width:432px) {
    .footer-menu h2 {
        font-size: 18px;
    }

    .footer-menu li {
        margin: 5px;
        margin-left: 0px;
    }

    .footer-menu a {
        font-size: 15px;
    }

    .copy-right {
        display: flex;
        flex-direction: column;
    }

    .copy-right p {
        font-size: 13px;
    }

    .footer-section {
        padding-bottom: 0px;
    }
}

/* footer end */





/* home news card */

.home-news-section {
    padding: 60px 0;
    background: #f3f3f3;
}

/* SECTION TITLE */

.section-title {
    margin-bottom: 22px;
    border-left: 5px solid #ff1e2d;
    padding-left: 14px;
}

.section-title h3 {
    margin: 0;
    color: #550609;
    font-size: 25px;
    font-weight: 500;
}

/* POSTER */

.side-poster {
    margin-bottom: 25px;
}

.side-poster img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

/* SMALL CARD */

.small-news-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.small-news-card:hover {
    transform: translateY(-5px);
}

.small-news-image img {
    width: 110px;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
}

.small-news-content h4 {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
    font-weight: 500;
}

.small-news-content h4 a {
    color: #000000;
}

.small-news-content span {
    font-size: 13px;
    color: #777777;
}

.small-news-content span i {
    color: #ff1e2d;
    margin-right: 5px;
}

/* CENTER */

.main-news-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.05);
}

.main-news-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.main-news-content {
    padding-top: 22px;
}

.main-news-content h2 {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 15px;
    font-weight: 600;
}

.main-news-content h2 a {
    color: #000000;
}

.main-news-content span {
    color: #777777;
    font-size: 15px;
    display: inline-block;
    margin-bottom: 16px;
}

.main-news-content span i {
    color: #ff1e2d;
    margin-right: 6px;
}

.main-news-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #444444;
}

/* LATEST NEWS CARD */

.latest-news-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    height: 100%;
}

.latest-news-card:hover {
    transform: translateY(-5px);
}

.latest-news-image img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.latest-news-content {
    padding: 15px;
}

.latest-news-content h4 {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 12px;
    font-weight: 500;
}

.latest-news-content h4 a {
    color: #000000;
}

.latest-news-content span {
    font-size: 13px;
    color: #777777;
}

.latest-news-content span i {
    color: #ff1e2d;
    margin-right: 5px;
}



/* RESPONSIVE */

@media(max-width:991px) {

    .col-lg-3,
    .col-lg-6 {
        margin-bottom: 30px;
    }

    .main-news-image img {
        height: 400px;
    }

    .main-news-content h2 {
        font-size: 30px;
    }

}

@media(max-width:767px) {

    .home-news-section {
        padding: 40px 0;
    }

    .section-title h3 {
        font-size: 22px;
    }

    .side-poster img {
        height: 220px;
    }

    .small-news-card {
        gap: 10px;
    }

    .small-news-image img {
        width: 90px;
        height: 75px;
    }

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

    .small-news-content span {
        font-size: 12px;
    }

    .main-news-box {
        padding: 12px;
    }

    .main-news-image img {
        height: 250px;
    }

    .main-news-content h2 {
        font-size: 15px;
    }

    .main-news-content p {
        font-size: 15px;
    }

    .latest-news-image img {
        height: 150px;
    }

    .latest-news-content {
        padding: 12px;
    }

    .latest-news-content h4 {
        font-size: 15px;
    }

}

/* home news section end */



/* youtube video section start */


.trending-video-section {
    padding: 30px 0;
    background: #ffffff;
}

/* HEADING */

.video-heading {
    margin-bottom: 35px;
    border-left: 6px solid #550609;
    padding-left: 15px;
}

.video-heading span {
    color: #550609;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 6px;
}

.video-heading h2 {
    color: #550609;
    font-size: 25px;
    font-weight: 500;
    margin: 0;
}

/* CARD */

.video-card {
    background: #111111;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    transition: 0.4s;
    border-bottom: 4px solid #550609;
}

.video-card:hover {
    transform: translateY(-8px);
}

/* VIDEO */

.video-thumb iframe {
    width: 100%;
    height: 220px;
    border: 0;
}

/* CONTENT */

.video-content {
    padding: 18px;
}

/* DATE */

.video-date {
    color: #c7c7c7;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* TITLE */

.video-content h3 {
    margin: 0;
    line-height: 1.5;
    font-size: 15px;
    font-weight: 500;
}

.video-content h3 a {
    color: #ffffff;
    transition: 0.3s;
    text-decoration: none;
}

.video-content h3 a:hover {
    color: #ffb3b3;
}

/* =========================
    TABLET VIEW
========================= */

@media(max-width:991px) {

    .video-thumb iframe {
        height: 180px;
    }

    .video-heading h2 {
        font-size: 28px;
    }

}

/* =========================
    MOBILE VIEW
========================= */

@media(max-width:576px) {

    .trending-video-section {
        padding: 50px 0;
    }

    .video-heading {
        margin-bottom: 25px;
    }

    .video-heading h2 {
        font-size: 24px;
    }

    .video-thumb iframe {
        height: 130px;
    }

    .video-content {
        padding: 12px;
    }

    .video-date {
        font-size: 10px;
        margin-bottom: 8px;
        gap: 5px;
    }

    .video-content h3 {
        font-size: 13px;
        line-height: 1.4;
    }

}
/* youtube video section end */




/*  common news card this all pages card same */


.common-news-section {
    padding: 70px 0;
    background: #ffffff;
}

.common-news-heading {
    margin-bottom: 35px;
    border-left: 6px solid #550609;
    padding-left: 15px;
}

.common-news-heading h2 {
    color: #000000;
    font-size: 25px;
    font-weight: 500;
    margin: 0;
}

/* CARD */

.common-news-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    transition: 0.4s;
    border-bottom: 4px solid #550609;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
}

.common-news-card:hover {
    transform: translateY(-8px);
}

/* IMAGE */

.common-news-image {
    overflow: hidden;
}

.common-news-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.5s;
}

.common-news-card:hover .common-news-image img {
    transform: scale(1.08);
}

/* CONTENT */

.common-news-content {
    padding: 18px;
}

/* DATE */

.common-news-date {
    color: #550609;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.common-news-date i {
    color: #000000;
}

.common-news-content h3 {
    margin: 0;
    line-height: 1.5;
    font-size: 15px;
    font-weight: 500;
}

.common-news-content h3 a {
    color: #000000;
    transition: 0.3s;
}

.common-news-content h3 a:hover {
    color: #550609;
}

@media(max-width:991px) {

    .common-news-image img {
        height: 180px;
    }

    .common-news-heading h2 {
        font-size: 28px;
    }

}

@media(max-width:576px) {

    .common-news-section {
        padding: 50px 0;
    }

    .common-news-heading {
        margin-bottom: 25px;
    }

    .common-news-heading h2 {
        font-size: 24px;
    }

    .common-news-image img {
        height: 130px;
    }

    .common-news-content {
        padding: 12px;
    }

    .common-news-date {
        font-size: 8px;
        margin-bottom: 8px;
        gap: 5px;
    }

    .common-news-content h3 {
        font-size: 13px;
        line-height: 1.4;
    }

}


/*  common news card this all pages card same end */





/* news details page start */


.news-details-section {
    padding: 60px 0;
    background: #f4f4f4;
}



.news-details-main {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    padding: 25px;
}



.news-details-title {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 600;
    color: #000000;
    margin-bottom: 25px;
}



.news-details-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    margin-bottom: 25px;
    border-bottom: 1px solid #dddddd;
}

.news-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.news-author img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.news-author h5 {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
    color: #000000;
}

.news-author span {
    color: #666666;
    font-size: 14px;
}

.news-share {
    display: flex;
    align-items: center;
    gap: 18px;
}

.news-share a {
    color: #444444;
    font-size: 22px;
    transition: 0.3s;
}

.news-share a:hover {
    color: #d90000;
}



.news-details-image img {
    width: 100%;
    border-radius: 10px;
    height: 400px;
    object-fit: cover;
}



.news-details-content {
    padding-top: 30px;
}

.news-details-content p {
    font-size: 15px;
    line-height: 1.9;
    color: #000000;
    margin-bottom: 20px;
    font-weight: 600;
}



.latest-news-sidebar {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
}

.sidebar-title {
    margin-bottom: 25px;
    border-left: 5px solid #d90000;
    padding-left: 12px;
}

.sidebar-title h3 {
    margin: 0;
    font-size: 25px;
    font-weight: 500;
    color: #550609;
}

.sidebar-news-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}

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

.sidebar-news-image img {
    width: 115px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
}

.sidebar-news-content h4 {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 500;
}

.sidebar-news-content h4 a {
    color: #000000;
    transition: 0.3s;
}

.sidebar-news-content h4 a:hover {
    color: #d90000;
}

.detail-add-section img {
    width: 100%;
}


@media(max-width:991px) {

    .news-details-main {
        margin-bottom: 30px;
    }

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

    .news-details-image img {
        height: 450px;
    }

}

@media(max-width:767px) {

    .news-details-section {
        padding: 40px 0;
    }

    .news-details-main {
        padding: 18px;
    }

    .news-details-title {
        font-size: 24px;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .news-details-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .news-author img {
        width: 45px;
        height: 45px;
    }

    .news-author h5 {
        font-size: 16px;
    }

    .news-author span {
        font-size: 12px;
    }

    .news-share {
        gap: 14px;
    }

    .news-share a {
        font-size: 18px;
    }

    .news-details-image img {
        height: 280px;
    }

    .news-details-content p {
        font-size: 16px;
        line-height: 1.8;
    }

    .sidebar-title h3 {
        font-size: 24px;
    }

    .sidebar-news-item {
        gap: 10px;
    }

    .sidebar-news-image img {
        width: 95px;
        height: 70px;
    }

    .sidebar-news-content h4 {
        font-size: 14px;
        line-height: 1.4;
    }

}


@media (max-width:432px) {
    .news-details-title {
        font-size: 15px;
    }

    .news-details-content p{
        font-size: 15px;
    }
}

/* news detail page end */





/* contact pages start */


.contact-section {
    padding: 50px 0;
    background: #ffffff;
}

.contact-row {
    display: flex;
    align-items: stretch;
}

/* LEFT */

.contact-info-box {
    background: #550609;
    padding: 45px 35px;
    border-radius: 15px;
    height: 100%;
}

/* HEADING */

.contact-heading {
    margin-bottom: 35px;
}

.contact-heading span {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 10px;
}

.contact-heading h2 {
    color: #ffffff;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-heading p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

/* CONTACT ITEM */

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 30px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

/* ICON */

.contact-icon {
    width: 60px;
    height: 60px;
    background: #ffffff;
    color: #550609;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.contact-text h4 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-text a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.7;
    transition: 0.3s;
    word-break: break-word;
}

.contact-text a:hover {
    color: #ffffff;
}

/* MAP */

.contact-map {
    height: 100%;
    min-height: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 520px;
    border: 0;
    display: block;
}

/* RESPONSIVE */

@media(max-width:991px) {

    .contact-row {
        flex-direction: column;
    }

    .contact-map {
        margin-top: 25px;
    }

    .contact-map iframe {
        min-height: 400px;
    }

}

@media(max-width:767px) {

    .contact-section {
        padding: 50px 0;
    }

    .contact-info-box {
        padding: 30px 20px;
    }

    .contact-heading h2 {
        font-size: 26px;
    }

    .contact-heading p {
        font-size: 14px;
    }

    .contact-item {
        gap: 14px;
        margin-bottom: 22px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .contact-text h4 {
        font-size: 17px;
    }

    .contact-text a {
        font-size: 14px;
    }

    .contact-map iframe {
        min-height: 300px;
    }

}

/* contact pages end */



/* register page start */

.register-section {
    min-height: 100vh;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 15px;
}

.register-form-box {
    background: #ffffff;
    padding: 45px 35px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* HEADING */

.register-heading {
    text-align: center;
    margin-bottom: 30px;
}

.register-heading h2 {
    color: #550609;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.register-heading p {
    color: #666666;
    font-size: 15px;
    margin: 0;
}

/* FORM */

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    height: 55px;
    border: 1px solid #dddddd;
    border-radius: 10px;
    padding: 0 18px;
    font-size: 15px;
    outline: none;
    transition: 0.3s;
    background: #ffffff;
}

.form-group input:focus {
    border-color: #550609;
    box-shadow: 0 0 0 3px rgba(85, 6, 9, 0.08);
}

/* BUTTON */

.register-btn {
    width: 100%;
    height: 55px;
    border: none;
    border-radius: 10px;
    background: #550609;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
}

.register-btn:hover {
    background: #000000;
}

/* LOGIN TEXT */

.register-login-text {
    text-align: center;
    margin-top: 22px;
    font-size: 15px;
    color: #555555;
}

.register-login-text a {
    color: #550609;
    font-weight: 600;
    text-decoration: none;
}

.register-login-text a:hover {
    color: #000000;
}

/* RESPONSIVE */

@media(max-width:767px) {

    .register-section {
        padding: 40px 15px;
    }

    .register-form-box {
        padding: 30px 20px;
    }

    .register-heading h2 {
        font-size: 28px;
    }

    .form-group input {
        height: 50px;
        font-size: 14px;
    }

    .register-btn {
        height: 50px;
        font-size: 15px;
    }

}

/* register page end */


/* login page start */


.login-section {
    min-height: 100vh;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 15px;
}

.login-form-box {
    background: #ffffff;
    padding: 45px 35px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* HEADING */

.login-heading {
    text-align: center;
    margin-bottom: 30px;
}

.login-heading h2 {
    color: #550609;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.login-heading p {
    color: #666666;
    font-size: 15px;
    margin: 0;
}

/* FORM */

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    height: 55px;
    border: 1px solid #dddddd;
    border-radius: 10px;
    padding: 0 18px;
    font-size: 15px;
    outline: none;
    transition: 0.3s;
    background: #ffffff;
}

.form-group input:focus {
    border-color: #550609;
    box-shadow: 0 0 0 3px rgba(85, 6, 9, 0.08);
}

/* OPTIONS */

.login-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
}

.remember-me input {
    width: 16px;
    height: 16px;
    accent-color: #550609;
}

.remember-me label {
    margin: 0;
    font-size: 14px;
    color: #555555;
}

.forgot-password {
    color: #550609;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.forgot-password:hover {
    color: #000000;
}

/* BUTTON */

.login-btn {
    width: 100%;
    height: 55px;
    border: none;
    border-radius: 10px;
    background: #550609;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
}

.login-btn:hover {
    background: #000000;
}

/* REGISTER */

.register-text {
    text-align: center;
    margin-top: 22px;
    font-size: 15px;
    color: #555555;
}

.register-text a {
    color: #550609;
    font-weight: 600;
    text-decoration: none;
}

.register-text a:hover {
    color: #000000;
}

/* RESPONSIVE */

@media(max-width:767px) {

    .login-section {
        padding: 40px 15px;
    }

    .login-form-box {
        padding: 30px 20px;
    }

    .login-heading h2 {
        font-size: 28px;
    }

    .login-heading p {
        font-size: 14px;
    }

    .form-group input {
        height: 50px;
        font-size: 14px;
    }

    .login-btn {
        height: 50px;
        font-size: 15px;
    }

    .login-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

}

/* login page end */



/* privacy policy page */

.privacy-policy-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.privacy-policy-box {
    background: #ffffff;
    padding: 50px 45px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

/* TITLE */

.privacy-policy-title {
    margin-bottom: 40px;
    text-align: center;
}

.privacy-policy-title h1 {
    color: #550609;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.privacy-policy-title p {
    color: #777777;
    font-size: 15px;
    margin: 0;
}

/* CONTENT */

.privacy-policy-content h3 {
    color: #000000;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
    margin-top: 35px;
}

.privacy-policy-content h3:first-child {
    margin-top: 0;
}

.privacy-policy-content p {
    color: #555555;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 0;
}

/* RESPONSIVE */

@media(max-width:991px) {

    .privacy-policy-title h1 {
        font-size: 34px;
    }

    .privacy-policy-content h3 {
        font-size: 22px;
    }

}

@media(max-width:767px) {

    .privacy-policy-section {
        padding: 50px 0;
    }

    .privacy-policy-box {
        padding: 30px 20px;
    }

    .privacy-policy-title {
        margin-bottom: 30px;
    }

    .privacy-policy-title h1 {
        font-size: 28px;
    }

    .privacy-policy-title p {
        font-size: 14px;
    }

    .privacy-policy-content h3 {
        font-size: 20px;
        margin-top: 28px;
    }

    .privacy-policy-content p {
        font-size: 15px;
        line-height: 1.8;
    }

}

/* privacy policy page end */