/* Fonts */
:root {
  --font-default: "Open Sans", system-ui, "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "Montserrat", sans-serif;
  --font-secondary: "Poppins", sans-serif;
}

/* Colors */
:root {
  --color-default: rgb(109,107,172);
  --color-primary: #040926;
  --color-secondary: #FF7326;
  --color-navbar-menu: #303030;
  --color-border:#a9a9a9;
  --color-background:#F1F1F1;
  --color-hover:orange;
  --color-input: rgb(240, 240, 240);
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

body{
	font-family: 'Open Sans';
	font-style: normal;
}
.page-title-with-bg{
	background-image: url('https://media.geeksforgeeks.org/wp-content/cdn-uploads/20190710102234/download3.png'); 
	background-size: cover; 
	background-position: center; 
	height: 30vh;
}


::selection {
	background-color: #FF7326;
	color: white;
}

   /* Library Section */
   .library-section {
	/* background-color: #f5f7fa; */
	font-family: 'Segoe UI', sans-serif;
  }
  
  .library-card {
	background-color: #ffffff;
	border-radius: 16px;
	padding: 2rem;
	max-width: 1300px;
	margin: 0 auto;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  /* Header */
  .library-header {
	background-color: var(--color-primary);
	color: white;
	font-size: 1.5rem;
	font-weight: 600;
	padding: 1rem;
	border-radius: 12px 12px 0 0;
	text-align: center;
  }
  
  /* Info Grid */
  .library-info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.2rem;
	padding-top: 1.5rem;
  }
  
  .info-item {
	background-color: #f0f2f5;
	padding: 1rem;
	border-radius: 12px;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.95rem;
	font-weight: 500;
	transition: 0.3s ease;
  }
  
  .info-item:hover {
	background-color: #e1e4eb;
  }
  
  .icon {
	font-size: 1.3rem;
	color: var(--color-secondary);
  }
  
  /* Facility Section */
  .library-facilities {
	text-align: center;
	margin-top: 2rem;
  }
  
  .facility-title {
	text-align: center !important;
	align-items: center !important;
	background-color: var(--color-primary);
	color: white;
	display: inline-block;
	padding: 0.5rem 1.25rem;
	border-radius: 8px;
	font-weight: 600;
	margin-bottom: 1rem;
  }
  
  .facility-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1rem;
	text-align: center;
  }
  
  .facility-item {
	background-color: #f0f2f5;
	padding: 1rem;
	border-radius: 10px;
	font-size: 0.9rem;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
  }
  
  .facility-item i {
	font-size: 1.3rem;
	margin-bottom: 0.3rem;
	color: var(--color-secondary);
  }
  
  .facility-item:hover {
	background-color: #e0e7ff;
	transform: translateY(-2px);
  }
	  
  
  .star-pill {
	background-color: var(--color-primary);
	color: #FFD700; /* gold stars */
	display: inline-flex;
	align-items: center;
	padding: 6px 14px;
	border-radius: 50px;
	font-size: 14px;
	gap: 4px;
	margin-top: 8px;
  }
  
  .star-pill .fa-star {
	color: #FFD700;
  }
  
  .star-pill .unchecked {
	color: white; /* greyed out stars */
  }
  
  .star-pill .rating-text {
	color: white;
	font-size: 12px;
	margin-left: 6px;
  }






.contact-heading {
	text-align: center;
	font-size: 28px;
	font-weight: bold;
	color: #333;
	margin-top: 20px;
  }
  

