@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

/* ===== Smooth Scroll Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-25px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(25px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Base animation class - waiting state */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    will-change: opacity, transform;
}

.fade-in-up.fade-in-up-active {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
    animation: fadeInUp 0.7s ease-out forwards;
}

/* Stagger effect for multiple elements - add slight delays */
.fade-in-up:nth-child(1) { animation-delay: 0.0s; }
.fade-in-up:nth-child(2) { animation-delay: 0.1s; }
.fade-in-up:nth-child(3) { animation-delay: 0.2s; }
.fade-in-up:nth-child(4) { animation-delay: 0.3s; }
.fade-in-up:nth-child(n+5) { animation-delay: 0.4s; }

/* Additional animation variations */
.fade-in-up-slow {
    opacity: 0;
    transform: translateY(40px);
    will-change: opacity, transform;
}

.fade-in-up-slow.fade-in-up-active {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUpSlow 1s ease-out forwards;
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-25px);
    will-change: opacity, transform;
}

.slide-in-left.fade-in-up-active {
    opacity: 1;
    transform: translateX(0);
    animation: slideInLeft 0.7s ease-out forwards;
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.slide-in-right {
    opacity: 0;
    transform: translateX(25px);
    will-change: opacity, transform;
}

.slide-in-right.fade-in-up-active {
    opacity: 1;
    transform: translateX(0);
    animation: slideInRight 0.7s ease-out forwards;
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}





.scale-in.fade-in-up-active {
    animation: scaleIn 0.6s ease-out forwards;
}

/* Float animation for decorative elements */
.float {
    animation: float 3s ease-in-out infinite;
}

.float.fade-in-up-active {
    animation: float 3s ease-in-out infinite;
}

/* Pulse animation */
.pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* ===== Form Elements ===== */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea,
select {
    transition: all 0.3s ease;
    border: 2px solid #ddd;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
    border-color: #005a9c;
    box-shadow: 0 0 0 3px rgba(0, 90, 156, 0.1);
    transform: translateY(-2px);
}

/* ===== Links ===== */
a {
    transition: all 0.3s ease;
}
.header-logo img {
    padding: 5px 0;
}
.header-logo a {
    line-height: 0;
    display: block;
}
/* Reduce motion for accessibility */
@media (prefers-reduced-motion: prefer-reduced) {
    .fade-in-up,
    .fade-in-up-slow,
    .slide-in-left,
    .slide-in-right {
        opacity: 1;
        transform: none;
        transition: none;
    }
    
    .fade-in-up-active {
        animation: none !important;
    }
}

/* Scroll to Top Button */
.scroll-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #c32033;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(195, 32, 51, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}
.scroll-to-top-btn::before {
    content: "↑";
    content: "";
    background: url(https://microfridgebydanby.com/wp-content/uploads/2026/04/top-arrow.png);
    font-weight: bold;
    width: 100%;
    height: 100%;
    background-size: 18px;
    background-repeat: no-repeat;
    position: absolute;
    left: 17px;
    right: 0px;
    top: 13px;
    margin: auto;
    text-align: center;
}
.scroll-to-top-btn.show {
    display: flex;
}

.scroll-to-top-btn:hover {
    background-color: #002d52;
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 45, 82, 0.3);
}

html {
    scroll-behavior: smooth;
}

body{
      font-family: "Poppins", sans-serif;
      font-size: 1.1rem;
      line-height: 1.4;
      font-weight: 400;
      margin: 0;
      padding: 0;
      width: 100%;
      color: #333
}
h1 {
    font-size: 3em;
    margin: 0.67em 0;
}
section.support-section .support-wrapper {
    width: 90%;
    margin: auto;
}section.support-section .support-wrapper {
    width: 90%;
    margin: auto;
}
div#gform_wrapper_3, div#gform_wrapper_2 , div#gform_wrapper_4{
    max-width: 1200px;
    margin: auto;
    background: #ededed;
    padding: 30px 50px;
    border-radius: 30px;
}
h1, h2, h3, h4, h5, h6 {
    color: #005a9c;
}header#masthead.inner-header .container {
    padding: 0;
}
header#masthead {
    padding: 0px 0px;
    margin-top: 10px;
}
header#masthead .container {
    max-width: 100%;
    width: 100%;
    padding: 0 30px;
}
.header-logo {
    max-width: 200px;
    margin-left: 50px;
}

.widget {
    margin: 0 0em;
}
main#primary {
    padding: 0 30px;
}
ul#primary-menu {
    float: right;
    margin-top: 0;
}
.ginput_container.ginput_container_textarea textarea#input_2_83 {
    background: #e1e1e1e1;
    border-radius: 10px;
    border: 0px;
    padding: 20px !important;
    font-size: 15px;
}div#field_2_84 h3 {
    margin-top: 0;
    font-size:21px;
}
div#field_2_84 {
    background: #e1e1e1e1;
    border-radius: 5px;
    border: 0px;
    padding: 20px !important;
    font-size: 15px;
}
input#input_2_28 {
    border-radius: 50px;
}
label.gfield_label.gform-field-label{
  
    color: #111111 !important;
}
label#input_2_29_1_label span , label#input_2_29_3_label span, label#input_2_29_4_label span, label#input_2_29_5_label span{
    color: #c02b0a;
    display: inline-block;
    font-size: 13.008px;
    padding-inline-start: 0.125em;
    font-style: italic;
    font-weight: 400;
}div#field_2_78 {
    margin: -12px 15px;
    padding: 0px;
}div#field_2_78 a {
    color: #005a9c;
    font-weight: 500;
}div#field_2_78 a:hover {
    color: black;
}
.post-type-archive-school .no-school {
    display: none !important;   
}
ul#primary-menu li#menu-item-220 {
    padding: 25px 50px;
    position: relative;
    margin-left: 0px;
    border-radius: 20px 20px 0 0;
}footer#colophon .container {
    max-width: 100%;
    width: 100%;
}
.home  ul#primary-menu li#menu-item-220 {
    padding: 25px 50px;

}
.home ul#primary-menu li#menu-item-220:before {
    content: "";
    background: #e1e1e1;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    left: 0;
    bottom: 0;
    max-height: 500px;
    border-radius: 30px 30px 0 0;
    right: 0;
    margin: auto;
    text-align: center;
}
ul#primary-menu li {
    padding: 0px 40px;
    /* background: white; */
}
li#menu-item-220 a {
    background: #c32033;
    margin-left: 0px;
    display: inline-block !important;
    padding: 0px 38px;
    width: auto;
    height: 49px;
    line-height: 49px;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.2rem;
}
.no-school {
    text-align: center;
    padding: 10px 0 0;
    font-size: 20px;
}

