/* Responsive Header Styles */

/* Base styles for the responsive header */


.banner input.form-control.location_search {
    position: relative;
    z-index: 1;
}

.banner button.btn.btn-primary {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3; /* input se upar */
}
.responsive-header {
    position: relative;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    margin-bottom: 0;
}

/* Add a clearfix after the header to ensure proper spacing */
.responsive-header::after {
    content: "";
    display: table;
    clear: both;
}

.responsive-header .navbar {
    padding: 15px 0;
}

/* Logo styles */
.responsive-header .navbar-brand {
    padding: 0;
}

.responsive-header .header-logo {
    height: 50px;
    width: auto;
}

/* Navigation link styles */
.responsive-header .navbar-nav .nav-link {
    padding: 10px 15px;
    font-weight: 600;
    font-size: 16px;
    color: #0c2d52;
    transition: all 0.3s ease;
    border-radius: 5px;
    margin: 0 5px;
}

.responsive-header .navbar-nav .nav-link.active,
.responsive-header .navbar-nav .nav-link:hover {
    background: rgba(196, 0, 15, 1);
    color: white !important;
}

/* Authentication button styles */
.responsive-header .auth-links .nav-link.btn {
    font-weight: 400;
    font-family: 'Nexa', sans-serif;
    font-size: 14px;
    color: white;
    background: rgba(196, 0, 15, 1);
    border-radius: 5px;
    padding: 8px 15px;
    margin-left: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.responsive-header .auth-links .nav-link.btn:hover {
    background: rgba(160, 0, 12, 1);
    color: white !important;
}

.responsive-header .headerbtnicon {
    height: 16px;
    width: auto;
}

/* Mobile menu toggle button */
.responsive-header .navbar-toggler {
    border: none;
    padding: 5px;
}

.responsive-header .navbar-toggler:focus {
    box-shadow: none;
}

.responsive-header .navbar-toggler-icon {
    width: 24px;
    height: 24px;
}

/* Mobile menu styles */
@media (max-width: 991.98px) {
    .responsive-header .navbar-collapse {
        background: #0c2d52;
        border-radius: 10px;
        margin-top: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        padding: 15px;
    }
    
    .responsive-header .navbar-nav {
        padding-left: 0;
        margin-top: 15px;
    }
    
    .responsive-header .navbar-nav .nav-item {
        padding: 5px 0;
    }
    
    .responsive-header .navbar-nav .nav-link {
        padding: 12px 15px;
        font-size: 18px;
        margin: 0;
        border-radius: 5px;
    }
    
    .responsive-header .auth-links {
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid #eee;
    }
    
    .responsive-header .auth-links .nav-link.btn {
        margin-left: 0;
        justify-content: center;
    }
}

/* Tablet styles */
@media (min-width: 768px) and (max-width: 991.98px) {
    .responsive-header .navbar-nav .nav-link {
        font-size: 16px;
        padding: 10px 12px;
        color:white;
    }
    
    
    .responsive-header .auth-links .nav-link.btn {
        font-size: 13px;
        padding: 6px 12px;
    }
}

/* Desktop styles */
@media (min-width: 992px) {
    .responsive-header .navbar {
        padding: 15px 0;
    }
    
    .responsive-header .navbar-nav {
        padding-left: 50px;
        align-items: center;
    }
    
    .responsive-header .navbar-nav .nav-link {
        padding: 8px 15px;
        font-size: 16px;
    }
    
    .responsive-header .auth-links {
        display: flex;
        align-items: center;
    }
}

/* Large desktop styles */
@media (min-width: 1200px) {
    .responsive-header .container-fluid {
        padding: 0 50px;
    }
    
    .responsive-header .navbar-nav {
        padding-left: 100px;
    }
    
    .responsive-header .navbar-nav .nav-link {
        padding: 8px 20px;
        font-size: 18px;
        color: #0c2d52;
    }
}

/* Extra small devices (portrait phones) */
@media (max-width: 575.98px) {
    .responsive-header .navbar-brand {
        padding: 0;
    }
    
    .responsive-header .header-logo {
        height: 40px;
    }
    
    .responsive-header .navbar-toggler {
        padding: 2px;
    }
    
    .responsive-header .navbar-collapse {
        margin-top: 10px;
        padding: 10px;
    }
    
    .responsive-header .auth-links .nav-link.btn {
        font-size: 14px;
        padding: 10px 15px;
    }

    .responsive-header .navbar-nav .nav-link {
        color: white;
    }
}

/* Ensure the header is fixed on top for mobile */
@media (max-width: 767.98px) {
    .responsive-header {
        position: absolute;
        top: 0;
    }
}

/* Responsive Banner Section Styles */

/* Base styles for the banner section */
.banner {
    padding: 10px 0 70px 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.boxbanner {
    display: block;
    padding: 150px 0 80px 20px;
}

.banner h1 {
    font-weight: 600;
    font-size: 36px;
    color: #c4000f;
    font-family: "Volkhov", serif;
    margin-bottom: 20px;
}

.banner p {
    font-weight: 400;
    font-size: 18px;
    color: rgba(226, 226, 226, 1);
    font-family: 'Nexa', sans-serif;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Search form styles */
.banner .container.mt-5 {
    margin-top: 2rem !important;
}

.banner .input-group {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 20px;
    position: relative;
}

.banner input.form-control.location_search {
    background: white;
    border: none;
    opacity: 0.9;
    font-weight: 400;
    font-family: 'Nexa', sans-serif;
    font-size: 16px;
    color: rgba(91, 91, 91, 1);
    padding: 15px 20px 15px 60px;
    border-radius: 5px;
}

.banner span.input-group-text {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    padding: 15px 16px;
    border: 0;
    border-radius: 5px 0 0 5px;
    background: #adaea4;
    z-index: 2;
}

.banner button.btn.btn-primary {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: rgba(196, 0, 15, 1);
    border-radius: 5px !important;
    font-weight: 400;
    font-family: 'Nexa', sans-serif;
    font-size: 16px;
    padding: 8px 20px;
    z-index: 2;
}

.banner .container p {
    text-align: center;
    width: 100%;
    padding: 10px;
    font-size: 16px;
    color: rgba(226, 226, 226, 1);
}

/* Mobile styles */
@media (max-width: 767.98px) {
    .boxbanner {
        padding: 100px 0 50px 15px;
        text-align: center;
    }
    
    .banner h1 {
        font-size: 28px;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .banner p {
        font-size: 16px;
        width: 100%;
        padding-top: 0;
        margin-bottom: 20px;
    }
    
    .banner .container.mt-5 {
        margin-top: 1.5rem !important;
        padding: 0 15px;
    }
    
    .banner .input-group {
        max-width: 100%;
        margin: 0 auto 15px;
    }
    
    .banner input.form-control.location_search {
        font-size: 14px;
        padding: 12px 15px 12px 50px;
    }
    
    .banner span.input-group-text {
        padding: 12px 11px;
    }
    
    .banner button.btn.btn-primary {
        font-size: 14px;
        padding: 6px 15px;
        right: 5px;
    }
    
    .banner .container p {
        padding: 10px 0;
        font-size: 14px;
    }
}

/* Tablet styles */
@media (min-width: 768px) and (max-width: 991.98px) {
    .boxbanner {
        padding: 120px 0 60px 20px;
    }
    
    .banner h1 {
        font-size: 32px;
        width: 100%;
    }
    
    .banner p {
        font-size: 17px;
        width: 100%;
    }
    
    .banner input.form-control.location_search {
        font-size: 17px;
        padding: 13px 20px 13px 55px;
    }
    
    .banner button.btn.btn-primary {
        font-size: 17px;
        padding: 7px 18px;
    }
    
    .banner .container p {
        font-size: 15px;
        padding: 10px 5%;
    }
}

/* Desktop styles */
@media (min-width: 992px) {
    .boxbanner {
        padding: 180px 0 80px 20px;
    }
    
    .banner h1 {
        font-size: 40px;
        width: 46%;
    }
    
    .banner p {
        font-size: 19px;
        width: 42%;
        padding-top: 10px;
    }
    
    .banner .input-group {
        width: 50%;
    }
    
    .banner input.form-control.location_search {
        font-size: 20px;
        padding: 15px 20px 15px 60px;
    }
    
    .banner button.btn.btn-primary {
        font-size: 18px;
        padding: 10px 22px;
        right: 30px;
        top: 14px;
        transform: none;
    }
    
    .banner .container p {
        padding: 10px 20%;
        font-size: 18px;
    }
}

/* Large desktop styles */
@media (min-width: 1200px) {
    .boxbanner {
        padding: 230px 0 100px 20px;
    }
    
    .banner h1 {
        font-size: 45px;
    }
    
    .banner p {
        font-size: 20px;
    }
}

/* Responsive Section 2 (About Us) Styles */
.sec2 h1 {
    font-weight: 600;
    font-size: 36px;
    color: rgba(226, 226, 226, 1);
    font-family: "Volkhov", serif;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.sec2 p {
    font-weight: 400;
    font-size: 16px;
    color: #DFDFDF;
    font-family: 'Nexa', sans-serif;
    line-height: 1.6;
    margin-bottom: 25px;
}

section.sec2 {
    padding: 30px 0;
    background-color: #002C54;
}

.sec2 a {
    background: rgba(196, 0, 15, 1);
    border-radius: 5px !important;
    font-weight: 700;
    font-family: 'Nexa', sans-serif;
    font-size: 16px;
    padding: 10px 22px;
    text-decoration: none;
    color: white;
    display: inline-block;
    transition: all 0.3s ease;
}

.sec2 a:hover {
    background: rgba(160, 0, 12, 1);
    color: white;
    text-decoration: none;
}

img.sec2image {
    border-radius: 5px;
    width: 100%;
    height: auto;
}

.secbox2 {
    padding: 20px 0;
}

/* Mobile styles for sec2 */
@media (max-width: 767.98px) {
    .sec2 h1 {
        font-size: 28px;
        text-align: center;
    }
    
    .sec2 p {
        font-size: 14px;
        text-align: center;
    }
    
    section.sec2 {
        padding: 20px 0;
    }
    
    .sec2 a {
        font-size: 14px;
        padding: 8px 16px;
        margin: 0 auto;
        display: table;
    }
    
    img.sec2image {
        margin-bottom: 20px;
    }
    
    .secbox2 {
        padding: 0 15px;
        text-align: center;
    }
}

/* Tablet styles for sec2 */
@media (min-width: 768px) and (max-width: 991.98px) {
    .sec2 h1 {
        font-size: 32px;
    }
    
    .sec2 p {
        font-size: 15px;
    }
    
    .sec2 a {
        font-size: 15px;
        padding: 8px 20px;
    }
    
    img.sec2image {
        height: 300px;
        object-fit: cover;
    }
}

/* Desktop styles for sec2 */
@media (min-width: 992px) {
    .sec2 h1 {
        font-size: 40px;
    }
    
    .sec2 p {
        font-size: 16px;
    }
    
    section.sec2 {
        padding: 40px 0;
    }
    
    .sec2 a {
        font-size: 18px;
        padding: 10px 22px;
    }
    
    img.sec2image {
        height: 400px;
        object-fit: cover;
    }
    
    .secbox2 {
        padding: 20px 10px;
    }
}

/* Large desktop styles for sec2 */
@media (min-width: 1200px) {
    .sec2 h1 {
        font-size: 45px;
    }
    
    img.sec2image {
        height: 430px;
    }
}

/* Responsive Section 3 (How It Works) Styles */
.sec3 h1 {
    font-weight: 600;
    font-size: 36px;
    color: rgba(0, 44, 84, 1);
    font-family: "Volkhov", serif;
    text-transform: capitalize;
    text-align: center;
    padding: 30px 0;
}

section.sec3 .heading1 h2 {
    font-weight: 600;
    font-size: 22px;
    color: rgb(255, 255, 255);
    font-family: "Volkhov", serif;
    text-transform: capitalize;
    text-align: center;
    margin: 0;
    padding: 15px;
}

section.sec3 .paragraph1 p {
    font-size: 16px;
    color: #5B5B5B;
    font-family: 'Nexa', sans-serif;
    font-weight: 400;
    padding: 15px;
    text-align: center;
    line-height: 1.6;
}

.sec3 .paragraph1 {
    background: rgba(245, 245, 245, 1);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    text-align: center;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

section.sec3 {
    padding: 30px 0;
}

/* Mobile styles for sec3 */
@media (max-width: 767.98px) {
    .sec3 h1 {
        font-size: 28px;
        padding: 20px 0;
    }
    
    section.sec3 .heading1 h2 {
        font-size: 20px;
        padding: 12px;
    }
    
    section.sec3 .paragraph1 p {
        font-size: 14px;
        padding: 12px;
    }
    
    section.sec3 {
        padding: 20px 0;
    }
    
    .sec3 .paragraph1 {
        padding: 15px;
        margin-bottom: 15px;
    }
}

/* Tablet styles for sec3 */
@media (min-width: 768px) and (max-width: 991.98px) {
    .sec3 h1 {
        font-size: 32px;
        padding: 25px 0;
    }
    
    section.sec3 .heading1 h2 {
        font-size: 21px;
        padding: 14px;
    }
    
    section.sec3 .paragraph1 p {
        font-size: 15px;
        padding: 14px;
    }
}

/* Desktop styles for sec3 */
@media (min-width: 992px) {
    .sec3 h1 {
        font-size: 40px;
        padding: 35px 0;
    }
    
    section.sec3 .heading1 h2 {
        font-size: 24px;
        padding: 18px;
    }
    
    section.sec3 .paragraph1 p {
        font-size: 17px;
        padding: 20px;
    }
    
    section.sec3 {
        padding: 40px 0;
    }
}

/* Large desktop styles for sec3 */
@media (min-width: 1200px) {
    .sec3 h1 {
        font-size: 45px;
        padding: 40px 0;
    }
    
    section.sec3 .heading1 h2 {
        font-size: 25px;
    }
}

/* Responsive Section 4 (How To Get Started) Styles */
section.sec4 {
    background: rgba(196, 0, 15, 1);
    padding: 30px 0;
}

.sec4 .box1 {
    text-align: center;
    color: white;
    padding: 20px;
}

section.sec4 .box1 h4 {
    font-size: 20px;
    font-weight: 600;
    font-family: 'Nexa', sans-serif;
    margin: 15px 0 10px;
}

section.sec4 .box1 p {
    font-size: 16px;
    font-weight: 300;
    font-family: 'Nexa', sans-serif;
    margin: 0;
    line-height: 1.5;
}

/* Mobile styles for sec4 */
@media (max-width: 767.98px) {
    section.sec4 {
        padding: 20px 0;
    }
    
    .sec4 .box1 {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    section.sec4 .box1 h4 {
        font-size: 18px;
        margin: 10px 0 8px;
    }
    
    section.sec4 .box1 p {
        font-size: 14px;
    }
}

/* Tablet styles for sec4 */
@media (min-width: 768px) and (max-width: 991.98px) {
    section.sec4 {
        padding: 25px 0;
    }
    
    .sec4 .box1 {
        padding: 18px;
    }
    
    section.sec4 .box1 h4 {
        font-size: 19px;
    }
    
    section.sec4 .box1 p {
        font-size: 15px;
    }
}

/* Desktop styles for sec4 */
@media (min-width: 992px) {
    section.sec4 {
        padding: 35px 0;
    }
    
    .sec4 .box1 {
        padding: 25px;
    }
    
    section.sec4 .box1 h4 {
        font-size: 22px;
    }
    
    section.sec4 .box1 p {
        font-size: 17px;
    }
}

/* Large desktop styles for sec4 */
@media (min-width: 1200px) {
    section.sec4 {
        padding: 40px 0;
    }
    
    section.sec4 .box1 h4 {
        font-size: 24px;
    }
    
    section.sec4 .box1 p {
        font-size: 18px;
    }
}

/* Responsive Footer Styles */
.footer h1 {
    font-weight: 600;
    font-size: 22px;
    color: #002C54;
    font-family: "Volkhov", serif;
    text-transform: capitalize;
    padding-bottom: 10px;
    text-align: center;
}

section.footer ul {
    padding: 0;
    list-style: none;
    text-align: center;
}

section.footer ul li {
    color: rgba(0, 44, 84, 1);
    font-weight: 400;
    font-size: 16px;
    padding: 5px 0;
}

section.footer ul li a {
    text-decoration: none;
    color: rgba(0, 44, 84, 1);
    transition: all 0.3s ease;
}

section.footer ul li a:hover {
    color: rgba(196, 0, 15, 1);
}

section.footer {
    padding: 30px 0 20px;
    background: rgba(239, 239, 239, 1);
}

.footerlogo {
    text-align: center;
    padding: 20px 0;
}

.footerlogo img {
    max-width: 100%;
    height: auto;
}

.footer input#email {
    width: 100%;
    border-radius: 10px;
    border: 0;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Nexa', sans-serif;
    color: rgba(35, 35, 35, 1);
    padding: 10px 15px;
    margin-bottom: 10px;
}

.footer input#email::placeholder {
    color: rgba(35, 35, 35, 1);
    font-weight: 400;
    font-family: 'Nexa', sans-serif;
}

.footer button.btn.btn-custom {
    padding: 10px 15px;
    font-weight: 600;
    font-size: 16px;
    background: rgba(196, 0, 15, 1);
    color: white;
    border-radius: 10px;
    border: none;
    width: 100%;
    transition: all 0.3s ease;
}

.footer button.btn.btn-custom:hover {
    background: rgba(160, 0, 12, 1);
    color: white;
}

.footer .input-group {
    padding-top: 10px;
    max-width: 300px;
    margin: 0 auto;
}

img.paymenticon {
    padding: 20px 0;
    max-width: 100%;
    height: auto;
}

/* Mobile styles for footer */
@media (max-width: 767.98px) {
    .footer h1 {
        font-size: 20px;
        padding-bottom: 8px;
    }
    
    section.footer ul li {
        font-size: 14px;
        padding: 3px 0;
    }
    
    section.footer {
        padding: 20px 0 15px;
    }
    
    .footer input#email {
        font-size: 14px;
        padding: 8px 12px;
    }
    
    .footer button.btn.btn-custom {
        font-size: 14px;
        padding: 8px 12px;
    }
    
    .footerlogo {
        padding: 15px 0;
    }
    
    img.paymenticon {
        padding: 15px 0;
        max-width: 200px;
        margin: 0 auto;
    }
}

/* Tablet styles for footer */
@media (min-width: 768px) and (max-width: 991.98px) {
    .footer h1 {
        font-size: 21px;
    }
    
    section.footer ul li {
        font-size: 15px;
    }
    
    .footer input#email {
        font-size: 15px;
    }
    
    .footer button.btn.btn-custom {
        font-size: 15px;
    }
    
    img.paymenticon {
        max-width: 250px;
    }
}

/* Desktop styles for footer */
@media (min-width: 992px) {
    .footer h1 {
        font-size: 24px;
        text-align: left;
        padding-bottom: 12px;
    }
    
    section.footer ul {
        text-align: left;
    }
    
    section.footer ul li {
        font-size: 17px;
    }
    
    .footer input#email {
        font-size: 17px;
    }
    
    .footer button.btn.btn-custom {
        font-size: 18px;
        width: auto;
    }
    
    .footer .input-group {
        max-width: 100%;
    }
    
    .footerlogo {
        padding: 30px 0;
    }
}

/* Large desktop styles for footer */
@media (min-width: 1200px) {
    .footer h1 {
        font-size: 25px;
    }
    
    section.footer ul li {
        font-size: 18px;
    }
    
    .footer input#email {
        font-size: 17px;
    }
    
    .footer button.btn.btn-custom {
        font-size: 22px;
        padding: 12px 20px;
    }
}

/* Responsive Second Footer Styles */
section.secondfooter {
    background: rgba(239, 239, 239, 1);
    border-top: 2px solid #5B5B5B;
    padding: 15px 0;
}

section.secondfooter h1 {
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    font-family: "Quicksand", sans-serif;
    padding: 10px 0;
    margin: 0;
}

section.secondfooter a {
    color: #212529;
    text-decoration: none;
    transition: all 0.3s ease;
}

section.secondfooter a:hover {
    color: rgba(196, 0, 15, 1);
}

/* Mobile styles for second footer */
@media (max-width: 767.98px) {
    section.secondfooter h1 {
        font-size: 14px;
        padding: 8px 0;
    }
}

/* Tablet styles for second footer */
@media (min-width: 768px) and (max-width: 991.98px) {
    section.secondfooter h1 {
        font-size: 17px;
    }
}

/* Desktop styles for second footer */
@media (min-width: 992px) {
    section.secondfooter h1 {
        font-size: 19px;
        padding: 15px 0;
    }
}

/* Responsive About Page Styles */
.main-heading {
    font-weight: 600;
    font-size: 36px;
    color: #c4000f;
    font-family: "Volkhov", serif;
    text-transform: capitalize;
    margin-bottom: 20px;
    text-align: center;
}

/* Quality Section */
.row.quality-sec,
.row.started-sec,
.row.trn-diff-sec,
.row.trn-sec {
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}

.row.quality-sec h1,
.row.started-sec h1,
.row.trn-sec h1,
.row.trn-diff-sec h1 {
    font-weight: 600;
    font-size: 32px;
    color: #c4000f;
    font-family: "Volkhov", serif;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.row.quality-sec p,
.row.started-sec p,
.row.trn-sec p,
.row.trn-diff-sec p {
    font-size: 16px;
    color: #5B5B5B;
    font-family: 'Nexa', sans-serif;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Mission Section */
.row.mission-sec {
    display: flex;
    justify-content: space-evenly;
    padding: 40px 0;
    text-align: center;
}

.row.mission-sec h1 {
    font-weight: 600;
    font-size: 32px;
    color: #c4000f;
    font-family: "Volkhov", serif;
    text-transform: capitalize;
    margin-bottom: 20px;
    width: 100%;
}

.row.mission-sec p {
    font-size: 16px;
    color: #5B5B5B;
    font-family: 'Nexa', sans-serif;
    line-height: 1.6;
    margin-bottom: 20px;
}

.col-sm-5.mission-1 {
    padding: 20px;
    border: 1px solid #000;
    border-radius: 30px;
    margin-bottom: 20px;
    transition: 0.8s;
}

.col-sm-5.mission-1:hover {
    background: #002c54;
    color: white !important;
}

/* TRN Community Section */
.row.trn-comm-sec {
    background: #c4000f;
    padding: 40px 20px;
    border-radius: 30px;
    text-align: center;
    color: #fff;
    margin: 40px 0;
}

.row.trn-comm-sec h1 {
    font-weight: 600;
    font-size: 32px;
    font-family: "Volkhov", serif;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.row.trn-comm-sec p {
    font-size: 16px;
    font-family: 'Nexa', sans-serif;
    line-height: 1.6;
    margin-bottom: 0;
}

/* About Images */
img.about-img {
    width: 100%;
    border-radius: 30px;
    margin-bottom: 20px;
}

/* Lists */
.row.trn-sec ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.row.trn-sec ul li {
    font-size: 16px;
    color: #5B5B5B;
    font-family: 'Nexa', sans-serif;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Mobile styles for about page */
@media (max-width: 767.98px) {
    .main-heading {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .row.quality-sec,
    .row.started-sec,
    .row.trn-diff-sec,
    .row.trn-sec {
        padding: 30px 0;
        flex-direction: column;
    }
    
    .row.quality-sec h1,
    .row.started-sec h1,
    .row.trn-sec h1,
    .row.trn-diff-sec h1 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .row.quality-sec p,
    .row.started-sec p,
    .row.trn-sec p,
    .row.trn-diff-sec p {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .row.mission-sec {
        padding: 30px 0;
        flex-direction: column;
    }
    
    .row.mission-sec h1 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .row.mission-sec p {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .col-sm-5.mission-1 {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .row.trn-comm-sec {
        padding: 30px 15px;
        margin: 30px 0;
    }
    
    .row.trn-comm-sec h1 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .row.trn-comm-sec p {
        font-size: 14px;
    }
    
    .row.trn-sec ul li {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    img.about-img {
        margin-bottom: 15px;
    }
}

/* Tablet styles for about page */
@media (min-width: 768px) and (max-width: 991.98px) {
    .main-heading {
        font-size: 32px;
    }
    
    .row.quality-sec h1,
    .row.started-sec h1,
    .row.trn-sec h1,
    .row.trn-diff-sec h1 {
        font-size: 30px;
    }
    
    .row.quality-sec p,
    .row.started-sec p,
    .row.trn-sec p,
    .row.trn-diff-sec p {
        font-size: 15px;
    }
    
    .row.mission-sec h1 {
        font-size: 30px;
    }
    
    .row.mission-sec p {
        font-size: 15px;
    }
    
    .row.trn-comm-sec h1 {
        font-size: 30px;
    }
    
    .row.trn-comm-sec p {
        font-size: 15px;
    }
    
    .row.trn-sec ul li {
        font-size: 15px;
    }
}

/* Desktop styles for about page */
@media (min-width: 992px) {
    .main-heading {
        font-size: 40px;
    }
    
    .row.quality-sec h1,
    .row.started-sec h1,
    .row.trn-sec h1,
    .row.trn-diff-sec h1 {
        font-size: 36px;
    }
    
    .row.quality-sec p,
    .row.started-sec p,
    .row.trn-sec p,
    .row.trn-diff-sec p {
        font-size: 17px;
    }
    
    .row.mission-sec h1 {
        font-size: 36px;
    }
    
    .row.mission-sec p {
        font-size: 17px;
    }
    
    .row.trn-comm-sec h1 {
        font-size: 36px;
    }
    
    .row.trn-comm-sec p {
        font-size: 17px;
    }
    
    .row.trn-sec ul li {
        font-size: 17px;
    }
}

/* Large desktop styles for about page */
@media (min-width: 1200px) {
    .main-heading {
        font-size: 42px;
    }
    
    .row.quality-sec,
    .row.started-sec,
    .row.trn-diff-sec,
    .row.trn-sec {
        padding: 50px 0;
    }
    
    .row.quality-sec h1,
    .row.started-sec h1,
    .row.trn-sec h1,
    .row.trn-diff-sec h1 {
        font-size: 42px;
    }
    
    .row.mission-sec {
        padding: 50px 0;
    }
    
    .row.mission-sec h1 {
        font-size: 42px;
    }
    
    .row.trn-comm-sec {
        padding: 50px;
        margin: 50px 0;
    }
    
    .row.trn-comm-sec h1 {
        font-size: 42px;
    }
}

/* Responsive Search Trailer Page Styles */
.search-trailer {
    padding: 20px;
    margin-top: 20px;
}

.listing-trailer {
    height: auto;
    overflow: visible;
    margin-bottom: 30px;
}

/* Search Form */
.search-bar {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

form.search-form {
    display: flex;
    gap: 1rem;
    align-items: end;
    flex-wrap: wrap;
}

.form-group {
    margin-bottom: 0;
}

.form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    display: block;
}

.form-select,
.form-control {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}

.search-btn button {
    background: #be001a !important;
    border-color: #be001a !important;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

/* Trailer Cards */
.card-trailer {
    padding: 10px;
    margin-bottom: 20px;
}

.trailer-card .card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.trailer-card figure {
    margin: 0;
    position: relative;
    overflow: hidden;
}

.trailer-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.wishlist-icon {
    position: absolute;
    right: 8px;
    top: 20px;
    background: white;
    padding: 5px;
    border-radius: 3px;
    font-size: 19px;
    z-index: 10;
}

.wishlist-icon i {
    color: #c4000f;
}

.card-body.trailer-content {
    position: relative;
    top: 0;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 15px;
}

.trailer-name {
    color: #4a2529;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
}

.trailer-name:hover {
    color: #4a2529;
    text-decoration: none;
}

.card-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

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

a.author {
    color: #4a2529;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.text-warning {
    font-size: 14px;
}

/* Map Container */
.map-container {
    position: relative;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
}

#map {
    width: 100%;
    height: 100%;
}

/* Mobile styles for search trailer page */
@media (max-width: 767.98px) {
    .search-trailer {
        padding: 15px;
        margin-top: 4rem;
    }
    
    .search-bar {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    form.search-form {
        flex-direction: column;
        gap: 15px;
    }
    
    form.search-form > [class*="col-"] {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .search-btn button {
        padding: 12px 20px;
        font-size: 16px;
        height: auto;
    }
    
    .card-trailer {
        padding: 8px;
        margin-bottom: 15px;
    }
    
    .trailer-card img {
        height: 150px;
    }
    
    .trailer-name {
        font-size: 16px;
    }
    
    .card-text {
        font-size: 13px;
    }
    
    .map-container {
        height: 400px;
        margin-top: 20px;
    }
    
    .form-label {
        font-size: 14px;
    }
    
    .form-select,
    .form-control {
        font-size: 14px;
        padding: 8px 12px;
    }
}

/* Tablet styles for search trailer page */
@media (min-width: 768px) and (max-width: 991.98px) {
    .search-trailer {
        padding: 20px;
        margin-top: 4rem;
    }
    
    .search-bar {
        padding: 20px;
    }
    
    form.search-form > [class*="col-"] {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .card-trailer {
        padding: 8px;
    }
    
    .trailer-card img {
        height: 180px;
    }
    
    .map-container {
        height: 450px;
    }
}

/* Desktop styles for search trailer page */
@media (min-width: 992px) {
    .search-trailer {
        padding: 30px;
        margin-top: 4rem;
    }
    
    .listing-trailer {
        height: 828px;
        overflow: auto;
        margin-bottom: 0;
    }
    
    .search-bar {
        padding: 25px;
    }
    
    form.search-form {
        flex-direction: row;
    }
    
    form.search-form > [class*="col-"] {
        flex: 0 0 25%;
        max-width: 25%;
    }
    
    .card-trailer {
        padding: 10px;
    }
    
    .trailer-card img {
        height: 200px;
    }
    
    .map-container {
        height: 828px;
    }
}

/* Large desktop styles for search trailer page */
@media (min-width: 1200px) {
    .search-trailer {
        padding: 40px;
    }
    
    .search-bar {
        padding: 30px;
    }
    
    .map-container {
        height: 828px;
    }
}"/* Spacer to ensure content doesn't touch header */\n.header-spacer {\n    height: 100px;\n}\n\n/* Mobile styles for header spacer */\n@media (max-width: 767.98px) {\n    .header-spacer {\n        height: 80px;\n    }\n}\n\n/* Tablet styles for header spacer */\n@media (min-width: 768px) and (max-width: 991.98px) {\n    .header-spacer {\n        height: 90px;\n    }\n}\n\n/* Desktop styles for header spacer */\n@media (min-width: 992px) {\n    .header-spacer {\n        height: 100px;\n    }\n}" 
"/* Spacer to ensure content doesn't touch header */\n.header-spacer {\n    height: 100px;\n}\n\n/* Mobile styles for header spacer */\n@media (max-width: 767.98px) {\n    .header-spacer {\n        height: 120px;\n    }\n}\n\n/* Tablet styles for header spacer */\n@media (min-width: 768px) and (max-width: 991.98px) {\n    .header-spacer {\n        height: 100px;\n    }\n}\n\n/* Desktop styles for header spacer */\n@media (min-width: 992px) {\n    .header-spacer {\n        height: 100px;\n    }\n}\n" 
"\n/* Responsive Contact Page Styles */\n.contact-banner {\n    padding: 10px 0 70px 0;\n    background-position: center;\n    background-size: cover;\n    background-repeat: no-repeat;\n}\n\n.contact-banner .boxbanner {\n    display: block;\n    padding: 150px 0 80px 20px;\n}\n\n.contact-banner h1 {\n    font-weight: 600;\n    font-size: 36px;\n    color: #c4000f;\n    font-family: \"Volkhov\", serif;\n    margin-bottom: 20px;\n}\n\n.contact-section {\n    padding: 30px 0;\n    background: #f8f9fa;\n}\n\n.contact-heading {\n    text-align: center;\n    margin-bottom: 30px;\n}\n\n.contact-heading h3 {\n    font-weight: 600;\n    font-size: 32px;\n    color: #333;\n    font-family: \"Volkhov\", serif;\n}\n\n.contact-heading h3 .text-primary {\n    color: #c4000f !important;\n}\n\n.contact-heading p {\n    font-size: 16px;\n    color: #666;\n    font-family: 'Nexa', sans-serif;\n    line-height: 1.6;\n    margin-top: 10px;\n}\n\n.contact-info {\n    padding: 20px;\n}\n\n.contact-info p {\n    font-size: 16px;\n    color: #666;\n    margin-bottom: 20px;\n}\n\n.contact-info .fw-bold {\n    font-weight: 600;\n}\n\n.contact-form {\n    padding: 20px;\n}\n\n.form-label {\n    font-weight: 600;\n    color: #333;\n    margin-bottom: 5px;\n    display: block;\n}\n\n.form-control {\n    width: 100%;\n    padding: 10px 15px;\n    border: 1px solid #ced4da;\n    border-radius: 5px;\n    font-size: 16px;\n    margin-bottom: 15px;\n}\n\n.form-control:focus {\n    border-color: #c4000f;\n    box-shadow: 0 0 0 0.2rem rgba(196, 0, 15, 0.25);\n}\n\n.msg-btn {\n    background: #c4000f !important;\n    border: #c4000f !important;\n    padding: 10px 20px;\n    font-size: 16px;\n    border-radius: 5px;\n    color: white;\n    transition: all 0.3s ease;\n    width: 100%;\n}\n\n.msg-btn:hover,\n.msg-btn:focus {\n    background: #a0000c !important;\n    color: white;\n    transform: translateY(-2px);\n}\n\n/* Mobile styles for contact page */\n@media (max-width: 767.98px) {\n    .contact-banner .boxbanner {\n        padding: 100px 0 50px 15px;\n        text-align: center;\n    }\n    \n    .contact-banner h1 {\n        font-size: 28px;\n        width: 100%;\n        margin-bottom: 15px;\n    }\n    \n    .contact-section {\n        padding: 20px 0;\n    }\n    \n    .contact-heading h3 {\n        font-size: 24px;\n    }\n    \n    .contact-heading p {\n        font-size: 14px;\n        padding: 0 10px;\n    }\n    \n    .contact-info {\n        padding: 15px;\n        text-align: center;\n        margin-bottom: 20px;\n    }\n    \n    .contact-info p {\n        font-size: 14px;\n    }\n    \n    .contact-form {\n        padding: 15px;\n    }\n    \n    .form-control {\n        font-size: 14px;\n        padding: 8px 12px;\n    }\n    \n    .msg-btn {\n        font-size: 14px;\n        padding: 8px 16px;\n        width: 100%;\n    }\n}\n\n/* Tablet styles for contact page */\n@media (min-width: 768px) and (max-width: 991.98px) {\n    .contact-banner .boxbanner {\n        padding: 120px 0 60px 20px;\n    }\n    \n    .contact-banner h1 {\n        font-size: 32px;\n    }\n    \n    .contact-heading h3 {\n        font-size: 28px;\n    }\n    \n    .contact-heading p {\n        font-size: 15px;\n    }\n    \n    .contact-info {\n        padding: 18px;\n    }\n    \n    .contact-info p {\n        font-size: 15px;\n    }\n    \n    .contact-form {\n        padding: 18px;\n    }\n    \n    .form-control {\n        font-size: 15px;\n    }\n    \n    .msg-btn {\n        font-size: 15px;\n    }\n}\n\n/* Desktop styles for contact page */\n@media (min-width: 992px) {\n    .contact-banner .boxbanner {\n        padding: 180px 0 80px 20px;\n    }\n    \n    .contact-banner h1 {\n        font-size: 40px;\n        width: 46%;\n    }\n    \n    .contact-section {\n        padding: 40px 0;\n    }\n    \n    .contact-heading h3 {\n        font-size: 36px;\n    }\n    \n    .contact-heading p {\n        font-size: 17px;\n    }\n    \n    .contact-info {\n        padding: 25px;\n    }\n    \n    .contact-info p {\n        font-size: 17px;\n    }\n    \n    .contact-form {\n        padding: 25px;\n    }\n    \n    .form-control {\n        font-size: 17px;\n    }\n    \n    .msg-btn {\n        font-size: 17px;\n        width: auto;\n    }\n}\n\n/* Large desktop styles for contact page */\n@media (min-width: 1200px) {\n    .contact-banner .boxbanner {\n        padding: 230px 0 100px 20px;\n    }\n    \n    .contact-banner h1 {\n        font-size: 45px;\n    }\n    \n    .contact-section {\n        padding: 50px 0;\n    }\n    \n    .contact-heading h3 {\n        font-size: 42px;\n    }\n}\n" 