.study-room-horizontal-container {
	margin-top: -30px;
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	/* background: #fff; */
	padding: 20px 100px 20px 100px;
	border-radius: 15px;
	gap: 20px;
	/* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
  }
  
  .study-room-box {
	display: flex;
	flex-direction: column;
	justify-content: center;
  }
  
  .study-room-logo-box,
  .study-room-map-box {
	flex: 0 0 200px;
  }
  
  .study-room-logo-img {
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	width: 100%;
	height: 200px;
	object-fit: contain;
	border-radius: 10px;

  }
  
  .study-room-details-box {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 10px;
  }
  
  .info-row-double {
	display: flex;
	justify-content: space-between;
	gap: 15px;
  }
  
  .info-row-single {
	display: flex;
	justify-content: flex-start;
  }
  
  .info-item {
	background: #f1f3f6;
	padding: 10px 15px;
	border-radius: 8px;
	flex: 1;
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 500;
  }
  
  
  
  .study-room-map-box iframe {
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	width: 100%;
	height: 200px;
	border-radius: 10px;
  }
  

/* /////////////////////////////// Heading ///////////////////////////// */
/* header {
	height: 40vh;
	width: 100%;
	color: #040926;
	font-size: 40px;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #FECA85;

	background-blend-mode: multiply;

} */


header {
	overflow: hidden;
	height: 50vh;
	min-height: 400px;
	width: 100%;
	background: #FECA85;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: Arial, sans-serif;
  }
  
  .banner-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 90%;
	max-width: 1200px;
  }
  
  .banner-text {
	flex: 2;
	color: #040926;
	/* padding-right: 20px; */
  }
  
  .banner-text h1 {
	font-size: 3rem;
	font-weight: bold;
	margin-bottom: 10px;
  }
  
  .banner-text p {
	font-size: 1.2rem;
  }
  
  .banner-image {
	flex: 1;
	text-align: right;
  }
  
  .banner-image img {
	max-width: 100%;
	margin-top: 70px;
	height: 300px;
  }
  
  

  /* optimization */
  @media (min-width: 300px) and (max-width: 800px) {
	.banner-content {
	  padding: 0px;
	  gap: 10px;
	}
  
	.banner-text {
	  margin-top: 50px;
	}
  
	.banner-text h1 {
	  font-size: 24px;
	}
  
	.banner-text p {
	  font-size: 12px;
	}
  
	.banner-image {
	  max-width: 50%; /* Increased width allocation */
	}
  
	.banner-image img {
	  max-height: 270px; /* Increased height */
	  max-width: 185px;
	  object-fit: contain;
	  margin-top: 50px;
	}
  
	header {
	  height: 25vh;
	  min-height: 250px;
	}
  }

  

/* ////////////////////////// Color //////////////////////// */
.bg-color-primary{
	background-color: var(--color-primary)
}
.bg-color{
	background-color: var(--color-background);
}
.bg-color-secondary{
	background-color: var(--color-secondary);
}
.checked-star-rating {
	color: orange;
  }
  
.required::after {
	content: ' *';
	color: red;
}
/* ////////////////////////////// Text /////////////////////// */
.font-body-1{
	font-size: 12px;
	font-weight: bold;
}
.txt-static{
	color: var(--color-primary);
	font-size: 10px;
}

/* ////////////////////////////// Button /////////////////////// */
.btn1{
	background: var(--color-secondary);
	border-radius: 20px;
	color: white;
}

.btn1:hover{
	background: var(--color-secondary);
	border-radius: 20px;
	color: white;
}

.btn-submit:hover,.btn-reset:hover{
	background-color: white !important;
	color: var(--color-primary) !important;
	font-weight: bold;
	border: 2px solid var(--color-primary) !important;
}
.btn-add{
	background: green;
	border: none;
	color: white;
	width: 25px;
	height: 25px;
}
.btn-remove{
	background: red;
	border: none;
	color: white;
	width: 25px;
	height: 25px;
}
.btn-image-remove{
	position: absolute;
	top: 0;
	right: 0;
}
/* ////////////////////////// Checkbox //////////////////////// */
.primary-checkbox {
    border: 1px solid var(--color-primary)
}
/* ////////////////////////// Sign Up //////////////////////// */
.signup-body{
	position: relative;
}
 .signup-clip {
	width: 100%;
	display: inline-block;
	clip-path: ellipse(120% 30% at 10% 20%);;
  } 

.signup-body .signup-clip img{
	position: relative;
	z-index: 1000;
	/* height: 50vh; */
	width: 100%;
}

.signup-form-wrapper{
	position: absolute;
	z-index: 200;
	top: 30px;
	
}

/* ////////////////////////// Navbar //////////////////////// */
.main-navbar {
	/* position: absolute;*/
	width: 95%;
	margin-left: auto;
	margin-right: auto;
	left: 0;
	right: 0;
	z-index: 1000; 
}
.main-navbar .navbar-nav .nav-item .nav-link{
	font-weight: 700;
	font-size: 14px;
	line-height: 27px;
	color: #FFFFFF;
}

.main-navbar .nav-link{
	color: white;
}
.main-navbar .nav-link.active, .main-navbar .nav-link.show{
	color: red;
}

.second-navbar .img-user{
	width: 50px;
	height: 50px;
}

.second-navbar .navbar-brand img{
	border-radius: 10px;
	object-fit: fill;
	width: 100px;
	height: 85px;
}
.second-navbar .btn-search img{
	width: 30px;
	height: auto;
}
.profile-dropdown {
	position: relative;
	z-index: 1001;
}