/* Hamburger Menu Toggle Button */
.menu-toggle {
    background: transparent;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 0;
    line-height: 1;
    color: #ffffff;
    display: none;
    height: 44px;
    width: 44px;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.page-id-228 .entry-content ul, .page-id-229 .entry-content ul {
    margin: 0 0 30px;
    padding: 0 15px;
}
.page-id-228 .entry-content h3 , .page-id-229 .entry-content h3{
    font-size: 20px !important;
    font-weight: 600;
    margin-bottom: 15px !important;
}
.page-id-228 .entry-content h2, .page-id-229 .entry-content h2 {
    font-size: 30px !important;
    margin-bottom: 10px !important;
}
.page-id-228 .entry-content ul, .page-id-229 .entry-content ul{
    margin: 0 0 35px;
    padding: 0 20px;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-15px);
  }
  60% {
    transform: translateY(-8px);
  }
}
img.alignnone.wp-image-484.aligncenter.bounce {
    box-shadow: 1px 9px 20px #00000040;
    border-radius: 13px;
}
.bounce {
  animation: bounce 1.6s infinite;
}
/* Active/Current menu item styling */
.home .current-menu-item a,
.home .current_page_item a,
.home .menu-item a:hover {
    color: #0072ce !important;
}
.current-menu-item a, .current_page_item a, .menu-item a:hover {
    color: #ffffff !important;
}
ul#primary-menu li#menu-item-220 a:before, ul#primary-menu li#menu-item-220 a:after{
    content: none;
}
.current-menu-item a,
.current_page_item a {
    position: relative;
}

/* Smooth underline for desktop */
@media screen and (min-width: 768px) {
    /* Base underline - hidden by default */
    .main-navigation a {
        position: relative;
        transition: color 0.3s ease;
    }
      .home .main-navigation a::after {
        bottom: 28px;
    }
.home .main-navigation a::after {
    
        background: #c32033;
    }
        .main-navigation a::after {
        content: "";
        position: absolute;
        bottom: 20px;
        left: 0;
        width: 0;
        height: 2px;
        background: #ffffff;
        transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 50px;
    }
    /* Show underline for current menu items */
       .main-navigation .current-menu-item a::after, .main-navigation .current_page_item a::after {
        width: 40%;
        left: 0;
        right: 0;
        margin: auto;
    }

    /* Show underline on hover */
    .main-navigation a:hover::after {
        width: 100%;
    }
}

/* Add left accent for mobile */
@media screen and (max-width: 767px) {
    /* Left accent bar - animated */
    .main-navigation a::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 0;
        background: linear-gradient(180deg, #c32033 0%, #ff5a6b 100%);
        transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                    background 0.3s ease;
    }

    /* Show accent bar for current menu items */
    .current-menu-item a::before,
    .current_page_item a::before {
        width: 4px;
    }

    /* Expand accent on hover */
    .main-navigation a:hover::before {
     content:none;
    }

    /* Hover effect for menu links */
    .main-navigation a {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .main-navigation a:hover {
        padding-left: 30px !important;
    }
}

.home .menu-toggle {
    color: #000;
}

.main-navigation a {
    display: block;
    text-decoration: none;
    font-weight: 500;
    color: #ffffff;
    font-size: 20px;
    padding: 20px 10px;
    line-height: 45px;
    transition: all 0.3s ease;
}
.home .main-navigation a {
    display: block;
    text-decoration: none;
    font-weight: 500;
    color: #000;
    font-size: 20px;
    padding: 30px 10px;
}
.col.col-4.hero-image-col {
    position: relative;
}
.hero-image-col img {
    padding: 0;
    margin: 0;
    float: right;
    text-align: right;
    border-radius: 20px;
   
        box-shadow: 3px 3px 40px 6px #00000014;
    transition: transform 1.8s ease;
    transform: translateY(0px);
}.col.col-8.hero-image-col {

    justify-content: flex-end;
}
ul#footer-menu li a {
    padding: 10px;
    display: block;
    text-align: left;
    text-decoration: none;
    font-size: 17px;
    color: white;
}
ul#footer-menu li {
    /* display: flex; */
    flex-basis: 25.6%;
}
ul#footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    float: right;
    text-align: right;
    width: 100%;
    justify-content: flex-end;
}
footer#colophon {
    background:  #181818;
    margin: 0 30px;
    border-radius: 30px 30px 0 0;
    padding: 40px;
}
.footer-logo {
    max-width: 200px;
}.post, .page {
    margin: 0;
}
.page-id-343 section.rental-section.here-logic, .page-id-482 section.rental-section.here-logic {
    display: none;
}a.bottom-contact-btn:hover {
    background: white !important;
    color: #c32033 !important;
}
a.bottom-contact-btn:hover {
    background: white !important;
    color: #c32033 !important;
}
/* ======================== */
/* Front Page / Homepage Styles */
/* ======================== */

/* Hero Section */
.hero-section {
    color: white;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 600px;
    border-radius: 30px 0 30px 30px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="dots" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="white" opacity="0.1"/></pattern></defs><rect fill="none" width="1200" height="600"/><rect fill="url(%23dots)" width="1200" height="600"/></pattern></svg>');
    pointer-events: none;
}

.hero-row {
    display: flex;
    align-items: center;
}

