

/* Profile Section */
.profile-section {
    padding: 7px 0;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* Profile Card */
.profile-card {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #FFA425;
    padding: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
    width: 770px;
    height: 420px;
    border-radius: 5px;
    margin-bottom: 27px;
    /*margin-top: 48px;*/
}

.profile-image {
    flex: 0 0 30%;
    text-align: center;
    margin-top: -36px;
    margin-left: 15px;
}

.profile-image img {
    width: 100%;
    max-width: 250px;
    height: auto;
    aspect-ratio: 1 / 1; /* Ensures square shape */
    /*object-fit: cover;*/
    border-radius: 10px;
    display: block;
}

@media (max-width: 991px){
.profile-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    aspect-ratio: 1 / 1;
    /*object-fit: cover;*/
    border-radius: 10px;
    display: block;
    margin-left: 33px;
}
}


.profile-details {
    flex: 0 0 65%;
    padding-left: 32px;
    font-family: 'Poppins';
}

.profile-details h3 {
    font-size: 24px;
    color: #222;
    margin-bottom: 10px;
}

.profile-id {
    color: #C32C20;
    font-weight: bold;
}

.verified {
    font-size: 18px;
    color: #28a745;
}

.profile-details p {
    font-size: 16px;
    color: #444;
    margin: 5px 0;
    width: 325px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bold {
    font-weight: bold;
}

/* Register Button */
.register-btn {
    background: #FFEDD5;
    color: #C32C20;
    border: none;
    /*padding: 10px 20px;*/
    border-radius: 20px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3sease;
    margin-top: -42px;
    width: 240px;
    height: 45px;
    margin-left: -264px;
    font-family: 'Poppins';
    border: 1px solid #FFA425;
}

.register-btn:hover {
    background: #e65c00;
}

/* Action Buttons */
.actions {
    text-align: center;
    margin-top: 20px;
}

.actions button {
    background: #EA8C08;
    color: white;
    border: none;
    padding: 10px 15px;
    margin: 5px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease;
    font-size: 16px;
}

.actions button i {
    margin-right: 5px;
}

.actions button:hover {
    background: #0056b3;
}

/* Sidebar */
.col-lg-4 {
    width: 30%;
    padding: 15px;
}

/*.service-sidebar {
    background: #FFEDD5;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width:401px;
    height:956px;
}

.widget-title h3 {
    font-size: 22px;
    color: #C32C20;
    margin-bottom: 15px;
    border-bottom: 2px solid #ff6600;
    padding-bottom: 8px;
    margin-top: -6px;
}*/

/* Sidebar List *
.service-sidebar ul {
    list-style: none;
    padding: 0;
}

.service-sidebar ul li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 16px;
}

.service-sidebar ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: 0.3s ease;
    font-size: 16px;
    font-family: 'Poppins';
}

.service-sidebar ul li a:hover {
    color: #ff6600;
}

.service-sidebar ul li i {
    color: #ff6600;
}

.service-sidebar ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #FFEDD5;
    padding: 8px 15px;
    border: 1px solid #FFA425;
    cursor: pointer;
    transition: all 0.2sease-in-out;
    width: 352px;
    height:45px;

}
.service-sidebar ul li:not(:last-of-type) {
    margin-bottom: 10px;
}*/

/* Responsive Design */
@media (max-width: 991px) {
   .col-lg-8 {
        width: 100%;
    }

    .profile-card {
        flex-direction: column;
        text-align: center;
    }

    .profile-image {
        flex: 0 0 100%;
        margin-top: 18px;
        width: 364px;
        height: 327px;
        margin-left: -19px;
    }

    .profile-details {
        flex: 0 0 100%;
        margin-top: 295px;
        margin-left: -387px;
        text-align: left;
    }

    .col-lg-4 {
        width: 100%;
        margin-top: -22px;
        margin-left: -34px;
    }
}

@media (max-width: 576px) {
    .profile-section {
        padding: 30px 14px;
        margin-bottom: -89px;
        margin-top: -27px;
    }

    .profile-details h3 {
        font-size: 22px;
    }

    .register-btn {
        width: 220px;
        height: 42px;
        padding: 12px;
        margin-top: 17px;
        margin-left: 39px;
        font-weight: 600;
        border-radius: 19px;
        border: 1px solid #FFA425;
    }

  .service-sidebar {
        padding: 15px;
    }
}


.tab-container {
    display: flex;
    gap: 10px;
    justify-content: left;
    margin-bottom: -28px;
    flex-wrap: wrap;
    margin-left: 18px;
    margin-top: -18px;
}
.tab {
    border: 1px solid #FFA425;
    border-radius: 25px;
    padding: 10px 80px;
    cursor: pointer;
    background-color: #FFEDD5;
    color: #1E1E1E;
    margin-left: 52px;
    
}
.tab.active {
    background-color: #c02e2e;
    color: white;
    border-color: #c02e2e;
}

.action-buttons {
    display: flex;
    justify-content: space-between;
    gap: 1px;
    margin-top: 16px;
    width: 768px;
    margin-left: -5px;
    margin-bottom: -22px;
}
.action-buttons button {
    flex: 1;
    padding: 10px;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}
.view-profile { background-color: #EA8C08; }
.view-contact { background-color: #EA8C08; }
.shortlist { background-color: #EA8C08; }
.send-interest { background-color: #EA8C08; }

.action-buttons button i {
    margin-right: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .action-buttons {
        flex-wrap: wrap;
    }
    .action-buttons button {
        flex: 1 1 48%;
        margin-bottom: 5px;
    }
}



/* Mobile Styles */
@media (max-width: 600px) {
    .action-buttons {
        display: flex;
        gap: 2px; /* Adds some spacing between buttons */
        justify-content: center;
        width: 332px;
        flex-wrap: wrap; /* Ensures buttons wrap if necessary */
    }
    
    .action-buttons button {
        min-width: 70px; /* Ensures a minimum size */
        height:70px;
        padding: 10px 15px; /* Adjust padding for better spacing */
        font-size: 13px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px; /* Space between icon and text */
        flex: 1; /* Allows buttons to expand equally */
        white-space: nowrap; /* Prevents text from wrapping */
        overflow: hidden;
        text-overflow: ellipsis;
        flex-direction: column;
        
    }

    .action-buttons button i {
        font-size: 18px;
    }
}


/*.app-banner {
    background-color: #d32f2f;
    padding: 20px;
    color: white;
    width:400px;
    height:591px;
    border-radius: 9px;
}
.app-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.app-banner img {
    max-width: 335px;
    height: 382px;
    margin-left: -15px;
}
.google-play-btn img {
    max-width: 190px;
    height: 64px;
    margin-top: -16px;
}*/
.filter-section {
    background: #FFEDD5;
    padding: 20px;
    margin: 20px auto;
    max-width: 400px;
    border-radius: 10px;
    width: 401px;
    height: 743px;
    color: #C32C20;
    border: 1px solid #FFA425;
}
.filter-group {
    margin-bottom: 20px;
}
.filter-group h4 {
    color: #d32f2f;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 700;
}
button {
    display: block;
    width: 352px;
    height: 45px;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #FFA425;
    background-color: #FFEDD5;
    color: black;
    font-size: 16px;
    cursor: pointer;
    border-radius: 1px;
    
}
button:hover {
    background-color: #e68900;
}




.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.page-number {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    font-size: 16px;
}

.page-number.active {
    background-color: green;
    color: white;
    font-weight: bold;
}

.prev, .next {
    cursor: pointer;
    color: black;
    font-size: 16px;
}

.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.more-profiles {
    margin-top: 20px;
    padding: 10px 20px;
    border: 1px solid #FFA425;
    color: #C32C20;
    font-weight: 500;
    border-radius: 20px;
    cursor: pointer;
    display: inline-block;
    background-color: #FFEDD5;
    width: 169px;
    height: 43px;
    text-align: center;
}

.more-profiles:hover {
    background-color: orange;
    color: white;
}

.more-profiles-container {
  display: flex;
  gap: 10px; /* space between buttons */
  margin-left: 623px;
}

/*@media screen and (max-width: 480px) {
    .more-profiles {
        margin-left: -294px;
        margin-top: 99px;
    
    }

}*/

/* Mobile (screens 600px wide or less) */
@media (max-width: 600px) {
  .more-profiles-container {
    /*flex-direction: column;*/
    align-items: center;
    margin-left: 26px;
    padding-top: -37px;
    padding-bottom: 17px;
  }

  .more-profiles {
    width: 80%;
    margin-bottom: 10px;
  }
}



 @media screen and (max-width: 480px) {
            .profile-card {
                max-width: 340px;
                margin: 24px auto;
                height: 720px;
                margin-left: -15px;
                border-radius: 10px;
            }

            .action-buttons {
                flex-wrap: wrap;
                margin-left: -362px;
                margin-top: 636px;
    
            }

            .action-buttons button {
                width: 48%;
                margin: 5px 0;
            }
            /*.profile-details p{
                font-size: 13px;
                width: 200px;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
                
            }*/
        }


 



/* General styling for the container and tabs *
.container {
    padding: 10px;
  }
  
  .tab {
    padding: 8px;
    text-align: center;
    background-color: #FFEDD5;
    border: 1px solid #FFA425;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 183px;
	
  }
  
  .tab.active {
    background-color: #BF2A1D;
    color: white;
  }
  
  .tab:hover {
    background-color: #ddd;
  }
  
  /* Mobile Specific: Ensures 2 rows and 2 columns *
  @media (max-width: 767px) {
    .tab-container {
      grid-template-columns: repeat(2, 1fr);  /* 2 columns *
      grid-template-rows: repeat(2, auto);    /* 2 rows *
      grid-gap: 10px;                         /* Gap between items *
    }
  
    .tab {
		
      font-size: 14px; /* Adjust font size for mobile *
	  
    }
	
	
  }*/
 

  

@media (max-width: 768px) {
    .mobile-section .title {
        font-size: 20px;
    }

    .mobile-section .description {
        font-size: 14px;
    }

    .mobile-section .register-button {
      padding: 8px 16px;
      font-size: 18px;
      font-family: 'Poppins';
      font-weight: 600;
    }
}



/*.container {
    padding: 20px;
}
.tab-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}
.tab {
    padding: 10px 15px;
    background: #007bff;
    color: white;
    cursor: pointer;
    border-radius: 5px;
}
.tab.active {
    background: #0056b3;
}*/
.mobile-section {
    display: grid;
    /*grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);*/
    gap: 19px;
    max-width: 400px;
    margin: 4px;
}
.mobile-item {
    /*padding: 20px;*/
    background: #FFEDD5;
    border-radius: 17px;
    font-size: 16px;
    width: 167px;
    height: 42px;
    margin-left: -14px;
    font-family: 'Poppins';
    font-weight: 600px;
    text-align: center;
    border: 1px solid #FFA425;
}

/* Hide on desktop, show on mobile */
@media (min-width: 768px) {
    .mobile-section {
        display: none;
    }
}
@media (max-width: 767px) {
    .mobile-section {
        display: grid;
    }
}der-radius: 5px;
}




/* Show the tab-container on desktop */
.tab-container {
    display: block;  /* Default behavior: visible on desktop */
}

/* Hide the tab-container on mobile devices */
@media only screen and (max-width: 768px) {
    .tab-container {
        display: none;  /* Hide the tab container on screens smaller than or equal to 768px */
    }
}



/* Default styling for the mobile-item */
.mobile-item {
    padding: 8px;
    cursor: pointer;
    background-color: #FFEDD5;
    border: 1px solid #FFA425;
    display: block;
    margin-bottom: 5px;
    transition: background-color 0.3s, color 0.3s;
}

/* Active state styling */
.mobile-item.active {
    background-color: #BF2A1D;
    color: white;
    font-weight: bold;
}

/* Hover effect for mobile items */
.mobile-item:hover {
    background-color: #ddd;
}




font {
    font-family: Philosopher;
}

.verified-icon {
  width: 20px; /* Adjust the size as needed */
  height: 20px;
  margin-left: 5px; /* Space between text and icon */
  vertical-align: middle;
}


/*hr {
    background-color: #FFA425;
    border: none;
    height: 1px;
}*/



/* Mobile responsiveness */
@media all and (max-width:767px){
    ul.maratha-matrimony-list {
      padding: 0;
      margin: 0;
    }
  
    ul.maratha-matrimony-list li {
      font-size: 14px;
    }
  
    ul.maratha-matrimony-list a {
      font-size: 14px;
      padding: 10px;
      text-align: left;
    }
  
    ul.maratha-matrimony-list i {
      font-size: 16px;
    }
  }
  
  @media (max-width: 480px) {
    ul.maratha-matrimony-list li {
      font-size: 12px;
    }
  
    ul.maratha-matrimony-list a {
      font-size: 12px;
      padding: 8px;
    }
  
    ul.maratha-matrimony-list i {
      font-size: 14px;
    }
  }


  
  
/* By default, the section is visible */
.mobile-banner {
    display: block;
  }
  
  /* Hide the mobile banner on desktop and larger screens */
  @media (min-width: 768px) {
    .mobile-banner {
      display: none;
    }
  }
  
  /* Ensure the image is responsive */
  .responsive {
    width: 100%;
    height: auto;
  }

  

/* By default, the section is visible */
.desktop-banner {
    display: block;
  }
  
  /* Hide the desktop banner on mobile devices */
  @media (max-width: 767px) {
    .desktop-banner {
      display: none;
    }
  }
  
  /* Ensure the image is responsive */
  .responsive {
    width: 100%;
    height: auto;
  }







 @media all and (max-width:767px){
  li {
    width: 333px;
    margin-left: 4px;
}
  }
  


  hr {
    border: none;
    border-top: 1px solid #FFA425; /* Red color for the line */
    margin: 20px 0; /* Adds spacing above and below the line */
    width: 100%;
    
  }

 @media all and (max-width:767px){
  hr {
    border: none;
    border-top: 1px solid #FFA425; /* Red color for the line */
    margin: 20px 0; /* Adds spacing above and below the line */
    width: 100%;
    margin-left: -15px;
  }
}

  section.app-banner {
    width: 400px;
}


/* Make the image responsive */
.app-banner img.responsive {
    width: 100%;
    height: auto;
    max-width: 600px;  /* Restrict the max-width to avoid stretching on large screens */
    margin: 0 auto; /* Center the image horizontally */
  }
  
  /* Mobile responsiveness */
  @media (max-width: 768px) {
    .app-banner {
      padding: 15px; /* Reduce padding for mobile screens */
    }
  
    .app-banner img.responsive {
      max-width: 90%; /* Allow the image to take up 90% of the screen on smaller devices */
    }
  }
  
  /* Extra mobile adjustments for very small screens (max-width 480px) */
  @media (max-width: 480px) {
    .app-banner img.responsive {
      max-width: 85%; /* Further reduce the size of the image on very small screens */
    }
  }











  /* General styles for the sidebar */
.service-sidebar {
    padding: 15px;
    background: #FFEDD5;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width:401px;
    height:1099px;
    border: 1px solid #FFA425;
  }
  
  .widget-title h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #C32C20;
    font-family: Philosopher;
  }
  
  /* Style the list items */
  ul {
    list-style: none;
    padding-left: 0;
  }
  
  ul li {
    margin-bottom: 10px;
  }
  
  /* Button Style */
  ul li a.btn {
    display: inline-block;
    padding: 8px 20px;
    background-color: #ffedd5;
    color: #000000;
    text-decoration: none;
    border-radius: 1px;
    font-size: 16px;
    width: 100%;
    height: 45px;
    text-align: left;
    transition: background-color 0.3sease;
    border: 1px solid #FFA425;
    font-family: 'Poppins';
  }
  
  /* Hover effect for the buttons */
  ul li a.btn:hover {
    background-color: #FFA425;
  }
  
  /* Mobile responsiveness */
  @media (max-width: 768px) {
    .service-sidebar {
      padding: 10px;
    }
  
    .widget-title h3 {
      font-size: 22px;
    }
  
    ul li a.btn {
      font-size: 14px; /* Smaller text for mobile */
      padding: 10px;
    }
  }
  
  /* Extra mobile responsiveness */
  @media (max-width: 480px) {
    .service-sidebar {
      padding: 5px;
      width: 350px;
    }
  
    .widget-title h3 {
      font-size: 20px;
      text-align: center;
    }
  
    ul li a.btn {
      font-size: 16px; /* Even smaller text for very small screens */
      padding: 8px;
      text-align: center;
    }
  }
  




  /* Mobile Styles */
@media (max-width: 768px) {
    .filter-section {
        padding: 10px;
        width: 343px;
    }

    button {
        font-size: 14px;
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .filter-section h4 {
        font-size: 18px;
        font-family: Philosopher;
    }

    button {
        font-size: 16px;
        padding: 6px;
        width:321px;
    }
}




.desktop-filter {
    text-align: center;
    padding: 10px 0;
}

.title {
    font-size: 30px;
    color: #C32C20;
    font-weight: bold;
    font-family: Philosopher;
    text-align: left;
}



.title {
    font-size: 24px;
    color: #C32C20;
    font-weight: bold;
    font-family: Philosopher;
}

.filter-icon {
    font-size: 18px;
    color: #C32C20;
    font-weight: normal;
    margin-left: 18px;
}

/* Show desktop version only on larger screens */
@media (min-width: 769px) {
    .mobile-filter {
        display: none;
    }
}

/* Show mobile version only on smaller screens */
@media (max-width: 768px) {
    .desktop-filter {
        display: none;
    }
}



.btn.active {
    background-color: #FFA425;
    color: #000000;
    
}






section.mobile-banner{
    .container{
        margin-left: -10px;
        margin-right: -11px;
        align-items: start;
        
    }
}










/* Hide on mobile (screens up to 768px wide) */
@media (max-width: 768px) {
    .desktop-section {
        display: none;
    }
}

/* Show on desktop (screens wider than 768px) */
@media (min-width: 769px) {
    .desktop-section {
        display: block;
    }
}






.title {
    text-align: left;
    color: #C32C20;
    font-size: 30px;
    font-family: Philosopher;
}

.description {
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
}
.button-container {
    text-align: center;
}

.register-button {
    background-color: #C32C20;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    width: 215px;
    height: 46px;
    font-family: 'Poppins', sans-serif;
    margin-left: 445px;
}








/*.mobile-section {
    padding: 1px;
    /*background-color: #f9f9f9;*
}

.mobile-section .pagination {
    display: flex;
    justify-content: center;
    margin-bottom: 91px;
    margin-left: -402px;
}

.mobile-section .pagination span {
    margin: 0 1px;
    padding: 5px 10px;
    cursor: pointer;
}

.mobile-section .pagination .active {
    background-color: #4F982C;
    color: #fff;
}

.mobile-section .pagination .disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.mobile-section .more-profiles {
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    color: #BF2A1D;
    margin-left: -725px;
}

.mobile-section .container {
    max-width: 50%;
    margin: 0 auto;
    padding: 0 15px;
    margin-left: -30px;
}

.mobile-section .text {
    text-align: center;
}

.mobile-section .title {
    font-size: 24px;
    color: #BF2A1D;
    margin-bottom: 10px;
}

.mobile-section .description {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
}

.mobile-section .button-container {
    text-align: center;
    margin-top: -39px;
}

.mobile-section .register-button {
    background-color: #BF2A1D;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
}

.mobile-section .register-button:hover {
    background-color: #a1231a;
}

@media (max-width: 768px) {
    .mobile-section .title {
        font-size: 26px;
        margin-left: -10px;
    }

    .mobile-section .description {
        font-size: 16px;
        margin-left: -4px;

    }

    .mobile-section .register-button {
        padding: 8px 16px;
        font-size: 14px;
    }
}*/



@media (min-width: 768px) {
    .dekstop-section {
      display: none; /* Hide on desktop */
    }
  }
  
  @media (max-width: 767px) {
    .dekstop-section {
      display: block; /* Show on mobile */
    }
  }
  




/* Hide on desktop */
.dekstop-section {
    display: none;
}

/* Show only on mobile */
.mobile-section {
    /*display: block;*/
    text-align: center;
    
}

/* Adjust styles for smaller screens */
@media (min-width: 768px) {
    .mobile-section {
        display: none;
    }
}

@media (max-width: 767px) {
    .mobile-section .container {
        max-width: 100%;
        padding: 10px;
        margin-left: 30px;
    }

    .mobile-section .title {
        font-size: 22px;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .mobile-section .description {
        font-size: 16px;
        line-height: 1.5;
        /*margin-left: -23px;
        margin-right: -46px;*/
    
    }

    .button-container {
        margin-top: 15px;
        margin-left: -406px;
    }

    .register-button {
        background-color: #C32C20;
        color: white;
        border: none;
        padding: 10px 20px;
        font-size: 18px;
        cursor: pointer;
        border-radius: -2px;
        height: 47px;
    }

    .register-button:hover {
        background-color: #e64a19;
    }
}








/* General styles for the section */
section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 11px;
    font-family: 'Poppins';
    font-size: 15px;
    
  }
  
  section .text {
    text-align: center;
  }
  
  section .text h3 {
    color: #BF2A1D;
    font-size: 45px;
    font-family: 'Philosopher-bold';  }
  
  section .text p {
    text-align: center;
  }
  
  /* Responsive styles *
  @media (max-width: 768px) {
    section .text h3 {
        font-size: 30px;
        margin-left: 9px;
        text-align: center;
    }
}*/
  
  





/* General styles for the mobile filter section */
.mobile-filter {
    text-align: center;
    /*padding: 10px;*/
  }
  
  .mobile-filter .title {
    font-size: 10px;
    color: #C32C20;
  }
  
  .mobile-filter .filter-icon {
    font-size: 20px;
    cursor: pointer;
  }
  
  /* Responsive styles */
  @media (max-width: 768px) {
    .mobile-filter .title {
      font-size: 16px;
    }
  
    .mobile-filter .filter-icon {
      font-size: 18px;
    }
  }
  
  @media (max-width: 480px) {
    .mobile-filter .title {
      font-size: 17px;
    }
  
    .mobile-filter .filter-icon {
      font-size: 16px;
      gap: 11px;
      margin-left: 14px;
    }
  }







  /* Media Queries for Responsive Design *

/* Mobile Styles *
@media (max-width: 767px) {
    
   
    .mobile-banner .row {
      text-align: center;
      margin-left: -7px;
    }
    .mobile-banner .row p {
      font-size: 14px;
    }
   
  }*/




  @media (max-width: 768px) {
    section .text h3 {
        color: #BF2A1D;
        font-size: 24px;
        font-family: 'Philosopher-bold';
    }
}







/* Media Queries for Responsive Design */

/* Mobile Styles */
@media (max-width: 767px) {
  .desktop-banner {
      display: none;
  }
  .mobile-banner {
      display: block;
  }
  .mobile-banner .container {
      padding: 10px;
  }
  
  
}


  
  /* Desktop Styles */
  @media (min-width: 768px) {
    .desktop-banner {
      display: block;
    }
    .mobile-banner {
      display: none;
    }
    .desktop-banner .container {
      padding: 20px;
    }
    .desktop-banner .row {
      text-align: left;
    }
    .desktop-banner .row p {
      font-size: 16px;
      margin-top: -18px;
    }
    .desktop-banner .row a {
      font-size: 16px;
    }
    section .container .text h3 {
        font-size: 30px;
        text-align: center;
        color: #C32C20;
        margin-top: -18px;
    
    }
    section .container .text p {
      font-size: 15px;
      text-align: center;
    }
  }




  .page-number.active {
    background-color: green;
    color: white;
    font-weight: bold;
}








.filter-icon {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

.filter-icon i {
  margin-right: 5px;
}

@media (max-width: 768px) {
  .filter-icon {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .filter-icon {
    font-size: 12px;
  }
}






/* Mobile responsive styling for register button */
@media (max-width: 768px) {
  .register-btn {
    width: 300px;
    padding: 10px;
    font-size: 14px;
    height: 30px;
    margin: 12px auto; /* Center align the button */
  }
}

@media (max-width: 480px) {
  .register-btn {
    width: 173px;
    padding: 6px;
    font-size: 14px;
    height: 32px;
    margin: 6px auto;
}
}






/* Default styling for mobile section */


/* Mobile responsive styling for mobile section */
@media (max-width: 768px) {
  .mobile-section .title {
    font-size: 30px;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /*.mobile-section .description {
    font-size: 16px;
    text-align: center;
  }*/
}

@media (max-width: 480px) {
  .mobile-section .title {
    font-size: 19px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-left: -23px;
    font-family: 'Philosopher-bold';
  }

  .mobile-section .description {
    /*font-size: 14px; /* Set a reasonable base font size */
    /*line-height: 1.6;*/
    text-align: left; /* Distributes text evenly */
    /*margin: 0 auto; /* Centers the element if needed */
   /* padding: 0 15px; /* Adds spacing on sides for smaller screens */
}

/* Optional fine-tuning for smaller screens */
@media (max-width: 600px) {
    .mobile-section .description {
        font-size: 18px;
        /*padding: 0 10px;*/
    }
}

}




/* Default styling for breadcrumb */
.mobile-banner .row p {
  font-size: 15px;
  text-align: center;
  white-space: nowrap; /* Prevents the text from wrapping to the next line */
  overflow: hidden; /* Ensures that any overflow text is hidden */
  text-overflow: ellipsis; /* Adds ellipsis (...) if the text overflows */
  margin: 0;
}

/* Mobile responsive styling for breadcrumb */
@media (max-width: 768px) {
  .mobile-banner .row p {
    font-size: 15px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
  }
}

@media (max-width: 480px) {
  .mobile-banner .row p {
        font-size: 15px;
        text-align: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        margin: 0;
        margin-left: -2px;
  }
}


@media (min-width: 940px) {
  .link-container {
    display: none;
  }
}


@media (max-width: 939px) {
  .hide-on-mobile {
    display: none !important;
  }
}


.mobile-section-1 {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 16px 0;
    margin-top: -21px;
    margin-right: -13px;
}
.mobile-item {
    flex: 1 1 0;
    padding: 8px 0;
    background: #C32C20;
    color: #fff;
    text-align: center;
    border: 1px solid #FFA425;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.mobile-item.active,
.mobile-item:hover {
    background: #a51a1a;
}
@media (min-width: 768px) {
    .mobile-section-1 {
        display: none;
    }
}


/* Add this CSS to your stylesheet */
@media (min-width: 992px) {
  .hide-desktop {
    display: none !important;
  }
}









