/* Default container */

body {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    line-height: 1.2;
}
div#primary {
    margin-top: 0;
    padding-top: 0px !important;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
}

.bi-top-bar {
    background-color: #f7941d;
    color: white;
    padding: 8px 20px;
    font-size: 16px;
    text-align: center;
}

.header-container {
    position: sticky;
    top: 0;
    z-index: 99;
    padding: 12px 0px;
    background-color: white;
    box-shadow: 0px 4px 35.3px 0px #0000000A;
    height: 74px;
}

.bi-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bi-logo {
    color: #333;
    width: 15%;
}

.bi-logo span {
    color: #f7941d;
}

/* Navigation */
.bi-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 80%;
    justify-content: flex-end;
}
.bi-nav-item {
    margin: 0 15px;
    position: relative;
    cursor: pointer;
    color: #666;
    font-size: 16px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bi-nav-item:hover {
    color: #f7941d;
}

.bi-nav-item.active {
    color: #f7941d;
}

.bi-dropdown-arrow {
    display: inline-block;
    margin-left: 5px;
    transition: transform 0.3s;
}

.bi-nav-item:hover .bi-dropdown-arrow {
    transform: rotate(180deg);
}

/* Contact button */
.bi-contact-btn {
    background: linear-gradient(270deg, #0A7EB0 0%, #4A4A5E 100%);
    color: white;
    padding: 11px 18px;
    border-radius: 4px;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    transition: opacity 0.3s ease;
}

.bi-contact-btn:hover {
	color: white;
    background: linear-gradient(270deg, #0A7EB0 0%, #4A4A5E 100%),
                linear-gradient(270deg, #E9973D 0%, #ED1059 100%);
    background-blend-mode: overlay;
	    opacity: 0.85; /* Optional: Adds a soft hover effect */
}

.bi-dropdown {
    position: absolute;
    top: 50px;
    left: 0%;
    transform: translateX(-62%);
    width: 1300px;
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 100;
    padding: 30px;
    display: none;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 24px;
}

.bottom-vox {
    width: 199px;
    position: relative;
    bottom: 0px;
    right: 0px;
    height: 133px;
}

.bi-nav-item:hover .bi-dropdown {
    display: grid;
}

.bi-dropdown-item {
    padding: 2px 0px;
    color: #000000;
    font-family: 'Playfair Display';
    text-decoration: none;
    font-size: 18px;
    transition: background-color 0.2s;
}

.bi-dropdown-item:hover {
    background-color: #f9f9f9;
}

.bi-help-box {
    background-color: #FDF4EA;
    padding: 15px;
    border-radius: 8px;
    text-align: left;
    border: 1px solid #F7CBA0;
    grid-column: 4;
    grid-row: 1 / span 6;
}

.bi-help-box h4 {
    margin-bottom: 10px;
    font-size: 16px;
}

.bi-quote-btn {
    display: inline-block;
    color: white !important;
    padding: 8px 23px;
    width: 100%;
    background-image: linear-gradient(270deg, #E9973D 0%, #ED1059 100%);
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Playfair Display';
    margin-top: 10px;
}

a.bi-quote-btn:hover {
    color: white;
}

	.bi-nav-item a {
    color: #525252;
}

.bi-nav-item a:hover {
    color: #f6931d;
}
/* Responsive */
@media screen and (max-width: 1024px) {
    .bi-header {
        flex-direction: row;
        align-items: center;
    }
	
	button#mobileToggle:hover {
    background-color: white;
    color: black;
}
       #mobileToggle {
        width: 10%;
        padding: 0px;
        box-shadow: none;
    }

	
.bi-logo {
        width: 60%;
    }
a.bi-contact-btn.desktop-only {
    width: 30%;
}

    .bi-nav {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .bi-nav-item {
        margin: 10px 0;
    }

    .bi-dropdown {
        position: static;
        transform: none;
        width: 100%;
        display: none;
        grid-template-columns: 1fr;
    }

    .bi-nav-item:hover .bi-dropdown {
        display: block;
    }

    .bi-help-box {
        grid-column: auto;
        grid-row: auto;
    }
}

@media screen and (max-width: 600px) {
    .bi-top-bar {
        font-size: 12px;
        padding: 10px;
    }

    .bi-contact-btn, .bi-quote-btn {
        font-size: 14px;
        padding: 10px 11px;
    }
}



/* Mobile menu toggle button - new */
.bi-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}
.bi-mobile-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: #333;
    transition: all 0.3s;
}

/* Mobile sidebar menu - new */
.bi-mobile-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100%;
    background-color: white;
    z-index: 1000;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}
.bi-mobile-sidebar.active {
    left: 0;
}
.bi-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    border-bottom: 1px solid #eee;
}
.bi-sidebar-close {
    background: none;
    border: none;
    font-size: 38px;
    cursor: pointer;
    color: black;
    padding: 0px;
}
.bi-sidebar-nav {
    padding: 15px 0;
}
.bi-sidebar-item {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    color: #000000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.bi-sidebar-item:hover {
    background-color: #f5f5f5;
}
.bi-sidebar-dropdown {
    display: none;
    padding-left: 15px;
}
.bi-sidebar-dropdown.active {
    display: block;
}
.bi-sidebar-dropdown a {
    display: block;
    padding: 6px 0px;
    color: #666;
    text-decoration: none;
    border-bottom: 1px solid #eee;
}
.bi-sidebar-dropdown a:hover {
    color: #f7941d;
}
.bi-sidebar-footer {
    padding: 15px;
    border-top: 1px solid #eee;
    text-align: center;
}
.bi-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}
.bi-overlay.active {
    display: block;
}