.hero-content-col {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-image-col {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-heading {
    font-size: 4.2rem;
    font-weight: 700;
    margin: 0 0 30px 0;
    line-height: 1.1;
    color: #005a9c;
}
li.school-logo-item a {
    box-shadow: 3px 3px 40px 6px #00000014;
    transition: transform 1.4s ease;
    transform: translateY(0px);
}
li.school-logo-item a:hover {
    transform: translateY(-8px);
}
.hero-text {
    font-size: 1.1rem;
    margin: 0 0 30px 0;
    opacity: 0.95;
    line-height: 1.6;
}
section.hero-section:hover img {
    transform: translateY(-20px);
}
.hero-text p {
    margin: 0 0 15px 0;
}

.hero-text p:last-child {
    margin-bottom: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    max-width: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideInRight 0.8s ease-out;
}
a.hero-button {
    display: inline-block !important;
    background: #005a9c;
    padding: 0px 38px;
    width: auto;
    height: 49px;
    line-height: 49px;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.2rem;
    margin-top: 30px;
}
.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}
.hero-text {
    font-size: 2.2rem;
    margin: 0 0 0px 0;
    opacity: 0.95;
    line-height: 1.7;
    color: #c32033;
    font-weight: 600;
}

.support-section {
    padding: 80px 0;
    background: #efefef;
    border-radius: 30px;
    margin-bottom: 40px;
    margin-top: 80px;
}

.support-wrapper{
    display:flex;
    gap:40px;
    flex-wrap:wrap;
}

.support-card {
    flex: 1;
    background: #fff;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgb(0 0 0 / 9%);
    transition: all .3s ease;
}
.service-copy {
    padding: 30px 40px 40px;
    text-align: left;
}
.support-card:hover{
    transform:translateY(-6px);
}.support-image img {
    border-radius: 20px 20px 0 0;
}
a.support-btn {
    display: inline-block !important;
    background: #002d52;
    padding: 0px 38px;
    width: auto;
    height: 50px;
    line-height: 50px;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.2rem;
    margin-top: 10px;
}
.support-title {
    font-size: 26px;
    margin-bottom: 10px;
    margin-top: 0px;
}

.support-description {
    margin-bottom: 20px;
    min-height: 70px;
}
.support-btn{
    display:inline-block;
    padding:10px 20px;
    background:#1e4e79;
    color:#fff;
    text-decoration:none;
    border-radius:5px;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 40px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #0072ce;
    color: white;
}

.btn-primary:hover {
    background: #005aa6;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 114, 206, 0.3);
}

.btn-light {
    background: white;
    color: #0072ce;
}

.btn-light:hover {
    background: #EBF6FF;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 114, 206, 0.2);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 30px;
}
.section-header h2 {
    font-size: 2.7rem;
    /* color: #0072ce; */
    margin: 0 0 15px 0;
    font-weight: 700;
}
.page-template-default main#primary, .page-template-thank-you main#primary, .faq-template-default main#primary, .page-template-order-form main#primary {
    padding: 20px 30px 80px;
}
.page-template-default.home main#primary {
    padding: 0px 30px 0px;
}
h2 {
    font-size: 52px;
    color: #005a9c;
}
.section-header p {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}
.rental-content-col {
    width: 100%;
    display: inline-block;
}
h2.rental-heading {
    text-align: center;
}
h2.rental-heading {
    text-align: center;
    margin-top: 0;
}
section.rental-section {
    margin-bottom: 80px;
    padding-top: 20px;
}
.rental-flow-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    text-align: center;
    position: relative;
    z-index: 999;
    overflow: hidden;
}.step-icon {
    position: relative;
    /* overflow: hidden; */
    z-index: 999;
}.step-icon:before {
    content: "";
    background: url(https://microfridgebydanby.com/wp-content/uploads/2026/03/arrow-step-1.png);
    width: 100%;
    height: 40px;
    position: absolute;
    background-repeat: no-repeat;
    background-size: 180px;
    left: 25%;
    z-index: 999999999999;
    background-position: right;
    top: 26%;
}
.rental-step {
    flex: 1;
    transition: transform .3s ease; 
    position: relative;
    /* overflow: hidden; */
    z-index: -3;
}



.step-title {
    font-size: 26px;
    font-weight: 6000;
    color: #005a9c;
    margin-bottom: 10px;
}
.rental-copy {
    padding: 0 60px;
}
.rental-step:last-child .step-icon::before{
    content: none;
}
.rental-step:nth-child(2) .step-icon:before {
    content: "";
    background: url(https://microfridgebydanby.com/wp-content/uploads/2026/03/arrow-step-2.png);
    width: 100%;
    height: 40px;
    position: absolute;
    background-repeat: no-repeat;
    background-size: 180px;
    left: 20%;
    z-index: 999999999999;
    background-position: right;
    top: 60%;
}
/* Featured Section */
.featured-section {
    padding: 80px 0;
    background: #ebebeb;
    margin: 40px 0;
    border-radius: 30px;
}

.featured-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.featured-image {
    overflow: hidden;
    height: 250px;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-card:hover .featured-image img {
    transform: scale(1.05);
}

.featured-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.featured-content h3 {
    margin: 0 0 15px 0;
    font-size: 1.4rem;
    color: #0072ce;
    line-height: 1.3;
}

.featured-content p {
    margin: 0 0 15px 0;
    color: #666;
    flex-grow: 1;
}

.read-more {
    color: #0072ce;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #005aa6;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 20px 0 80px;
    background: #ebebeb;
    border-radius: 30px;
}
.features-row {
    display: flex;
    flex-wrap: wrap;
}

.feature-item {
    background: white;
    padding: 35px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid #EBF6FF;
}

.feature-item:hover {
    background: #0072ce;
    color: white;
    transform: translateY(-5px);
    border-color: #0072ce;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin: 0 0 15px 0;
    color: #0072ce;
}

.feature-item:hover h3 {
    color: white;
}

.feature-item p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.feature-item:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* CTA Section */
.cta-section.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    will-change: opacity, transform;
}

.cta-section.fade-in-up.fade-in-up-active {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

/* CTA Content - Don't animate individually, use parent animation */
.cta-heading.fade-in-up,
.cta-text.fade-in-up,
.cta-button.fade-in-up {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
}

.cta-section .row.cta-row {
    background: #005a9c;
    color: white;
    padding: 50px 0;
    text-align: center;
    border-radius: 20px;
}section.cta-section {
    padding: 50px;
    margin-bottom: 30px;
}
.cta-section h2 {
    font-size: 2.2rem;
    margin: 0 0 0px 0;
    color: white;
    flex-basis: 30%;
    text-align: left;
}.cta-text {
    flex-basis: 50%;
    font-size: 24px;
    padding: 0 20px;
    margin: 0;
}

#cta-button-p {
    float: right;
    text-align: right;
    flex-basis: 20%;
    font-size: 24px;
    padding: 0 0px;
    margin: 0;
                }
.cta-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.cta-content-col {
    width: 100%;
    padding: 0 40px;
}
a.cta-button {
    display: inline-block !important;
    background: #ffffff;
    padding: 0px 38px;
    width: auto;
    height: 49px;
    line-height: 49px;
    color: #002d52;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.2rem;
}

/* Latest Posts Section */
.latest-posts-section {
    padding: 80px 0;
    background: white;
}
#school-logos-list, #school-search-results {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    padding: 0;
    width: 100%;
    align-items: center;
    margin: 30px 0px;
    padding: 0;
        justify-content: center;
}
li.school-logo-item {
    flex-basis: 15.5%;
}
li.school-logo-item a {
    background: white;
    display: block; 
    padding: 10px 20px;
    border-radius: 15px;
    text-align: center;
}
.school-logo-item img, .school-search-item img {
    max-width: 180px;
    cursor: pointer;
    transition: transform 0.2s;
}

.school-search-item  a {
    background: white;
    display: block;
    padding: 20px;
    border-radius: 15px;
}


.school-search-item span {
    margin-top: 5px;
    font-size: 0.9rem;
    font-weight: 500;
}

.no-results {
    font-style: italic;
    color: #888;
}#school-search {
    position: relative;
    width: 100%;
    max-width: 600px;
}