@media (max-width: 576px) {
	.first-navbar .container-fluid {
	  flex-wrap: nowrap !important;
	}
  
	.first-navbar .nav-link,
	.first-navbar label {
	  font-size: 0.85rem;
	  padding: 0 0.5rem;
	}
  
	.first-navbar .nav-link i {
	  font-size: 1.2rem;
	}
  }
  

/* //////////////////////////// Announcement ///////////////////////// */
/* .announcement-wrapper .row{
	height: 200px;
} */
.announcement-image{
	max-width: 100%;
	height: auto;
}
.announcement-wrapper ul li{
	padding: 10px;
}
.announcement-wrapper ul li::marker {
	color: var(--color-primary);
}


/* //////////////////////////// Demo video ///////////////////////// */
.carousel-container {
	max-width: 500px; /* Adjust width */
	margin: auto;
	position: relative;
}

.carousel-item iframe {
	width: 100%;
	height: 280px; /* Adjust height */
	border-radius: 10px;
}

/* Move controls outside */
.carousel-control-prev, .carousel-control-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px; /* Adjust button size */
	height: 50px;
	border-radius: 50%;
	background: rgba(0, 123, 255, 0.8);
	display: flex;
	justify-content: center;
	align-items: center;
}

.carousel-control-prev {
	left: -60px; /* Move left control outside */
}

.carousel-control-next {
	right: -60px; /* Move right control outside */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
	filter: invert(1);
	width: 20px;
	height: 20px;
}

@media (max-width: 576px) {
	.carousel-container {
		max-width: 80%; /* Make carousel fit smaller screens */
	}

	.carousel-item iframe {
		height: 200px; /* Reduce height on smaller screens */
	}

	.carousel-control-prev, .carousel-control-next {
		width: 40px; /* Reduce button size */
		height: 40px;
	}

	.carousel-control-prev {
		left: -40px; /* Adjust position */
	}

	.carousel-control-next {
		right: -40px; /* Adjust position */
	}
}


/* /////////////////////////////  institute-details  /////////////// */
.institute-details-image {
	width:200px;
}


/* /////////////////////////////  Signup form get lat and long in map  /////////////// */
.map-canvas {
    height:200px;
    width:100%;
}
.controls {
    margin-top: 16px;
    border: 1px solid transparent;
    border-radius: 2px 0 0 2px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    height: 32px;
    outline: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
.pac-input {
    background-color: #fff;
    padding: 0 11px 0 13px;
    width: 400px;
    font-family: Roboto;
    font-size: 15px;
    font-weight: 300;
    text-overflow: ellipsis;
}
.pac-input:focus {
    border-color: #4d90fe;
    margin-left: -1px;
    padding-left: 14px;
    /* Regular padding-left + 1. */
    width: 401px;
}
.pac-container {
    font-family: Roboto;
}
#type-selector {
    color: #fff;
    background-color: #4d90fe;
    padding: 5px 11px 0px 11px;
}
#type-selector label {
    font-family: Roboto;
    font-size: 13px;
    font-weight: 300;
}


/* /////////////////////////////  Select 2  /////////////// */
/* .select2-selection__clear {
	position: absolute !important;
} */

.select2-container {
	min-width: 400px;
  }
  
  .select2-results__option {
	padding-right: 20px;
	vertical-align: middle;
  }
  .select2-results__option:before {
	content: "";
	display: inline-block;
	position: relative;
	height: 20px;
	width: 20px;
	border: 2px solid #e9e9e9;
	border-radius: 4px;
	background-color: #fff;
	margin-right: 20px;
	vertical-align: middle;
  }
  .select2-results__option[aria-selected=true]:before {
	font-family:fontAwesome;
	content: "\f00c";
	color: #fff;
	background-color: #f77750;
	border: 0;
	display: inline-block;
	padding-left: 3px;
  }
  .select2-container--default .select2-results__option[aria-selected=true] {
	  background-color: #fff;
  }
  .select2-container--default .select2-results__option--highlighted[aria-selected] {
	  background-color: #eaeaeb;
	  color: #272727;
  }
  .select2-container--default .select2-selection--multiple {
	  margin-bottom: 10px;
	  border-width: 2px;
  }
  .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
	  border-radius: 4px;
  }
  .select2-container--default.select2-container--focus .select2-selection--multiple {
	  border-color: #f77750;
	  border-width: 2px;
  }
  .select2-container--open .select2-dropdown--below {
	  
	  border-radius: 6px;
	  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  
  }
  .select2-selection .select2-selection--multiple:after {
	  content: 'hhghgh';
  }
  /* select with icons badges single*/
  .select-icon .select2-selection__placeholder .badge {
	  display: none;
  }
  .select-icon .placeholder {
	  display: none;
  }
  .select-icon .select2-results__option:before,
  .select-icon .select2-results__option[aria-selected=true]:before {
	  display: none !important;
	  /* content: "" !important; */
  }
  .select-icon  .select2-search--dropdown {
	  display: none;
  }
  .select2-container--bootstrap-5 .select2-selection--multiple .select2-search .select2-search__field{
	width: 100% !important;
  }