.bi-sidebar-item a {
    color: black;
}
/* Mobile footer banner - new */
.bi-mobile-footer {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f7941d;
    color: white;
    padding: 10px 15px;
    text-align: center;
}

.desktop-only {
    display: none;
}

/* Responsive styles */
@media screen and (max-width: 1024px) {
    .bi-nav {
        display: none;
    }
    .bi-mobile-toggle {
        display: block;
    }
    .bi-mobile-footer {
        display: block;
    }
}

@media screen and (max-width: 768px) {
	
.bi-sidebar-dropdown a {
    border-bottom: none;
}
	
.header-container {
    height: 60px;
}

.desktop-only {
    display: block;
}
    .bi-header {
        padding: 0px 15px;
		        gap: 10px;
    }
    .bi-logo img {
        max-width: 180px;
    }
}

@media screen and (max-width: 480px) {
    .bi-logo img {
        max-width: 150px;
    }
}


/* Footer Styles */
.bg-footer {
  background-color: #f5fbfd;
  padding: 3rem 0 1rem;
  font-family: Arial, sans-serif;
}


.footer-contact-section {
    display: flex;
    justify-content: space-between;
    padding: 30px 0px;
}

.footer-heading h3 {
  color: #006476;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.footer-heading p {
    color: #555;
    font-size: 0.9rem;
    margin: 0px;
}

.footer-form {
  display: flex;
  flex: 1;
  justify-content: flex-end;
  max-width: 600px;
}

.footer-form form {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 200px;
}

.form-group label {
  font-size: 0.8rem;
  margin-bottom: 0.3rem;
  color: #555;
}