#school-search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ccc;
    list-style: none;
    padding: 5px 0;
    margin: 0;
    max-height: 320px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
}
div#school-search-wrapper {
    position: relative;
}
.school-dropdown-item {
    display: flex;
    align-items: center;
    padding: 5px 10px;
}

.school-dropdown-item img {
    width: 40px;
    margin-right: 10px;
}

.school-dropdown-item a {
    display: flex;
    align-items: center;
    width: 100%;
    text-decoration: none;
    color: #333;
}

.school-dropdown-item:hover {
    background: #f1f1f1;
}
div#school-search-wrapper input {
    padding: 1px 30px;
    min-height: 45px;
    border-radius: 50px;
    border: 1px solid #0000005e;
    outline: none;
}button#school-dropdown-btn {
   
    border-radius: 50px;
    min-height: 45px;
    margin-left: 20px;
    width: 100px;
}
div#school-search-wrapper {
    position: relative;
    margin: auto;
    text-align: center;
    max-width: 70%;
}/* Wrapper */
#school-search-wrapper {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

/* Shake animation - more obvious */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-8px); }
    20%, 40%, 60%, 80% { transform: translateX(8px); }
}

#school-search-input.shake {
    animation: shake 0.5s ease-in-out;
    border-color: #d9534f !important;
    background-color: #fff5f5;
}

/* No results message */
.school-search-no-results {
    display: none;
    color: #d9534f;
    font-size: 14px;
    padding: 12px 15px;
    background: linear-gradient(135deg, #f2dede 0%, #f8e5e5 100%);
    border-left: 4px solid #d9534f;
    border-radius: 4px;
    margin-top: 12px;
    text-align: center;
    font-weight: 500;
    animation: slideDown 0.3s ease-out;
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    margin: auto;
    top: 89px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.school-search-no-results.show {
    display: block;
}

/* View All Schools Button */
.school-view-more-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    padding-top: 20px;
}

.school-view-more-btn {
        display: inline-block !important;
    background: #005a9c;
    padding: 0px 38px;
    width: auto;
    height: 49px;
    line-height: 49px;
    color: #ffffff !important;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.2rem;

}

.school-view-more-btn:hover {
    background-color: #c32033;

}

/* Search Input */
#school-search-input {
    width: 100%;
    padding: 14px 50px 14px 20px;
    border-radius: 40px;
    border: 2px solid #e5e7eb;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Input Focus Effect */
#school-search-input:focus {
    border-color: #002d52;

}

/* Dropdown Button */
#school-dropdown-btn {
    position: absolute;
    right: 0;
    top: 44%;
    transform: translateY(-50%);
    background: #c32033;
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}
/* Button Hover */
#school-dropdown-btn:hover {
    background: #002d52;

}

/* Dropdown Container */
#school-search-dropdown {
    margin-top: 10px;
    border-radius: 20px;
  overflow: auto;
    overflow-x: hidden;
    border: 1px solid #eee;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    background: white;
    animation: fadeIn 0.2s ease-in-out;
}

/* Dropdown Items */
.school-dropdown-item {
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
}

/* Logo inside dropdown */
.school-dropdown-item img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    border-radius: 8px;
}

/* Hover Effect */
.school-dropdown-item:hover {
    background: #f3f4f6;
    transform: translateX(4px);
}
#school-search-dropdown {
    display: none;
    position: absolute;
    width: 100%;
    max-height: 400px;
    overflow-y: auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 999;
}

#school-search-dropdown.active {
    display: block;
}

.school-dropdown-item {
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.school-dropdown-item:hover {
    background-color: #f0f0f0;
}
.school-products {
    width: 100%;
    padding: 50px 0 30px;
}
.home li#menu-item-219:before {
    content: "";
    background: #e1e1e1;
    width: 100%;
    height: 100%;
    right: 0;
    border-radius: 0;
    z-index: -1;
        position: absolute;
}

.home li#menu-item-219 {
    background: white;
    border-radius: 0 0 20px;
    left: 0;
}
.main-navigation {
    display: block;
    width: 100%;
    margin-top: 0;
}
.home .main-navigation {
    display: block;
    width: 100%;
}div#field_2_86 {
    font-size: 15px;
    background: #f8f8f8;
    padding: 20px;
    border-radius: 10px;
    margin: 0;
}div#field_2_27 {
    margin-top: 0;
}
.gform_wrapper.gravity-theme .gfield_required {
    color: #c32033 !important;
  
    font-size: 17.008px !important;
}
.gform_wrapper.gravity-theme .gfield_label{
    display: inline-block;
    font-size: 16px !important;
    font-weight: 600 !important;
    margin-bottom: 8px !important;
    padding: 0 10px !important;
}
/* Inner Header Styles */
.school-top-banner {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    padding: 190px 0 120px;
    margin: 10px 30px;
    border-radius: 30px;
    background-blend-mode: multiply !important;
}
.no-school a {
    font-weight: 600;
    color: #005a9c;
}
.no-school a:hover{
      color: #a62a39;
}
.single-school .school-top-banner {
  
    margin-left: 0px;
    margin-right: 0px;
}
.banner-heading {
    color: #fff;
    font-size: 60px;
    margin-bottom: 0;
    margin-top: 0;
}
  


header#masthead.inner-header {
    margin: 0;
    border-radius: 30px 30px 0 0;
    position: absolute;
    left: 0;
    right: 0;
    margin-top: 10px;
    margin: 0px 30px 0;
    background: #002d5230;
    padding-top: 0px;
}.faq {
    width: 60%;
    margin: auto;
    padding: 20px 0 80px;
    background: #ebebeb;
    padding: 50px;
    border-radius: 30px;
    margin-bottom: 50px;
}
.page-template-default header#masthead.inner-header, .page-template-thank-you header#masthead.inner-header, .faq-template-default header#masthead.inner-header, .page-template-order-form header#masthead.inner-header {
    position: static;
    background: #002d52;
    border-radius: 20px;
    margin-top: 10px;
}.faq h1.entry-title {
    font-size: 30px !important;
    border-bottom: 1px solid #57575721;
    padding-bottom: 10px;
}

.tab-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: space-between;
}
.tab-btn {

    cursor: pointer;
    border: none;
    background: #eee;
}

.tab-btn.active {
    background: #005a9c;
    color: #fff;
}
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}
button.tab-btn {
    padding: 20px 40px;
    font-size: 24px;
    font-weight: 600;
    border-radius: 10px;
    width: 100%;
    transition: .4s all ease;
}
button.tab-btn:hover {
    background: #c32033;
    color: white;
}
/* FAQ Accordion */
.faq-item {
    border-bottom: 1px solid #005a9c8f;
    padding: 0px 25px;
    background: #f3f3f3;
    margin-bottom: 15px;
    border-radius: 15px;
}.faq-accordion {
    padding: 20px 0px 60px;
}.faq-answer p {
    margin: 0;
    padding: 0 0 30px;
}
div#faq h2 {
    font-size: 32px;
    margin-bottom: 10px;
    padding: 30px 0px 0;
}
.faq-question {
    position: relative;
    cursor: pointer;
    font-weight: 500;
    color: #333;
    margin: 0;
    padding: 20px 0;
}