/* ////////////////////////// OTP ////////////////////////////////// */
.otp-field {
	flex-direction: row;
	column-gap: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
  }
  
  .otp-field input {
	height: 45px;
	width: 42px;
	border-radius: 6px;
	outline: none;
	font-size: 1.125rem;
	text-align: center;
	border: 1px solid #ddd;
  }
  .otp-field input::-webkit-inner-spin-button,
  .otp-field input::-webkit-outer-spin-button {
	display: none;
  }

  .otp-wrapper .resend {
	font-size: 12px;
  }
  .otp-field .form-control:focus{
	box-shadow:none;
	border:2px solid var(--color-primary);
}


.wishlist-popup-overlay {
    display: none; /* Ensures it stays hidden initially */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}


        .wishlist-popup {
            background: white;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            position: relative;
            min-width: 250px;
            box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
        }

        .wishlist-popup h3 {
            margin-bottom: 15px;
            font-size: 18px;
        }

        .wishlist-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 15px;
        }

        .wishlist-buttons button {
            padding: 8px 15px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
        }

        .yes-btn {
            background: #28a745;
            color: white;
        }

        .no-btn {
            background: #dc3545;
            color: white;
        }
        

        .share-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.share-popup {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    min-width: 250px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

.share-popup h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.share-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.share-icons a {
    font-size: 24px;
    text-decoration: none;
}

/* Scale effect on hover */
.share-icons a:hover {
    transform: scale(2.2);
}

.close-btn-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}






.aff-card-container {
	width: 360px;
	background: #f6f8ff;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
	font-family: 'Segoe UI', sans-serif;
  }
  
  .aff-card-container:hover {
	transform: scale(1.03);
  }
  
  .aff-card-header {
	background-color: #0c0c2c;
	padding: 16px;
	display: flex;
	align-items: center;
	gap: 12px;
	justify-content: center;
  }
  
  .aff-card-logo {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
  }
  
  .aff-card-title {
	color: white;
	font-size: 1.2rem;
	font-weight: bold;
	margin: 0;
  }
  
  .aff-card-body {
	padding: 20px;
	text-align: center;
  }
  
  .aff-card-location {
	font-size: 18px;
	color: #333;
	margin-bottom: 12px;
  }
  
  .aff-card-rating {
	color: #ffc107;
	font-size: 1.2rem;
	margin-bottom: 10px;
  }
  
  .aff-card-enrollments {
	color: #444;
	font-size: 0.95rem;
  }
  
  .aff-card-footer {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #f6f8ff;
	padding: 10px 16px;
	border-top: 1px solid #ccc;
  }
  
  .aff-card-meta,
  .aff-card-actions {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #555;
	font-size: 0.9rem;
  }
  
  .aff-card-button {
	background: #ff7a30;
	color: white;
	padding: 6px 16px;
	border-radius: 20px;
	text-decoration: none;
	font-weight: 500;
	transition: background 0.3s ease;
  }
  
  .aff-card-button:hover {
	background: #e66115;
  }
  
  .aff-card-actions .fa-heart:hover,
  .aff-card-actions .fa-share-alt:hover {
	color: #e74c3c;
	cursor: pointer;
  }

  

  /* MultiCarousel Wrapper */
.video-carousel-container {
    position: relative;
    width: 100%;
    overflow-x: auto;  /* Enables horizontal scrolling */
    white-space: nowrap; /* Prevents items from wrapping */
    padding: 20px 0;
    scrollbar-width: thin; /* Firefox scrollbar */
    scrollbar-color: #007bff #f1f1f1;
}

/* Scrollbar Styling for Webkit Browsers (Chrome, Safari) */
.video-carousel-container::-webkit-scrollbar {
    height: 8px;
}

.video-carousel-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.video-carousel-container::-webkit-scrollbar-thumb {
    background: #007bff;
    border-radius: 10px;
}

.video-carousel-container::-webkit-scrollbar-thumb:hover {
    background: #0056b3;
}