.form-group input {
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.phone-input {
  display: flex;
}

.phone-input select {
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 4px 0 0 4px;
  border-right: 0;
  background-color: #f9f9f9;
}

.phone-input input {
  flex: 1;
  border-radius: 0 4px 4px 0;
}

.form-submit {
  display: flex;
  align-items: flex-end;
}

.submit-btn {
  padding: 0.8rem 2rem;
  background: linear-gradient(to right, #ff5a5f, #ff8a66);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: linear-gradient(to right, #ff4046, #ff7a56);
}

.footer-links-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.footer-brand {
  flex: 0 0 35%;
  margin-bottom: 1.5rem;
}

.footer-brand h2 {
  color: #006476;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  color: #555;
  font-size: 0.9rem;
  max-width: 250px;
}

.footer-menu {
    flex: 0 0 12%;
    margin-bottom: 1.5rem;
}

.footer-menu h4 {
  color: #333;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu ul li {
  margin-bottom: 0.5rem;
}

.footer-menu ul li a {
  color: #555;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-menu ul li a:hover {
  color: #006476;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid #e0e0e0;
    padding-bottom: 10px;
}

.copyright {
  color: #777;
  font-size: 0.8rem;
}

.stay-updated {

}

.stay-updated p {
  margin-right: 1rem;
  font-size: 0.9rem;
  color: #555;
	margin-bottom: 0;
}

.copyright p {
    font-size: 16px;
    margin: 0px;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
.social-icons a:hover {
    background-color: #ffffff;
    color: white;
}


  .footer-title {
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 20px;
            color: #333;
        }
        
.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 3rem;
}
        .footer-column {
            flex: 1;
            min-width: 250px;
            margin-bottom: 20px;
        }
        
     .footer-top-link {
    font-weight: 500;
    display: block;
    padding: 10px 0;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #ddd;
    font-size: 15px;
    transition: color 0.3s ease;
}
        
        .footer-top-link:hover {
            color: #0066cc;
        }
        
        @media (max-width: 768px) {
            .footer-links {
                flex-direction: column;
            }
            
            .footer-column {
        width: 50%;
        min-width: 50%;
    }
			 .footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px; /* Optional: space between columns */
  }

  .footer-column {
    width: 100%;
  }
			
			.footer-top-link {
    font-size: 14px;
}
			
        }


/* Responsive Styles */
@media (max-width: 992px) {
    .footer-contact-section {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        text-align: left;
    }
  .footer-heading {
    margin-bottom: 1.5rem;
    text-align: left;
    width: 100%;
  }
	.footer-links-section {
    display: flex
;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 2rem;
    margin-top: 2rem;
    padding: 0px 20px;
}
  
  .footer-form {
    width: 100%;
    justify-content: center;
  }
  
  .footer-brand,
  .footer-menu {
    flex: 0 0 30%;
  }
}

.bg-footer-light {
    background-color: #E8F5F9;
}

@media (max-width: 768px) {
     .footer-brand {
        flex: 0 0 100%;
        text-align: left;
    }
  
     .footer-brand p {
        max-width: 100%;
        font-size: 16px;
		         margin-bottom: 0px;
    }
  
  .footer-menu {
    flex: 0 0 45%;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .copyright {
    margin-bottom: 1rem;
  }
  
  .stay-updated {
    flex-direction: column;
  }
  
  .stay-updated p {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
}
footer.footer-custom {
    background-color: #F9F9F9;
}
@media (max-width: 576px) {
     .footer-menu {
        flex: 0 0 50%;
        text-align: left;
    }
  
	.footer-menu ul li a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}
	
	.bi-logo-footer .custom-logo {
    width: 60%;
    margin-bottom: 20px;
}
	
	.footer-menu h4 {
    color: #333;
    font-size: 16px;
    margin-bottom: 1rem;
}
	
  .form-group {
    flex: 0 0 100%;
  }
}

.bi-logo-footer .custom-logo {
    width: 42%;
    margin-bottom: 20px;
}
/* Target standard buttons across Astra theme */
button,
input[type="submit"],
input[type="button"],
input[type="reset"],
.ast-button,
.wp-block-button__link,
a.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    background: linear-gradient(270deg, #0A7EB0 0%, #4A4A5E 100%);
    color: white;
    padding: 11px 18px;
    border-radius: 4px;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    transition: opacity 0.3s ease;
    border: none;
}

/* Hover effect for all buttons */
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
.ast-button:hover,
.wp-block-button__link:hover,
a.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    background: linear-gradient(270deg, #0A7EB0 0%, #4A4A5E 100%),
                linear-gradient(270deg, #E9973D 0%, #ED1059 100%);
    background-blend-mode: overlay;
    color: white !important;
    opacity: 0.85;
}


.message-area {
    height: 80px;
    font-size: 14px;
    padding: 4px;
}

span.wpcf7-list-item-label {
    font-size: 14px;
    font-weight: 600;
}
/* Custom CSS for Best Insurance Contact Form */

.best-insurance-form-container {
    margin: 0 auto;
}

.best-insurance-form-container p {
    margin: 0px;
}

.best-insurance-form-container br {
    display: none;
}

/* Label styles */
.best-label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

/* Input field styles */
.best-input {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    transition: border-color 0.3s;
}

.best-input:focus {
    border-color: #ff5c5c;
    outline: none;
}

/* Dropdown styles */
.enquiry-dropdown-wrapper {
    margin-bottom: 15px;
}

.best-select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background-color: white;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
}

.best-select:focus {
    border-color: #ff5c5c;
    outline: none;
}

/* Textarea styles */
.best-textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    min-height: 100px;
    resize: vertical;
    font-size: 14px;
    font-family: Arial, sans-serif;
    color: #333;
}

.best-textarea:focus {
    border-color: #ff5c5c;
    outline: none;
}

/* Character counter styles */
.wpcf7-character-count {
    text-align: right;
    font-size: 12px;
    color: #888;
    margin-top: -10px;
    margin-bottom: 15px;
}

/* Checkbox styles */
.privacy-consent-wrapper {
    margin-bottom: 20px;
}

.best-checkbox {
    margin-right: 8px;
    cursor: pointer;
}

.wpcf7-list-item {
    margin-left: 0;
}

.wpcf7-list-item-label {
    font-size: 13px;
    color: #555;
}

.wpcf7-list-item-label a {
    color: #ff5c5c;
    text-decoration: none;
}

.wpcf7-list-item-label a:hover {
    text-decoration: underline;
}

/* Error message styles */
.wpcf7-not-valid-tip {
    color: #ff5c5c;
    font-size: 12px;
    margin-top: -10px;
    margin-bottom: 10px;
}

.wpcf7-response-output {
    margin: 20px 0 0;
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 14px;
}

/* Specific field styles */
.name-field::placeholder,
.email-field::placeholder,
.phone-field::placeholder,
.message-area::placeholder {
    color: #aaa;
}

label, legend {
    color: #111827;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 31px;
}

.job-application-form-container textarea {
    height: 80px;
}

input.wpcf7-form-control.wpcf7-file.form-file-upload {
    height: 44px;
    padding: 8px;
}

.footer-ribben {
	margin-top: 4rem;
	padding: 20px;
}

.job-application-form-container input {
    margin-bottom: 1rem;
}

.job-application-form-container .wpcf7-checkbox {
    display: grid;
}

.job-application-form-container input[type="checkbox"] {
    height: 16px !important;
}

.job-application-form-container .dropdown-wrapper {
    margin-bottom: 1rem;
}

.job-application-form-container p {
    margin: 0px;
}

span.wpcf7-spinner {
    display: none;
}

.job-application-form-container .submit-button {
    margin-top: 1rem;
    width: 100%;
    margin-bottom: 0px;
}

a.page-numbers.next {
    background-color: black;
    color: white;
    padding: 10px 10px 13px 10px;
    border-radius: 4px;
}

span.page-numbers.prev {
    background-color: black;
    color: white;
    padding: 10px 10px 13px 10px;
    border-radius: 4px;
}

.job-application-form-container {
    margin: 0 auto;
}
a.elementor-toc__list-item-text {
    margin: 6px 0px;
}

.bi-footer-submit-btn {
    font-family: 'Lato' !important;
}

ol.elementor-toc__list-wrapper .elementor-toc__list-item-text-wrapper:before {
    content: counters(item, ".") ". ";
    display: none;
}

.bi-footer-form {
    display: flex;
    align-items: flex-end;
    gap: 14px;
    margin-bottom: 0px !important;
}

.bi-footer-form .wpcf7-spinner {
    display: none;
}
.bi-footer-form {
    display: flex;
    align-items: flex-end;
    gap: 14px;
}

.bi-footer-form-submit p {
    margin: 0px;
}
.bi-footer-form-group br {
    display: none;
}

.bi-footer-form-group {
    flex: 1;
    min-width: 300px;
}

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

.required {
    color: red;
}

.bi-footer-form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

.bi-footer-phone-input-container {
    display: flex;
    gap: 5px;
}


#phone {
    flex: 1;
}