.page-template-support main#primary {
    padding: 40px 30px;
}
.faq-item h3.faq-question:after {
    content: "";
    background: url(https://microfridgebydanby.com/wp-content/uploads/2026/03/chevron-right-solid.png);
    background-size: 10px;
    position: absolute;
    right: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: right;
    top: 1px;
}
.faq-item.active h3.faq-question:after {
    background: url(https://microfridgebydanby.com/wp-content/uploads/2026/03/chevron-down-solid.png);
    background-repeat: no-repeat;
    background-position: right;
    background-size: 18px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    opacity: 1;
    margin-top: 5px;
    margin-bottom: 30px;
}div#faq p {
    padding: 0px 0px 0;
}
footer.entry-footer {
    display: none;
}
.cleaning-care-section {
    padding: 30px 0px 10px;
}
.cleaning-care-heading {
    font-size: 32px;
    margin-bottom: 10px;
    padding: 0px 0px 0;
}

.page-template-thank-you .entry-content {
    padding-bottom: 60px;
}
.page-template-thank-you.page-id-341 .entry-content {
    padding-bottom: 10px;
}
p.copyright {
    margin: 0;
    padding: 10px 0px;
    text-align: center;
    background: #181818;
    margin: 0 30px;
    border-top: 1px solid #ffffff1c;
    font-size: 15px;
    color: #bebebe;
}
.cleaning-care-box {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    background: #ebebeb;
    margin-bottom: 30px;
    border-radius: 20px;
    align-items: center;
    justify-content: space-between;
}
.box-number:before {
    content: "";
    border: 4px solid red;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 40px;
    height: 1px;
    border-radius: 0 5px 5px 0;
}

.box-number {
    font-size: 5rem;
    color: #005a9c;
    font-weight: 700;
    padding: 30px 30px 30px 70px;
    position: relative;
}h3.box-title {
    font-size: 28px;
    font-weight: 600;
}
.box-number {
    flex-basis: 15%;
}.box-content {
    flex-basis: 50%;
     padding: 30px;
}.box-image img {
    border-radius: 20px;
}
.box-image {
    flex-basis: 35%;
    padding: 30px;
}.bottom-contact-image {
    flex-basis: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 30px 0 0 30px;
    min-height: 460px;
}.bototm-col, .bototm-col h2 {
    color: white !important;
}.bototm-col.ct {
    padding: 10px 50px 50px;
}a.bottom-contact-btn {
    display: inline-block !important;
    background: #c32033;
    padding: 0px 40px;
    width: auto;
    height: 48px;
    line-height: 45px;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    cursor: pointer;
    margin-top: 40px;
}
.bt-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: #005a9c;
    margin-bottom: 60px;

       margin-top: 90px;
    border-radius: 30px;
    box-shadow: 0px 0px 9px #0000001f;
}.bototm-col {
    flex-basis: 50%;
}
/* Smooth Fade Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Scrollbar styling */
#school-search-dropdown::-webkit-scrollbar {
    width: 6px;
}
#school-search-dropdown::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 10px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 10px;
}h2.service-heading {
    font-size:52px;
    color: #005a9c;
}
span#red {
    display: block;
    color: #c32033;
    margin-bottom: 0;
    line-height: 1;
    font-weight: 600;
    font-size: 44px;
}
.service-block {
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 15px;
    transition: all .5s ease;
    background: white;
}
.service-block {
    box-shadow: 0 4px 10px rgb(0 0 0 / 7%);
}
.service-icon img {
    margin: auto;
    position: absolute;
    left: 1px;
    bottom: 0;
    top: 0;
    padding: 20px;
    text-align: center;
}
.service-icon {
    margin-bottom: 15px;
    background: #c32033;
    /* padding: 20px; */
    border-radius: 50%;
    height: 100px;
    display: inline-block;
    width: 100px;
    position: relative;
    margin: auto;
    text-align: center;
    margin-bottom: 30px;
    margin-left: 15px;
}
.service-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background: #005a9c;
}
.service-icon img {
    margin-bottom: 0px;
}
.service-content {
    background: #ebebeb;
    padding: 30px;
    border-radius: 15px;
    text-align: left;
    min-height: 240px;
}h3.service-title {
    font-size: 24px;
    color: #002d52;
    margin-top: 0 !important;
    
}
.cta-content-col {
    width: 100%;
}
span.swiper-pagination-bullet {
    background: #c32033;
}
span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 25px;
    height: 8px;
    border-radius: 5px;
    transition: .4s all ease;
    opacity: 0.8;
}
.swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
    text-align: left;
    padding: 40px 76px;
}
.testimonial-slider {
    background: #ebebeb;
    margin-left: 30px;
    border-radius: 20px;
    margin-right: 0;
    flex-basis: 49.9% !important;
    padding: 0;
}
.testimonial-img {
    background: url(https://microfridgebydanby.com/wp-content/uploads/2026/03/testimonial-bg.jpg);
    background-size: cover;
    width: 100%;
    background-size: cover;
    min-height: 500px;
    background-position: 100% 0%;    border-radius: 20px;
}.testimonial-card:before {
    content: "";
    background: url(https://microfridgebydanby.com/wp-content/uploads/2026/03/quote-tb.png);
    position: absolute;
    width: 100%;
    background-size: 64px;
    height: 100%;
    background-repeat: no-repeat;
    left: 0;
    top: 0;
}

.testimonial-card {
    margin: 60px 80px 50px;
    position: relative;
    padding-top: 70px;
}
.swiper-slide.swiper-slide-active {
    margin-right: 0 !important;
}
.testimonial-img img{
    width:80px;
    height:80px;
    border-radius:50%;
    margin-bottom:20px;
}

.testimonial-text {
    font-size: 21px;
    margin-bottom: 40px;
}
span.testimonial-position {
    display: block;
    font-size: 17px;
    font-weight: 400;
    color: #005a9c;
}.testimonial-name {
    font-size: 20px;
    color: #002d52;
    font-weight: 600;
}
.testimonial-name {
    font-size: 20px;
    color: #002d52;
}
div#fx-testimonial {
    display: flex;
    flex-wrap: wrap;
}
div#grid-testimonial {
    flex-basis: 48%;
}div#grid-testimonial {
    flex-basis: 48%;
}
section.rental-section.here-logic  {
    
    background: #ebebeb;
    border-radius: 30px;
    padding: 50px 0;
}
.page-template-thank-you .support-section {

    background: #005a9c;

    margin-top: -30px;
}
.here-logic  .step-icon img {
    filter: grayscale(1);
}.page-template-thank-you .here-logic .rental-flow-wrapper .rental-step:nth-child(2) img , .single-school .here-logic .rental-flow-wrapper .rental-step:nth-child(1) img {
    filter: none !important;
}
.page-template-thank-you main {

    margin: 0 30px;
}

  .here {
    visibility: hidden;
}
.page-template-thank-you .here-logic .rental-flow-wrapper .rental-step:nth-child(2) , .single-school .here-logic .rental-flow-wrapper .rental-step:nth-child(1){
    background: white;
    z-index: -5;
    border-radius: 20px;
    box-shadow: 0px 0px 11px #00000017;
    /* padding: 40px; */
}
.here-logic  .rental-flow-wrapper {
    padding: 40px 0;
}