/* Inner Container */
.video-carousel-inner {
  justify-content: center;
    display: flex;
    flex-wrap: nowrap;
    gap: 80px;
    padding-bottom: 10px; /* Space for scrollbar */
}

/* Individual Video Item */
.video-carousel-item {
    flex: 0 0 auto;
    width: 320px; /* Adjust width as needed */
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Responsive Iframe */
.video-carousel-item iframe {
    width: 100%;
    height: 180px; /* Adjust height as needed */
    border-radius: 10px;
}





/* listing cards */


.fj-card-wrapper {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  background-color: #ffffff;
  transition: transform 0.3s ease;
  max-width: 100%;
  width: 100%;
}

.fj-card-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.fj-card-header {
  background-color: var(--color-primary);;
  min-height: 65px;
  font-weight: 600;
  font-size: 1rem;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.fj-logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 50%;
}

.fj-card-body {
  background-color: #f6f8ff;
  min-height: 240px;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

.fj-location {
  font-size: 0.95rem;
  color: #333;
}

.fj-star-rating .fa {
  color: #ccc;
}

.fj-checked-star {
  color: #ffc107;
}

.fj-view-btn {
  background-color: var(--color-secondary);
  color: white;
  font-size: 0.9rem;
  padding: 6px 14px;
  border-radius: 20px;
  border: none;
  text-decoration: none;
  transition: background-color 0.3s ease-in-out;
}

.fj-view-btn:hover {
  background-color: var(--color-primary);
  color: white;
}

.fj-footer {
  border-top: 1px solid #ddd;
}



/* Adjust font sizes and padding for tablets (768px - 991px) */
@media (max-width: 991px) {
	.fj-card-header h5 {
	  font-size: 0.95rem;
	}
  
	.fj-card-body {
	  padding: 1rem;
	  min-height: 220px;
	}
  
	.fj-location {
	  font-size: 0.9rem;
	}
  
	.fj-view-btn {
	  font-size: 0.85rem;
	  padding: 5px 12px;
	}
  
	.fj-logo-img {
	  width: 36px;
	  height: 36px;
	}
  
	.fj-footer .fa {
	  font-size: 1rem;
	}
  }
  
  /* For small devices like phones (576px - 767px) */
  @media (max-width: 767px) {
	.fj-card-header {
	  min-height: 55px;
	  padding: 0.5rem;
	}
  
	.fj-card-header h5 {
	  font-size: 0.9rem;
	}
  
	.fj-location {
	  font-size: 0.85rem;
	}
  
	.fj-view-btn {
	  font-size: 0.8rem;
	  padding: 5px 10px;
	}
  
	.fj-card-body {
	  padding: 0.8rem;
	  min-height: 200px;
	}
  
	.fj-logo-img {
	  width: 32px;
	  height: 32px;
	}
  
	.fj-footer .fa {
	  font-size: 0.95rem;
	}
  }
  
  /* Extra small devices (<576px) */
  @media (max-width: 575px) {
	#search.card-wrapper {
		padding: 0rem !important; /* or 0 if you want no padding at all */
	  }

	.fj-card-wrapper {
	  margin-bottom: 1.5rem;
	}
  
	.fj-card-header h5 {
	  font-size: 0.85rem;
	  text-align: center;
	}
  
	.fj-location {
	  font-size: 0.8rem;
	}
  
	.fj-view-btn {
	  font-size: 0.75rem;
	  padding: 4px 8px;
	}
  
	.fj-logo-img {
	  width: 28px;
	  height: 28px;
	}
  
	.fj-footer {
	  flex-direction: column;
	  gap: 0.5rem;
	}
  
	.fj-footer .fa {
	  font-size: 0.9rem;
	}
  }


 /* For tablets and small laptops (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
	.fj-card-wrapper {
	  margin-bottom: 2rem;
	}
  
	.fj-card-header {
	  min-height: 60px;
	  padding: 0.75rem;
	}
  
	.fj-card-header h5 {
	  font-size: 0.95rem;
	  line-height: 1.2;
	  text-align: center;
	}
  
	.fj-location {
	  font-size: 0.85rem;
	}
  
	.fj-card-body {
	  padding: 1rem;
	  min-height: 220px;
	}
  
	.fj-logo-img {
	  width: 34px;
	  height: 34px;
	}
  
	.fj-view-btn {
	  font-size: 0.8rem;
	  padding: 5px 12px;
	}
  
	.fj-footer {
	  gap: 1rem;
	}
  
	.fj-footer .fa {
	  font-size: 1rem;
	}
  
	#search.card-wrapper {
	  padding: 1rem !important;
	}
  }
  