.bi-footer-form-row {
    display: flex;
    gap: 20px;
}

.bi-footer-submit-btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(to right, #e5356a, #f47d54) !important;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    width: 100%;
}

.bi-footer-form-group p {
    margin: 0px;
}
@media (max-width: 768px) {
    .bi-footer-form-group {
        flex: 100%;
    }
	
	.bi-footer-form-submit {
    width: 100%;
}
	
	.bi-footer-form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.bi-footer-form {
    display: flex;
    align-items: flex-end;
    gap: 14px;
    flex-wrap: wrap;
}

.bi-footer-form-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
}



        .video-colums {
            display: flex;
            margin: 0 auto;
            gap: 20px;
        }
        
        .main-video {
            flex: 2;
        }
        
        .video-player {
            width: 100%;
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            background-color: #007bff;
        }
        
        .video-player video {
            width: 100%;
            display: block;
            cursor: pointer;
        }
        
        .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px !important;
    height: 68px !important;
    background-color: rgb(255 255 255);
    border-radius: 50%;
    display: flex
;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
        
    .play-icon:before {
    content: "";
    width: 0;
    height: 0;
    border-top: 14px solid transparent;
    border-left: 24px solid #007bff;
    border-bottom: 16px solid transparent;
    margin-left: 5px;
}
        
        .magnifier {
            position: absolute;
            bottom: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
        }
        
        .video-title {
            margin-top: 10px;
            font-size: 18px;
            font-weight: bold;
        }
        