.page-template-thank-you .here-logic .rental-flow-wrapper .rental-step:nth-child(2) .here:after , .single-school .here-logic .rental-flow-wrapper .rental-step:nth-child(1) .here:after {
    content: "";
    background: #c32033;
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50px;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    top: 50px;
}



.page-template-thank-you .here-logic .rental-flow-wrapper .rental-step:nth-child(2) .here,  .single-school  .here-logic .rental-flow-wrapper .rental-step:nth-child(1) .here {
    display: block;
    visibility: visible;
    font-size: 22px;
    font-weight: 700;
    position: relative;
}

.single-school .here-logic .rental-flow-wrapper .rental-step:nth-child(2) {
    background: transparent;
    box-shadow: none;
}
.single-school .support-section {
  
    background: #005a9c;
    border-radius: 30px;
    margin-bottom: 40px;

}
.school-products-list li:nth-child(even) .product-wrapper {
    flex-direction: row-reverse;
}
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}
/* Responsive Design */
@media (max-width: 767px) {
    .hero-heading {
        font-size: 2.2rem;
    }

    .hero-text {
        font-size: 1rem;
    }

 .hero-section {
        padding: 30px 0 ;
        min-height: auto;
        border-radius: 20px;
    }

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

    .hero-content-col,
    .hero-image-col {
        width: 100%;
    }

    .hero-image {
        max-width: 100%;
        margin-top: 40px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .featured-section,
    .why-choose-us,
    .cta-section,
    .latest-posts-section {
        padding: 50px 0;
    }

    .feature-item {
        margin-bottom: 20px;
    }

    .btn {
        padding: 10px 30px;
        font-size: 0.95rem;
    }
}

/* Hide helper utility */
.gfield.is-hidden,
#order-summary.is-hidden {
  display: none !important;
}

/* Order Summary container (you already have a border style) */
#order-summary.order-summary-container {
  border: 1px solid #e2e2e2;
  background: #fafafa;
  padding: 16px;
  margin: 16px 0;
  border-radius: 6px;
}

/* Headline spacing */
#order-summary h4 {
    margin: 0 0 15px 0;
    font-size: 1.25rem;
    display: block;
    border-bottom: 1px solid #d7d7d7;
    padding-bottom: 9px;
}
/* Two-column list layout */
#order-summary .os-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

#order-summary .os-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding: 6px 0;
    border-bottom: 1px dashed #e1e1e1;
}
#order-summary .os-row:last-child {
  border-bottom: 0;
}

/* Labels vs amounts */
#order-summary .os-label {
  color: #222;
}

#order-summary .os-amount {
  margin-left: auto;         /* push to right */
  white-space: nowrap;       /* keep price together */
  color: #111;
  font-variant-numeric: tabular-nums;  /* align digits nicely */
}

/* Mobile responsive for order summary */
@media screen and (max-width: 767px) {
    #order-summary .os-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 8px 0;
    }

    #order-summary .os-amount {
        margin-left: 0;
        white-space: normal;
        word-break: break-word;
        display: block;
        width: 100%;
    }

    #order-summary .os-label {
        display: block;
        width: 100%;
    }

    #order-summary h4 {
        font-size: 1.1rem;
        margin: 0 0 12px 0;
        padding-bottom: 8px;
    }

    #order-summary.order-summary-container {
        padding: 12px;
        margin: 12px 0;
    }
}

article {
    width: 100%;
}
/* Subtotal/Tax mild emphasis */
#order-summary .os-subtotal .os-amount,
#order-summary .os-tax .os-amount {
  font-weight: 600;
}

/* Total strong emphasis */
#order-summary .os-total {
  padding-top: 10px;
  border-top: 1px solid #ddd;
}

#order-summary .os-total .os-label {
  font-weight: 700;
}

#order-summary .os-total .os-amount {
  font-weight: 800;
}
li.os-row.add-on-items-list {
    padding: 7px 14px !important;
    display: block;
    margin-left: 15px;
    background: #f4f4f4;
    font-size: 16px;
}

input#input_2_34 {
    border: 0px !important;
    outline: none !important;
    font-size: 30px;
    color: #1a2950;
    font-weight: 500;
    padding: 0;
    background: transparent;
    padding: 0 !important;
    font-weight: 600;
}.product-image {
    margin-right: 20px;
}
.product-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: initial;
    width: 100%;
    margin-bottom: 30px;
}
ul.product-list {
    list-style: none;
    padding: 0;
    display: inline-block;
    width: 100%;
    margin: auto;
}.gform_wrapper h3 {
    margin-bottom: 0;
    font-size: 24px;
}
.product-col1 {
   flex-basis: 48%;
}
.school-products-list {
    width: 100%;
}
tr td {
    background: #ebebeb;
    border-radius: 5px;
    padding: 8px 10px;
    text-align: center;
}
.product-description p, .product-specs p {
    margin: 10px 0 2px;
}
.product-description ul {
    list-style: none;
    padding: 0;
    margin: revert-layer;
}.product-duration label {
    width: 100%;
    display: block;
    font-weight: 700;
     margin: 10px 0 2px;
}
body, button, input, select, optgroup, textarea {
    color: #333;
    font-family: "Poppins", sans-serif !important;

}.product-duration select {
    width: 100%;
    height: 50px;
    background: #005a9c;
    border: 0px solid #005a9c !important;
    font-family: poppins !important;
    border-radius: 6px;
    color: white;
    box-shadow: none !important;
    outline: none !important;
    line-height: 45px !important;
    font-weight: 500;
}span#power-specs {
    background: #f3f3f3;
    padding: 10px 20px;
    display: block;
    border-radius: 6px;
    margin-top: 6px;
    margin-bottom: 30px;
}span#power-specs span {
    /* display: block; */
    float: right;
    /* width: 50%; */
    /* background: #f3f3f3; */
}
.product-description ul {
    list-style: none;
    padding: 6px 0px 10px;
    margin: revert-layer;
}.product-description ul li {
    position: relative;
    margin-left: 20px;
    padding: 2px 20px;
}.product-description ul li:before {
    content: "";
    background: url(https://microfridgebydanby.com/wp-content/uploads/2026/03/tick-icon.png);
    background-size: 18px;
    width: 100%;
    position: absolute;
    left: -20px;
    height: 100%;
    background-repeat: no-repeat;
    top: 5px;
}

.addon-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 60%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(2px);
}

