.main-heading {
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    line-height: 0.95; /* 🔥 tighter than normal */
    margin: 0 !important;
    padding: 0 !important;
}

.heading-top {
    font-size: 60px;
    font-weight: 800;
    color: #dadb7e;
    display: block;
    margin: 0;
}

.heading-bottom {
    font-size: 50px;
    font-weight: 500;
    color: #e9ddaa;
    display: block;
    margin-top: -8px; /* 🔥 key trick (pull upward) */
}

.tp-caption.tp-resizeme p {
    color: #ffffff !important;   /* 🔥 pure white */
    opacity: 1 !important;       /* 🔥 remove fade */
}





/* WRAPPER */
.about_store_custom {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

/* LOGO */
.store_logo img {
    width: 60px;
    height: auto;
}

/* TEXT */
.store_content p {
    margin: 4px 0;
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
}

/* PAYMENT ICONS */
.about_foot li span img {
    width: 35px;
    margin-right: 5px;
}




/* STACK EVERYTHING VERTICALLY */
.about_store_custom {
    display: flex;
    flex-direction: column; /* 🔥 KEY CHANGE */
    gap: 12px;
}

/* TOP LOGO */
.top_logo img {
    width: 60px;
}

/* TEXT */
.store_content p {
    margin: 4px 0;
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
}

/* BOTTOM LOGO */
.bottom_logo img {
    width: 100px;
    opacity: 0.8;
}




/* ===== FIX FOOTER LAYOUT ===== */
.footer .row,
footer .row {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start;
    gap: 50px; /* 🔥 MAIN GAP CONTROL */
    flex-wrap: nowrap; /* 🔥 prevent breaking */
}

/* ===== EQUAL WIDTH COLUMNS ===== */
footer .col-md-3 {
    flex: 1;
    max-width: 25%;
}

/* ===== REMOVE BOOTSTRAP SIDE PUSH ===== */
footer .col-md-3 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* ===== ADD INNER SPACING (CLEAN LOOK) ===== */
.footer_panel {
    padding: 0 15px;
}

/* ===== OPTIONAL: ALIGN TEXT NICELY ===== */
.account_foot,
.about_foot {
    padding-left: 0;
}



.phone-link {
  color: #dcdcdc;;
  text-decoration: none;
  transition: color 0.3s ease;
}

.phone-link:hover {
  color: #007bff; /* blue color on hover */
}




/* Space between cards */
#fourCol-slider .item {
  padding: 10px;
}

/* Card Design */
.product_wrap {
  background: #79b6c8; /* dark background */
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Hover Effect */
.product_wrap:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* Image Smooth Zoom */
.product_wrap .image img {
  transition: transform 0.4s ease;
}

.product_wrap:hover .image img {
  transform: scale(1.05);
}

/* Text Styling */
.product_desc p {
  color: #030303; /* dark white */
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
}


.product_wrap.bottom_half {
  margin-bottom: 40px !important;
}



.design {
  display: flex;
  align-items: center;   /* vertical center */
  justify-content: center;
  gap: 40px;
  min-height: 600px;     /* important for vertical centering */
}


















/* ================================
FORCE NAVBAR LOGO CENTER FIX
================================ */

.navbar-header {
    height: 90px !important;
    position: relative !important;
}

.navbar-brand {
    position: absolute !important;
    top: 60% !important;
    left: 0 !important;
    
    transform: translateY(-50%) !important;

    display: flex !important;
    align-items: center !important;

    height: auto !important;

    padding: 0 !important;
    margin: 0 !important;
}

/* FORCE IMAGE CENTER */
.navbar-brand img,
.navbar-brand .logo,
.logo {
    height: 55px !important;
    width: auto !important;

    display: block !important;

    margin: 0 !important;
    padding: 0 !important;

    position: relative !important;
    top: 0 !important;
}

/* REMOVE TEMPLATE PUSH */
.logo-header img,
.logo-header .logo,
.navbar-brand img.logo {
    margin-top: 0 !important;
    top: 0 !important;
    vertical-align: middle !important;
}

/* MOBILE FIX */
@media only screen and (max-width:767px){

    .navbar-header{
        height:70px !important;
    }

    .navbar-brand img,
    .navbar-brand .logo,
    .logo{
        height:42px !important;
    }

}