.related-videos {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 475px;
    overflow-y: auto;
    padding-right: 10px;
    scrollbar-width: none; 
    -ms-overflow-style: none;
}

.related-videos::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}



        .related-videos::-webkit-scrollbar {
            width: 6px;
        }
        


        .related-videos::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }
        
        .related-videos::-webkit-scrollbar-thumb {
            background: #888;
            border-radius: 10px;
        }
        
        .related-videos::-webkit-scrollbar-thumb:hover {
            background: #555;
        }
        
.related-video {
    background-color: #ffffff;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 15px;
    border: 1px solid #DDDDDD;
}   
  

   .related-video.active {
            background-color: #E8F5F9;
                border: 0px solid #DDDDDD;

        }


        .related-video:not(.active) .related-video-player img {
            filter: brightness(0.7);
        }
        
        .related-video-player {
            position: relative;
        }
        
.related-video-player img {
    width: 100%;
    display: block;
    height: 160px !important;
    border-radius: 10px !important;
}
        
.related-video-info {
    padding: 14px 0px 0px 0px;
}
        
.related-video-title {
    font-size: 18px;
    margin-bottom: 5px;
    font-family: 'Lato';
    font-weight: 600;
}
        
.related-video-status {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    color: #1B9FC1;
    font-weight: 700;
}

.subscribe-btn {
    background: linear-gradient(270deg, #ff0000 0%, #ff0000 100%) !important;
    color: white;
    border: none;
    padding: 10px 10px;
    border-radius: 3px;
    cursor: pointer;
    font-weight: 500;
    font-size: 16px;
    font-family: 'Lato';
}
        
        /* Custom video controls */
        .custom-controls {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0,0,0,0.5);
            padding: 10px;
            display: flex;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .video-container:hover .custom-controls {
            opacity: 1;
        }

        .related-video.active .related-video-player {
            display: block;
        }


           .related-video .related-video-player {
            display: none;
        }
        
        .play-pause-btn {
            color: white;
            background: none;
            border: none;
            cursor: pointer;
            width: 30px;
            height: 30px;
        }
        
        .progress-bar {
            flex-grow: 1;
            height: 5px;
            background-color: rgba(255,255,255,0.3);
            margin: 0 10px;
            cursor: pointer;
            position: relative;
        }
        
        .progress {
            height: 100%;
            background-color: #007bff;
            width: 0%;
        }
        
        .time-display {
            color: white;
            font-size: 12px;
        }

        @media (max-width: 768px) {
            .video-colums {
                flex-direction: column;
            }
        }


  .subscribe-colum {
    display: flex;
    justify-content: flex-end;
    margin-top: 13px;
}

.job-application-form-container br {
    display: none;
}


/* < --- Bottom Sticky Bar --- > */

.review-sticky-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
}
.review-sticky-card {
    background-color: #E8F5F9;
    border-radius: 12px;
    padding: 22px 15px 13px 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 160px;
    position: relative;
    transition: width 0.4s ease, padding 0.4s ease;
}