.addon-popup-content {
    background: #005a9c;
    padding: 40px;
    border-radius: 20px;
    max-width: 600px;
    text-align: center;
    color: white;
    font-size: 16px;
    box-shadow: 0px 0px 15px #0000002e;
    border: 1px solid #ffffff78;
}div#addonWarningText h2 {
    font-size: 24px;
    line-height: 1.1;
    color: white;
}
.addon-popup-content button{
  margin:8px;
  padding:10px 18px;
  cursor:pointer;
}h2.gform_title {
    display: none;
}

select {
    border-radius: 50px;
    outline: none;
    padding: 10px 20px !important;
    height: 50px;
    border: 1px solid #0072ce3b;
}.gform_wrapper.gravity-theme .gf_progressbar_percentage.percentbar_blue {
    background-color: #c32033 !important;
    color: #fff;
}.gfield {
    margin: 15px 0 0;
}input.button {
    display: inline-block !important;
    background: #002d52;
    padding: 0px 40px;
    width: auto;
    height: 48px;
    line-height: 45px;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
cursor: pointer;
}.gform_wrapper.gravity-theme .gform_previous_button.button, .gform_wrapper.gravity-theme .gform_save_link.button {

    background-color: #ffffff;
    color: #333;
    text-decoration: none;
}
#order-summary.order-summary-container {
    border: 1px solid #e2e2e2;
    background: #fafafa;
    padding: 30px;
    margin: 16px 0;
    border-radius: 20px;
}

div#field_2_22 {
    margin-top: 0;
}fieldset#field_2_31 {
    margin-top: 15px;
}

button#gf_tick_again {
    display: inline-block !important;
    background: #002d52;
    padding: 0px 30px;
    width: auto;
    height: 48px;
    line-height: 45px;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    cursor: pointer;
    border: 0px;
}

button#gf_continue_without {
    display: inline-block !important;
    background: #c32033;
    padding: 0px 30px;
    width: auto;
    height: 48px;
    line-height: 45px;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    cursor: pointer;
    border: 0px;
}
.page-id-128 h1 {
    margin-bottom: 20px;
}
.page-id-128 main#primary {
    padding: 30px 30px;
}.gform_wrapper.gravity-theme input[type=color], .gform_wrapper.gravity-theme input[type=date], .gform_wrapper.gravity-theme input[type=datetime-local], .gform_wrapper.gravity-theme input[type=datetime], .gform_wrapper.gravity-theme input[type=email], .gform_wrapper.gravity-theme input[type=month], .gform_wrapper.gravity-theme input[type=number], .gform_wrapper.gravity-theme input[type=password], .gform_wrapper.gravity-theme input[type=search], .gform_wrapper.gravity-theme input[type=tel], .gform_wrapper.gravity-theme input[type=text], .gform_wrapper.gravity-theme input[type=time], .gform_wrapper.gravity-theme input[type=url], .gform_wrapper.gravity-theme input[type=week], .gform_wrapper.gravity-theme select {
 
    border-radius: 50px;
    outline: none;
    padding: 0 20px !important;
    height: 47px;
    border: 1px solid #0072ce3b;
}
.gform_wrapper.gravity-theme .gform_footer, .gform_wrapper.gravity-theme .gform_page_footer {
    margin: 40px 0 30px !important;
    padding: 0px 0 !important;
}
.gform_wrapper.gravity-theme .gf_progressbar_percentage {
  
    height: 15px !important;
 
}
.gform_wrapper.gravity-theme .gf_progressbar_percentage span {
    font-size: 12px!important;
 
    line-height: 16px!important;
 
}
textarea {
    border-radius: 15px;
    outline: none;
    padding: 20px !important;
    border: 1px solid #0072ce3b;
}h3.gsection_title {
    margin-top: 0;
}
.gform_wrapper.gravity-theme .gfield textarea.large {
   
    max-height: 160px;
}

span.addon-price {
    flex-basis: 30%;
    text-align: right;
    font-weight: 700;
}
table.addon-table td {
    text-align: left;
    padding: 20px 20px;
}
table.addon-table td label {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
table.addon-table td input {
    flex-basis: 10%;
}
span.addon-name {
    flex-basis: 60%;
}.product-addons h4 {
    margin-bottom: 0;
}

button#gf_tick_again:hover, button#gf_continue_without:hover {
    background: black;
}
.order-bttn p.product-price {
    display: none;
}.product-description {
    border-bottom: 1px solid #f3f3f3;
    margin-bottom: 20px;
    padding-bottom: 10px;
}
.order-now {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    border: none;
    cursor: pointer;
    background: #c32033;
    border-radius: 40px;
    padding: 10px 30px;
    line-height: 30px;
    margin-bottom: 30px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
    transition: all 0.25s ease;
}.order-now .btn-price {
    font-weight: 700;
}h2.product-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    margin-top: 10px;
}
/* Hover effect */
.order-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.25);
    background: #005a9c;
}
/* Click effect */
.order-now:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Price text styling */
.order-now .btn-price {
    font-weight: 700;
  /*  background: rgb(255 255 255 / 23%);*/
    padding: 4px 20px;
    border-radius: 20px;
}

.product-col1:last-child {
    padding-left: 40px;
}
a.support-btn:hover {
    background: #c32033;
}li#menu-item-220 a:hover {
    background: #005a9c !important;
    color: #ffffff !important;
}a.hero-button:hover, a.cta-button:hover, input.button:hover , input#gform_previous_button_2_49:hover{
    background: #c32033;
    color: white;
}
.gform_previous_button:hover {
  background: #c32033 !important;
    color: white !important;
}div#school-search-wrapper label {
    /* color: transparent; */
    display: block;
    margin-bottom: 10px;
    width: 100%;
}
main#primary .post-thumbnail {
    display: none;
}
/* ========================================
   DELIVERY INFO SECTION
   ======================================== */