/* Toggle Button */
.review-sticky-toggle {
    position: absolute;
    top: 8px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
    color: #333;
    font-weight: bold;
    z-index: 100;
}

/* Full content styles */
.review-sticky-content {
    display: block;
}

.review-sticky-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1px;
}

.review-sticky-star-icon {
    width: 20px;
    height: 20px;
    background-color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 6px;
}

.review-sticky-star {
    color: white;
    font-size: 14px;
}

.review-sticky-logo-text {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.review-sticky-rating-text {
    font-size: 16px;
    color: #4A4A4A;
    margin-bottom: 1px;
}

.review-sticky-rating-value {
    color: #FF9800;
    font-weight: bold;
}

.review-sticky-review-count {
    font-size: 14px;
    color: #6B7280;
}

.review-sticky-quote-button {
    background: linear-gradient(270deg, #0A7EB0 0%, #4A4A5E 100%);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 14px;
    font-size: 14px;
    width: 100%;
    font-weight: 300;
    cursor: pointer;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 1rem;
}
/* Hide the + icon when collapsed */
.review-sticky-container.collapsed .toggle-icon {
    display: none;
}

.review-sticky-quote-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.review-sticky-collapsed {
    display: none;
    writing-mode: sideways-lr;
    text-orientation: mixed;
    font-size: 14px;
    color: #111;
    font-weight: 600;
    text-align: center;
    padding: 0px;
    line-height: 1.5;
}

/* Position when collapsed */
.review-sticky-container.collapsed {
     bottom: 34%;
    right: 0px;
}

/* Apply collapsed styles */
.review-sticky-container.collapsed .review-sticky-content {
    display: none;
}

.review-sticky-container.collapsed .review-sticky-collapsed {
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-sticky-container.collapsed .review-sticky-card {
    width: 42px;
    padding: 8px;
    border-radius: 0px !important;
    height: 255px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px 0px 0px 12px !important;
}

.review-sticky-collapsed p {
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    margin: 0;
    padding: 0;
    gap: 4px;
    font-size: 16px;
    color: #525252;
    font-weight: 600;
}

.review-sticky-collapsed img {
    height: 100%;
    margin-right: 0px;
    margin-top: 6px;
}

/* Admin Bar Fix */
body.admin-bar .review-sticky-container {
    bottom: calc(20px + 32px);
}

/* Mobile */
@media (max-width: 782px) {
    .review-sticky-card {
        display: none;
    }
    .review-sticky-container {
        width: 240px;
    }
    .review-sticky-quote-button {
        font-size: 16px;
        padding: 12px;
    }
}


/* < --- Bottom Sticky Bar --- > */



.review-sticky-top {
    background-color: white;
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 10px;
}


/* Hide on larger screens */
.mobile-sticky-button-link {
  display: none;
}

/* Sticky mobile button wrapper */
@media (max-width: 768px) {
.mobile-sticky-button-link {
  display: block;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 90%;
  max-width: 320px;
  z-index: 999999;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.hidden-by-default {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.visible-after-scroll {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}


	.review-sticky-red {
    background: linear-gradient(270deg, #E9973D 0%, #ED1059 100%);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 14px;
    font-size: 15px;
    width: 100%;
    font-weight: 300;
    cursor: pointer;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
	
  .review-sticky-quote-button {
    width: 100%;
  }
}


.scroll-buster {
  height: 230px;
  overflow-y: auto; /* Enables vertical scrolling */
  scrollbar-width: thin; /* For Firefox */
  scrollbar-color: #1b9fc1 transparent; /* For Firefox */
}

/* For WebKit browsers (Chrome, Edge, Safari) */
.scroll-buster::-webkit-scrollbar {
  width: 8px;
}

.video-container iframe {
    height: 470px;
}

.scroll-buster::-webkit-scrollbar-track {
  background: transparent;
}

.scroll-buster::-webkit-scrollbar-thumb {
  background-color: #1b9fc1;
  border-radius: 4px;
}

.drodow-heading {
    font-family: 'Playfair Display';
    font-size: 16px;
    color: black;
    text-transform: capitalize;
}

ul.header-dropdown {
    margin: 0px;
}

.header-links .header-menu-item {
    font-size: 13px;
    list-style-type: none;
    padding: 6px 0px;
    border-bottom: 1px dashed #e9e9e9;
    font-weight: 500;
}

.unlist-content p {
    margin: 0px;
}

.elementor-slideshow__title {
    display: none;
}


.CarouselWidget-prefix .CarouselWidget .R-ReviewsList .R-ReviewsList__item:nth-child(even) .item__inner {
    background-color: #E8F5F9 !important;
    background-image: none !important;
}

.CarouselWidget-prefix .CarouselWidget .R-ReviewsList .R-ReviewsList__item:nth-child(odd) .item__inner {
    background-color: #FDF4EA !important;
    background-image: none !important;
}


 .income_form {
      background: #fff;
    }

    .income_form .income_form-group {
      margin-bottom: 20px;
    }

    .income_form .income_form-group.inline {
      display: flex;
      gap: 20px;
      align-items: flex-end;
    }

    .income_form label {
      display: block;
      font-weight: bold;
      margin-bottom: 6px;
      font-size: 14px;
    }

    .income_form select,
    .income_form input[type="text"],
    .income_form input[type="email"] {
      width: 100%;
      padding: 10px;
      font-size: 14px;
      border: 1px solid #ccc;
      border-radius: 3px;
    }

    .income_form .income_form-submit-btn {
      background-color: #f9a825;
      color: white;
      font-weight: bold;
      padding: 15px 30px;
      border: none;
      border-radius: 30px;
      font-size: 16px;
      margin-top: 20px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .income_form .income_form-submit-btn::after {
      content: "➔";
      margin-left: 10px;
    }

    .income_form .form-half {
      flex: 1;
    }


  .spinner-border {
      width: 3rem;
      height: 3rem;
  }
  .quote-form-section {
    width: 100%;
    height: auto;
    padding-top: 4em;
    padding-bottom: 4em;
    background: #F9FEFF;
}
	.progress-wrapper {
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    padding-top: 1rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid #eee;
  }
form#quote-form-wrapper {
    border: 1px solid #CFD0D2;
    border-radius: 8px;
    padding: 3rem 4rem;
}

  .progress-bar {
    transition: width 0.5s cubic-bezier(.61,1,.88,1), background 0.3s;
  }




  .form-control, .select2-container--default .select2-selection--single {
    border-radius: 0.75rem !important;
    font-size: 1rem !important;
    border: 1px solid #eee !important;
    padding: 0.6rem 1rem !important;
  }

  input.form-check-input[type="radio"]:checked {
    background-color: #025bee;
    border-color: #025bee;
  }
  input.form-check-input[type="radio"] {
    border: 2px solid #ccc;
  }
  .form-check-label {
    font-weight: 500;
    color: #222;
  }

  label.col-form-label {
    font-weight: 600;
    color: #22324c;
  }

  .btn-primary {
    background-color: transparent;
    font-family: "Playfair Display", Sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    background-image: linear-gradient(230deg, #0A7EB0 0%, #4A4A5E 100%);
    border-radius: 6px 6px 6px 6px;
    padding: 12px 16px 12px 16px;
  }
  .btn-primary:hover, .btn-primary:focus {
    background: linear-gradient(270deg, #0A7EB0 0%, #4A4A5E 100%), linear-gradient(270deg, #E9973D 0%, #ED1059 100%);
    background-blend-mode: overlay;
    color: white !important;
    opacity: 0.85;

  }

  .step1 p, .step2 p, .step3 p, .step4 p, .step5 p, .step6 p {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #0B4351;
    font-family: 'Playfair Display';
	text-align: center;
  }

  .select2-container--default .select2-selection--single {
    height: 42px !important;
    padding: 8px 14px !important;
    background: #fff !important;
    border: 1px solid #eee !important;
  }
  .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 26px !important;
  }
  .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 40px !important;
  }
form#quote-form-wrapper {
    padding: 0 !important;
}

  .card-title {
    color: #025bee;
    font-weight: 700;
    letter-spacing: .03em;
  }

  .card {
    border-radius: 1rem;
    overflow: hidden;
    border: none;
    background: #fcfcff;
  }
input[type="text"], input[type="number"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type=reset], input[type=tel], input[type=date], select {
    border-radius: 1px !important;
    border: 1px solid #ccc !important;
    background: #ffffff !important;
    padding: 12px 16px !important;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05) !important;
}
.col-sm-12.dob-field {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    position: relative;
}
small#dob-error {
    position: absolute;
    left: 1em;
    bottom: -3em;
}
button.select2-selection__clear {
    background: none;
    color: #000;
    padding: 0;
}
button.select2-selection__clear:hover{
  background: none;
    color: #000;
    padding: 0;
}
::placeholder {
    text-transform: capitalize;
}
button#fetch-address-btn {
    color: #fff;
    font-family: 'Playfair Display', Sans-serif;
}
select#address-select {
    height: fit-content;
}


 .progress-steps {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }

    .step {
      width: 48px;
      height: 48px;
      border: 2px solid #2ca6c8;
      border-radius: 50%;
      background-color: #2ca6c8;
      color: white;
      font-size: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .step span {
      font-weight: bold;
    }

    .step.completed {
    background-color: #f6921e;
    border-color: #000000;
    color: white;
    outline: 1px solid #f6921e;
    border: 3px solid white;
}

    .step.completed .checkmark {
      font-size: 20px;
    }

    .step.active {
      background-color: white;
      border: 3px solid #2ca6c8;
      color: #2ca6c8;
      font-weight: bold;
    }

section.quote-froms {
    margin: 5rem;
}

label.col-form-label {
    font-weight: 600;
    color: #22324c;
    margin-top: 10px;
    margin-bottom: 0px;
}

    .line {
      height: 2px;
      width: 30px;
      background-color: #ccc;
    }


/* ==== Related Link Footer ==== */

section.related-link-footer {
    background-color: white;
    padding: 5rem 0rem;
}

  .related-link-footer .container {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: white;
    position: relative;
    overflow: hidden;
}


        .related-link-footer .section {
            position: relative;
        }

        .related-link-footer .section-title {
            font-size: 28px;	
            color: #333;
            margin-bottom: 18px;
            font-weight: bold;
            letter-spacing: -0.5px;
            position: relative;
            padding-bottom: 15px;
        }

        .related-link-footer .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, #3b82f6, #06b6d4);
            border-radius: 2px;
        }

       .related-link-footer .link-list {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

     .related-link-footer .link-item {
    margin-bottom: 0px;
    position: relative;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s ease;
    border-bottom: 1px solid #5656562e;
}


        .related-link-footer .link-item a {
            color: #0ea5e9;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            display: block;
            padding: 12px 0;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .related-link-footer .link-item a::before {
            content: '→';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0;
            transition: all 0.3s ease;
            color: #3b82f6;
            font-weight: bold;
        }

        .related-link-footer .link-item a:hover {
            color: #0369a1;
            padding-left: 25px;
            transform: translateX(5px);
        }

        .related-link-footer .link-item a:hover::before {
            opacity: 1;
        }

        .related-link-footer .link-item.hidden {
            display: none;
        }

        .related-link-footer .link-item.fade-in {
            animation: fadeInItem 0.5s ease-out forwards;
        }

    .related-link-footer .load-more {
    margin-top: 24px;
    text-align: left;
}


    .related-link-footer .load-more-btn {
    color: white;
    border: none;
    padding: 10px 12px;
    font-size: 14px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

     

        .related-link-footer .load-more-btn:active {
            transform: translateY(0);
        }

        .related-link-footer .load-more-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
    .related-link-footer .container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0px 0px;
        margin: 20px;
    }

            .related-link-footer .section-title {
                font-size: 22px;
                margin-bottom: 25px;
            }

            .related-link-footer .link-item a {
                font-size: 1em;
                padding: 10px 0;
            }

            .related-link-footer {
                padding: 2rem 0rem !important;
            }
        }

        /* Subtle animations */
        .related-link-footer .section {
            animation: fadeInUp 0.6s ease-out;
        }

        .related-link-footer .section:nth-child(2) {
            animation-delay: 0.2s;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInItem {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Hover effects for sections */
        .related-link-footer .section:hover .section-title::after {
            width: 80px;
            transition: width 0.3s ease;
        }