.school-delivery-info {
    padding: 0px 0 60px;
    margin: 10px 0;
    border-top: none;
}div#field_2_84 ul {
    padding: 0;
    margin: 10px 20px;
}
.delivery-info-content {
    background: #005a9c;
    padding: 50px 40px;
    border-radius: 20px;
    color: white;
    min-height: 390px;
}
.delivery-info-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.delivery-info-content  h2 {
    color: white;
    margin-top: 0;
    font-size: 40px;
}
.delivery-info-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgb(0 0 0 / 10%);
    max-height: 390px;
}
.delivery-info-content .field-value ul li {
    padding: 2px 0;
}
.delivery-info-content .field-value ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.delivery-info-image img {
    width: 100%;
    height: auto;
    display: block;
}

.delivery-info-content {
    color: white;
}

.delivery-info-heading {
    font-size: 2.5em;
    margin: 0 0 20px 0;
    color: white;
    font-weight: 700;
}

.delivery-info-intro {
    font-size: 1.3em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
}

.delivery-info-locations {
    margin-top: 25px;
}

.delivery-info-locations p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: white;
    font-weight: 600;
}

.delivery-info-box {
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid rgba(255, 255, 255, 0.5);
    margin-top: 15px;
}

.delivery-info-box h3 {
    margin-top: 0;
    color: white;
    font-size: 1.3em;
    margin-bottom: 15px;
    display: none;
}

.delivery-info-box p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin: 10px 0;
    font-size: 1.05em;
}

.delivery-info-box ul {
    color: rgba(255, 255, 255, 0.9);
    padding-left: 25px;
}

/* ===== School Search Section Animations ===== */

#school-search-wrapper {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

#school-search-wrapper.slide-in-up {
    animation: slideInUp 0.7s ease-out forwards;
}

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

#school-search-input,
#school-dropdown-btn {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#school-search-input {
    opacity: 0;
    transform: scale(0.95);
}

#school-search-input.scale-in {
    animation: scaleIn 0.6s ease-out forwards;
}

#school-dropdown-btn {
    opacity: 0;
    transform: scale(0.95);
}

#school-dropdown-btn.scale-in {
    animation: scaleIn 0.6s ease-out 0.1s forwards;
}

#school-search-input:focus {
    box-shadow: 0 0 0 3px rgba(0, 90, 156, 0.15);
    border-color: #005a9c;
    transform: translateY(-2px);
}

#school-dropdown-btn:hover {
    transform: scale(1.08);
    background-color: #005a9c;
}

/* School Logo Items */


.school-logo-item.fade-in-up {
    animation: fadeInUp 0.7s ease-out forwards;
}

.school-logo-item:nth-child(1) { animation-delay: 0.1s; }
.school-logo-item:nth-child(2) { animation-delay: 0.15s; }
.school-logo-item:nth-child(3) { animation-delay: 0.2s; }
.school-logo-item:nth-child(4) { animation-delay: 0.25s; }
.school-logo-item:nth-child(5) { animation-delay: 0.3s; }
.school-logo-item:nth-child(6) { animation-delay: 0.35s; }
.school-logo-item:nth-child(n+7) { animation-delay: 0.4s; }



.school-logo-item img {
    transition: all 0.4s ease;
    filter: brightness(1);
}

.school-logo-item:hover img {
    filter: brightness(1.15);
    transform: scale(1.08);
}

/* School View More Button */
.school-view-more-container {
    opacity: 0;
    transform: translateY(30px);
}

.school-view-more-container.fade-in-up {
    animation: fadeInUp 0.7s ease-out 0.5s forwards;
}

.school-view-more-btn {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    position: relative;
}

.school-view-more-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 90, 156, 0.3) !important;
}

/* No School Notice */
.no-school {
    opacity: 0;
    transform: translateY(20px);
}

.no-school.fade-in-up {
    animation: fadeInUp 0.7s ease-out 0.6s forwards;
}

.no-school a {
    transition: all 0.3s ease;
    position: relative;
}

.no-school a:hover {
    color: #c32033;
    transform: translateX(3px);
}

/* ===== Homepage Section Enhancements ===== */

/* Hero Section */
.hero-section.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
}

.hero-section.fade-in-up.fade-in-up-active {
    opacity: 1;
    transform: translateY(0);
}



.delivery-info-box li {
    margin-bottom: 10px;
    font-size: 1.05em;
    line-height: 1.6;
}

/* Responsive: Stack on mobile */
@media (max-width: 768px) {
    .delivery-info-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .delivery-info-heading {
        font-size: 2em;
    }
    
    .delivery-info-intro {
        font-size: 1.1em;
    }
}

/* ========================================
   CONDITIONAL FORM FIELDS 
   ======================================== */

/* Room Number Field */
.gfield.room-number-field {
    margin-bottom: 20px;
}

.gfield.room-number-field label {
    font-weight: 600;
    color: #005a9c;
}

.gfield.room-number-field input[type="text"] {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 1em;
}

.gfield.room-number-field input[type="text"]:focus {
    border-color: #005a9c;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 90, 156, 0.1);
}

/* Delivery Instructions Field */
.gfield.delivery-instructions-field {
    margin-bottom: 20px;
}

.gfield.delivery-instructions-field label {
    font-weight: 600;
    color: #005a9c;
}

.gfield.delivery-instructions-field textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 1em;
    min-height: 100px;
}

.gfield.delivery-instructions-field textarea:focus {
    border-color: #005a9c;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 90, 156, 0.1);
}
.delivery-info-content .field-value h3 {
    color: white;
}
/* Smooth transition for hidden fields */
.gfield[style*="display: none"] {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* ========== ZIP CODE VALIDATION STYLING ========== */

/* Shake animation for error field */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Error input field styling */
#input_2_29_5.gfield-error-active {
    border: 2px solid #e53935 !important;
    background-color: #fff5f5 !important;
    box-shadow: 0 0 0 4px rgba(229, 57, 53, 0.08) !important;
    transition: all 0.3s ease;
}

/* Error container styling */
.ginput_address_zip.gfield-error-container {
    position: relative;
}

/* Error message styling */
.zip-error-message {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    margin-top: 10px;
    background: linear-gradient(135deg, #fff5f5 0%, #ffebee 100%);
    border: 2px solid #e53935;
    border-radius: 8px;
    color: #c62828;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    animation: slideDown 0.3s ease-out;
    box-shadow: 0 4px 12px rgba(229, 57, 53, 0.15);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.zip-error-message .error-icon {
    font-size: 18px;
    flex-shrink: 0;
    line-height: 1.5;
    margin-top: 1px;
}

.zip-error-message .error-text {
    flex: 1;
    line-height: 1.5;
}

/* Smooth transition when error is cleared */
#input_2_29_5 {
    transition: all 0.3s ease;
}

/* On focus, highlight the field */
#input_2_29_5:focus:not(.gfield-error-active) {
    border-color: #005a9c !important;
    box-shadow: 0 0 0 3px rgba(0, 90, 156, 0.1) !important;
}