@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200;0,6..12,300;0,6..12,400;0,6..12,500;0,6..12,600;0,6..12,700;0,6..12,800;0,6..12,900;0,6..12,1000;1,6..12,200;1,6..12,300;1,6..12,400;1,6..12,500;1,6..12,600;1,6..12,700;1,6..12,800;1,6..12,900;1,6..12,1000&family=Open+Sans:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Khula:wght@300;400;600;700;800&family=Nunito+Sans:ital,opsz,wght@0,6..12,200;0,6..12,300;0,6..12,400;0,6..12,500;0,6..12,600;0,6..12,700;0,6..12,800;0,6..12,900;0,6..12,1000;1,6..12,200;1,6..12,300;1,6..12,400;1,6..12,500;1,6..12,600;1,6..12,700;1,6..12,800;1,6..12,900;1,6..12,1000&family=Open+Sans:wght@300&display=swap');
/*@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');*/

/* Getting the new tags to behave */
/*======================
    COMMON CSS START
========================*/
:root {
  --primary-color: #440A19;
  --secondary-color : #FFE6AE;
  --blue-color : #111650;
  --primary-text-color : #fff;
    --primary: #FFE6AE;
    --primary-dark: #dfccb0;
    --primary-light: #A5A1FF;
    --secondary: #FF6584;
    --dark: #571613;
    --darker: #6c1f49;
    --light: #F8F9FA;
    --lighter: #FFFFFF;
    --gray: #caced1;
    --dark-gray: #495057;
    --success: #28A745;
    --warning: #FFC107;
    --danger: #DC3545;
    --info: #17A2B8;

    --font-main: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

article,
aside,
audio,
canvas,
command,
datalist,
details,
embed,
figcaption,
figure,
footer,
header,
hgroup,
keygen,
meter,
nav,
output,
progress,
section,
source,
video,
banner {
    display: block
}

mark,
rp,
rt,
ruby,
summary,
time {
    display: inline
}

body {
    color: #212121;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    font-family: 'Nunito Sans', sans-serif;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a {
    cursor: pointer;
    outline: 0 none;
    text-decoration: none !important;
    font-family: 'Nunito Sans', sans-serif;
    display: block;
    color: #1972b9;
    -moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
}

a:focus {
    outline: thin dotted;
    outline-offset: -2px;
    color: #074369;
}

a:hover,
a:focus {
    text-decoration: none;
    outline: none;
    color: #074369;
}

*::before,
*::after {
    box-sizing: border-box;
}

input:focus::-webkit-input-placeholder {
    color: transparent;
}

input:focus:-moz-placeholder {
    color: transparent;
}

/* FF 4-18 */
input:focus::-moz-placeholder {
    color: transparent;
}

/* FF 19+ */
input:focus:-ms-input-placeholder {
    color: transparent;
}

/* IE 10+ */
li {
    line-height: 18px;
    list-style: outside none none;
}

p {
    color: #333;
    font-family: 'Nunito Sans', sans-serif;
    margin: 0 0 10px;
    padding: 0px;
    font-size: 14px;
}

input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
    outline: none !important;
}

input[type="text"],
input[type="email"],
input[type="password"],
textarea {
    padding: 7px 5px;
    font-size: 13px;
    transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 8px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea:focus {
    border: #FDBB25 1px solid;
    -moz-box-shadow: 0 0 5px #bbb;
    -webkit-box-shadow: 0 0 5px #bbb;
    box-shadow: 0 0 5px #bbb;
}

input:required {
    box-shadow: none;
}

input:invalid {
    box-shadow: none;
}

h1 {
    padding: 0px;
    margin: 0px;
}

h2 {
    padding: 0px;
    /* margin: 0px; */
}

h3 {
    padding: 0px;
    margin: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    color: #1b2336;
    letter-spacing: 0px;
    font-weight: 700;
}

img {
    display: inline-block;
    max-width: 100%;
    border: none;
    height: auto;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
    text-align: left;
}

article {
    width: 100%;
    float: left;
    position: relative;
    z-index: -9999;
}

section {
    background: #fff;
    overflow: hidden;
    width: 100%;
    float: left;
    position: relative;
}

header {
    width: 100%;
}

footer {
    width: 100%;
    float: left;
}

nav {
    overflow: hidden;
    width: 100%;
    float: left;
}

select {
    border: #d8d8d8 1px solid;
    background: url("../images/d-arrow.png") no-repeat scroll 98% center #FFFFFF !important;
    background-color: rgb(255, 255, 255);
    -webkit-appearance: none;
    -moz-appearance: none !important;
    background-color: #FFFFFF;
    border-radius: 3px;
    font-size: 14px;
    padding: 5px 4px 4px;
    text-indent: 0.01px;
    box-shadow: none;
    text-overflow: '';
    display: inline-block;
    cursor: pointer;
}

:root {
    /* Primary Brand Colors */
    --color-primary: #2b337c;

}


/*======================
    COMMON CSS END
========================*/

/*======================
    HEADER CSS START
========================*/
header {
    width: 100%;
    z-index: 99999;
    float: left;
}

.header {
    padding: 0px 30px;
}

.top_header {
    background: var(--primary-color);
}

.main-header {
    border-bottom: 1px solid rgba(0, 0, 0, .08) !important;
    box-shadow: 0 3px 5px 0 rgba(0, 0, 0, .1);
    padding: 7px 0px 4px;
    background: #ffffff;
}

.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #ffffff;
    transform: translate3d(0px, 0px, 0px);
}

.marquee_con {
    width: 100%;
    float: left;
    padding: 5px 0px;
}

.marquee_con p {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin: 0px;
    display: inline-block;
    cursor: pointer;
}

.main_header .navbar-collapse.collapse,
.main_header {
    width: 100%;
    overflow: hidden;
    background: var(--primary-color);
}

.main_header .navbar-default,
.quickview_header {
    float: none;
    margin: 0 auto;
    max-width: 1100px;
    overflow: hidden;
    background: #fff;
    border: none;
}

.navbar-toggle {
    background: #2874f0;
    margin: 8px 0 3px 15px !important;
}

.main_header .navbar-nav>li {
    padding: 15px 11px 10px;
    position: static;
    display: block !important;
}

.main_header .navbar-nav>li>a {
    color: #fff !important;
}

.main_header .navbar-default .navbar-nav>.open>a {
    color: #fff !important;
    background-color: transparent;
    border-radius: 5px;
}

.main_header .navbar-nav>li>a,
.dropdown-menu li.sub_categories a {
    color: #5E4E71;
    font-weight: 700;
    font-size: 14px;
    padding: 0px;
}

.nav>li>a:focus,
.nav>li>a:hover {
    background: none !important;
    color: #FFF !important;
    border: none !important;
    box-shadow: none !important;
}

.navbar-nav>li>.dropdown-menu {
    margin-top: 10px;
}

.menu-active {
    color: #5E4E71 !important;
}

.main_header .navbar-nav>li>a:hover,
.main_header .navbar-nav>li>a:focus,
.main_header .navbar-nav>li>a:active,
.dropdown-menu li.sub_categories a:hover,
.dropdown-menu li.sub_categories a:focus,
.dropdown-menu li.sub_categories a:sctive,
.navbar-default .navbar-nav>li>a:focus,
.navbar-default .navbar-nav>li>a:hover {
    transition: .3s;
    color: #5E4E71 !important;
    background: none !important;
}

.cat_menu .dropdown-menu {
    right: 0px !important;
    top: auto !important;
    margin: 0px auto;
    width: 100%;
    padding: 0px !important;
    max-width: 1330px;

    border: none !important;
    box-shadow: none !important;
    background: none !important;
}

.sub_categories_con {
    overflow: auto;
    background: #FFFFFF;
    padding: 30px 20px;
    box-shadow: #00000026 0 15px 25px, #0000000d 0 5px 10px !important;
}

.dropdown-menu a {
    padding: 12px 0px !important;
}

.sub_categories_box {
    width: 32%;
    display: inline-flex;
}


.cat_menu li:nth-child(2) .sub_categories_box {
    width: 32%;
    display: inline-flex;
}

.sub_categories .menu-status {
    display: inline;
    padding: 1px 2px;
    font-size: 11px;
    text-transform: capitalize;

}

.navbar-default .navbar-toggle .icon-bar {
    background: #FFF !important;
}

.header .navbar {
    margin: 0px !important;
}

.header .navbar-collapse.collapse {
    width: 100% !important;
}

.header .navbar-default {
    background: none !important;
    border: none !important;
}

.header ul {
    padding: 0px;
    margin: 0px;
    color: #fff;
}

.header ul li {
    display: inline-block;
}

.right_menu li {
    padding: 5px 0px;
}

.top_header .fa {
    color: #440A19;
    background: #fff;
    /* width: 20px; */
    /* height: 22px; */
    padding: 5px;
    border-radius: 50%;
}

.header li a {
    color: #fff;
    padding: 0px 11px !important;
    transition: all 0.4s linear 0s;
    text-transform: capitalize;
    font-weight: 600;
}

.header .navbar-right li a {
    font-weight: 600;
}

.header .navbar-left a {
    text-transform: lowercase;
}

.navbar-right a.amigoways-btn {
    color: #fff;
    line-height: 14px;
    padding: 4px 11px 5px !important;
}

/*.header li:last-child a
{
    padding: 0px !important;
}*/
/*.header .navbar-right li:last-child a {
    padding-right: 0px !important;
}
.header .navbar-left li:first-child a
{
    padding-left: 0px !important;
}*/

.main-header li a {
    font-size: 14px;
    color: #333;
    font-weight: 600;
}



.main-header .navbar-right a {
    border-radius: 4px;
    padding: 13px 18px !important;
    color: #440A19 !important;
    border: none;
    transition: .3s;
}

.main-header .user_signin a {
    background: #5E4E71;
}

.main-header .user_signup a {
    background: #5E4E71;
}


.login_after_header a {
    color: #333 !important;
}



.head_search_con input {
    /* width: 100%;
    padding: 13px 5px !important; */
}

.home_product_search {
    border-radius: 3px 0px 0px 3px !important;
}

.head_search_con .head_search_rest {
    padding: 0px;
}

.head_search_con .amigoways-btn {
    background: var(--primary-color) url("../images/auto-search.png") no-repeat scroll center / 20px auto !important;
    border-radius: 50px 50px !important;
    border: 2px solid !important;
    padding: 11px 20px !important;
}

.head_search_con .amigoways-btn:hover {
    background: #fff url("../images/auto-search.png") no-repeat scroll center / 20px auto !important;
    border: none !important;
    color: #5E4E71;

}

.ui-autocomplete {
    box-shadow: 2px 3px 5px -1px rgba(0, 0, 0, .5);
    overflow: auto;
    white-space: nowrap;
    background: #fff !important;
    color: #000 !important;
    border-radius: 0 0 2px 2px !important;
    border: none !important;
    padding: 0px !important;
    z-index: 999999 !important;
    max-height: 500px
}

.ajax_search_list a {
    font-weight: 600;
    font-size: 13px;
    color: #5E4E71;
    border: none !important;
    padding: 5px 15px !important;
}

.ajax_search_list .search_img {
    padding: 0px 15px 0px 0px;
}

.search_img img {
    width: 20px !important;
}

.search_opacity {
    opacity: .54;
}

.ui-state-active .search_opacity {
    opacity: 1;
}

.ui-state-active {
    color: #fff !important;
    opacity: 1 !important;
    font-weight: 600 !important;
}


.header .amigoways_author_nav li a {
    color: #111 !important;
}

.header .amigoways_author_nav li a .dropdown-menu {
    padding: 0px !important;
    border: none !important;
}

.main-header .logo a img {
    width: 180px;
    /* padding: 7px; */
}

.login_after_header .dropdown-menu::before,
.login_after_header .dropdown-menu::after {
    right: 0px;
    left: auto;
}

.login_after_header ul.dropdown-menu li {
    width: 100%;
    padding: 0px;
}

.login_after_header ul.dropdown-menu li a {
    text-transform: inherit;
    border-bottom: 1px solid #e9e9e9 !important;
    display: block;
    line-height: 23px;
    padding: 3px 10px !important;
    text-align: left;
    color: #666 !important;
}

.login_after_header .dropdown-menu li>a:hover,
.login_after_header .dropdown-menu .active>a,
.login_after_header .dropdown-menu .active>a:hover,
.login_after_header .dropdown-menu .dmg_author_detail a:hover {
    background: #f4f4f4 !important;
    outline: none;
}

.caret-up {
    border-bottom: 4px solid;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    display: inline-block;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    width: 0;
}

.dropdown a:hover .dropdown-menu {
    display: block !important;
}

.user_dropdown {
    width: 125px !important;
    background: #fff;
    border-top: 0 none !important;
    box-shadow: 0 4px 8px -3px #555454 !important;
    right: 0;
    margin: 0px !important;
    z-index: 11;
}

.header-cart a.show-mini-cart {
    color: #440A19 !important;
    font-size: 25px !important;
}

span.cart-count {
    position: absolute;
    margin: -10px 0px;
    background: #4f0d1e;
    color: #fff;
    width: 20px;
    font-size: 12px;
    border-radius: 100%;
    height: 20px;
    text-align: center;
    font-weight: 600;
    line-height: 19px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    pointer-events: none;
}

.amigoways-social-aside {
    position: fixed;
    top: 50%;
    right: 0;
    z-index: 99999;
}

.amigoways-social-aside li {
    cursor: pointer;
    padding: 3px 0;
}

.amigoways-social-aside a {
    background: #fff;
    padding: 5px 1px 5px 4px;
    text-align: center;
    border-radius: 10px 0 0 10px;
    box-shadow: 0 3px 5px 0 rgba(0, 0, 0, .2);
}

.amigoways-social-aside .fa {
    font-size: 30px;
    font-weight: 700;
    line-height: 25px;
    padding: 3px;
}

.amigoways-social-aside .fa-skype {
    color: #0084ff;
}

.amigoways-social-aside .fa-telegram {
    color: #2FA3D9;
}

.amigoways-social-aside .fa-whatsapp {
    color: #4CAF50;
}

.social_link .fa-google {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ef97a8), color-stop(1, #ad000b));
    background: -webkit-linear-gradient(top, #ef97a8 25%, #ad000b 75%);
    background: -moz-linear-gradient(top, #ef97a8 25%, #ad000b 75%);
    background: -o-linear-gradient(top, #ef97a8 25%, #ad000b 75%);
    background: -ms-linear-gradient(top, #ef97a8 25%, #ad000b 75%);
    background: linear-gradient(to bottom, #ef97a8 25%, #ad000b 75%);
    padding: 8px 9px;
}

.social_link .fa-envelope {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ef97a8), color-stop(1, #ad000b));
    background: -webkit-linear-gradient(top, #ef97a8 25%, #ad000b 75%);
    background: -moz-linear-gradient(top, #ef97a8 25%, #ad000b 75%);
    background: -o-linear-gradient(top, #ef97a8 25%, #ad000b 75%);
    background: -ms-linear-gradient(top, #ef97a8 25%, #ad000b 75%);
    background: linear-gradient(to bottom, #ef97a8 25%, #ad000b 75%);
    padding: 8px 8px;
}

/*======================
    HEADER CSS END
========================*/

/*======================
    SIGNIN SIGNUP POPUP AND PAGES CSS START
========================*/
@keyframes floating {
    from {
        transform: translate(0, 0px);
    }

    65% {
        transform: translate(0, 15px);
    }

    to {
        transform: translate(0, -0px);
    }
}

.modal-open {
    overflow-y: scroll !important;
    padding: 0px !important;
}

.my_model_popup {
    background: rgba(0, 0, 0, 0.65) !important;
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 99999;
}

.my_model_popup .close {
    font-size: 20px;
    font-weight: 400;
    opacity: 1;
    position: absolute;
    top: 0;
    text-shadow: none;
    right: 0px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    z-index: 9999999;
    box-shadow: inset 0px 0px 0px 100px #fff;
    transform: translate(50%, -50%);
    color: #4f0d1e;
}

.my_model_popup .close:hover {
    box-shadow: inset 0px 0px 0px 100px #5E4E71 !important;
    color: #fff;
}

.my_model_popup .modal-dialog {
    /*padding: 0px 50px;*/
    max-width: 500px;
    margin: 30px auto;
}

.sign_popup .modal-dialog {
    border-radius: 2px;
    color: #212121;
}

.sign_popup .modal-header {
    text-align: center;
}

.popup_tab_content,
.signin_content {
    padding: 15px 35px 16px;
    overflow: hidden;
}

.popup_login #loadErr,
.signin_content #loadErr {
    float: right;
    position: absolute;
    right: 0;
    width: 10%;
    margin: 30px 0px 0px;
}

.popup_login .form-row,
.signin_content .form-row {
    margin: 0px;
    padding: 0px;
    display: block;
}

.popup_login {
    position: relative;
}

span#loginloadErr {
    position: absolute;
    top: 35px;
    right: 50px;
}

.form-row {
    margin-bottom: 10px;
    padding: 4px 0;
    position: relative;
}

.input-text {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    background: #fff none repeat scroll 0 0;
    border-color: currentcolor currentcolor #e0e0e0 !important;
    border-image: none !important;
    border-style: none none solid !important;
    border-width: medium medium 1px !important;
    color: #000;
    font-size: inherit;
    margin-bottom: 8px;
    padding: 10px 0px !important;
    position: relative;
    width: 100%;
    z-index: 3;
    font-weight: 600;
    border-radius: 0;
}

.input-text:hover,
.input-text:active,
.input-text:focus {
    border: none !important;
    border-bottom: 1px solid #5E4E71 !important;
    box-shadow: none !important;
    border-radius: 0px !important;
    outline: none;
}

.label-helper {
    position: absolute;
    opacity: 0;
    transition: .2s bottom, .2s opacity;
    bottom: 0;
    left: 0;
    z-index: 9;
    margin-bottom: 7px;
    font-weight: 600;
    
}

.input-text:invalid+.label-helper {
    bottom: 55%;
}

.input-text:focus+.label-helper,
.input-text:invalid+.label-helper {
    bottom: 75%;
    background: none !important;
    font-size: 13px;
    line-height: 1;
    opacity: 1;
}

.input-text:invalid {
    border-left: 10px solid #f00;
}

.input-text:invalid+.label-helper::after {
    content: "X";
    font-size: 14px;
    line-height: 1;
    padding-left: 12px;
}

.stay_checked {
    vertical-align: middle;
    margin: 0px !important;
}

.or_div {
    display: block;
    margin: 15px 0;
    text-align: center;
    width: 100%;
    font-weight: 600;
    position: relative;
    padding: 10px;
    color: #5E4E71;
}

.or_div span {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    padding: 5px 10px;
    transform: translate(-50%, -50%);
    background-color: #fff;
}

.or_div::before {
    content: '';
    background: #e3e9ed;
    width: 100%;
    transform: translate(-50%, -50%);
    position: absolute;
    height: 1px;
    top: 50%;
    left: 50%;
}

.sign_terms {
    display: inline-flex;
    width: 100%;
}

.login_btm {
    text-align: center;
}

.login_btm .sign_terms {
    width: auto;
}

.social_login {
    margin-bottom: 10px;
    border-radius: 3px;
    color: #fff !important;
    padding: 0px 19px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2) !important;
    overflow: hidden;
    display: inline-block;
}

.social_login:hover {
    text-decoration: none;
    color: #fff !important;
}

.social_login a {
    display: inline-flex;
}

.login_content {
    font-size: 16px;
    padding: 10px 10px 3px;
    color: #fff !important;
    text-align: center;
}

.social_login .fa {
    float: left;
    color: #fff;
    padding-top: 13px;
    font-size: 19px;
    padding-left: 8px;
}

.button-fb {
    background-color: #3B5998;
    border: 1px solid #3B5998;
}

.button-fb:active,
.button-fb:hover {
    border: 1px solid #263a63;
    background-color: #263a63;
}

.button-tw {
    background-color: #3EB5E5;
    border: 1px solid #3EB5E5;
}

.button-tw:active,
.button-tw:hover {
    border: 1px solid #2795e9;
    background-color: #2795e9;
}

.button-google {
    background-color: #dd4b39;
    border: 1px solid #dd4b39;
}

.button-google:active,
.button-google:hover {
    border: 1px solid #c23321;
    background-color: #c23321;
}

.popup_login .forgot_password {
    color: footer;
    font-size: 15px;
    font-weight: 500;
    position: absolute;
    right: 0px;
    top: 10px;
    z-index: 999;
}

.reopen_account {
    color: #5E4E71;
    font-size: 15px;
    font-weight: 500;
    z-index: 999;
}

.popup_login .forgot_password:hover,
.reopen_account:hover {
    color: var(--primary-color);
}

.popup_login .submit_btn {
    background: var(--primary-color);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2) !important;
    color: #FFFFFF !important;
    border-radius: 2px;
    border: none !important;
    font-size: 15px;
    font-weight: 400;
    line-height: 18px;
    text-align: center;
    margin: 20px 0px 5px;
    padding: 10px 20px;
    transition: box-shadow 0.2s ease 0s;
    vertical-align: super;
    width: 100%;
    height: 48px;
}

.popup_login .submit_btn:hover,
.popup_login .submit_btn:active,
.popup_login .submit_btn:focus {
    box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.12) !important;
    background: var(--primary-color);
}

.new_signup {
    display: inline-flex;
    width: 100%;
    padding: 10px 0px 5px;
}

.new_signup a {
    color: var(--primary-color);
    padding-left: 3px;
}

.new_signup a:hover {
    color: var(--primary-color);
}

.sign_in_container {
    margin: 50px auto;
    max-width: 500px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    background: #fff;
}

.model_popup_inner .popup-title,
.model_popup_inner .popup-subtitle,
.model_popup_inner>p {
    text-align: center;
    padding: 10px 0px;
    margin: 0px;
}

.model_popup_inner .popup-title {
    font-size: 20px;
}

.model_popup_inner .popup-subtitle {
    font-size: 18px;
}

.model_popup_inner .scd_txt {
    padding: 0px 29px;
}

.popup_login .check_radio_con {
    display: initial;
    padding: 0px;
}

.popup_login .amigoways_field_con {
    float: left;
}

.popup_login .check_radio_con label {
    padding: 0;
    margin: 0;
}

.popup_login .sign_terms a:first-child {
    text-indent: 20px;
}

.subscription_frm .check_radio_con {
    padding: 0px;
}

.subscription_frm label {
    padding-left: 5px !important;
}

/*======================
    SIGNIN SIGNUP POPUP AND PAGES CSS END
========================*/

/*======================
    SCROLL TOP BUTTON CSS START
========================*/
.scroll-top {
    position: fixed;
    left: 10px;
    bottom: 10px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    background-color: #FFE6AE;
    text-indent: -9999px;
    display: none;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    border-radius: 60px;
    outline: none;
    z-index: 9;

}

.scroll-top:hover {
    background: #FFE6AE;
}

.scroll-top span {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -12px;
    height: 0;
    width: 0;
    border: 8px solid transparent;
    border-bottom-color: #000;
}

.scroll-top:hover span {
    opacity: 1;
    filter: "alpha(opacity=100)";
    -ms-filter: "alpha(opacity=100)";
}

/*======================
    SCROLL TOP BUTTON CSS END
========================*/

/*======================
    MAIN CONTENT START
========================*/

/*Home Page Start*/
.home-slider .banner-caption h3.banner-title {
    font-size: 30px;
    margin: 0px 0px 20px;
}

.home-slider .banner-caption h4.banner-title {
    font-size: 20px;
    margin: 0px 0px 20px;
}

/*.box-container {
    padding: 15px;
    transition: .3s;
}
.box-container:hover {
    border-radius: 5px;
    box-shadow: #0e1e251f 0 2px 4px, #0e1e2552 0 2px 16px;
    transition: .3s;
    transform: translateY(-10px);
}*/
.know-more-btn {
    padding: 10px;
    background-color: #fff;
    color: #5E4E71;
    border: 1px solid #5E4E71;
    border-radius: 8px;
    transition: .3s;
}

.know-more-btn:hover {
    background-color: #5E4E71;
    color: #fff;
    box-shadow: #00000026 0 15px 25px, #0000000d 0 5px 10px;
    transition: .3s;
    border: 1px solid #5E4E71;
}

.box-img {
    transition: .3s;
}

.box-img img {
    width: 300px;
}

.box-caption {
    min-height: 120px;
}

.home-cat-sec {
    background: url(../images/bg-shop-cat.png) 18px center no-repeat #fff;
}

.home-cat-sec .box-container {
    margin: 0px 20px;
}

.home-cat-sec .box-item-title a {
    min-height: auto;
}

.app-promo-section {
    background: url(../images/bg-app-promo.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 250px 50px !important;
}

.app-promo-right {
    padding: 50px 0px 0px;
}

/*.home-cat-sec .featured-image img {
    width: 100%;
}*/
.top-product-section {
    background: #F7F8FA;
}




.services-box-list {
    margin-top: 50px;
}

.services-box {
    box-shadow: 0 14px 28px rgb(0 0 0 / 15%), 0 10px 10px rgb(0 0 0 / 15%);
    background-color: #fff;
    border-radius: 10px;
    padding: 12px 15px !important;
    margin: 10px 0;
    border-image: linear-gradient(to bottom, #5E4E71, rgba(0, 0, 0, 0)) 1 100%;
    border-left-width: 4px;
    border-left-style: solid;
}


/* FAQ Section */

.accordion-container .accordion-title {
    position: relative;
    margin: 20px 0px;
    padding: 20px 10px 19px 10px;
    background: #fff;
    font-size: 1.25em;
    font-weight: bold;
    color: var(--primary-color);
    cursor: pointer;
    border-radius: 10px;
}


.accordion-container .accordion-title:active,
.accordion-title.open {
    background-color: #fff;
    box-shadow: 0 10px 15px -5px rgba(0, 0, 0, 0.2);
    margin-bottom: 0px;
}

.accordion-container .accordion-title::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 25px;
    width: 15px;
    height: 2px;
    transform: rotate(90deg);
    background: var(--primary-color);
    transition: all .3s ease-in-out;
}

.accordion-container .accordion-title::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 25px;
    width: 15px;
    height: 2px;
    background: var(--primary-color);
    transition: all .2s ease-in-out;
}

.accordion-container .accordion-title.open::before {
    transform: rotate(180deg);
}

.accordion-container .accordion-title.open::after {
    opacity: 0;
}

.accordion-content {
    padding: 20px 10px 5px;
    background: #fff;
    margin: 0px;
    margin-top: -10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}


#faq-section li {
    padding: 20px 0px 10px;
}

#faq-section li.faq-question {
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
}

#faq-section .faq-answer p {
    margin: 0px;
}

#faq-section li.faq-answer {
    display: none;
    padding: 0px 0px 0px 20px;
}

#faq-section .rotate {
    -moz-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

/*Home Page End*/


/* Blog Section Start*/
.post-list li {
    font-size: 13px;
    margin: 0px 0px 10px;
}

.post-list li .fa {
    color: #5E4E71;
    font-weight: 600;
    padding-right: 8px;
}

.post-list li:last-child .fa {
    padding: 0px 5px 0px 8px;
}

.post-list p a.amigoways-link {
    display: inline;
}

/* Blog Section End*/



/*Forgot Password Start*/
.forgot_pass_con {
    max-width: 600px;
    margin: 50px auto;
    text-align: center;
    box-shadow: 0 1px 2px 0 #e7e7e7;
    background: #fff;
}

.forgot_pass_con form {
    padding: 30px 0px;
    width: 100%;
}

.forgot_titles {
    background-color: #5E4E71;
    border-radius: 5px 5px 0 0;
    float: none;
    margin: 0;
    padding: 22px;
    width: auto;
    font-size: 21px;
    color: #fff;
}

.forgot_text {
    float: left;
    font-size: 13px;
    color: #4c4c4c;
    font-size: 13px;
    padding: 20px;
}

.forgot_pass_con .field_account {
    padding: 0px 30px;
    display: inline-block;
    width: 100%;
}

.input_forgot {
    background: none repeat scroll 0 0 #FFFFFF;
    border-color: #B3B3B3 #CCCCCC #CCCCCC #B3B3B3;
    border-radius: 3px;
    border-style: solid;
    border-width: 1px;
    color: #333333;
    font-size: 13px;
    font-weight: normal;
    margin: 10px auto 20px auto;
    padding: 10px;
    width: 100% !important;
}

/*Forgot Password End*/

/*Not found page Start*/
.notfound_main {
    background: #fff;
    margin: 50px auto;
}

.notfound_page_con {
    max-width: 600px;
    margin: 50px auto 100px;
}

.notfound_page_con .mob-font,
.notfound_page_con .fa {
    color: #5E4E71;
    font-size: 200px;
}

.notfound_page_con p {
    margin: 10px 0px 0px;
    font-weight: bold;
}

.notfound_page_con .amigoways-btn {
    display: inline-block;
}

/*Not found page End*/

/*Help page Start*/
.help_top_con {
    display: block;
    margin: 0 auto;
    text-align: center;
    padding: 40px 0 0;
    font-size: 14px;
}

.help_search {
    margin-top: 16px;
    box-shadow: none;
}

.help_search .help_searchbox {
    background: url(../images/help-search-icon.png) 18px center no-repeat #fff;
    border: 1px solid rgba(0, 0, 0, .35) !important;
    border-radius: 4px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, .075) inset, 0 0 0 #000 !important;
    color: #5A5A5A;
    font-size: 20px;
    padding: 17px 30px 17px 56px;
    width: 63%
}

.help_breadcrumb_con {
    background: #a6bc5e;
    padding: 10px 0;
    margin: 50px 0 0;
    border-bottom: 1px solid #ccc;
    color: #333;
    font-size: 12px;
}

.help_breadcrumb_inner {
    margin: 0 auto;
    text-align: left;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: none;
}

.help_breadcrumb_inner span {
    padding-left: 10px;
}

.help_div {
    overflow: hidden;
    background: #fff;
    padding: 50px 0px;
}

.help_left li {
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-left: 1px solid #ccc;
}

.help_left li a {
    padding: 10px 5px;
    color: #333;
}

.help_top_con a {
    color: #333;
    padding: 0px 10px;
}

.help_top_con_inner {
    display: inline-flex;
}

.help_left li.title {
    text-align: center;
    border: 1px solid #ccc;
    padding: 10px 5px;
}

.help_left li.title:hover {
    background: none;
}

.help_left li:hover {
    background: #a6bc5e;
}

.help_left li:hover a {
    color: #fff;
}

/*Help page End*/

/*Contact Us page Start*/
.contact-us-details h5 {
    margin: 0px;
    font-size: 16px;
    padding-bottom: 5px;
}

.contact-us-details a {
    color: #fff;
    display: inline-block;
}

/*Contact Us page End*/


/*Script page Start*/

.page-menu-section {
    padding: 10px 0px !important;
    position: relative;
    top: 0;
}

.fixed-page-menu-section {
    position: fixed;
    top: 75px;
    z-index: 1000;
    -webkit-box-shadow: 0 0px 5px #dedede;
    box-shadow: 0 0px 5px #dedede;
    -webkit-transition: all 0.8s ease-out;
    -o-transition: all 0.8s ease-out;
    transition: all 0.8s ease-out;
    background: #fff;
}

.page-menu-section li {
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    float: left;
}

.page-menu-section a,
.pro-detail-inner .list-tab-wrapper li a {
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    color: #5E4E71;
    font-weight: 600;
    margin: 0;
    padding: 15px;
    position: relative;
    font-size: 16px;
    border: none;
    border-radius: 0;
    text-align: left;
}

.pro-detail-inner .list-tab-wrapper li a {
    border: none !important;
}

.pro-detail-inner .list-tab-wrapper li a.current {
    border-bottom: 3px solid #5E4E71 !important;
}

.page-menu-section a:before,
.pro-detail-inner .list-tab-wrapper li a:before {
    position: absolute;
    content: '';
    left: 6px;
    bottom: -4px;
    width: 0;
    height: 4px;
    -webkit-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
    background-image: -ms-linear-gradient(left, #5E4E71 0%, #ff757a 100%);
    background-image: -moz-linear-gradient(left, #5E4E71 0%, #ff757a 100%);
    background-image: -o-linear-gradient(left, #5E4E71 0%, #ff757a 100%);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #5E4E71), color-stop(100, #ff757a));
    background-image: -webkit-linear-gradient(left, #5E4E71 0%, #ff757a 100%);
    background-image: linear-gradient(to right, #5E4E71 0%, #ff757a 100%);
}

.page-menu-section li:hover a:before,
.pro-detail-inner .list-tab-wrapper li:hover a:before {
    width: 100%;
}

.page-menu-section a:hover,
.pro-detail-inner .list-tab-wrapper a:hover {
    color: #5E4E71;
    background: none;
    /*border-width: 0px 0px 3px 0px;
    border-color: #5E4E71;
    border-style: solid;
    border-radius: 0;*/
}

.pro-detail-inner .list-tab-wrapper a:hover,
.pro-detail-inner .list-tab-wrapper .current:hover {
    border: none;
}

.page-menu-section a.current,
.pro-detail-inner .list-tab-wrapper a.current {
    border-width: 0px 0px 3px 0px;
    border-color: #5E4E71;
    border-style: solid;
    color: #5E4E71;
    background: none;
    border-left: none;
    border-right: none;
    border-top: none;
    border-radius: 0;
}

.pro-detail-inner .list-tab-wrapper li .current:before {
    border: none !important;
}

.script-inner-sec {
    padding: 20px 0px;
}


/*.why-script-list .row2 .why-script-list-inner:nth-child(4) .why-script-icon {
    background-position: -16px -69px;
}
.why-script-list-btm .why-script-list-inner:nth-child(1) .why-script-icon{
    background-position: -165px -5px;
}
.why-script-list-btm .why-script-list-inner:nth-child(2) .why-script-icon {
    background-position: -90px -72px;
}
.why-script-list-btm .why-script-list-inner:nth-child(3) .why-script-icon {
    background-position: -324px -4px;
}
.why-script-list-btm .why-script-list-inner:nth-child(4) .why-script-icon {
    background-position: -91px -6px;
}*/
.workflow-img {
    width: 600px;
}

.technologies-img {
    width: 400px;
}

.features-section .list-tab-wrapper {
    margin: 30px 0px 0px;
}

.features-section .list-tab-wrapper li {
    margin: 0px 0px 20px;
}

.features-section .list-tab-wrapper .list-tab-content li {
    color: #fff;
    margin-bottom: 5px;
}

.demo-section {
    background: linear-gradient(#5E4E71, rgba(255, 255, 255, 0.768627451));
}

.plan-list h4 {
    padding: 20px 0px;
}

.plan-title {
    font-size: 22px;
    line-height: 30px;
    color: #5E4E71;
}

.plan-list .box-item {
    border: 1px solid #d5dfff;
}

.plan-list .box-item-inner {
    border-bottom: 1px solid #d5dfff;
    padding-bottom: 20px;
}

.plan-list .list-style-tick li:before {
    color: #1AA85C;
    font-size: 20px;
}

.plan-list .list-style-tick li:before {
    color: #1AA85C;
    font-size: 20px;
}

.plan-list .list-style-tick li.no:before {
    color: #f44336;
    content: "\f00d";
}

/*.page-section
{
    min-height: 600px;
}*/
/*Script page End*/

/*======================
    MAIN CONTENT END
========================*/


/*======================
    CMS (STATIC) PAGES START
========================*/
.cms_details {
    font-size: 13px;
    padding: 0px;
}

.cms_title {
    width: 100%;
    color: #333333;
    font-size: 16px;
    font-weight: 600;
    text-align: justify;
    word-spacing: 2px;
    line-height: 30px;
}

.cms_details p {
    float: left;
    width: 100%;
    color: #333333;
    font-size: 13px;
}

.cms_content {
    float: left;
    background: #fff none repeat scroll 0 0;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08);
    padding: 20px;
    width: 100%;
}

.cms_content a {
    display: initial;
    color: #0d6efd;
}

.cms_content a:hover {
    color: #5634ba;
    text-decoration: underline;
}

.cms_content h1 {
    font-size: 26px;
}

.cms_content h2 {
    margin-top: 20px;
    font-size: 20px;
}

.cms_content h3 {
    margin-top: 20px;
    font-size: 18px;
}

.inner-container-cms p,
ol>li {
    margin-top: 15px;
}

.inner-container-cms th {
    border: 1px solid #000;
    border-collapse: collapse;
    padding: 8px;
    text-align: center;
}

.inner-container-cms td {
    border: 1px solid #000;
    border-collapse: collapse;
    padding: 8px;
}

.inner-container-cms table a {
    color: #212121;
    border-bottom: 1px solid #fff;
}

.inner-container-cms table a:hover {
    border-bottom: 1px solid #000;
}

.inner-container-cms>ul {
    list-style-type: disc;
    margin-left: 30px;
    font-size: 13px;
}

.inner-container-cms .tabs-menu {
    display: inline-flex;
    margin: 10px 0;
    width: 100%;
}

.inner-container-cms .tabs-menu li {
    list-style: none !important;
}

.inner-container-cms .tabs-menu li a {
    border-bottom: 1px solid #e9e9e9;
    border-right: 1px solid #e9e9e9;
    padding: 5px 10px 7px;
    text-transform: uppercase;
    color: #999;
}

.inner-container-cms .tabs-menu li.current a {
    background: #fff;
    border-bottom: 1px solid #f8eb01;
    color: #333;
    font-weight: 500;
    position: relative;
}

.inner-container-cms .tabs-menu li.current a:before {
    border: medium solid transparent;
    bottom: -1px;
    content: " ";
    height: 0;
    pointer-events: none;
    position: absolute;
    width: 0;
    border-bottom-color: #f8eb01;
    border-width: 6px;
    left: 50%;
    margin-left: -6px;
}

.inner-container-cms .tabs-menu li.current a:after {
    border-bottom-color: #fff;
    border-width: 5px;
    left: 50%;
    margin-left: -5px;
}

#cancellation_tab {
    display: none;
}

.return_ques,
.cancellation_ques {
    color: #515151;
    display: block;
    font-size: 14px;
    margin: 10px 0;
    cursor: pointer;
}

.return_ques:hover,
.cancellation_ques:hover {
    color: #2271b2;
    text-decoration: underline !important;
}

.return_ans p {
    margin: 0px;
}

.ans_active {
    font-weight: 500;
}

.box_border {
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) inset;
    margin-bottom: 20px;
    padding: 0 19px;
}

/*Cart page Start*/
.cart-head {
    margin: 0px 0px 20px;
}

.cart-head h1 {
    color: #5E4E71;
    font-weight: 700;
    font-size: 24px;
}

.cart-head h2 {
    color: #5E4E71;
    font-weight: 700;
    font-size: 20px;
}

.cart-list,
.price-list {
    margin: 10px 0px;
    padding: 15px;
    overflow: hidden;
    background: #FFFFFF;
}

.cart-details p {
    margin: 0px;
}

.cart-action li {
    padding: 0px 10px 0px 0px;
}

.cart-action li a {
    color: #5E4E71;
    font-weight: 600;
}

.summary-details td {
    padding: 15px 10px;
    vertical-align: top;
}

.price-bottom {
    text-align: center;
    margin: 50px 0px 0px;
}

.price-bottom .amigoways-btn {
    padding: 15px 20px;
    width: 100%;
}

.empty-cart {
    margin: 0px 0px 30px;
    overflow: hidden;
    text-align: center;
}

.empty-cart li a {
    padding: 10px 10px;
    border: 1px solid red;
    text-align: center;
    margin: 10px 2px;
}

.summary-details {
    float: left;
    width: 100%;
    margin-bottom: 12px;
    border-collapse: collapse;
    border-spacing: 0;
    border-style: none;
    border-width: 0;
    font-size: 14px;
}


.checkout_details_container .view_content {
    padding: 16px 24px;
    display: flex;
    background: #FFFFFF;
    margin: 19px 0px;
    position: relative;
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, .2);
}

.view_content h2 {
    text-transform: uppercase;
    font-size: 16px;
    color: #878787;
    padding: 10px 0px;
    border-radius: 2px 2px 0 0;
}

.view_content h2 span {
    font-size: 12px;
    border-radius: 2px;
    padding: 3px 7px;
    vertical-align: baseline;
    margin-right: 17px;
    color: #5E4E71;
    background: #f0f0f0;
}

.checkout_details_inner {
    width: 100%;
}

.checkout_left_inner {
    float: left;
    width: 80%;
}

.view_content h3 {
    text-transform: uppercase;
    font-size: 16px;
    color: #878787;
    padding: 11px 0px 0px;
    border-radius: 2px 2px 0 0;
}

.content_details {
    font-weight: 500;
}

.checkout_right_inner {
    float: right;
}

.add_change {
    padding: 0 32px;
    height: 40px;
    border-radius: 2px;
    border: 1px solid #5E4E71;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    background: #5E4E71;
    margin-left: auto;
    cursor: pointer;
    text-transform: uppercase;
}

.after_view_content {
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, .2);
}

.after_view_content_head {
    background-color: #5E4E71;
    padding: 8px 24px;
    border-radius: 2px 2px 0 0;
    color: #fff;
    display: flex;
}

.after_view_content_head h2 {
    color: #fff;
    text-transform: uppercase;
    font-size: 16px;
    padding: 10px 0px;
}

.after_view_content_head h2 span {
    font-size: 12px;
    border-radius: 2px;
    padding: 3px 7px;
    vertical-align: baseline;
    margin-right: 17px;
    color: #5E4E71;
    background: #f0f0f0;
}

.after_view_content_head h3 {
    text-transform: uppercase;
    font-size: 16px;
    color: #fff;
    padding: 11px 0px 0px;
    border-radius: 2px 2px 0 0;
}

.after_view_content_inner {
    background: #fff;
    padding: 20px 20px 18px 20px;
}

.after_view_content_inner .pro_grid_details {
    padding: 10px 0px 0px;
}

.pro_grid_details {
    display: inline-flex;
    padding: 10px 0;
    width: 100%;
}

.after_view_content_inner .pro_grid_details {
    padding: 10px 0px 0px;
}

.after_view_content_inner .pro_grid_details,
.after_view_content_inner .pro_details_right {
    font-size: 14px !important;
    font-weight: 500;
}

.pro_side_head {
    color: #000;
    font-weight: 700;
    padding-right: 10px;
    width: 80px;
    text-transform: capitalize;
    font-size: 14px;
}

.pro_details_right {
    float: right;
    font-size: 13px;
    padding: 0px 5px;
}

..after_view_content_right {
    padding: 10px 0px 0px;
}

.after_view_content_right ul li {
    padding: 15px 0px 5px;
}

.checkout_details_container .tick_icon {
    vertical-align: top;
    height: 20px;
    color: #5E4E71;
    font-size: 25px;
    fill: #5E4E71;
}

.after_view_content_right ul span {
    padding: 0px 10px;
    color: #212121;
}

.bottom_text span,
.after_view_content_right span {
    font-size: 13px;
    color: #878787;
}

.edit_add {
    font-weight: 600;
    color: #5E4E71;
    text-transform: uppercase;
    padding: 10px 0px 0px;
}

.checkout_details_container .input_field {
    width: 100% !important;
}

.check_order_info {
    padding: 10px 0px;
}

.checkout-payments .amigoways_field_con {
    padding: 26px 0px;
}

.checkout-payment-btn {
    max-width: 400px;
    text-align: center;
    margin: 50px auto;
}

.checkout-payment-btn .amigoways-btn {
    width: 100%;
    padding: 18px 0px;
}

.checkout-payments .check_radio_con {
    padding-right: 50px;
}

.checkout-payments .amigoways-img {
    width: 200px;
}

.PayPal .amigoways-img {
    padding-left: 10px;
}

form.checkout-billing-add-form {
    margin: 20px 0px 0px;
    overflow: hidden;
}

.add-checkout-shipping-con {
    padding: 20px;
}

.order_save_val {
    color: #388e3c;
    font-weight: 500;
    overflow: hidden;
    float: left;
    text-align: left;
    width: 100%;
    border-top: 1px solid #f0f0f0;
    padding: 15px 0px 15px 35px;
}

/*Cart and Checkout page Start*/
/*======================
    CMS (STATIC) PAGES END
========================*/

/*======================
    FOOTER START
========================*/
.footer {
    background: var(--primary-color);
}


.footer_container {
    margin: 0px auto;
    padding: 25px 10px 0px;
    text-align: left;
    max-width: 1320px;
    overflow: hidden;
}

.footer h5 {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 700;
    padding: 0 0px 15px;
    margin: 0px;
    text-transform: capitalize;
}

.subscribe_settings {
    border-bottom: 1px solid #fff;
    padding: 0px 0px 25px;
}

.newsletterback {
    margin-top: 18px;
}

.subscribe_settings .heading {
    color: #fff;
    font-size: 26px;
    margin: 0px 0px 10px;
}

.subscribe_settings .sub_heading {
    color: #fff;
    font-size: 18px;
    margin: 0px 0px 30px;
}

.subscribe_settings .subscribe {
    font-size: 16px;
    margin-bottom: 10px;
    padding: 10px;
    width: 100%;
    border-radius: 3px 0px 0px 3px;
}

.subscribe_settings .amigoways-btn {
    width: 100%;
    font-size: 16px;
    border: 1px solid #5E4E71 !important;
    padding: 12px 30px;
    border-radius: 0px 3px 3px 0px;
}

.subscribe_settings .amigoways-btn:hover,
.subscribe_settings .amigoways-btn:focus,
.subscribe_settings .amigoways-btn:active {
    border: 1px solid #5E4E71 !important;
}

ul.footer_menu {
    list-style: outside none none;
    padding-bottom: 20px;
}

.footer_menu>li {

    text-align: left;
    line-height: 38px;
}

.footer_menu>li:last-child {
    border-bottom: none;
}

.foot-sec .fa.fa-map-marker {
    margin-top: 3px;
}

.footer_menu a {
    color: #FFFFFF;
    font-size: 14px;
    line-height: 25px;
    padding: 0 7px 0px 0px;
    display: inline-block;
    font-weight: 600;
}

.footer_menu a:hover,
.footer_menu a:active,
.copyright_menu a:hover,
.copyright_menu a:active {
    color: #FFFFFF;
    outline: none;
    text-decoration: underline;
}

.footer_column {
    padding: 25px 0px;
}

.copyright_menu .active a,
.footer_menu .active a,
.navbar-right .active a {
    color: #FDBB25;
    font-weight: 600;
}

.contact-us-details li {
    padding-bottom: 15px;
    line-height: 21px;
}

.social_link {
    display: inline-flex;
}

.social_link li a {
    margin-right: 7px;
    line-height: 3;
}

.social_link a .fa {
    border-radius: 50%;
    color: #fff !important;
    line-height: 15px;
    text-align: center;
    font-size: 15px;
}

.social_link a .fa:hover {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #dcdcdc), color-stop(1, #404040));
    background: -webkit-linear-gradient(top, #dcdcdc 0%, #404040 100%);
    background: -moz-linear-gradient(top, #dcdcdc 0%, #404040 100%);
    background: -o-linear-gradient(top, #dcdcdc 0%, #404040 100%);
    background: -ms-linear-gradient(top, #dcdcdc 0%, #404040 100%);
    background: linear-gradient(to bottom, #dcdcdc 0%, #404040 100%);
}

.social_link .fa-instagram {
    display: inline-block;
    background: #d6249f;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    box-shadow: 0px 3px 10px rgba(0, 0, 0, .25);
    padding: 8px 9px;
}

.social_link .fa-youtube {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ff847e), color-stop(1, #fb0000));
    background: -webkit-linear-gradient(top, #ff847e 25%, #fb0000 75%);
    background: -moz-linear-gradient(top, #ff847e 25%, #fb0000 75%);
    background: -o-linear-gradient(top, #ff847e 25%, #fb0000 75%);
    background: -ms-linear-gradient(top, #ff847e 25%, #fb0000 75%);
    background: linear-gradient(to bottom, #ff847e 25%, #fb0000 75%);
    padding: 8px 9px;
}

.social_link .fa-facebook {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #3580b3), color-stop(1, #001e71));
    background: -webkit-linear-gradient(top, #3580b3 25%, #001e71 75%);
    background: -moz-linear-gradient(top, #3580b3 25%, #001e71 75%);
    background: -o-linear-gradient(top, #3580b3 25%, #001e71 75%);
    background: -ms-linear-gradient(top, #3580b3 25%, #001e71 75%);
    background: linear-gradient(to bottom, #3580b3 25%, #001e71 75%);
    padding: 8px 11px;
}

.social_link .fa-twitter {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #70c4df), color-stop(1, #0359c5));
    background: -webkit-linear-gradient(top, #70c4df 25%, #0359c5 75%);
    background: -moz-linear-gradient(top, #70c4df 0%, #0359c5 75%);
    background: -o-linear-gradient(top, #70c4df 0%, #0359c5 75%);
    background: -ms-linear-gradient(top, #70c4df 25%, #0359c5 75%);
    background: linear-gradient(to bottom, #70c4df 25%, #0359c5 75%);
    padding: 8px;
}

.social_link .fa-pinterest {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ef97a8), color-stop(1, #ad000b));
    background: -webkit-linear-gradient(top, #ef97a8 25%, #ad000b 75%);
    background: -moz-linear-gradient(top, #ef97a8 25%, #ad000b 75%);
    background: -o-linear-gradient(top, #ef97a8 25%, #ad000b 75%);
    background: -ms-linear-gradient(top, #ef97a8 25%, #ad000b 75%);
    background: linear-gradient(to bottom, #ef97a8 25%, #ad000b 75%);
    padding: 8px 6px;
    font-size: 22px !important;
}

.social_link .fa-whatsapp {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #63b76a), color-stop(1, #005312));
    background: -webkit-linear-gradient(top, #63b76a 25%, #005312 75%);
    background: -moz-linear-gradient(top, #63b76a 25%, #005312 75%);
    background: -o-linear-gradient(top, #63b76a 25%, #005312 75%);
    background: -ms-linear-gradient(top, #63b76a 25%, #005312 75%);
    background: linear-gradient(to bottom, #63b76a 25%, #005312 75%);
    padding: 8px 10px;
}

.social_link .fa-linkedin {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #007ab9), color-stop(1, #2a445d));
    background: -webkit-linear-gradient(top, #007ab9 25%, #2a445d 75%);
    background: -moz-linear-gradient(top, #007ab9 25%, #2a445d 75%);
    background: -o-linear-gradient(top, #007ab9 25%, #2a445d 75%);
    background: -ms-linear-gradient(top, #007ab9 25%, #2a445d 75%);
    background: linear-gradient(to bottom, #007ab9 25%, #2a445d 75%);
    padding: 8px 9px;
}

.payment_method h2 {
    color: #848484;
    font-size: 14px;
    text-align: left;
    letter-spacing: 0;
    margin-bottom: 8px;
    font-weight: 500;
}

.payment_method_image {
    display: inline-block;
    background-position: -2px -200px;
    width: 615px;
    height: 33px;
}

.payment_method ul {
    list-style: none;
    display: inline-flex;
}

.payment_method li {
    border-right: 1px solid #3C3F46;
    padding: 0px 5px;
    list-style: none;
}

.payment_method li:first-child,
.copyright_con li:first-child a {
    padding-left: 0px;
}

.payment_method li:last-child {
    border-right: none;
}

.payment_method .paygateway {
    background: #fff;
    padding: 3px 5px !important;
    border-radius: 2px;
}

.payment_method .paygateway img {
    width: 80px;
}

.language_settings {
    font-size: 12px;
}

.language_settings ul {
    display: inline-flex;
}

.language_settings ul li {
    border: none;
}

.language_settings ul li a {
    background: #5E4E71;
    border: none;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
    color: #fff;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 500;
    outline: medium none;
    padding: 10px 20px;
    transition: box-shadow 0.2s ease 0s;
    vertical-align: super;
    border-radius: 2px;
    margin: 0px 10px 0px 0px;
    max-width: 150px;
}

.language_settings a:hover,
.amigoways-btn:hover,
.amigoways-btn:active,
.amigoways-btn:focus,
.subscribe_btn:hover,
.subscribe_btn:active,
.subscribe_btn:focus {
    color: #ffffff !important;
    background: #5E4E71;
    outline: none;
    border: none !important;
    box-shadow: none !important;
}

.popup_page {
    background: #FFFFFF;
}

.footer_settings_tab,
.all-purchase-search .top_list {
    overflow: hidden;
}

.footer_settings_tab ul.tabs,
.account_settings_tab ul.tabs {
    margin: 0px;
    padding: 0px;
    list-style: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
}

.footer_settings_tab ul.tabs li,
.account_settings_tab ul.tabs li {
    background: #fff;
    color: #848484;
    padding: 10px 5px;
    cursor: pointer;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    border-right: 1px solid #fff;
    border-radius: 3px 3px 0px 0px;
}

.footer_settings_tab ul.tabs li.current,
.account_settings_tab ul.tabs li.current {
    color: #5E4E71 !important;
}

.TabbedPanelsTabSelected,
.footer_settings_tab ul.tabs li:hover,
.footer_settings_tab ul.tabs li.current,
.account_settings_tab ul.tabs li:hover,
.account_settings_tab ul.tabs li.current {
    border-bottom: 3px solid #5E4E71 !important;
}

.footer_popup_left {
    padding: 20px;
}

.footer_popup_left .chzn-container {
    position: absolute;
}

.footer_popup_left h3 {
    color: #333333;
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 25px;
    padding: 0;
}

.TabbedPanelsContentGroup {
    clear: both;
    min-height: 220px;
    background: #FFFFFF;
    font-size: 14px;
    color: #484848;
}

.TabbedPanelsContent {
    line-height: 20px;
    text-align: justify;
    font-weight: normal;
    overflow: hidden;
    padding: 0 !important;
}

.footer_tab_footer {
    border-top: 1px solid #e4e4e4;
    height: auto;
    padding: 11px 21px 13px;
    width: 100%;
    overflow: hidden;
    text-align: center;
}

.footer_tab_footer span {
    font-size: 12px;
    line-height: 39px;
    white-space: nowrap;
}

.popup_button .submit_btn {
    margin: 0 10px 0 0;
}

.popup_button .amigoways-btn {
    margin: 0px 5px 0px 0px;
}

.footer_popup_left .form_input_con {
    border: none;
}

.split_link:hover {
    text-decoration: none;
}

.footer_popup_left .preference_split li.selected {
    background-color: #666666;
    color: #FFFFFF;
}

.footer_popup_left .preference_split li.selected a {
    color: #FFFFFF;
}

.preference_split {
    display: inline-block;
}

.preference_split li {
    list-style: none;
    padding: 10px 0px;
    color: #4C4C4C;
    display: inline-flex;
    font-size: 13px;
    width: 100%;
    cursor: pointer;
}

.preference_split li a {
    color: #000;
    font-size: 13px;
    text-decoration: none;
    margin: 0 0 0 0px;
    padding: 0px 4px 4px 4px;
    float: left;
}

.preference_split li span {
    padding: 0px;
    cursor: pointer;
}

.preference_split li.currencyactive .tick_image {
    color: #FFF;
    background: #1AA85C;
    border: #1AA85C;
}

.region_field select {
    font-weight: normal;
    color: #333333;
    border: 1px solid #ccc;
    background: #FFFFFF;
    line-height: 15px;
    width: 220px;
    padding: 5px 6px;
    font-size: 13px;
}

.copyright_con {
    text-align: center;
    border-top: 1px solid #FFFFFF;
}

.copyright_menu {
    display: inline-flex;
    margin: 15px 0px;
}

.copyright_con a {
    color: #FFFFFF;
    line-height: 23px;
    font-size: 14px;
    display: inline;
    font-weight: 600;
}

.copyright_con p {
    padding: 0;
    vertical-align: middle;
    border: none;
    color: #fff;
    margin: 15px 0px;
}

.copyright_menu .active a,
.footer_menu .active a,
.navbar-right .active a {
    color: #FDDE6D;
}

.footer .media-body,
.footer .media-left,
.footer p {
    color: #FFFFFF;
    font-weight: 600;
    line-height: 1.4;
}

.app-icon img {
    margin: 5px;
    width: 180px;
}

/*======================
    FOOTER END
========================*/


/*======================
    MEDIA QUIRIES
========================*/
@media only screen and (max-width:480px) {
    .notfound_page_con .mob-font {
        font-size: 136px !important;
    }
}

@media only screen and (min-width:767px) {
    .container {
        width: 1320px;
    }
}

@media(max-width: 768px) {
    header {
        border-bottom: 1px solid rgba(0, 0, 0, .08) !important;
        background: var(--primary-color);
    }

    .footer-full-sec {
        padding-top: 30px;
    }



    .sticky {
        display: block;
        z-index: 9999;
        position: fixed;
        top: 0;
        transform: translate3d(0px, 0px, 0px);
        padding: 5px 10px !important;
    }

    .sticky i.fa.fa-bars {
        color: #fff;
    }



    .sticky .after_scroll {
        display: block !important;
    }

    .sticky .after_scroll_search {
        display: none;
    }

    .sticky .sidebar_show_inner {
        padding: 0px 0px 7px 7px;
        ;
    }

    .mob_user .fa,
    .open_mob_menu .fa {
        font-size: 18px;
        padding: 5px 0px 0px;
    }

    input#search_items {
        width: 100%;
        padding: 11px;
    }

    .fixed_header {
        width: 100%;
        background: var(--primary-color);
        padding: 0px 15px;
    }

    .main_header {
        overflow: hidden;
        width: 100%;
    }

    .main_header .main_menu {
        overflow-y: scroll;
    }

    .main_menu .cat_menu {
        width: 600px;
    }

    .main_menu .cat_menu li.dropdown {
        float: left !important;
    }

    .cat_menu .dropdown-menu {
        margin: 0px 20px 0px 20px !important;
    }

    .mob_header {
        box-shadow: none;
        border: none !important;
        display: flex;
        align-items: center;
    }

    .mob_header .logo img {
        width: 170px !important;
    }

    .mob_header .fa,
    .mob_header a {
        vertical-align: middle;
        color: #fff;
    }

    .mob_center {
        padding: 0px;
    }

    .mob_user a {
        font-size: 13px;
        padding: 4px 14px;
    }

    .mob_user a span {
        padding: 2px 0px;
        display: block;
    }

    .mob_user {
        display: inline-flex;
        width: 100% !important;
        padding: 0px !important;
        margin: 0px !important;
    }

    .mob_head_search {
        padding: 0px 20px 0px 0px;
    }

    .mob_header .fa:hover,
    .mob_header a:hover {
        color: #333;
    }

    .mob_padd {
        cursor: pointer;
        font-size: 17px;
        padding: 0px !important;
        display: flex;
        align-items: center;
    }

    .sidebar_show_inner {
        padding: 0px;
    }

    .user-profile {
        border-radius: 50%;

    }

    .header_full_bg,
    .search_full_bg,
    .category_full_bg {
        position: fixed;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, .8);
        opacity: 1;
        left: 0;
        right: 0;
        top: 0;
        z-index: 99999;
        background-repeat: no-repeat;
        background-position: center;
        cursor: pointer;
        display: none;
    }

    .header_full_bg:after,
    .search_full_bg:after,
    .category_full_bg:after {
        color: #fff;
        content: 'X';
        position: absolute;
        z-index: 999999;
        right: 20px;
        top: 20px;
        font-size: 30px;
        cursor: pointer;
    }

    #mySidenav,
    .standardized_filters,
    .dashboard_left,
    .cat_side_menu {
        background: #fff;
        position: fixed;
        width: 75% !important;
        height: 100%;
        top: 0;
        left: 0;
        -webkit-transform: translate3d(-102%, 0, 0);
        transform: translate3d(-102%, 0, 0);
        will-change: transform;
        -webkit-box-shadow: 3px 0 8px 1px rgba(0, 0, 0, .4);
        box-shadow: 3px 0 8px 1px rgba(0, 0, 0, .4);
        z-index: 99999;
        overflow: auto;
        transition: all 0.4s ease-in-out 0s !important;
    }

    .cat_side_menu {
        background: linear-gradient(30deg, #2874f0, #0065c5) !important;
    }

    .mob_sort_header {
        position: fixed;
        width: 90%;
        left: 50%;
        top: 50%;
        -webkit-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%);
        min-height: 10%;
        max-height: 90%;
        background-color: #fff;
        border-radius: 3px;
        -webkit-box-shadow: 0 16px 24px 2px rgba(0, 0, 0, .14), 0 6px 30px 5px rgba(0, 0, 0, .12), 0 8px 10px -5px rgba(0, 0, 0, .4);
        box-shadow: 0 16px 24px 2px rgba(0, 0, 0, .14), 0 6px 30px 5px rgba(0, 0, 0, .12), 0 8px 10px -5px rgba(0, 0, 0, .4);
        display: none;
        z-index: 999999;
    }

    .side_bar .side_bar_head {
        width: 100%;
    }

    .mob_head_side ul#nav {
        margin-bottom: 0px;
        padding: 0px;
    }

    .mob_head_side .side_bar ul {
        box-shadow: none;
        padding: 0;
        border: none;
    }

    .mob_head_side .nav-section-title {
        text-align: left;
    }

    .mob_head_side ul#nav li {
        padding: 0;

    }

    .mob_head_side ul#nav li a {
        padding: 10px 0px 10px 45px;
        color: #666;
        font-size: 13px;
        outline: medium none !important;
        text-decoration: none !important;
    }

    .mob_head_favicon {
        position: absolute;
        right: 15px;

    }

    .mob_head_favicon img {
        width: 50px;
        display: none;
    }

    .mob_user img {
        width: 26px !important;
    }

    .mob_head_side .first_child {
        border: none;
    }

    .mobile-login {
        text-align: center;
    }

    .header-cart a.show-mini-cart {
        margin-top: -5px;
    }

    span.cart-count {
        top: 5px;
        background: #5E4E71;
        color: #fff;
    }

    /*.nav_icon{
        background: url(../images/sprite-icons/icon_sl.png) no-repeat;
        background-position-x: 0%;
        background-position-y: 0%;
    }*/
    .nav_icon {
        height: 40px;
        width: 40px;
        display: block;
        position: absolute;
        left: 0;
        top: 0;
    }

    .new_signup,
    a.reopen_account.right_align {
        text-align: center !important;
        display: block !important;
    }

    .mob_main_cat_list {
        display: inline-flex;
        width: 100%;
        overflow-y: scroll;
        background: #5E4E71;
        padding: 10px 0px;
        border: 1px solid #f0f0f0;
    }

    .mob_cat_header li {
        padding: 0px 5px;
        text-align: center;
    }

    .mob_cat_header li a {
        font-weight: 500;
        text-transform: capitalize;
        border: none;
        font-size: 13px;
        line-height: 1.4;
        padding: 0px 12px;
        color: #fff;
        white-space: nowrap;
        overflow-x: auto;
        display: flex;
    }

    .cat_sidebar_show_inner {
        background: #5E4E71;
        position: fixed;
        right: 0;
        padding: 0px !important;
    }

    .mob_cat_header .mob_cat_img {
        position: relative;
        margin: auto;
        width: 20px;
        height: 20px;
        min-width: inherit;
        min-height: inherit;
    }

    .mob_cat_header .mob_main_cat_list img {
        position: absolute;
        top: 46%;
        left: 50%;
        max-width: 100%;
        max-height: 100%;
        transform: translate(-50%, -50%);
        transition: opacity .3s linear;
    }


    /*Script page*/
    .page-menu-section {
        overflow: scroll;
        max-width: 800px;
    }

    .page-menu-section #onepage-nav {
        min-width: 800px;
    }


    /* Footer page */
    .copyright_con.copyright_con {
        text-align: center;
        display: block;
    }

    .copyright_menu li:last-child a {
        border-right: none;
    }

    .footer_column {
        padding: 5px 0px;
    }

    .payment_method {
        border: none;
    }

    .subscribe_settings .amigoways-btn {
        text-align: center;
        width: auto;
    }

    .save-gold-type a {
        font-size: 14px !important;
        white-space: nowrap;
        overflow: hidden;
        padding: 6px !important;
    }
}

@media(max-width: 599px) {
    .my_model_popup .modal-dialog {
        margin: 20px 20px;
    }

    .social_login {
        width: 100%;
        text-align: center;
    }
}

@media(max-width: 479px) {

    .popup_tab_content,
    .signin_content {
        padding: 15px 10px 16px;
    }

    .social_link li a {
        padding-right: 2px;
    }
}


/* CSS BY RAGUL */

.main_header .navbar-default,
.quickview_header {
    max-width: 1334px;
}


@media (min-width: 768px) {
    .navbar-right {
        float: right !important;
        margin-right: -15px;
        display: flex;
        align-items: center;
    }
}

.main_header .navbar-right a {
    border-radius: 4px;
    padding: 12px 11px !important;
    color: #FFFFFF !important;
    border: none;
    transition: .3s;
    font-size: 17px;
}

.header-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 10px 0;
}

.header-link {
    font-size: 15px;
    color: #440A19;
    text-decoration: none;
    padding: 5px 10px;
    transition: color 0.3s ease;
    font-weight: 700;
}

.header-link:hover {
    color: #000;
}

.head_search_form .row {
    margin: 0;
}

.head_search_rest {
    padding-right: 5px;
}

.head_input {
    width: 100%;
    padding: 6px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.amigoways-btn {
    background: url('path-to-search-icon.png') no-repeat center;
    background-size: contain;
    border: none;
    cursor: pointer;
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .header-links {
        justify-content: flex-start;
    }

    .header-link {
        font-size: 13px;
        padding: 3px 6px;
    }

    .head_search_btn {
        padding-left: 5px;
    }

    .head_input {
        border: 1px solid #A21F25;
        border-radius: 5px !important;
    }
}

.ma-header {
    display: flex;
    align-items: center;
}

/* .head_search_btn{
    display: flex;
    justify-content: end;
    align-items: center;
} */


.panel {
    margin-bottom: 0px;
    background-color: #5E4E71;
    border-radius: 10px;
    color: #000000;
    width: 233px;

}

.panel-default {
    border: 1px solid #5E4E71;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.price-digit {
    font-size: 17px;
    font-weight: 700;
    margin: 0px;
    color: #000000;
}

@media (max-width: 480px) {
    .price-digit {
        font-size: 1rem;
    }

    .btn-toggle .btn {
        font-size: 11px;
        padding: 4px 8px;
    }

    .why-choose-box {
        margin: 64px 0px !important;
    }
}


.live-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #FDBB25;
    border-radius: 50%;
    margin-right: 4px;
    vertical-align: middle;
    margin-bottom: 3px;
}


.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    background-color: #FDBB25;
}

.but-title {
    margin-bottom: 3px;
    font-weight: 700;
}


.toggle-container {
    position: relative;
    width: 75px;
    height: 31px;
    border-radius: 20px;
    background: #f0f0f0;
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.toggle-icon {
    position: absolute;
    top: 2px;
    width: 28px;
    height: 28px;
    background: #FDBB25;
    /* gold color */
    border-radius: 50%;
    transition: left 0.3s ease;
    box-shadow: 0 0 6px rgba(212, 175, 55, 0.7);
}

.toggle-container.active .toggle-icon {
    left: 86px;
    /* move icon to right side */
    background: linear-gradient(135deg, #C0C0C0, #D3D3D3);
    /* silver color */
    box-shadow: 0 0 6px rgba(192, 192, 192, 0.7);
}

.label {
    flex: 1;
    text-align: center;
    font-weight: bold;
    color: #5E4E71;
}

.toggle-container.active .label {
    color: #888;
}

/* Text labels on each side */
.label.left {
    text-align: left;
    width: 50px;
}

.label.right {
    text-align: right;
    width: 50px;
}



.categories-section {
    padding: 50px 0;
}

.categories-section .section-title {
    font-size: 27px;
    font-weight: bold;
    margin-bottom: 15px;
}

.categories-section .section-content {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

.category-item img {
    border-radius: 5px;
    transition: transform 0.3s ease;
    max-width: 100%;
}

.category-item img:hover {
    transform: scale(1.05);
}

.category-name {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}



.amigoways-btn:hover {
    background-color: #E0BD6C;
}


.categories-section {
    padding: 50px 0;
}

.sub-title {
    font-size: 20px;
    color: #d4af37;
    margin-bottom: 10px;
    font-weight: 600;
}

.main-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
}

.section-title-big {
    font-size: 40px;
    margin-bottom: 10px;
}


.category-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.category-image {
    width: 100%;
    transition: transform 0.3s ease;
}


.carousel-control.left,
.carousel-control.right {
    background-image: none;
}


.carousel-control {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 15%;
    font-size: 20px;
    color: #000;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
    background-color: rgba(0, 0, 0, 0);
    filter: alpha(opacity=50);
    opacity: .5;
}

.slider-section {
    background: linear-gradient(to right, #FDBB25, #F3B545);
}

.caption-sec {
    padding: 42px;
}



.blog-video-section {
    background-image: url(../images/brt-bg.png);
    padding: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 30px 0px;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.section-subtitle {
    font-size: 20px;
    margin-bottom: 10px;
    color: #666;
}

.section-description {
    font-size: 16px;
    margin-bottom: 40px;
    color: #777;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.video-card {
    background: #fff;
    border: 1px solid #ddd;
    /* visible border for box */
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    margin-bottom: 30px;
    overflow: hidden;
}

/* Responsive video embed (16:9 aspect ratio) */
.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 ratio */
    height: 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 15px;
    background-color: #FDBB25;
    border-top: 1px solid #eee;
}

.video-title {
    font-size: 16px;
    font-weight: 600;
    color: #FFF;
    display: flex;
    align-items: center;
}

/* Headphones icon styling */
.video-title .fa-headphones {
    margin-right: 8px;
    color: #FFF;
    font-size: 16px;
}

.share-icon {
    font-size: 20px;
    color: #FFF;
    cursor: pointer;
    transition: color 0.3s ease;
    align-items: center;
}

.share-icon:hover,
.share-icon:focus {
    color: #FFF;
    outline: none;
}


/* Container spacing */
#blog-posts-section {
    background-image: url(../images/brt-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}


/* Post grid */
.posts-grid {
    margin-top: 0;
}

/* Post card box */
.post-card {
    position: relative;
    overflow: hidden;
    border-radius: 35px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    cursor: pointer;
    border: 1px solid #ddd;
    background: #fff;
    transition: box-shadow 0.3s ease;
}

.post-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Post image */
.post-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* Overlay */
.post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.post-card:hover .post-overlay {
    opacity: 1;
}

/* Overlay heading */
.post-overlay h4 {
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 1.25em;
    color: #FFF;
}

/* Overlay paragraph */
.post-overlay p {
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.4;
    color: #FFF;
}

/* Read More button */
.read-more-btn {
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 4px;
    text-decoration: none;
    color: #fff;
    background-color: #FDBB25;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.read-more-btn:hover,
.read-more-btn:focus {
    background-color: #FDBB25;
    color: #fff;
    text-decoration: none;
}

.post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, #FFFFFF00 0%, #2B337C 100%);
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    text-align: start;
}

.post-card:hover .post-overlay {
    opacity: 1;
}


.category-image-wrapper {
    text-align: start;
    background-color: #D9D9D9;
    border-radius: 30px;
    margin-bottom: 10px;
}

.category-image {
    width: 100%;
    height: auto;
    border-radius: 5px;

}

.category-caption {
    padding: 15px;
}

.slider-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #000;
}

.category-btn {
    display: inline-block;
    color: #5E4E71;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
}

.category-btn:hover {
    background-color: #bfa12f;
    color: #fff;
}




.section-title {
    font-size: 28px;
    font-weight: bold;
    color: #222;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 16px;
    color: #000;
    margin-bottom: 30px;
}


.saving-title {
    font-size: 18px;
    font-weight: 700;
    color: #FDDE6D;
    margin-bottom: 10px;
    text-align: center;
}

.saving-text {
    font-size: 14px;
    color: #FFFFFF;
    line-height: 1.6;
}

.image-box {
    padding: 10px;
    margin-bottom: 20px;

    display: flex;
    justify-content: center;
}


.contact-card {
    display: flex;
    justify-content: center;
}

@media (max-width: 786px) {
    .contact-card {
        justify-content: center;
        padding: 0px;
        margin-bottom: 10px;
    }
}

/* =========================================================
   UPDATED CONTACT SECTION FORM BACKGROUND STYLE
========================================================= */
.con-sec {
    /* Changed from dark/primary variable fill into the exact clear design layout style */
    background: #ffffff !important; 
    padding: 3rem 2.5rem !important; /* Enhanced clean interior breathing spacing padding */
    border-radius: 16px !important; /* Smooth corner radius profiles matching image specs */
    
    /* Injected the explicit high-end border frame matching your contact mockup image asset */
    border: 2px solid #4A1525 !important; 
    box-shadow: 0 20px 50px rgba(74, 21, 37, 0.03) !important;
    box-sizing: border-box !important;
    width: 100% !important;
}

/* Fallback responsive adaptation profile rules tracking mid-size views downstairs */
@media (max-width: 992px) {
    .con-sec {
        padding: 2.2rem 1.5rem !important;
    }
}


.full-contact-sec {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}


.amigoways-contact-btn, .amigo-btn {
    background: #4A1525;
    border: none !important;
    position: relative;
    text-decoration: none;
    text-align: center;
    outline: none;
    line-height: normal;
    color: #ffffff !important;
    cursor: pointer;
    padding: 12px 40px;
    border-radius: 6px;
    width: auto;
    min-width: 160px;
    font-weight: 700;
    transition: 0.3s;
    display: block; /* Changed to block for centering */
    margin: 0 auto; /* Added to center the button perfectly */
    text-transform: uppercase;
}

.amigoways-contact-btn:hover, .amigo-btn:hover {
    background: #6d3145;
    transform: translateY(-2px);
}



/* Media image styling */
.media-left img {
    height: auto;
    display: block;
    min-width: 40px;
}

.media {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

/* Text styles */
.about-text {
    font-size: 17px;
    color: #5E4E71;
}


.combined-nav-section .btn-group-justified>.btn {
    border-radius: 0;
    /* Remove rounded corners for all */
    border-right: 1px solid #004080;
    /* Separator line between buttons */
    font-weight: 600;
    font-size: 16px;
    padding: 12px 0;
    transition: background-color 0.3s ease;
}

.combined-nav-section .btn-group-justified>.btn:last-child {
    border-right: none;
    /* Remove border from last button */
}

.combined-nav-section .btn-group-justified>.btn:hover,
.combined-nav-section .btn-group-justified>.btn:focus {
    background-color: #003060;
    color: #fff;
    text-decoration: none;
}

.work-btn {
    padding: 15px;
    color: #5E4E71;
    background: #E7F5FC;
    font-size: 17px;
    font-weight: 700;
}

.work-btn-active {
    padding: 15px;
    color: #E7F5FC;
    background: #5E4E71 !important;
    font-size: 17px;
    font-weight: 700;
}


/* Nav links styling */
.nav-tabs {
    display: inline-block;
    width: 90%;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin: 10px auto;
    background: #E7F5FC;
}

.nav-tabs.custom-nav {
    border-bottom: none;
    /* Remove default underline */
    display: flex;
    justify-content: space-between;
    padding: 0;
    margin-bottom: 30px;
    list-style: none;
}

.nav-tabs>li>a {
    color: #5E4E71;
    position: relative;
    display: block;
    padding: 16px 125px;
}

/* On small screens, remove the padding */
@media (max-width: 767px) {
    .nav-tabs>li>a {
        padding: 16px 0px !important;
    }
}

.nav-tabs>li.active>a,
.nav-tabs>li.active>a:focus,
.nav-tabs>li.active>a:hover {
    color: #fff;
    cursor: default;
    background: #5E4E71;
}

/* Image cards styling */
.image-cards img.img-circle {
    width: 140px;
    height: 140px;
    object-fit: cover;
    margin-bottom: 15px;
    transition: border-color 0.3s ease;
    padding: 20px;
    background: #E7F5FC;
}


.image-title {
    font-weight: 700;
    font-size: 1.25em;
    margin-bottom: 10px;
    color: #222;
}

.image-text {
    font-size: 14px;
    color: #555;
    max-width: 220px;
    margin: 0 auto;
}

/* Responsive spacing */
@media (max-width: 767px) {

    .nav-row .nav-link,
    .image-cards {
        margin-bottom: 20px;
    }

    .mob_header .fa,
    .mob_header a {
        vertical-align: middle;
        font-size: 18px;

    }
}


/* Calculator labels and inputs */


/* Radio spacing */
.radio-inline+.radio-inline {
    margin-left: 20px;
}

/* Result boxes */
.result-row {
    margin-top: 30px;
}

.note-row {
    background: #FDBB25;
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 13px;
    color: #FFF;
    display: flex;
    align-items: center;
}

.note-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    /* margin-right is added inline in HTML */
}

.note-text {
    flex: 1;
}


/* Responsive tweaks */
@media (max-width: 767px) {
    .result-box {
        margin-bottom: 20px;
    }

    .date-time p {
        text-align: center;
    }


}

.live-badge {
    background-color: #FFF;
    color: #5E4E71;
    padding: 3px 10px 3px 8px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.save-calculator-section .live-dot {
    width: 10px;
    height: 10px;
    background-color: #5E4E71;
    border-radius: 50%;
    margin-right: 6px;
    display: inline-block;
}


.gold-toggle-btn {
    background-color: #f0ad4e;
    /* Bootstrap warning color */
    color: #fff;
    padding: 4px 5px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 19px;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    user-select: none;
}

.gold-dot {
    width: 18px;
    height: 18px;
    background-color: #fff;
    border-radius: 50%;
    margin-right: 6px;
    display: inline-block;
    transition: background-color 0.3s ease;
    background: #5E4E71;
}

#goldToggle:checked+.gold-dot {
    background-color: #5cb85c;
    /* green when toggled */
}

.gold-value {
    color: #FFF;
    font-size: 16px;
    font-weight: 700;
}

.gold-label h4 {
    display: inline;
}

.gold-price {
    padding: 10px 0px;
}

.date-text {
    background: #fff;
    padding: 3px 4px 4px 2px;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
    color: #000 !important;
}

.date-icon {
    background: #FDBB25;
    padding: 1px;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
}

.live-bad {
    margin-top: 10px;
}

.daily-sav-amnt {
    margin-top: 13px;
}

.sav-amt {
    margin-top: 13px;
}



.input-group-addon {
    color: #5E4E71;
}

.chit-about-us-section .section-ti {
    color: #000 !important;
}


.chit-btn {
    background: var(--secondary-color);
    border: none !important;
    position: relative;
    text-decoration: none;
    text-align: center;
    outline: none;
    line-height: normal;
    color: #000 !important;
    cursor: pointer;
    padding: 3px 10px;
    border-radius: 24px;
    width: auto;
    transition: box-shadow 0.2s ease 0s;
    font-weight: 600;
    transition: 0.3s;
    display: inline-block;
    text-transform: capitalize;
    display: flex;
    align-items: center;
}
.chit-btn svg, .chit-btn .icon {
    height: 30px;
}

.chit-btn:hover {
    background: #fff;
}



.chit-stepper-line {
    padding: 50px 0;
}

.stepper-container {
    position: relative;
    max-width: 700px;
    margin: 50px auto 40px;
}

.stepper-line {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.step {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
}

.circle {
    width: 40px;
    height: 40px;
    margin: 0 auto;
    background-color: #FDBB25;
    border-radius: 50%;
    color: #000;
    line-height: 40px;
    font-weight: bold;
    position: relative;
    z-index: 2;
}

.step.active .circle,
.step.completed .circle {
    background-color: #5E4E71;
    color: #FFF;
}

/* Line behind circles */
.progress-line {
    position: absolute;
    top: 50%;
    left: 0;
    height: 4px;
    width: 80%;
    background-color: #ccc;
    z-index: 1;
    left: 10%;
}

/* Filled progress line */
.progress-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: #f7c600;
    transition: width 0.3s ease;
    z-index: 2;
}

/* Form Panels */
.step-panel {
    display: none;
}

.step-panel.active {
    display: block;
}


.chit-fund-sec {
    background: #FFFFFF;
    padding: 20px;
    border: 1px solid #ccc;
    /* Light gray border */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Soft shadow */
    border-radius: 6px;
    /* Optional: adds rounded corners */
    width: 100%;
    float: left;
}


.custom-toggle-switch {
    position: relative;
    cursor: pointer;
}

.toggle-track {
    background: #ddd;
    border-radius: 20px;
    height: 29px;
    position: relative;
    transition: background 0.3s;
}

.toggle-thumb {
    width: 50%;
    height: 100%;
    background-color: #FDBB25;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 20px;
    transition: left 0.3s, background-color 0.3s;
    z-index: 1;
}

.label-left,
.label-right {
    position: absolute;
    width: 50%;
    line-height: 31px;
    text-align: center;
    z-index: 2;
    font-weight: bold;
    color: #333;
}

.label-left {
    left: 0;
}

.label-right {
    right: 0;
}

.head-price {
    margin-top: 6px;
}


/* .head_search_con input {
    width: 100%;
    padding: 12px 5px !important;
    border: 1px solid #FDBB25;
} */


/* Bottom border only style for inputs */
.underline-input {
    border: none;
    border-bottom: 2px solid #C4C4C4;
    border-radius: 0 !important;
    /* force no rounding */
    background: transparent;
    outline: none;
    box-shadow: none;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    font-size: 16px;
    transition: border-color 0.3s;
}


.underline-input:focus {
    border-bottom-color: #0056b3;
    box-shadow: none;
}

/* Hide the default file inputs */
input[type="file"] {
    display: none;
}

/* Style the labels as buttons */
.file-label {
    display: inline-block;
    background-color: #FDBB25;
    color: white;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    width: 100%;
    font-weight: 600;
    transition: background-color 0.3s;
    user-select: none;
}


/* Spacing for file upload containers */
.file-upload-wrapper {
    margin-bottom: 15px;
}


.form-group {
    margin-bottom: 30px;
}


.image-tab {
    width: 100%;
}

/* Card-style image tabs */
.image-tab {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
    border-bottom: none;
    /* hide Bootstrap default tab line */
    background: none;
}

.image-tab>li {
    flex: 1;
    margin-bottom: 0;
}

.image-tab>li>a {
    display: flex;
    flex-direction: column;
    align-items: start;
    text-align: start;
    padding: 15px;
    border: 2px solid #ccc;
    border-radius: 8px;
    min-height: 200px;
    transition: all 0.3s ease;
    background-color: #fff;
    color: #333;
}

.image-tab>li>a img {
    max-height: 80px;
    object-fit: contain;
    margin-bottom: 10px;
}

.image-tab>li>a .tab-title {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 5px;
}

.image-tab>li>a .tab-text {
    font-size: 13px;
    color: #666;
}

/* Active tab style */
.image-tab>li.active>a,
.image-tab>li>a:hover {
    border-color: #007bff;
    background-color: #f0f8ff;
    color: #007bff;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.2);
}

/* Remove Bootstrap's default tab border under content */
.chit-tab-content {
    margin-top: 15px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    width: 100%;
}

.chit-fund-sec .nav-tabs {
    width: 100%;
    padding: 0px;
}


.chit-fund-sec .panel-body {
    padding: 15px;
    background: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
}

.chit-fund-sec .panel {
    width: 100%;
    border: 2px solid #A0A0A0;
    border-radius: 5px;
}

/* Optional: Improve spacing and layout inside plans */
.panel-body h4 {
    margin-top: 0;
    font-weight: bold;
    color: #5E4E71;
}

.panel-body p {
    margin: 5px 0;
}

.img-con {
    padding: 10px;
}

/* Join button styling */
.btn-primary {
    margin-top: 10px;
}

.chit-back {
    display: flex;
    justify-content: end;
}


/* Invoice Wrapper */
.step-4-invoice {
    margin-top: 20px;
}

/* Section Box */
.invoice-section {
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 20px;
    background-color: #fff;
}

/* Section Headers */
.invoice-header {
    background-color: #f1f1f1;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: bold;
    border-bottom: 1px solid #ddd;
    border-top: 1px solid #ddd;
}

/* Section Body */
.invoice-body {
    padding: 15px;
    font-size: 14px;
}

.invoice-body p {
    margin: 10px 0;
}

/* Plan Summary List */
.invoice-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.invoice-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.invoice-list li:last-child {
    border-bottom: none;
}

/* Buttons */
.btn-invoice {
    background-color: #007bff;
    color: #fff;
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    margin: 0 5px;
}

.btn-invoice:hover {
    background-color: #0056b3;
}

/* Responsive Fixes */
@media (max-width: 767px) {

    .invoice-body p,
    .invoice-list li {
        font-size: 13px;
    }
}

.pincode_check .form-row {
    display: inline-flex;
}

.pincode_check .input-text {
    margin: 0px;
    border-radius: 0px;
    background: #FDEFE9;
}

.pincode_check .pincode_check_btn {
    padding: 10px 2px 0px 0px;
    color: #FFF;
    background: #2B337C;
    border: 1px solid #2B337C;
    display: inline-block;
    cursor: pointer;
}


.pro_grid_details {
    display: inline-flex;
    padding: 20px 0;
    width: 100%;
}

.nowrap {
    white-space: nowrap;
}



@media (max-width: 767px) {
    .cat_side_menu {
        background: #fff !important;
    }

    .side_bar .side_bar_head {
        padding: 3px 0px 21px 0px !important;
    }

    .cat_side_menu .side_bar_head a {

        color: var(--color-primary) !important;
        ;
    }

    .mob_head_favicon img {

        display: block;
    }
}



.mob-chit-dropdown {
    position: relative;
    cursor: pointer;
    user-select: none;
}

.mob-chit-dropdown>a.header-link {
    display: inline-block;
}

.mob-chit-dropdown>.d-user-toggle {
    display: inline-block;
    margin-left: 8px;
    font-size: 14px;
    color: #666;
    top: 50%;
}

.mob-chit-dropdown .dropdown-menu {
    position: static;
    display: none;
    padding-left: 15px;
    border: none;
    background: #f9f9f9;
}

.mob-chit-dropdown.open .dropdown-menu {
    display: block;
    width: 100%;
}

.mob-chit-dropdown .dropdown-menu li {
    padding: 5px 0;
}

.mob-chit-dropdown .dropdown-menu li a {
    color: #007bff;
    text-decoration: none;
}

.mob-chit-dropdown .dropdown-menu li a:hover {
    text-decoration: underline;
}

/* Basic Reset */

.menu-item {
    position: relative;
    background: #fff;

}

.menu-item>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    text-decoration: none;
    color: #333;
    font-weight: 700 !important;
}

.menu-item>a:hover {
    background-color: #f9f9f9;
}

/* Submenus */
.submenu {
    display: none;
    background: #fefefe;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.menu-item:hover>.submenu {
    display: block;
}


/* Indentation for each level */
.level-two {
    margin-left: 15px;
}

.level-three {
    margin-left: 30px;
}

.level-four {
    margin-left: 45px;
}


/* Different colors for each level toggle */
.toggle-one {
    border-color: #666;
}

.toggle-two {
    border-color: #666;
}

.toggle-three {
    border-color: #666;
}

/* Animation (optional) */
.submenu {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 768px) {
    .mob_head_side ul#nav li a {
        display: inline-block;
    }
}

.menu-item {
    position: relative;
    background: #fff;
}

.menu-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px 0px 2px;
    position: relative;
}

.menu-toggle {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-right: 2px solid;
    border-bottom: 2px solid;
    transform: rotate(45deg);
    cursor: pointer;
    margin-left: 10px;
}

.menu-text {
    font-size: 15px;
    font-weight: 700;
}

.app-icon {
    padding: 0px !important;
}

@media (max-width: 768px) {
    .user-profile img {
        border-radius: 50%;
        height: 35px;
        border: 2px solid;
        padding: 2px;
    }

    .user_account_details .panel-title {
        font-size: 15px !important;
    }

    .footer_settings_tab ul.tabs li,
    .account_settings_tab ul.tabs li {
        white-space: nowrap;
        overflow-x: scroll;
    }

    .save-gold-type a.active {
        border-radius: 0px !important;
    }

    .save-gold-type,
    .save-gold-price-type,
    .sip-gold-type {
        flex-direction: column;
        border-radius: 0px !important;
    }

    .gold-service-section .saving-content-wrapper {
        margin: 10px;
        flex-wrap: wrap;
    }

    .main-header {
        background: var(--primary-color);
    }

    .pay-image {
        width: auto !important;
    }

    .saving-content-wrapper::before {
        display: none;
    }

}


.side_bar_profile a {
    width: 50px;
    height: 50px;
}

.user-img-sec img {
    border-radius: 50%;
    width: 170px;
    background: #7c7474;
    padding: 2px;
    height: 170px;
}

.side-user-image img {
    width: 35px;
}


/* Modal Background */
.search-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
}

/* Modal Content */
.search-modal-content {
    background-color: #F0F1FF;
    margin: 10% auto;
    padding: 20px 10px 61px 10px;
    border-radius: 8px;
    width: 90%;
    max-width: 800px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
}

/* Close Button */
.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #000;
    cursor: pointer;
}


/* Make input field full width inside modal */
.head_input.home_product_search {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    box-sizing: border-box;
}

.amigoways-btn-search {
    padding: 10px;
    background: #010A6F;
    color: #000;
}
.header-login-btn {
    margin-left: 12px;
}
.main-header .navbar-right .header-login-btn a {
    color: #fff !important;
    padding: 12px;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
     background: #440A19; 
     border-radius: 30px;
    gap: 5px;
    font-weight: 500 !important;
}


.why-choose-section h2 {
    color: var(--primary-color);
}


.about-us-section .amigoways-btn {
    border-radius: 10px;
    padding: 10px 25px;
    background-color: #fff;
    color: var(--primary-color) !important;
}

.we-offer {
    background: linear-gradient(to right, #5E4E71, #F5D690, #FFDD8F, #E5B953) !important;
    background: no-repeat;
    text-align: center;
    height: 390px;
    border-radius: 20px;
    margin: 10px 0px 20px 0px;
}

.we-offer h6 {
    font-weight: 800;
    font-size: 18px;
}

.we-offer p {
    color: #171717 !important;
    padding: 0px 20px;
}

.we-offer img {
    margin: 20px 0px;
}

.why-choose-box {
    background-color: #fff;
    padding: 20px;
    margin: 35px 0px;
    border-radius: 10px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .08), 0 4px 12px rgba(0, 0, 0, .05);

}

.why-choose-box h6 {
    font-weight: 800;
    font-size: 18px;
}

.why-choose-box img {
    margin-top: -50px;
}

.gift-about-section .fa {
    margin-left: 10px;
    font-size: 15px;
}

.why-choose-section {
    background: #fff;
}

.social_link a .fa {
    border-radius: 50%;
    color: #fff !important;
    line-height: 15px;
    text-align: center;
    font-size: 15px;
    background: var(--primary-color);
    border: 1px solid #fff;
}

.full-logo-footer {
    padding: 10px 10px;
    border: 1px solid #FFFFFF33;
    border-radius: 25px;
    margin-bottom: 10px;
}



.full-con-sec {
    background: linear-gradient(to right, #410213, var(--primary-color), #410213);
}

.digigold-sell-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 10px;
    height: 10px;
    background-color: #fff;
    border-radius: 50%;
}

.digigold-sell-list li {
    position: relative;
    padding-left: 22px;
    margin: 10px 0px;
    color: #fff;
}

.digigold-sell-list {
    list-style: none;
    padding-left: 0;
}

.start-saving-section h2 {
    color: var(--primary-color);
}




.about-vision-section p {
    color: #fff;
}

.about-vision-section {
    background: #5E4E7180;
}


.gold-service-section .saving-content-wrapper {
    box-shadow: none;
    padding: 10px;
    min-height: 228px;
    border-radius: 0px;
    display: flex;
    margin-bottom: 15px;
    background: #fff;
    align-items: center;
}

.gold-service-section .image-box {
    display: block;
    padding-bottom: 0px !important;
}

.gold-service-section .saving-title {
    text-align: left;
    color: #000;
}

.gold-service-section .saving-text {
    text-align: left;
}

.gold-service-section {
    background: linear-gradient(to right, #410213, var(--primary-color), #410213);
}

.gold-service-section .saving-item {
    padding: 0px 6px;
}

.about-mision-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.gst-text {
    font-size: 15px;
    color: #fff;
}


/* Wrapper for the entire component */
.metal-wrapper {
    display: flex;
    background: linear-gradient(to right, #FFF0CE, #F1D28A);
    justify-content: space-evenly;
    padding: 10px 0px;
    border-radius: 6px;
}

.metal-price-toggle {
    display: flex;
    align-items: center;
}


.metal-img {
    width: 33px;
    height: 33px;
    padding: 0px;
    margin: 0px;
}


.metal-dropdown-item {
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s ease;
    cursor: pointer;
}

.metal-name {
    font-weight: 700;
    margin-right: 5px;
    font-size: 14px;
    color: #323232;
    padding-top: 5px;
}

.metal-price {
    color: #323232;
    font-size: 15px;
    font-weight: 700;
    padding-top: 5px;
}

.metal-caret {
    color: #323232;
    font-size: 21px;
    vertical-align: middle;
}

.gst-text {
    font-size: 15px;
    color: #FFFFFF;
}



.update-date-text {
    color: #000;
}

.subscribe-row input[type="text"],
.subscribe-row input[type="email"],
.subscribe-row input[type="password"],
.subscribe-row input[type="date"],
.subscribe-row textarea {
    border: none !important;
    background: #8E2E4A;
    border-radius: 20px;
    color: #fff !important;
    box-shadow: none;
}

.subscribe-row {
    display: flex;
    padding-bottom: 14px;
}

.subscribe-btn {
    padding: 6px 7px 4px 7px;
    border: 1px solid #FFE6AE;
    color: #000000;
    font-size: 14px;
    cursor: pointer;
    position: absolute;
    right: 2%;
    border-radius: 20px;
    margin-top: 6px;
    background: #FFE6AE;
}

.subscribe-input {
    background: #fff;
    border: 1px solid #E1BE6D;
    width: 100%;
    padding: 13px !important;
    border-radius: 20px !important;
    position: relative;
    border: none !important;
}

.subscribe-row input[type="text"]::placeholder {
    color: #fff;
}

.contact-section .contact-phone-icon a {
    color: var(--primary-color);
    transition: all 0.4s linear 0s;
    font-weight: 600;
}

.contact-section .fa {
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    border-radius: 50%;
    padding: 4px;
    background: var(--primary-color);
    margin-right: 5px;
}

.mb-10 {
    margin-bottom: 10px;
}

.contact-us-title {
    color:#480808;
}

.saving-img-sec {
    display: flex;
    justify-content: center;
}

.pay-image {
    width: 200px;
}

.start-saving-section {
    background: #2C243A;
}

.saving-content-wrapper {
    position: relative;
    padding: 10px;
    min-height: 223px;
}

.saving-content-wrapper::before {
    content: "";
    position: absolute;
    right: -10px;
    top: 36%;
    height: 40%;
    width: 3px;
    background-color: #FFFFFF;
}

.saving-content-wrapp {
    padding: 10px;
    min-height: 223px;
}

.choose-saving-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 0px;
}

.choose-wrapper {
    border: 1px solid;
    border-radius: 12px;
    border-image: linear-gradient(90deg, #FFE6AB, #331754, #FDDE6D) 1;
    min-height: 167px;
    padding: 25px;
}

.start-choose-section {
    background: var(--primary-color);
}

.detail-sec h3 {
    color: var(--primary-color) !important;
}

.choose-sec-title {
    color: #FDDE6D !important;
    margin-bottom: 20px;
}

.choose-img-sec {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    margin-bottom: 10px;
}

.about-choose-section {
    background: #2C243A;
}

.about-image-sec {
    display: flex;
    justify-content: center;
}

.gradient-box {
    border: 2px solid;
    border-radius: 12px;
    border-image: linear-gradient(90deg, #FFE6AB, #331754, #FDDE6D) 1;
    padding: 25px 15px 5px 15px;
}

.main-header .fa {
    font-size: 23px;
}

.pro-user-name {
    width: 107px;
}

.pro-user-name a {
    white-space: nowrap;
    overflow: hidden;
}


.hide-word {
    display: none;
}

.footer-logo img {
    width: 250px;
}


.metal-rate-dropdown {
    position: relative;
    display: inline-block;
}

.metal-rate-trigger {
    color: #000;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #FFE6AE;
    padding: 4px 33px 5px 14px;
}


.metl-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.metal-rate-trigger img {
    width: 27px;
    padding-bottom: 3px;
}

.dropdown-arrow {
    width: 18px;
    fill: #000;
}

.metal-rate-menu {
    position: absolute;
    top: 110%;
    right: 0;
    width: 240px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    display: none;
    overflow: hidden;
    z-index: 99;
}

.metal-rate-dropdown:hover .metal-rate-menu {
    display: block;
}

.rate-line {
    display: flex;
    justify-content: start;
    padding: 10px 14px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    gap: 10px;
    align-items: center;
}

.rate-line:last-child {
    border-bottom: none;
}

.rate-line strong {
    font-weight: 600;
    color: var(--primary-color);
    padding-bottom: 2px;
}



.rate-line img {
    width: 25px;
    padding-bottom:2px;
}

.metl-wrapper span {
    font-size: 16px;
}


.jewelry-table {
    border-collapse: collapse;
    width: 60%;
}

.table-header {
    background-color: #fff;
}

.header-cell {
    border: 1px solid #333;
    padding: 10px;
    text-align: center;
    font-weight: bold;
}

.table-row {
    background-color: #ffffff;
}

.table-cell {
    border: 1px solid #333;
    padding: 10px;
    text-align: center;
}

.home-slider .amigoways-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-caption h1.banner-title {
    font-size: 44px;
    margin: 0px 0px 20px;
     color: var(--primary-color);
    font-weight: 700;
}

.single-row-products .section-title {
    color: #fff;
    font-size: 40px;
}

.single-row-products .section-content {
    color: #fff;
    font-size: 26px !important;
    line-height: 1.5;
    font-weight: 400;
    margin-bottom: 35px;
}

 
.single-row-products {
  background: var(--primary-color);
  position: relative;
  overflow: hidden;
}

.single-row-products::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/category-bg-img.jpg") no-repeat center/cover;
    z-index: 0;
    mix-blend-mode: multiply;
    background-position: 100% 100%;
}

.about-us-section {
    position: relative; /* IMPORTANT */
    background-color: var(--primary-color);
    overflow: hidden; /* optional, prevents overflow issues */
}

.about-us-section::before {
    content: "";
    position: absolute;
    inset: 0; /* shorthand for top:0; right:0; bottom:0; left:0 */
    background: url("../images/about-us/about-us-bg.jpg") no-repeat center/cover;
    z-index: 0;
    background-position: center 80%;
    mix-blend-mode: multiply;
}

.about-us-section h3.section-title, .faq-section h3.section-title {
    color: #fff;
    font-size: 16px;
    margin-bottom: 10px;
}

.about-us-section h2.section-title, .faq-section h2.section-title {
    color: #fff;
    font-size: 30px;
    margin-bottom: 10px;
}

.about-us-section p.section-content {
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    margin-bottom: 35px;
}

.about-us-section .about-mision {
    margin-left: 40px;
}

.what-we-do-section , .best-selling-section{
    position: relative; /* IMPORTANT */
    background-color: var(--secondary-color);
    overflow: hidden; /* optional, prevents overflow issues */
}

.what-we-do-section::before {
    content: "";
    position: absolute;
    inset: 0; /* shorthand for top:0; right:0; bottom:0; left:0 */
    background: url("../images/benefits/bg.jpg") no-repeat center/cover;
    z-index: 0;
    /* background-position: center 80%; */
    mix-blend-mode: multiply;
    opacity: 0.4;
}

.benefit-of-gold-section {
    position: relative; /* IMPORTANT */
    background-color: var(--primary-color);
    overflow: hidden; /* optional, prevents overflow issues */
}

.benefit-of-gold-section::before {
    content: "";
    position: absolute;
    inset: 0; /* shorthand for top:0; right:0; bottom:0; left:0 */
    background: url("../images/benefits/benefits-digi-gold-bg.jpg") no-repeat center/cover;
    z-index: 0;
    mix-blend-mode: multiply;
}

.benefit-of-gold-section .zigzag-item {
    padding: 0px !important;
    float: left;
    box-sizing: border-box;
    position: relative;
    min-height: unset;
    max-height: 250px;
}
.benefit-of-gold-section h3.section-title {
    color: #fff !important;
    font-weight: 500 !important;
    font-size: 24px !important;
}

.benefit-of-gold-section h2.section-title {
    color: #fff !important;
    font-size: 32px !important;
}

.benefit-of-gold-section p.section-content {
    color: #fff !important;
    font-size: 22px !important;
    line-height: 1.5;
    font-weight: 400;
    margin-bottom: 35px;
}
.benefit-list li {
    color: white;
    font-size: 22px !important;
    padding: 10px;
    line-height: 1.5;
    position: relative;
    padding-left: 50px; /* space for the icon */
}
.benefit-list {
    list-style: none; /* remove default bullets */
    padding-left: 0;
}


.benefit-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;  /* adjust based on your image */
    height: 30px;
    background: url("../images/tick-circle.png") no-repeat center/contain;
    transform: translateY(-50%);
}

.card-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* 🔥 real gap */
}

.card {
    flex: 0 0 calc(25% - 15px);
    background: #fff;
    padding: 20px;
}

.faq-section {
    background-color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/faq/faq-bg.jpg") no-repeat center/cover;
    z-index: 0;
    mix-blend-mode: multiply;
    background-position: 100% 100%;
    opacity: 0.4;
}

.faq-section .accordion-container {
    margin-top: 40px;
}

/* Base input */
/* =========================================================
   UPDATED FORM CONTROL PROPERTIES MATCHING THE MOCKUP IMAGE
========================================================= */
.dark-bg .form-control {
    color: #1c1c1e !important; /* Sharp high-contrast text color for visibility */
    background-color: #f2f2f2 !important; /* Flat light grey field fill matching your layout card [1] */
    border: none !important; /* Strips standard borders for a flat design layout */
    box-shadow: none !important; /* Cleans up inset shadows to remove dark mode depth layers */
    border-radius: 6px !important; /* Subtle rounding for standard input boxes */
    padding: 1rem 1.25rem !important; /* Balanced vertical breathing space */
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    transition: background-color 0.3s ease, box-shadow 0.3s ease !important;
}

/* Focused focus highlight overwrite rule */
.dark-bg .form-control:focus {
    background-color: #eaeaea !important; /* Shifts value on active focus paths */
    box-shadow: inset 0 0 0 1px rgba(74, 21, 37, 0.15) !important; /* Subtle crimson focus track border */
    outline: none !important;
}

/* Direct placeholder formatting tracking font weight metrics */
.dark-bg .form-control::placeholder {
    color: #99999f !important;
    font-weight: 500 !important;
    opacity: 1 !important;
}

/* Focus */
.dark-bg .form-control:focus {
  border-color: #fff;
  outline: 0;
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.05),
    0 0 8px rgba(255, 255, 255, 0.4);
}

/* Placeholder (all browsers) */
.dark-bg .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.dark-bg .form-control::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.dark-bg .form-control:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.dark-bg .form-control::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.dark-bg .form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
  opacity: 1;
}

/* Disabled / readonly */
.dark-bg .form-control[disabled],
.dark-bg .form-control[readonly],
.dark-bg fieldset[disabled] .form-control {
  background-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.2);
  opacity: 1;
  cursor: not-allowed;
}

/* Fix select arrow (IE/Edge legacy) */
.dark-bg .form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}

/* Textarea */
.dark-bg textarea.form-control {
  height: auto;
}

/* Autofill fix (Chrome) */
.dark-bg input:-webkit-autofill {
  -webkit-text-fill-color: #fff;
  transition: background-color 5000s ease-in-out 0s;
}

.contact-section .amigoways-img {
    max-width: 500px;
    max-height: 423px;
}
/* TABLET VIEWPORTS (iPads / Small Screens) */
@media (max-width: 991px) {
    .contact-section .amigoways-img {
        max-width: 380px; /* Scales down the image for narrower tablet boundaries */
        max-height: 320px;
    }
}

/* MOBILE VIEWPORTS (Smartphones) */
@media (max-width: 767px) {
    .contact-section .amigoways-img {
        max-width: 280px; /* Compact presentation so it doesn't cause overflow bugs on phones */
        max-height: 240px;
        margin-bottom: 15px; /* Adds clean spacing beneath it if other content stacks below */
    }
}

/* .what-we-offer-section .sub-title {
    color: #333333;
}

.what-we-offer-section {
    background-color: var(--secondary-color);
    position: relative;
    overflow: hidden;
}
.what-we-offer-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/what-we-do/bg.jpg") no-repeat center/cover;
    z-index: 0;
    mix-blend-mode: multiply;
    background-position: 100% 100%;
    opacity: 0.5;
} */

.card-wrapper .card-content {
    margin-top: 20px;
}

.card-wrapper h3.card-title {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.trending-products .trending-small-box .trend-pro-img {
    height: 250px;
}

.pro-list .box-item .amigoways-img {
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

#savings-calculator .section-title {
    margin-top: 20px;
    margin-bottom: 10px;
}

.chit-btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px 0px;
}

.contact-us-banner .banner-title, .contact-us-banner .banner-caption p {
    color: white !important;
}

.bg-c-primary {
    background-color: var(--primary-color);
}

.bg-c-secondary {
    background-color: var(--secondary-color);
}

.bg-c-primary h3.section-title, .bg-c-primary h2.section-title , .bg-c-primary .section-content {
    color: #000 !important;
}

.bg-c-secondary:not(.primary-text) h3.section-title, .bg-c-secondary:not(.primary-text) h2.section-title , .bg-c-secondary .section-content {
    color: black !important;
}

.bg-c-secondary.primary-text h3.section-title, .bg-c-secondary.primary-text h2.section-title  {
    color: var(--primary-color) !important;
}

/* ===== JDG Features Section ===== */

.jdg-features-section {
  background: #7B1040;
  padding: 40px 0;
}

.jdg-feature-col {
  margin-bottom: 16px;
}

.jdg-feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 18px 20px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  gap: 16px;
  height: 100%;
}

.jdg-feature-icon-wrap {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: #fce8ef;
  border-radius: 10px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.jdg-feature-icon-wrap svg {
  width: 28px;
  height: 28px;
}

.jdg-feature-content {
  -webkit-flex: 1;
  flex: 1;
}

.jdg-feature-title {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 6px 0;
  line-height: 1.3;
}

.jdg-feature-desc {
  font-size: 12px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 767px) {
  .jdg-feature-col {
    margin-bottom: 12px;
  }
}

/* ===== JDG Mission Vision Section ===== */

.jdg-mission-vision-section {
  padding: 50px 0;
}

.jdg-mv-row {
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 40px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.jdg-mv-row:last-child {
  margin-bottom: 0;
}

/* Text Column */
.jdg-mv-text-col {
  padding-top: 10px;
  padding-bottom: 10px;
}

.jdg-mv-title {
  text-align: center;
  margin-top: 0;
  margin-bottom: 18px;
}

/* Image Wrap */
.jdg-mv-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  display: inline-block;
  max-width: 280px;
  width: 100%;
}

.jdg-mv-img-wrap.jdg-mv-img-right {
  float: right;
  border-top-left-radius: 120px;
  border-top-right-radius: 120px;
}

.jdg-mv-img-wrap.jdg-mv-img-left {
  float: left;
    border-top-left-radius: 120px;
    border-top-right-radius: 120px;
}

.jdg-mv-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 400px;
}

/* Reusable class overrides for this section */
.jdg-mission-vision-section .section-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

.jdg-mission-vision-section .section-content {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.75;
  margin-bottom: 14px;
}

.jdg-mission-vision-section .section-content:last-child {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 767px) {
  .jdg-mv-row {
    display: block;
  }

  .jdg-mv-img-col {
    text-align: center;
    margin-bottom: 20px;
  }

  .jdg-mv-img-wrap.jdg-mv-img-right,
  .jdg-mv-img-wrap.jdg-mv-img-left {
    float: none;
    margin: 0 auto;
    display: block;
  }

  .jdg-mv-text-col {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.save-gold-banner .banner-title {
    color: black !important;
}
.save-gold-banner .banner-caption p {
    color: white !important;
}

.sell-gold-banner .banner-title {
    color: var(--primary-color) !important;
}
.sell-gold-banner .banner-caption p {
    color: var(--blue-color) !important;
}

.save-gold-section h1, .save-gold-section h2 , .save-gold-section h3 , .save-gold-section h4 , .save-gold-section h5 , .save-gold-section h6 {
    color: white !important;
}

.bg-c-primary.page-section {
    padding: 40px 0;
}
.bg-c-primary .amigoways-btn {
    background: var(--secondary-color);
    color: #000 !important;
}

.bg-c-secondary .amigoways-btn {
    background: var(--primary-color);
    color: #fff !important;
}

  .gs-tab-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 0;
  }
  .gs-tab-heading {
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    margin: 0;
    letter-spacing: 0.01em;
  }
  .gs-tab-wrapper {
    display: flex;
    align-items: center;
    background: #f0ecf8;
    border-radius: 999px;
    padding: 4px;
    gap: 2px;
    width: auto;
  }
  .gs-tab-section .gs-tab-wrapper.nav li .gs-tab-btn {
    padding: 8px 28px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
    background: transparent;
    color: #7a6fa0;
    line-height: 1.4;
    outline: none;
  }
  .gs-tab-section .gs-tab-wrapper.nav li.active .gs-tab-btn {
    background: var(--primary-color) !important;
    color: #fff  !important;
  }
  .gs-tab-section .gs-tab-wrapper.nav li:not(.active) .gs-tab-btn:hover {
    background: rgba(124, 58, 237, 0.1)  !important;
    color: var(--primary-color)  !important;
  }

  .gs-tab-section .tab-container {
    box-sizing: content-box;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* --- Tablet Viewport (600px and up) --- */
@media screen and (min-width: 600px) {
    .gs-tab-section .tab-container {
        flex-direction: row; /* Switch to horizontal row */
        flex-wrap: wrap; /* Allow wrapping if there are too many tabs */
        justify-content: center; /* Center tabs horizontally */
        align-items: center;
        gap: 12px;
    }
}

/* --- Desktop Viewport (1024px and up) --- */
@media screen and (min-width: 1024px) {
    .gs-tab-section .tab-container {
        flex-wrap: nowrap; /* Keep all tabs strictly in one line */
        gap: 16px; /* Wider spacing for large screens */
        max-width: 1200px; /* Prevents layout from over-stretching */
        margin: 0 auto; /* Centers the entire container on the desktop page */
    }
}
.join-chit-section .chit-plan-title {
    position: absolute;
    background: transparent;
    text-align: center;
    width: 100%;
}


        .footer-container {
            width: 100%;
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Footer */
        footer {
            background: #500e14;
            color: var(--lighter);
            padding: 5rem 0 2rem;
            position: relative;
            overflow: hidden;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 20px;
        }

        .footer-column {
            position: relative;
            z-index: 1;
        }

        .footer-column h3 {
            font-family: var(--font-heading);
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 18px;
            position: relative;
            display: inline-block;
            color: #fff;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 50px;
            height: 3px;
            background: var(--primary);
            border-radius: 3px;
        }

        .footer-column p {
            color: var(--gray);
            margin-bottom: 1.5rem;
            font-size: 14px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: var(--gray);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            display: inline-block;
            transition: var(--transition);
            position: relative;
            padding-left: 1rem;
        }

        .footer-links a::before {
            content: "\f0a9";
            position: absolute;
            left: -5px;
            opacity: 0;
            transition: var(--transition);
            color: var(--primary);
            font-family: 'FontAwesome';
            /* font: normal normal normal 14px/1 FontAwesome; */
        }

        .footer-links a:hover {
            color: var(--lighter);
            padding-left: 1.5rem;
        }

        .footer-links a:hover::before {
            left: 0;
            opacity: 1;
        }

        /* Contact Info */
        .contact-info {
            margin-top: 1rem;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1rem;
            color: var(--gray);
        }

        .contact-item i {
            margin-right: 14px;
            color: var(--primary);
            font-size: 15px;
            margin-top: 3px;
        }
        .contact-item a {
            color: var(--gray);
        }

        .contact-item span {
            font-size: 14px;
            line-height: 1.5;
        }

        /* Social Links */
        .social-links {
            display: flex;
            gap: 0.8rem;
            margin-top: 1.5rem;
            flex-wrap: wrap;
        }

        .social-link {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--lighter);
            transition: var(--transition);
            font-size: 1.1rem;
            position: relative;
            overflow: hidden;
            text-decoration: none;
        }

        .social-link::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, var(--primary), var(--primary-dark));
            opacity: 0;
            transition: var(--transition);
        }

        .social-link:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }

        .social-link:hover::after {
            opacity: 1;
        }

        .social-link i {
            position: relative;
            z-index: 1;
            font-size: 14px;
            color: #fff;
        }
        .social-link:hover i {
            color: var(--primary-color);
        }


        /* Newsletter */
        .newsletter {
            margin-top: 1.5rem;
        }

        .newsletter p {
            margin-bottom: 1rem;
        }

        .newsletter-form {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
        }

        .newsletter-input {
            flex: 1;
            min-width: 200px;
            padding: 0.85rem 1.25rem;
            border-radius: 50px;
            border: none;
            background: rgba(255, 255, 255, 0.1);
            color: var(--lighter);
            font-size: 14px;
            transition: var(--transition);
        }

        .newsletter-input::placeholder {
            color: var(--gray);
        }

        .newsletter-input:focus {
            outline: none;
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 0 0 2px var(--primary-light);
        }

        .newsletter-btn {
            padding: 0.85rem 1.75rem;
            border-radius: 50px;
            border: none;
            background: var(--primary);
            color: var(--dark);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            font-size: 14px;
            flex-shrink: 0;
        }

        .newsletter-btn:hover {
            background: var(--primary);
            transform: translateY(-2px);
            box-shadow: var(--shadow-sm);
        }

        /* Copyright */
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 3rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--gray);
            font-size: 0.85rem;
        }

        .copyright a {
            color: var(--primary-light);
            text-decoration: none;
            transition: var(--transition);
        }

        .copyright a:hover {
            color: var(--primary);
            text-decoration: underline;
        }




        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .footer-column {
            animation: fadeIn 0.6s ease forwards;
        }

        .footer-column:nth-child(1) {
            animation-delay: 0.1s;
        }

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

        .footer-column:nth-child(3) {
            animation-delay: 0.3s;
        }

        .footer-column:nth-child(4) {
            animation-delay: 0.4s;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .container {
                padding: 0 1.5rem;
            }

            .footer-grid {
                gap: 2rem;
            }
        }

        @media (max-width: 768px) {
            footer {
                padding: 3rem 0 2rem;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .newsletter-input,
            .newsletter-btn {
                width: 100%;
            }
        }

        @media (max-width: 576px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }

            .footer-column h3::after {
                width: 40px;
            }
        }


/* chnages   */
/* Section Background */
.best-selling-section {
  background-color: #ffe6ae; /* Solid white background */
  padding: 60px 0;
}

/* Layout Layout & Spacing */
.main-title {
  margin-bottom: 40px;
  font-weight: bold;
}

.trending-grid {
  margin-bottom: 50px;
}

.trending-col {
  margin-bottom: 25px;
}

.section-divider {
  border-top: 1px solid #eeeeee; /* Lighter divider for clean look */
  margin-bottom: 40px;
}

.secondary-title {
  margin-bottom: 30px;
}

.product-list-grid {
  list-style: none;
  padding: 0;
}

.product-item {
  margin-bottom: 30px;
}

/* Premium Heading Animation */
.animated-heading {
  overflow: hidden;
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
}

.animated-heading .heading-text {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
  animation: revealText 0.8s cubic-bezier(0.15, 0.85, 0.3, 1) forwards;
}

/* Accent line under the heading */
.animated-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  /* background: linear-gradient(90deg, transparent, #500e14, transparent); */
  transform: translateX(-50%);
  animation: expandLine 1s cubic-bezier(0.15, 0.85, 0.3, 1) 0.4s forwards;
}

/* Card Styling & Entry Animations */
.trending-card {
  background: #ffffff; /* Matches the white page theme */
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #f0f0f0; /* Subtle border to contrast against the white bg */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03); /* Soft shadow */
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  animation: fadeInUp 0.6s ease-out both;
}

/* Staggered entry animation delay for cards */
.trending-col:nth-child(1) .trending-card { animation-delay: 0.4s; }
.trending-col:nth-child(2) .trending-card { animation-delay: 0.5s; }
.trending-col:nth-child(3) .trending-card { animation-delay: 0.6s; }
.trending-col:nth-child(4) .trending-card { animation-delay: 0.7s; }

/* Image Hover Zoom Effects */
.img-container {
  overflow: hidden;
  border-radius: 12px;
  margin: 0 auto 15px;
  max-width: 240px;
  width: 100%;
  background-color: #f9f9f9; /* Soft background block for fallback */
}

.trending-img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.trending-name {
  font-size: 18px;
  color: #500e14;
  margin-bottom: 12px;
  font-weight: 600;
}

/* Buttons and Interactivity */
.btn-shop-now {
  background-color: #500e14;
  color: #fff;
  padding: 8px 24px;
  border-radius: 4px;
  display: inline-block;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Hover States */
.trending-card:hover {
  transform: translateY(-8px);
  border-color: #e2d1d2; /* Changes to a light tone of your deep red brand color */
  box-shadow: 0 15px 30px rgba(80, 14, 20, 0.08); /* Warm, luxury shadow on hover */
}

.trending-card:hover .trending-img {
  transform: scale(1.06);
}

.btn-shop-now:hover {
  background-color: #701920;
  color: #fff;
  text-decoration: none;
}

.btn-shop-now:active {
  transform: scale(0.95);
}

/* Keyframe Animations */
@keyframes revealText {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes expandLine {
  from {
    width: 0;
  }
  to {
    width: 80px;
  }
}

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

/* Section Background */
.our-brands-section {
  background-color: #fcf4ec; 
  background-image: radial-gradient(circle at 50% 50%, rgba(244, 218, 191, 0.4) 0%, transparent 80%);
  padding: 75px 0;
  font-family: 'Playfair Display', 'Georgia', serif;
}

/* Header Spacing */
.brands-header-row {
  margin-bottom: 50px;
}
.brands-main-title {
  color: #4A1525; 
  font-size: 38px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.brands-subtitle {
  color: #5A534E;
  font-family: sans-serif;
  font-size: 15px;
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.7;
}

/* The Big White Box behind the cards */
.brands-grid-row {
  background-color: #ffffff;
  padding: 50px 30px;
  border-radius: 4px;
  box-shadow: 0 4px 25px rgba(74, 21, 37, 0.03);
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.brand-grid-col {
  display: flex;
  flex-direction: column;
  padding-left: 15px;
  padding-right: 15px;
}

/* ATTRACTIVE ANIMATION: Hover Lift Cards base settings */
.brand-premium-card {
  background: #ffffff;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
}

/* Trigger state for card lift */
.brand-premium-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(74, 21, 37, 0.12);
}

/* HEIGHT PLACEMENT LOGIC */

/* Columns 1 & 3: Image takes the whole height */
.card-full-img .brand-img-wrapper {
  height: 480px; 
}

/* Columns 2 & 4: Shorter image container to make room for text underneath */
.card-with-title .brand-img-wrapper {
  height: 390px; 
}

.brand-img-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Base Image Smooth Zoom Setting */
.brand-display-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.brand-premium-card:hover .brand-display-img {
  transform: scale(1.04);
}

/* ATTRACTIVE ANIMATION: Premium Gold Shine Effect Element */
.brand-img-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right, 
    rgba(255, 255, 255, 0) 0%, 
    rgba(212, 175, 55, 0.3) 50%, 
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  pointer-events: none;
  z-index: 2;
}

/* Triggers the gold shine sweep on hover */
.brand-premium-card:hover .brand-img-wrapper::after {
  left: 250%;
  transition: left 0.8s ease-in-out;
}

/* Title Box for Columns 2 & 4 */
.brand-title-box {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  transition: background-color 0.3s ease;
}

.brand-premium-card:hover .brand-title-box {
  background-color: #fdfbf9; /* Subtle warm tint on active text box */
}


.brand-card-name {
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  color: #111111;
  letter-spacing: 0.2px;
  text-align: center;
  transition: color 0.3s ease;
}

.brand-premium-card:hover .brand-card-name {
  color: #4A1525; /* Text changes to brand primary color on hover */
}

/* Mobile Compatibility */
@media (max-width: 991px) {
  .brands-grid-row { display: block; padding: 20px 15px; }
  .brand-grid-col { margin-bottom: 30px; }
  .card-full-img .brand-img-wrapper,
  .card-with-title .brand-img-wrapper { height: 360px; }
}

  /* Curated Collections Section Root Wrapper */
.curated-collections-section {
  background-color: #ffffff;
  padding: 60px 0;
  font-family: sans-serif;
}

.brand-header-wrapper {
  margin-bottom: 45px;
}

.curated-collections-section .section-title {
  color: #4A1525;
  font-size: 34px;
  font-weight: 700;
  font-family: 'Playfair Display', 'Georgia', serif;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

/* Master Grid Alignment Flexbox Layout */
.curated-grid-container {
  display: flex;
  flex-wrap: wrap;
}

.curated-col {
  display: flex;
  flex-direction: column;
  padding-left: 10px;
  padding-right: 10px;
}

/* Absolute Container Controls */
.curated-box {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  background-color: #f7f7f7;
}

.spacing-bottom {
  margin-bottom: 20px;
}

/* Forces the link overlay wrapper to stretch completely */
.curated-link-wrapper {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  position: relative;
}

/* Mathematical Grid Sizing Alignment Rules */
.element-small-box {
  height: 250px !important;
}

.element-tall-box {
  height: 520px !important;
}

/* Forces image assets to stretch to limits without warping */
.curated-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important; 
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Subtle image scale down on hover to balance shine */
.curated-box:hover .curated-img {
  transform: scale(1.03);
}

/* PREMIUM GOLD SHINE EFFECT */
.luxury-gold-shimmer {
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right, 
    rgba(255, 255, 255, 0) 0%, 
    rgba(212, 175, 55, 0.4) 50%, 
    rgba(255, 255, 255, 0) 100__
  );
  transform: skewX(-25deg);
  z-index: 2;
  pointer-events: none;
}

/* Triggers swift gold metallic shine light ray on hover */
.curated-box:hover .luxury-gold-shimmer {
  left: 250%;
  transition: left 0.8s ease-in-out;
}

/* Translucent Gray Name Banner Overlay strip */
.curated-bottom-banner {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.65) !important;
  color: #ffffff !important;
  text-align: center;
  padding: 16px 10px;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.5px;
  font-family: 'Playfair Display', serif;
  z-index: 3;
}

/* Tablet & Mobile Fallback Breakpoints */
@media (max-width: 991px) {
  .curated-grid-container {
    display: block;
  }
  .curated-col {
    width: 100% !important;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .curated-box {
    margin-bottom: 20px !important;
    height: 320px !important;
  }
  .tablet-spacing {
    margin-bottom: 0px;
  }
}

/* =========================================================
   CURATED CLASSICS SECTION
========================================================= */

.curated-classics-section{
    background:#fffbf7;
    padding:70px 0;
    overflow:hidden;
}

/* =========================================================
   HEADER
========================================================= */

.curated-classics-section h2.section-title{
    font-family:'Playfair Display', serif;
    color:#500e14;
    font-size:38px;
    font-weight:700;
    margin-bottom:15px;
    text-align:center;
}

.curated-classics-section h3.section-subtitle{
    font-family:'Playfair Display', serif;
    color:#7a3d32;
    font-size:22px;
    font-weight:600;
    margin-bottom:18px;
    text-align:center;
}

.curated-classics-section p.section-content{
    color:#613d2d;
    font-size:14px;
    max-width:700px;
    margin:0 auto 30px;
    text-align:center;
    line-height:1.8;
}

/* =========================================================
   AMIGOWAYS BUTTON
========================================================= */

.curated-classics-section .amigoways-btn{
    background:#4A1525;
    color:#ffffff !important;
    padding:12px 34px;
    border-radius:6px;
    text-decoration:none !important;
    display:inline-block;
    font-size:14px;
    font-weight:600;
    transition:.4s ease;
}

.curated-classics-section .amigoways-btn:hover{
    background:#6a2338;
    transform:translateY(-3px);
}

/* =========================================================
   FILTER BUTTONS
========================================================= */

.filter-buttons-row{
    margin-bottom:45px;
}

.filter-container{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.filter-btn{
    font-family:'Playfair Display', serif;
    display:inline-block;
    font-size:16px;
    color:#500e14;
    background:transparent;
    padding:8px 24px;
    border:1px solid #500e14;
    border-radius:4px;
    text-decoration:none;
    transition:.3s ease;
}

.filter-btn:hover{
    background:rgba(80,14,20,.05);
    text-decoration:none;
}

.filter-btn.active{
    background:#4A1525;
    color:#ffffff;
    border-color:#4A1525;
}

/* =========================================================
   GRID
========================================================= */

.column-item{
    margin-bottom:30px;
}

/* =========================================================
   CARD
========================================================= */

.classic-card-wrapper{
    transition:.4s ease;
}

.classic-card-wrapper:hover{
    transform:translateY(-6px);
}

.card-anchor{
    display:block;
    text-decoration:none;
}

/* =========================================================
   IMAGE
========================================================= */

.card-img-box{
    position:relative;
    width:100%;
    padding-top:100%;
    overflow:hidden;
    border-radius:10px;
    box-shadow:0 4px 15px rgba(0,0,0,.06);
}

.card-img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .7s ease;
}

.classic-card-wrapper:hover .card-img{
    transform:scale(1.06);
}

/* =========================================================
   TITLE
========================================================= */

.card-title-box{
    padding:18px 0 5px;
    text-align:center;
}

.card-item-title{
    font-family:'Playfair Display', serif;
    font-size:18px;
    font-weight:700;
    color:#4A1525;
    margin:0;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:767px){

    .curated-classics-section{
        padding:55px 0;
    }

    .curated-classics-section h2.section-title{
        font-size:28px;
    }

    .curated-classics-section h3.section-subtitle{
        font-size:18px;
    }

    .curated-classics-section p.section-content{
        font-size:14px;
        padding:0 10px;
    }

    .filter-container{
        gap:8px;
    }

    .filter-btn{
        font-size:14px;
        padding:6px 16px;
    }

    .card-item-title{
        font-size:16px;
    }

    .curated-classics-section .amigoways-btn{
        font-size:13px;
        padding:10px 24px;
    }
}
/* Base Section Architecture */
/* =========================================================
   LUXURY GIFTING SECTION
========================================================= */

.luxury-gifting-section{
    background-color:#ffffff;
    padding:65px 0;
    position:relative;
    overflow:hidden;
}

/* Background Effect */

.luxury-gifting-section::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:
    radial-gradient(ellipse at top right, rgba(80,14,20,0.03) 0%, transparent 75%),
    radial-gradient(ellipse at bottom left, rgba(80,14,20,0.02) 0%, transparent 60%);
    pointer-events:none;
}

/* =========================================================
   HEADER
========================================================= */

.gating-header-wrap{
    margin-bottom:45px;
    text-align:center;
}

.luxury-gifting-section h2.section-title{
    color:#500e14 !important;
    font-size:36px;
    font-weight:700;
    margin-bottom:12px;
    line-height:1.3;
    font-family:'Playfair Display', serif;
    text-align:center;
}

.luxury-gifting-section h3.gifting-sub-title{
    color:#500e14;
    font-size:22px;
    font-weight:600;
    margin-top:0;
    margin-bottom:18px;
    line-height:1.4;
    text-align:center;
    font-family:'Playfair Display', serif;
}

.luxury-gifting-section p.gifting-description{
    color:#111111;
    font-size:15px;
    max-width:900px;
    margin:0 auto;
    line-height:1.8;
    font-weight:400;
    text-align:center;
}

/* =========================================================
   GRID
========================================================= */

.display-flex-grid{
    display:flex;
    flex-wrap:wrap;
}

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

.vouchers-grid{
    margin-left:-15px;
    margin-right:-15px;
}

.voucher-item-col{
    margin-bottom:30px;
    padding-left:15px;
    padding-right:15px;
}

/* =========================================================
   CARD
========================================================= */

.voucher-box-panel{
    background-color:#ffdeb4;
    border-radius:14px;
    padding:24px;
    height:100%;
    box-shadow:0 4px 15px rgba(0,0,0,0.03);
    transition:all .4s cubic-bezier(0.165,0.84,0.44,1);
}

.voucher-box-panel:hover{
    transform:translateY(-5px);
    box-shadow:0 12px 24px rgba(80,14,20,0.1);
}

/* =========================================================
   IMAGE
========================================================= */

.image-side-panel{
    padding-right:10px;
}

.content-side-panel{
    padding-left:15px;
}

.voucher-img-container{
    overflow:hidden;
    border-radius:10px;
    width:100%;
}

.voucher-img{
    width:100%;
    height:auto;
    object-fit:cover;
    display:block;
    transition:transform .5s ease;
}

.voucher-box-panel:hover .voucher-img{
    transform:scale(1.05);
}

/* =========================================================
   CONTENT
========================================================= */

.voucher-meta-info{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.voucher-meta-info h2{
    font-size:20px;
    color:#500e14;
    font-weight:700;
    margin-top:0;
    margin-bottom:12px;
    line-height:1.4;
}

.voucher-meta-info h3{
    font-size:16px;
    color:#111111;
    font-weight:600;
    margin-top:0;
    margin-bottom:10px;
    line-height:1.5;
}

.voucher-meta-info p{
    font-size:14px;
    color:#333333;
    line-height:1.7;
    margin-bottom:18px;
}

/* =========================================================
   BUTTON
========================================================= */

a.amigoways-btn,
.btn-voucher-shop{
    display:inline-block;
    background:#500e14;
    color:#ffffff !important;
    font-size:14px;
    font-weight:600;
    text-align:center;
    padding:12px 34px;
    border-radius:6px;
    text-decoration:none !important;
    transition:all .3s ease;
    white-space:nowrap;
}

a.amigoways-btn:hover,
.btn-voucher-shop:hover{
    background:#721820;
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(80,14,20,0.18);
}

a.amigoways-btn:active,
.btn-voucher-shop:active{
    transform:scale(.97);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:991px){

    .display-flex-grid{
        display:block;
    }

    .luxury-gifting-section h2.section-title{
        font-size:30px;
    }

}

@media(max-width:767px){

    .luxury-gifting-section h2.section-title{
        font-size:26px;
    }

    .luxury-gifting-section h3.gifting-sub-title{
        font-size:18px;
    }

    .luxury-gifting-section p.gifting-description{
        font-size:14px;
    }

    .voucher-box-panel{
        padding:16px;
    }

    .voucher-meta-info h2{
        font-size:18px;
    }

    .voucher-meta-info h3{
        font-size:15px;
    }

    .voucher-meta-info p{
        font-size:13px;
    }

    a.amigoways-btn,
    .btn-voucher-shop{
        font-size:14px;
        padding:10px 24px;
    }

}

@media(max-width:480px){

    .flex-align-items{
        display:block;
    }

    .image-side-panel{
        width:100%;
        padding-right:0;
        margin-bottom:15px;
    }

    .content-side-panel{
        width:100%;
        padding-left:0;
    }

    a.amigoways-btn,
    .btn-voucher-shop{
        width:100%;
    }

}

/* ==========================================================================
   1. WHAT WE OFFER SECTION
   ========================================================================== */
.what-we-offer-section {
  position: relative;
  background-color: #ffffff;
  background-image: 
    radial-gradient(circle at 100% 150%, transparent 24%, #fcf9f5 24%, #fcf9f5 28%, transparent 28%, transparent),
    radial-gradient(circle at 0% 150%, transparent 24%, #fbf6ef 24%, #fbf6ef 28%, transparent 28%, transparent),
    linear-gradient(to bottom, #ffffff 0%, #fcf9f4 100%);
  background-size: 100% 100%, 100% 100%, 100% 100%;
  padding: 40px 0; /* Drastically reduced from 85px to optimize vertical space */
  overflow: hidden;
}

/* Centralized Header Typography Layout */
.offer-header-wrap {
  margin-bottom: 25px; /* Shaved down from 55px */
}

.offer-sub-title {
  font-family: inherit;
  color: #777777;
  font-size: 12px; /* Compressed font sizing */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0;
  margin-bottom: 4px; /* Reduced from 12px */
  text-align: center !important;
}

.offer-main-title {
  font-family: 'Playfair Display', serif;
  color: #500e14;
  font-size: 26px; /* Scaled down from 36px */
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 10px; /* Reduced from 24px */
  line-height: 1.25;
  text-align: center !important;
}

/* Explicitly Centered Description Paragraph Layout */
.offer-description {
  color: #444444;
  font-size: 13.5px; /* Scaled down from 14.5px */
  max-width: 720px;
  margin: 0 auto !important;
  line-height: 1.5;
  text-align: center !important;
}

/* Equal Heights Flex Matrix Configurations */
.display-flex-grid {
  display: flex;
  flex-wrap: wrap;
}

.offer-cards-grid {
  margin-left: -8px; /* Tightened grid tracking layout */
  margin-right: -8px;
}

.offer-item-col {
  padding-left: 8px; /* Compressed card spacing gutters */
  padding-right: 8px;
  margin-bottom: 16px; /* Cut from 24px */
}

/* Premium Card Structural Presentation Box */
.offer-luxury-card {
  background: #ffffff;
  border-radius: 6px; /* Sleeker, tighter modern borders */
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 3px 12px rgba(80, 14, 20, 0.02);
  border: 1px solid #f2ede4;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.offer-img-box {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding-top: 55%; /* Flattens viewport heights down from 75% to drop vertical spaces */
  background-color: #faf8f5;
}

.offer-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Typography Inside Structural Panels */
.offer-meta-box {
  padding: 14px 12px 10px 12px; /* Compressed text block canvas padding margins */
  text-align: center !important;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.offer-card-title {
  font-family: 'Playfair Display', serif;
  color: #500e14;
  font-size: 15px; /* Downsized from 18px */
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 6px; /* Cut from 14px */
  line-height: 1.3;
  min-height: auto !important; /* Fixed Bug: Stripped heights that caused blank space gaps */
  display: block;
  text-align: center !important;
}

.offer-card-desc {
  color: #555555;
  font-size: 12px; /* Downsized from 13.5px */
  line-height: 1.4;
  margin: 0 !important; /* Fixed Bug: Forces browser paragraph overrides to zero margins */
  padding: 0 !important;
  text-align: center !important;
}

/* Master Micro-Interactivity Framework Actions */
.offer-luxury-card:hover {
  transform: translateY(-4px);
  border-color: #dcd0bc;
  box-shadow: 0 10px 22px rgba(80, 14, 20, 0.05);
}

.offer-luxury-card:hover .offer-img {
  transform: scale(1.03);
}

/* ==========================================================================
   2. TRENDING PRODUCTS SECTION
   ========================================================================== */
.trending-products {
    background-color: #FAF6F0;
    padding: 15px 0 40px 0; /* Cut top padding to 15px to instantly drop the empty space above heading */
    font-family: 'Playfair Display', 'Georgia', serif;
}

/* HEADER */
.trending-products .section-title {
    color: #4A1525;
    font-size: 26px; 
    font-weight: 700;
    margin-top: 0; /* Ensures no hidden margins push the heading down */
    margin-bottom: 8px; /* Slightly tightened space beneath title */
    letter-spacing: 0.5px;
    text-align: center;
}

.trending-products .section-content {
    color: #5A534E;
    font-size: 13.5px; 
    max-width: 720px;
    margin: 0 auto 20px auto; /* Reduced to bring items up */
    line-height: 1.5;
    font-family: sans-serif;
    text-align: center;
}

/* PRODUCT BOXES */
.trending-featured-box,
.trending-small-box {
    border: 1px solid rgba(74, 21, 37, 0.1);
    border-radius: 6px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.02);
    position: relative;
    transition: 0.3s ease;
    margin-bottom: 16px; 
}

/* IMAGE */
.trend-pro-img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}

/* HOVER */
.trending-featured-box:hover .trend-pro-img,
.trending-small-box:hover .trend-pro-img {
    transform: scale(1.04);
}

/* OVERLAY */
.trending-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.4) 60%,
        rgba(0, 0, 0, 0.1) 100% 
    );
    display: flex;
    align-items: flex-end;
    padding: 15px; 
    opacity: 1;
    transition: 0.3s ease;
}

/* TEXT */
.trending-text {
    color: #fff;
    font-size: 12.5px; 
    line-height: 1.4;
    transform: translateY(0);
    transition: 0.3s ease;
    width: 100%;
    text-align: center;
}

.trending-text strong {
    display: block;
    font-size: 14.5px; 
    margin-bottom: 4px; 
    letter-spacing: 0.3px;
}

/* Subtle uplift effect on hover */
.trending-featured-box:hover .trending-text,
.trending-small-box:hover .trending-text {
    transform: translateY(-2px);
}

/* ==========================================================================
   3. UNIVERSAL RESPONSIVE BREAKDOWNS ENGINE
   ========================================================================== */

/* LAPTOPS & SMALL DESKTOPS */
@media (max-width: 1199px) {
  .offer-card-title {
    font-size: 14px;
  }
}

/* TABLET VIEWPORTS (IPADS / PORTRAIT DRAWS) */
@media (max-width: 991px) {
  .what-we-offer-section {
    padding: 30px 0;
  }

  .trending-products {
    padding: 10px 0 30px 0; /* Extremely tight top space on tablet layout profiles */
  }

  .save-gold-section {
    padding: 15px 0 40px 0; /* Tightened tablet top spaces for Save Gold */
  }

  .display-flex-grid {
    display: flex;
    flex-wrap: wrap;
  }

  .offer-item-col {
    margin-bottom: 14px;
  }

  .offer-main-title,
  .trending-products .section-title {
    font-size: 22px;
  }
  
  .offer-description,
  .trending-products .section-content {
    font-size: 13px;
  }
}

/* MOBILE LANDSCAPE & PORTRAIT VIEWPORTS (PHONES) */
@media (max-width: 767px) {
  .what-we-offer-section {
    padding: 25px 0;
  }

  .trending-products {
    padding: 8px 0 25px 0; /* Shaved down top space to maximum density for small viewports */
  }

  .save-gold-section {
    padding: 10px 0 30px 0; /* Micro spacing above Save Gold heading on mobile phone viewports */
  }

  .offer-header-wrap {
    margin-bottom: 15px;
  }

  .offer-main-title,
  .trending-products .section-title {
    font-size: 20px;
    margin-bottom: 6px;
  }

  .offer-sub-title {
    font-size: 11px;
    margin-bottom: 2px;
  }

  .offer-description,
  .trending-products .section-content {
    font-size: 12px;
    line-height: 1.4;
  }

  .offer-luxury-card {
    border-radius: 5px;
  }

  .offer-meta-box {
    padding: 10px 8px; 
  }

  .offer-card-title {
    font-size: 13.5px;
    margin-bottom: 4px;
  }

  .trending-overlay {
    padding: 10px; 
  }

  .trending-text strong {
    font-size: 13px;
  }
}

/* ULTRA ACCESSIBILITY FLUID COMPRESSION ON TINY SCREENS */
@media (max-width: 480px) {
  .display-flex-grid {
    display: flex; 
  }
  
  .offer-item-col {
    margin-bottom: 12px;
  }
}

/* =========================================================
   SAVE GOLD SECTION
========================================================= */
.save-gold-section {
    background-color: #ffffff;
    padding: 15px 0 60px 0; /* Dropped top padding from 60px down to 15px to strip top white space */
}

/* Heading protection fix for Save Gold section */
.save-gold-section h1,
.save-gold-section h2,
.save-gold-section .section-title {
    margin-top: 0; /* Counteracts any browser agent default heading margins */
}

/* =========================================================
   OUR BRANDS SECTION
========================================================= */

.our-brands-section{
    padding:80px 0;
    background:#faf6f0;
    overflow:hidden;
}

/* =========================================================
   HEADER
========================================================= */

.our-brands-section h2.section-title{
    font-size:40px;
    font-weight:700;
    color:#4A1525;
    margin-bottom:15px;
    text-align:center;
    letter-spacing:1px;
}

.our-brands-section h3.section-subtitle{
    font-size:22px;
    font-weight:600;
    color:#6d3145;
    margin-bottom:18px;
    text-align:center;
}

.our-brands-section p.section-content{
    max-width:760px;
    margin:0 auto 30px;
    color:#5a534e;
    font-size:14px;
    line-height:1.8;
    text-align:center;
    font-family:sans-serif;
}

/* =========================================================
   AMIGOWAYS BUTTON
========================================================= */

.our-brands-section .amigoways-btn{
    background:#4A1525;
    color:#ffffff !important;
    padding:12px 34px;
    border-radius:6px;
    text-decoration:none !important;
    display:inline-block;
    font-size:14px;
    font-weight:600;
    transition:.4s ease;
}

.our-brands-section .amigoways-btn:hover{
    background:#6d3145;
    transform:translateY(-3px);
}

/* =========================================================
   GRID
========================================================= */

.brand-grid-col{
    margin-bottom:30px;
}

/* =========================================================
   CARD
========================================================= */

.brand-premium-card{
    background:#ffffff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 8px 30px rgba(0,0,0,0.06);
    transition:.4s ease;
    height:100%;
}

.brand-premium-card:hover{
    transform:translateY(-8px);
}

/* =========================================================
   LINK
========================================================= */

.brand-link-wrap{
    text-decoration:none;
    display:block;
}

/* =========================================================
   IMAGE
========================================================= */

.brand-img-wrapper{
    overflow:hidden;
    position:relative;
}

.brand-display-img{
    width:100%;
    display:block;
    transition:transform .6s ease;
}

.brand-premium-card:hover .brand-display-img{
    transform:scale(1.08);
}

/* =========================================================
   TITLE BOX
========================================================= */

.brand-title-box{
    padding:22px;
    text-align:center;
    background:#ffffff;
}

.brand-card-name{
    margin:0;
    font-size:20px;
    font-weight:700;
    color:#4A1525;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:991px){

    .our-brands-section{
        padding:60px 0;
    }

    .our-brands-section h2.section-title{
        font-size:34px;
    }
}

@media(max-width:767px){

    .our-brands-section h2.section-title{
        font-size:28px;
    }

    .our-brands-section h3.section-subtitle{
        font-size:18px;
    }

    .our-brands-section p.section-content{
        font-size:14px;
        padding:0 10px;
    }

    .brand-card-name{
        font-size:18px;
    }

    .our-brands-section .amigoways-btn{
        font-size:13px;
        padding:10px 26px;
    }
}


/* Google Fonts Import link rule for Nunito Sans */
@import url('https://googleapis.com');

/* =========================================================
   CORE COMPONENT ARCHITECTURE & VARIABLE MAPS
========================================================= */
.our-brands-section {
    background-color: #ffffff;
    padding: 5rem 1.5rem;
    width: 100%;
    box-sizing: border-box;
    font-family: 'Nunito Sans', sans-serif !important;
}

.our-brands-section .brands-section-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* =========================================================
   YOUR PROVIDED PREMIUM TYPOGRAPHY SPECIFICATIONS
========================================================= */
.our-brands-section h2.section-title {
    font-size: 25px;
    font-weight: 700;
    color: #4A1525;
    margin-bottom: 15px;
    text-align: center;
    letter-spacing: 1px;
    font-family: 'Nunito Sans', sans-serif;
}

.our-brands-section h3.section-subtitle {
    font-size: 22px;
    font-weight: 600;
    color: #6d3145;
    margin-bottom: 18px;
    text-align: center;
    font-family: 'Nunito Sans', sans-serif;
}

.our-brands-section p.section-content {
    max-width: 760px;
    margin: 0 auto 30px;
    color: #5a534e;
    font-size: 14px;
    line-height: 1.8;
    text-align: center;
    font-family: 'Nunito Sans', sans-serif;
}

.our-brands-section .step-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: #4A1525;
    line-height: 1.4;
    margin-bottom: 0.6rem;
    font-family: 'Nunito Sans', sans-serif;
}

/* =========================================================
   YOUR PROVIDED AMIGOWAYS BUTTON PARAMETERS
========================================================= */
.our-brands-section .amigoways-btn {
    background: #4A1525;
    color: #ffffff !important;
    padding: 12px 34px;
    border-radius: 6px;
    text-decoration: none !important;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    transition: .4s ease;
    font-family: 'Nunito Sans', sans-serif;
}

.our-brands-section .amigoways-btn:hover {
    background: #6d3145;
    transform: translateY(-3px);
}

/* =========================================================
   MODIFIER MODULES (LAYOUT SPECIFIC RULES)
========================================================= */

/* 1. Values Module Layout Rules with Image Icons */
.values-modifier {
    background-color: #fcf9f5;
    border-bottom: 1px solid #f0e3d5;
    padding: 3.5rem 1.5rem;
}

.values-modifier .features-grid-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.values-modifier .feature-value-card {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.values-modifier .feature-value-card:not(:last-child) {
    border-right: 1px solid #ebd8c8;
}

.values-modifier .feature-icon-box {
    width: 50px;
    height: 50px;
    margin: 0 auto 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.values-modifier .value-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    user-select: none;
}

.values-modifier h3.section-subtitle {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: #4A1525;
}

.values-modifier p.section-content {
    font-size: 0.88rem;
    line-height: 1.5;
    max-width: 240px;
    margin: 0 auto;
}

/* 2. Showroom Gallery Grid Layout Rules */
.showroom-modifier .brands-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
    margin-bottom: 2.5rem;
}

.showroom-modifier .brands-image-card {
    width: 100%;
    aspect-ratio: 1.25;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.04);
}

.showroom-modifier .brands-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.showroom-modifier .brands-image-card:hover img {
    transform: scale(1.03);
}

.showroom-modifier .brands-action-holder {
    text-align: center;
}


/* =========================================================
   TRUE RESPONSIVE MEDIA BREAKPOINTS MATRIX
========================================================= */
@media (max-width: 992px) {
    .our-brands-section h2.section-title { font-size: 32px; }
    .our-brands-section h3.section-subtitle { font-size: 20px; }
    .values-modifier .feature-value-card { min-width: 45%; margin-bottom: 1.5rem; }
    .values-modifier .feature-value-card:not(:last-child) { border-right: none; }
    .blog-modifier .blog-grid-wrapper { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
    .our-brands-section { padding: 3.5rem 1rem; }
    .our-brands-section h2.section-title { font-size: 26px; line-height: 1.3; }
    .our-brands-section h3.section-subtitle { font-size: 18px; margin-bottom: 12px; }
    .our-brands-section p.section-content { font-size: 13px; line-height: 1.6; }
    .showroom-modifier .brands-gallery-grid { grid-template-columns: 1fr; gap: 1.2rem; }
    .blog-modifier .blog-post-card { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .blog-modifier .blog-thumbnail-holder { width: 100%; aspect-ratio: 1.6; }
    .our-brands-section .amigoways-btn { width: 100%; text-align: center; max-width: 300px; }
}
/* Google Fonts Import link rule for Nunito Sans */
@import url('https://googleapis.com');

/* =========================================================
   FAQ COMPONENT CORE ARCHITECTURE STYLING
========================================================= */
.faq-modifier {
    background-color: #ffffff;
    padding: 1.5rem 1.5rem 5rem 1.5rem; /* REMOVED TOP SPACE HERE */
    width: 100%;
    box-sizing: border-box;
    font-family: 'Nunito Sans', sans-serif !important;
}

.faq-modifier .brands-section-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.faq-modifier h2.section-title {
    font-size: 40px;
    font-weight: 700;
    color: #4A1525;
    margin-top: 0; /* REMOVED DEFAULT HEADING TOP SPACE HERE */
    margin-bottom: 3.5rem;
    text-align: center;
    letter-spacing: 1px;
}

.faq-modifier .faq-layout-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: start;
    width: 100%;
}

.faq-modifier .faq-accordion-track {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.faq-modifier .faq-item-card {
    background-color: #fdf3ee; 
    border-radius: 12px;
    border: 1px solid #f3e2d7;
    overflow: hidden;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-modifier .faq-header-trigger {
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    gap: 1rem;
}

.faq-modifier .faq-question-text {
    font-size: 14px;
    font-weight: 700;
    color: #1c1c1e;
    line-height: 1.4;
}

.faq-modifier .faq-chevron-circle {
    width: 32px;
    height: 32px;
    background-color: #4A1525;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-modifier .chevron-arrow {
    width: 8px;
    height: 8px;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: translateY(-2px) rotate(45deg);
    display: block;
}

/* Base structural parameters mapping rules for hidden state text content clips */
.faq-modifier .faq-content-body {
    max-height: 0px; /* Overwritten dynamically inside local inline scripts */
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-modifier p.section-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: #4a4542;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: left;
    margin: 0;
}

/* =========================================================
   🔥 ACTIVE STATE LAYOUT RULES
========================================================= */
.faq-modifier .faq-item-card.active {
    background-color: #fbeee6;
    box-shadow: 0 10px 25px rgba(74, 21, 37, 0.04);
}

.faq-modifier .faq-item-card.active .faq-chevron-circle {
    transform: rotate(180deg);
}

/* =========================================================
   RIGHT SIDE GRAPHIC DISPLAY LAYOUT (ALTERED FOR THIS IMAGE)
========================================================= */
.faq-modifier .faq-graphic-column {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-modifier .faq-image-wrapper {
    width: 100%;
    max-width: 540px;      /* Enhanced size bound to balance the typography row height */
    height: auto;          /* Removed strict aspect-ratio block to prevent letter box clipping */
    overflow: visible;     /* Allows floating illustration lines to breathe naturally */
}

.faq-modifier .faq-image-wrapper img {
    width: 100%;
    height: auto;          /* Preserves exact structural dimensions of the SVG vector */
    object-fit: contain;   /* Enforces full graphic safety with no clipped edges */
    display: block;
}

/* =========================================================
   📱 TRUE RESPONSIVE BREAKPOINT MATRIX
========================================================= */
@media (max-width: 992px) {
    .faq-modifier h2.section-title { font-size: 32px; margin-bottom: 2.5rem; }
    .faq-modifier .faq-layout-grid { grid-template-columns: 1fr; gap: 3.5rem; }
    .faq-modifier .faq-image-wrapper { max-width: 100%; }
}

@media (max-width: 768px) {
    .faq-modifier { padding: 1rem 1rem 3.5rem 1rem; } /* REMOVED MOBILE TOP SPACE HERE */
    .faq-modifier h2.section-title { font-size: 26px; line-height: 1.3; }
    .faq-modifier .faq-question-text { font-size: 0.98rem; }
    .faq-modifier p.section-content { font-size: 0.88rem; line-height: 1.5; }
}


/* nithyasri chnages */

/* Container Layout */
.process-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: system-ui, -apple-system, sans-serif;
  text-align: center;
}

.main-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #000000;
}

/* 4-Column Grid */
.grid-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Card Styling */
.step-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.step-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1.4 / 1;
  object-fit: cover;
}

.step-content {
  padding: 24px;
}

/* Typography Targets */
.step-content h2 {
  font-size: 18px; /* Set exactly to 18px */
  font-weight: 700;
  color: #b91c1c; /* Crimson / Dark Red color from design */
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.step-content p {
  font-size: 15px; /* Set exactly to 15px */
  color: #4a5568; /* Readable dark grey */
  margin: 0;
  line-height: 1.5;
}

/* Responsive view for mobile screens */
@media (max-width: 1024px) {
  .grid-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .grid-wrapper {
    grid-template-columns: 1fr;
  }
}

/* Container Layout */
.banner-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f7ebd9; /* Soft cream background */
  padding: 60px 8%;
  min-height: 450px;
  overflow: hidden; 
  font-family: system-ui, -apple-system, sans-serif;
}

/* --- Left Side Typography & Animation --- */
.banner-text {
  flex: 1;
  opacity: 0;
  transform: translateX(-80px);
  animation: slideFromLeft 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.brand-title {
  font-size: 60px;
  font-weight: 500;
  color: #000000;
  margin: 0;
  letter-spacing: 1px;
}

.brand-subtitle {
  font-family: 'Great Vibes', 'Brush Script MT', cursive; 
  font-size: 52px;
  color: #000000;
  margin: 15px 0 0 0;
  font-weight: 400;
}

/* --- Right Side Container Animation --- */
.banner-images {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  transform: translateX(80px);
  animation: slideFromRight 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* Wrapper to establish relative positioning for absolute child images */
.image-composition {
  position: relative;
  width: 480px;
  height: 320px;
}

/* Shared properties for both images */
.image-composition img {
  position: absolute;
  border-radius: 8px;
  border: 4px solid #000000; /* Distinct dark border from reference graphic */
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

/* Back Image: Positioned top-left, flat alignment */
.img-back {
  width: 290px;
  height: 195px;
  top: 0;
  left: 30px;
  z-index: 1;
}

/* Front Image: Offset to bottom-right, tilted counter-clockwise (~18 deg) */
.img-front {
  width: 290px;
  height: 195px;
  bottom: 10px;
  right: 0;
  z-index: 2;
  transform: rotate(-18deg); 
  transform-origin: center center;
}

/* --- Keyframe Layouts --- */
@keyframes slideFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-80px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideFromRight {
  0% {
    opacity: 0;
    transform: translateX(80px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Styles for Tablets and Smartphones */
@media (max-width: 991px) {
  .banner-container {
    flex-direction: column;
    text-align: center;
    gap: 60px;
    padding: 50px 20px;
  }
  
  .banner-images {
    justify-content: center;
  }
  
  .brand-title {
    font-size: 48px;
  }
  
  .brand-subtitle {
    font-size: 38px;
  }
}

@media (max-width: 520px) {
  .image-composition {
    width: 320px;
    height: 240px;
  }
  .img-back, .img-front {
    width: 200px;
    height: 135px;
  }
  .img-back {
    left: 15px;
  }
}


/* ==========================================================================
   Why Choose SM Layout Style Configuration Block
   ========================================================================== */

.why-choose-sm {
  padding: 60px 20px;
  background-color: #ffffff; /* Base Context Body Area Background Clear */
  font-family: Arial, sans-serif;
  color: #333333;
}

.why-choose-sm-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 45px;
  align-items: center;
}

/* Structural Components Column Elements */
.why-choose-sm-media {
  flex: 1;
}

.why-choose-sm-hero {
  width: 80%;
  border-radius: 24px;
  object-fit: cover;
  display: block;
}

.why-choose-sm-content {
  flex: 1.3;
}

/* Typography Hierarchy Setup */
.why-choose-sm-content h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #111111;
}

.why-choose-sm-content p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 18px;
  color: #4a4a4a;
}

/* Sub-card Feature Focus Element Box Block */
.why-choose-sm-card {
  background-color: #ffeeda; /* Exact match target tone background palette tint */
  border-radius: 16px;
  padding: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 25px;
}

.why-choose-sm-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why-choose-sm-list h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 5px 0;
  color: #111111;
}

.why-choose-sm-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.why-choose-sm-row p {
  margin: 0;
  font-weight: 600;
  font-size: 15px;
  color: #1a1a1a;
}

/* Inline Dynamic Graphic Asset Target Nodes */
.why-choose-sm-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}

.why-choose-sm-thumb img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* Viewport Device Adaptation System */
@media (max-width: 768px) {
  .why-choose-sm-container {
    flex-direction: column;
    gap: 30px;
  }
  
  .why-choose-sm-card {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
  
  .why-choose-sm-thumb img {
    width: 100%;
    height: 160px;
    margin-bottom: 15px;
  }
}


/* Custom Icon Image Sizing & Rules */
.digigold-benefits-section .benefit-icon-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}
/* Container Scope Definitions */
.digigold-benefits-section {
  padding: 80px 20px;
  background-color: #ffffff;
  font-family: Arial, sans-serif;
  text-align: center;
  overflow: hidden;
}

.digigold-benefits-section .section-title {
  color: #50111d;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 60px;
}

.digigold-benefits-section .benefits-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.digigold-benefits-section .benefits-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* Base Card UI Structure with Reveal & Float Animations */
.digigold-benefits-section .benefit-card {
  width: 320px;
  display: flex;
  flex-direction: column;
  position: relative;
  filter: drop-shadow(0px 10px 15px rgba(0, 0, 0, 0.12));
  opacity: 0;
  transform: translateY(40px);
  animation: benefitsRevealFade 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation-delay: calc(var(--delay) * 0.15s);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), filter 0.4s ease;
}

/* Entry Keyframes */
@keyframes benefitsRevealFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Card Content Blocks */
.digigold-benefits-section .card-body {
  padding: 30px 20px;
  border-radius: 24px 24px 0 0;
  color: #ffffff;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.digigold-benefits-section .benefit-card.inverted .card-body {
  border-radius: 0 0 24px 24px;
}

.digigold-benefits-section .card-body h3 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  margin: 0 0 12px 0;
}

.digigold-benefits-section .card-body p {
  font-size: 12px;
  color: #fff;
  line-height: 1.6;
  margin: 0;
  opacity: 0.9;
}
/* Interaction Hover Effect */
.digigold-benefits-section .benefit-card:hover {
  transform: translateY(-8px) scale(1.02);
  filter: drop-shadow(0px 15px 25px rgba(0, 0, 0, 0.18));
}

/* Geometric Tail Shapes via Clip-path */
.digigold-benefits-section .card-footer-shape {
  height: 100px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Top Row Downward Pointing Triangles */
.digigold-benefits-section .benefit-card:not(.inverted) .card-footer-shape {
  background: currentColor;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  margin-top: -1px;
}

/* Bottom Row Upward Pointing Triangles */
.digigold-benefits-section .benefit-card.inverted .card-footer-shape {
  background: currentColor;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  margin-bottom: -1px;
}

/* Color Palettes */
.digigold-benefits-section .teal-card { color: #17b3c1; }
.digigold-benefits-section .teal-card .card-body { background-color: #17b3c1; }

.digigold-benefits-section .pink-card { color: #e94560; }
.digigold-benefits-section .pink-card .card-body { background-color: #e94560; }

.digigold-benefits-section .yellow-card { color: #ffb830; }
.digigold-benefits-section .yellow-card .card-body { background-color: #ffb830; }

.digigold-benefits-section .orange-card { color: #f2893f; }
.digigold-benefits-section .orange-card .card-body { background-color: #f2893f; }

.digigold-benefits-section .darkblue-card { color: #125173; }
.digigold-benefits-section .darkblue-card .card-body { background-color: #125173; }

/* Icon Inner Styling */
.digigold-benefits-section .icon-circle {
  width: 54px;
  height: 54px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  position: absolute;
  z-index: 2;
  transition: transform 0.3s ease;
}

.digigold-benefits-section .benefit-card:hover .icon-circle {
  transform: scale(1.1) rotate(12deg);
}

.digigold-benefits-section .benefit-card:not(.inverted) .icon-circle {
  top: 15px;
}

.digigold-benefits-section .benefit-card.inverted .icon-circle {
  bottom: 15px;
}

.digigold-benefits-section .icon {
  font-size: 20px;
}

/* Mobile Responsiveness Breakpoint */
@media (max-width: 992px) {
  .digigold-benefits-section .benefits-container {
    align-items: center;
  }
  .digigold-benefits-section .benefits-row {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }
  .digigold-benefits-section .benefit-card.inverted {
    flex-direction: column;
  }
  .digigold-benefits-section .benefit-card.inverted .card-body {
    border-radius: 24px 24px 0 0;
  }
  .digigold-benefits-section .benefit-card.inverted .card-footer-shape {
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    margin-top: -1px;
    margin-bottom: 0;
  }
  .digigold-benefits-section .benefit-card.inverted .icon-circle {
    top: 15px;
    bottom: auto;
  }
}

/* ==========================================================================
   Convert Value Layout Structural Configurations
   ========================================================================== */

.convert-value-section {
  padding: 80px 20px;
  background-color: #ffffff; /* Pure White Background Context */
  font-family: Arial, sans-serif;
  color: #333333;
  overflow: hidden;
}

.convert-value-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Three Column Flex-Grid Base Layer */
.convert-value-media-left {
  flex: 1;
  opacity: 0;
  transform: translateX(-40px);
  animation: convertValueFadeInLeft 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.convert-value-content {
  flex: 1.5;
  opacity: 0;
  transform: translateY(30px);
  animation: convertValueFadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation-delay: 0.15s;
}

.convert-value-media-right {
  flex: 1;
  align-self: flex-end; /* Keeps right image lower/staggered matching your layout */
  margin-top: 60px; 
  opacity: 0;
  transform: translateX(40px);
  animation: convertValueFadeInRight 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation-delay: 0.3s;
}

/* Image Graphic Frames with Hover Micro-Interactions */
.convert-value-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.convert-value-img:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Typography Scale Matrix */
.convert-value-content h2 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 25px;
  color: #111111;
}

.convert-value-content p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #4a4a4a;
}

.convert-value-content p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   CSS Vector Entry Animation Timelines
   ========================================================================== */

@keyframes convertValueFadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes convertValueFadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes convertValueFadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ==========================================================================
   Responsive Adaptation System
   ========================================================================== */

@media (max-width: 992px) {
  .convert-value-container {
    flex-direction: column;
    text-align: center;
    gap: 35px;
  }

  .convert-value-media-left,
  .convert-value-media-right {
    width: 100%;
    max-width: 400px;
    align-self: center;
    margin-top: 0;
  }

  .convert-value-media-left {
    transform: translateY(-30px);
    animation-name: convertValueFadeInUp;
  }

  .convert-value-media-right {
    transform: translateY(30px);
    animation-name: convertValueFadeInUp;
  }
}

/* ==========================================================================
   SM Features Section Styles
   ========================================================================== */

/* Main Section Wrapper with exact matching light cream background tint */
.sm-features-section {
  padding: 80px 20px;
  background-color: #fdf2e9; 
  font-family: Arial, sans-serif;
  overflow: hidden;
}

/* Three Column Grid Container Layout */
.sm-features-section .features-grid-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

/* Individual Feature Card Layout */
.sm-features-section .feature-card-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  
  /* Entrance Animation Configuration */
  opacity: 0;
  transform: translateY(50px);
  animation: featureFadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation-delay: calc(var(--card-index) * 0.2s);
}

/* Card Title Typography */
.sm-features-section .feature-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #50111d; /* Elegant deep maroon shade matching the palette */
  margin: 0 0 25px 0;
  height: 54px; /* Synchronizes alignment for mixed single/double lines */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Handles nested alignment for sub-headings like 'Set target' */
.sm-features-section .feature-card-title.multi-line span {
  font-weight: 700;
  margin-top: 4px;
}

/* White Media Graphic Showcase Frame */
.sm-features-section .feature-image-wrapper {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 1.25 / 1;
  background-color: #ffffff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
}

/* Micro-Interaction Card Float Animation on Mouse Hover */
.sm-features-section .feature-image-wrapper:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 36px rgba(80, 17, 29, 0.12);
}

/* Responsive Image Layer Scaling */
.sm-features-section .feature-asset-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

/* ==========================================================================
   CSS Keyframes Entrance Sequence Timelines
   ========================================================================== */
@keyframes featureFadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   Responsive Adaptation Breakdown Rules
   ========================================================================== */
@media (max-width: 768px) {
  .sm-features-section {
    padding: 50px 20px;
  }
  
  .sm-features-section .features-grid-container {
    flex-direction: column;
    align-items: center;
    gap: 45px;
  }

  .sm-features-section .feature-card-item {
    width: 100%;
    max-width: 360px;
  }

  .sm-features-section .feature-card-title {
    height: auto;
    margin-bottom: 15px;
  }
}

/* ==========================================================================
   Savings Conversion Block Base Layout Configuration
   ========================================================================== */

.savings-conversion-section {
  padding: 80px 20px;
  background-color: #ffffff; /* Pure white content canvas background */
  font-family: Arial, sans-serif;
  color: #333333;
  overflow: hidden;
}

.savings-conversion-section .conversion-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* ==========================================================================
   Left Side Asymmetric 2x2 Image Grid Layout
   ========================================================================== */

.savings-conversion-section .conversion-grid-media {
  flex: 1.1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  
  /* Mask/Clip-reveal animation variant */
  clip-path: inset(0 100% 0 0);
  animation: conversionGridReveal 1.2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

.savings-conversion-section .media-grid-item {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.savings-conversion-section .media-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Staggered Layout Positions - Matching the image asymmetry */
.savings-conversion-section .media-grid-item.item-2 { transform: translateY(20px); }
.savings-conversion-section .media-grid-item.item-3 { transform: translateY(-20px); }

/* Interactive Hover Scales for Grid Items */
.savings-conversion-section .media-grid-item:hover {
  transform: scale(1.04) translateY(0) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  z-index: 3;
}

/* ==========================================================================
   Right Side Text Composition Layout
   ========================================================================== */

.savings-conversion-section .conversion-content-block {
  flex: 1.2;
}

.savings-conversion-section .conversion-content-block h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  color: #111111;
  margin: 0 0 25px 0;
  
  /* Text fade-in slide effect */
  opacity: 0;
  transform: translateX(30px);
  animation: conversionTextSlideIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation-delay: 0.4s;
}

.savings-conversion-section .conversion-content-block p {
  font-size: 14px;
  line-height: 1.65;
  color: #4a4a4a;
  margin: 0 0 18px 0;
  
  opacity: 0;
  transform: translateX(30px);
  animation: conversionTextSlideIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
.savings-conversion-section .conversion-content-block p:nth-of-type(1) { animation-delay: 0.5s; }
.savings-conversion-section .conversion-content-block p:nth-of-type(2) { animation-delay: 0.6s; }
.savings-conversion-section .conversion-content-block p:nth-of-type(3) { animation-delay: 0.7s; }

/* Benefits Checklists Section Rows */
.savings-conversion-section .conversion-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 30px;
}

.savings-conversion-section .conversion-benefit-row {
  display: flex;
  align-items: center;
  gap: 16px;
  
  /* Staggered elastic list pop-in animation setup */
  opacity: 0;
  transform: scale(0.9) translateX(20px);
  animation: conversionListPopIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: calc(0.8s + (var(--row-index) * 0.12s));
}

.savings-conversion-section .conversion-benefit-row p {
  margin: 0 !important;
  font-weight: 600;
  font-size: 15px;
  color: #1a1a1a;
  animation: none !important;
  opacity: 1 !important;
  transform: none !important;
}

/* Custom User Graphic Icon Targets */
.savings-conversion-section .conversion-tick-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.savings-conversion-section .conversion-benefit-row:hover .conversion-tick-icon {
  transform: scale(1.25) rotate(-8deg);
}

/* ==========================================================================
   CSS Keyframe Timelines (Unique Reveal Actions)
   ========================================================================== */

@keyframes conversionGridReveal {
  to {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes conversionTextSlideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes conversionListPopIn {
  to {
    opacity: 1;
    transform: scale(1) translateX(0);
  }
}

/* ==========================================================================
   Responsive Adaptations Media System
   ========================================================================== */

@media (max-width: 992px) {
  .savings-conversion-section .conversion-container {
    flex-direction: column;
    gap: 50px;
  }
  
  .savings-conversion-section .conversion-grid-media {
    width: 100%;
    max-width: 500px;
  }
  
  .savings-conversion-section .media-grid-item.item-2 { transform: translateY(0); }
  .savings-conversion-section .media-grid-item.item-3 { transform: translateY(0); }
}

@media (max-width: 480px) {
  .savings-conversion-section .conversion-grid-media {
    grid-template-columns: 1fr;
    max-width: 320px;
  }
}

/* ==========================================================================
   Conversion Features Layout & Grid System
   ========================================================================== */

.conversion-features-section {
  padding: 80px 20px;
  background-color: #ffffff;
  font-family: Arial, sans-serif;
  overflow: hidden;
}

.conversion-features-section .features-container {
  max-width: 1240px;
  margin: 0 auto;
}

/* Section Main Heading Line */
.conversion-features-section .features-main-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #50111d; /* Deep maroon shade matching corporate colors */
  margin: 0 0 50px 0;
}

/* Horizontal Card Row Track Container */
.conversion-features-section .features-cards-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

/* ==========================================================================
   Individual Feature Card UI Elements
   ========================================================================== */

.conversion-features-section .feature-card-box {
  background: #ffffff;
  border: 1px solid #ededed;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  
  /* Modern Horizontal Shift Stagger Animation Sequence */
  opacity: 0;
  transform: translateX(-50px);
  animation: featuresHorizontalReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--card-order) * 0.15s);
  
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

/* Smooth Interactive Card Lift Effect on Mouse Hover */
.conversion-features-section .feature-card-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(80, 17, 29, 0.08);
  border-color: #50111d;
}

/* Media Graphic Display Frames */
.conversion-features-section .card-visual-frame {
  width: 100%;
  aspect-ratio: 1.1 / 1;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 20px;
}

.conversion-features-section .card-visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Individual Card Visual Background Variations matching original image */
.conversion-features-section .blue-bg     { background-color: #0b4fc3; }
.conversion-features-section .cream-bg    { background-color: #e3effd; }
.conversion-features-section .white-bg    { background-color: #ffffff; border: 1px solid #eaeaea; }
.conversion-features-section .purple-bg   { background-color: #c7a7ff; }
.conversion-features-section .dark-bg     { background-color: #1a0833; }

/* Content Text Typography Block Layouts */
.conversion-features-section .card-text-area {
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.conversion-features-section .card-text-area h3 {
  font-size: 15px;
  font-weight: 700;
  color: #50111d;
  margin: 0 0 12px 0;
  line-height: 1.3;
  min-height: 38px; /* Sync alignment across varying heading lengths */
  display: flex;
  align-items: center;
  justify-content: center;
}

.conversion-features-section .card-text-area p {
  font-size: 12px;
  line-height: 1.6;
  color: #444444;
  margin: 0;
}

/* ==========================================================================
   CSS Horizontal Reveal Animation Timelines
   ========================================================================== */
@keyframes featuresHorizontalReveal {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ==========================================================================
   Responsive Adaptations Breakpoints Media System
   ========================================================================== */

@media (max-width: 1024px) {
  .conversion-features-section .features-cards-wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .conversion-features-section {
    padding: 50px 15px;
  }
  
  .conversion-features-section .features-cards-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .conversion-features-section .card-text-area h3 {
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .conversion-features-section .features-cards-wrapper {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }
  
  /* Fallback animations for narrow mobile screens */
  .conversion-features-section .feature-card-box {
    transform: translateY(30px) translateX(0);
  }
}

/* ==========================================================================
   Brand Story Section Layout Configurations
   ========================================================================== */

.brand-story-section {
  padding: 100px 20px;
  background-color: #ffffff; /* Crisp white layout foundation separation */
  font-family: Arial, sans-serif;
  overflow: hidden;
  position: relative;
}

.brand-story-section .story-structural-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  gap: 50px;
}

/* ==========================================================================
   Left Side Column: 3D Tilting Perspective Visual Frame
   ========================================================================== */

.brand-story-section .story-hero-media-column {
  flex: 1;
  perspective: 1000px; /* Establishes depth environment for premium entry styling */
}

.brand-story-section .perspective-image-frame {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  
  /* 3D Entry Animation Mapping Sequence */
  opacity: 0;
  transform: rotateY(-15deg) rotateX(5deg) scale(0.95) translateX(-40px);
  animation: story3DGlanceReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.brand-story-section .story-large-img {
    width: 100%;
    max-width: 512px; /* Restricts maximum width to your exact size */
    height: 545px;    /* Corrected from 546% to fixed pixels */
    object-fit: cover;
    object-position: top center; /* Keeps the focus on the bride's face and jewelry */
    display: block;
    border-radius: 24px; /* Optional: adds the matching rounded corners from your layout */
}


/* ==========================================================================
   Right Side Column: Editorial Text & Staggered Elements Block
   ========================================================================== */

.brand-story-section .story-editorial-content-column {
  flex: 1.4;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.brand-story-section .story-text-header {
  margin-bottom: 35px;
}

/* Kinetic Mask Reveal Typography Elements */
.brand-story-section .masking-reveal-title {
  font-size: 28px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 25px 0;
  
  opacity: 0;
  transform: translateY(25px);
  animation: storyKineticTextUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation-delay: 0.2s;
}

.brand-story-section .masking-reveal-p1 {
  font-size: 14.5px;
  line-height: 1.75;
  color: #333333;
  margin: 0;
  
  opacity: 0;
  transform: translateY(20px);
  animation: storyKineticTextUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation-delay: 0.35s;
}

/* ==========================================================================
   Kinetic Scaling Accent Highlight Card Component
   ========================================================================== */

.brand-story-section .story-accent-highlight-box {
  background-color: #ffeeda; /* Precise light cream palette color selection */
  border-radius: 16px;
  padding: 30px;
  
  /* Scale Elastic Expand Entry Sequence */
  opacity: 0;
  transform: scaleY(0.8) scaleX(0.95);
  transform-origin: bottom center;
  animation: storyCardExpand 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.5s;
}

.brand-story-section .accent-box-content-split {
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand-story-section .accent-paragraph-area {
  flex: 1.6;
}

.brand-story-section .masking-reveal-p2 {
  font-size: 14px;
  line-height: 1.65;
  color: #1a1a1a;
  margin: 0;
  
  opacity: 0;
  transform: translateX(-15px);
  animation: storyFadeInRight 0.6s ease forwards;
  animation-delay: 0.8s;
}

/* Nest Graphic Asset Thumbnail Box Frame */
.brand-story-section .accent-mini-media-frame {
  flex: 1;
  aspect-ratio: 1.25 / 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(80, 17, 29, 0.06);
  
  opacity: 0;
  transform: scale(0.8) rotate(4deg);
  animation: storyMiniImgPop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 0.95s;
}

.brand-story-section .story-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/* Smooth Thumbnail Interaction Effect on Card Hover */
.brand-story-section .story-accent-highlight-box:hover .story-thumb-img {
  transform: scale(1.06) rotate(-2deg);
}

/* ==========================================================================
   CSS Keyframes Timelines Engine (Unique Structural Reveals)
   ========================================================================== */

@keyframes story3DGlanceReveal {
  to {
    opacity: 1;
    transform: rotateY(0) rotateX(0) scale(1) translateX(0);
  }
}

@keyframes storyKineticTextUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes storyCardExpand {
  to {
    opacity: 1;
    transform: scaleY(1) scaleX(1);
  }
}

@keyframes storyFadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes storyMiniImgPop {
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

/* ==========================================================================
   Responsive Adaptation System
   ========================================================================== */

@media (max-width: 992px) {
  .brand-story-section {
    padding: 60px 15px;
  }

  .brand-story-section .story-structural-container {
    flex-direction: column;
    gap: 40px;
  }

  .brand-story-section .story-large-img {
    min-height: 380px;
    max-height: 480px;
  }

  .brand-story-section .perspective-image-frame {
    transform: rotateX(10deg) rotateY(0) scale(0.95);
  }
}

@media (max-width: 580px) {
  .brand-story-section .accent-box-content-split {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 20px;
  }

  .brand-story-section .accent-mini-media-frame {
    width: 100%;
    aspect-ratio: 1.8 / 1;
  }
}

/* ==========================================================================
   What We Offer Layout Base Design Architecture - Compact Space Saver Edition
   ========================================================================== */

.sm-offerings-section {
  padding: 50px 20px; /* Reduced top/bottom block footprint to prevent blank gaps */
  background-color: #fdf2e9; 
  font-family: Arial, sans-serif;
  overflow: hidden;
}

.sm-offerings-section .offerings-container {
  max-width: 1140px; /* Sized down slightly to match micro grid systems */
  margin: 0 auto;
}

/* --- Global Top Text Headings --- */
.sm-offerings-section .offerings-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 40px auto; /* Tighter layout margin */
}

.sm-offerings-section .offerings-header h2 {
  font-size: 25px; /* Shrunk title footprint */
  font-weight: 700;
  color: #50111d; 
  text-transform: lowercase; 
  margin: 0 0 12px 0;
  letter-spacing: 0.5px;
}

.sm-offerings-section .offerings-header p {
  font-size: 13.5px;
  line-height: 1.6;
  color: #222222;
  margin: 0;
}

/* --- Main Split Display Flex Grid Layout --- */
.sm-offerings-section .offerings-grid-layout {
  display: flex;
  align-items: center;
  gap: 40px; /* Reduced layout distance footprint across desktop segments */
}

/* ==========================================================================
   Left Side Column: Elastic Mask Entry Image System
   ========================================================================== */

.sm-offerings-section .offerings-media-panel {
  flex: 0.9; /* Shrinks width space priority relative to the accordion */
}

.sm-offerings-section .elastic-image-frame {
  width: 100%;
  height: 400px; /* Scaled down structural height constraint to save site vertical space */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(80, 17, 29, 0.06);
  
  opacity: 0;
  clip-path: polygon(0 30%, 100% 0, 100% 70%, 0 100%);
  transform: scale(0.9) translateX(-40px);
  animation: offeringsElasticMask 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.sm-offerings-section .offerings-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ==========================================================================
   Right Side Column: Highly-Interactive Accordion Track Layout
   ========================================================================== */

.sm-offerings-section .offerings-accordion-track {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 10px; /* Reduced vertical grid line gaps between option blocks */
}

/* Accordion Base Card Component Wrapper */
.sm-offerings-section .offering-accordion-card {
  background-color: #ffffff;
  border: 1px solid #e6dcd3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.01);
  
  opacity: 0;
  transform: translateY(20px);
  animation: offeringsCardCascade 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.sm-offerings-section .offering-accordion-card:nth-child(1) { animation-delay: 0.1s; }
.sm-offerings-section .offering-accordion-card:nth-child(2) { animation-delay: 0.2s; }
.sm-offerings-section .offering-accordion-card:nth-child(3) { animation-delay: 0.3s; }
.sm-offerings-section .offering-accordion-card:nth-child(4) { animation-delay: 0.4s; }
.sm-offerings-section .offering-accordion-card:nth-child(5) { animation-delay: 0.5s; }

.sm-offerings-section .offering-accordion-card.active {
  background-color: #50111d; 
  border-color: #50111d;
  box-shadow: 0 8px 20px rgba(80, 17, 29, 0.15);
}

/* Trigger Header Bar Component Row */
.sm-offerings-section .accordion-header-trigger {
  padding: 14px 20px; /* Compact padding lines */
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.sm-offerings-section .accordion-title-flex {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Custom User Image Icon Target Node Dimensions */
.sm-offerings-section .accordion-custom-icon {
  width: 36px; /* Reduced scale size dimensions to preserve layout real estate */
  height: 36px;
  object-fit: contain;
  border-radius: 6px;
  display: block;
  flex-shrink: 0;
  background-color: #ffeeda; 
  padding: 6px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.sm-offerings-section .offering-accordion-card.active .accordion-custom-icon {
  background-color: #ffffff; 
  transform: scale(1.03);
}

/* Typography Text Elements Alignment */
.sm-offerings-section .accordion-heading-text {
  font-size: 14.5px; /* Scaled down legibility text bounds */
  font-weight: 700;
  color: #50111d;
  transition: color 0.3s ease;
}

.sm-offerings-section .offering-accordion-card.active .accordion-heading-text {
  color: #ffffff; 
}

/* CSS Vector Structural Chevron Arrow Node */
.sm-offerings-section .accordion-chevron-node {
  width: 20px;
  height: 20px;
}

.sm-offerings-section .chevron-line {
  width: 8px;
  height: 8px;
  border-right: 2px solid #50111d;
  border-bottom: 2px solid #50111d;
  transform: rotate(45deg);
  display: block;
  margin-top: -2px;
}

.sm-offerings-section .offering-accordion-card.active .chevron-line {
  border-color: #ffffff;
  transform: rotate(-135deg); 
  margin-top: 2px;
}

/* --- Collapsible Description Panel Engine --- */
.sm-offerings-section .accordion-content-panel {
  max-height: 0px; 
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.sm-offerings-section .panel-inner-text {
  padding: 0 20px 16px 70px; /* Aligned tight margins */
}

.sm-offerings-section .panel-inner-text p {
  margin: 0;
  font-size: 12.5px; /* Sleek descriptions text footprint */
  line-height: 1.5;
  color: #555555;
}

.sm-offerings-section .offering-accordion-card.active .panel-inner-text p {
  color: rgba(255, 255, 255, 0.85); 
}

/* ==========================================================================
   CSS Keyframe Timelines Engine
   ========================================================================== */

@keyframes offeringsElasticMask {
  to {
    opacity: 1;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transform: scale(1) translateX(0);
  }
}

@keyframes offeringsCardCascade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   Responsive Adaptations Media System
   ========================================================================== */

@media (max-width: 992px) {
  .sm-offerings-section {
    padding: 40px 15px;
  }

  .sm-offerings-section .offerings-grid-layout {
    flex-direction: column;
    gap: 30px; 
  }

  .sm-offerings-section .elastic-image-frame {
    height: 320px; 
  }
}

@media (max-width: 580px) {
  .sm-offerings-section .accordion-header-trigger {
    padding: 12px 16px;
  }
  
  .sm-offerings-section .panel-inner-text {
    padding: 0 16px 14px 16px; 
  }
}

/* ==========================================================================
   SM Mosaic Grid Section Base Layout - Compact Space Saving Matrix
   ========================================================================== */

.sm-mosaic-grid-section {
  padding: 40px 20px; /* Reduced vertical page footprint */
  background-color: #ffffff;
  overflow: hidden;
}

.sm-mosaic-grid-section .mosaic-container {
  max-width: 1000px; /* Shrunk from 1200px to sit cleaner on screen */
  margin: 0 auto;
}

/* 2x2 Balanced Grid Engine Layout */
.sm-mosaic-grid-section .mosaic-bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px; /* Tighter item spacing gap */
}

/* ==========================================================================
   Individual Card Mechanics & Entry Animations
   ========================================================================== */

.sm-mosaic-grid-section .mosaic-card-item {
  position: relative;
  width: 100%;
  aspect-ratio: 2.1 / 1; /* Sleek, shorter landscape profile to maximize canvas efficiency */
  border-radius: 16px; /* Optimized radius for tight card structures */
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  cursor: pointer;
  background-color: #fdf2e9;
  
  /* Kinetic Scale Elastic Entry Timeline Reveal */
  opacity: 0;
  transform: scale(0.9) translateY(20px);
  animation: mosaicElasticReveal 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.1) forwards;
  animation-delay: calc(var(--grid-index) * 0.12s);
  
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
}

/* Base Interaction Hover for Whole Frame Block */
.sm-mosaic-grid-section .mosaic-card-item:hover {
  transform: scale(1.015) translateY(-3px);
  box-shadow: 0 10px 25px rgba(80, 17, 29, 0.1);
}

/* Background Image Layer Setup */
.sm-mosaic-grid-section .mosaic-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.sm-mosaic-grid-section .mosaic-card-item:hover .mosaic-bg-img {
  transform: scale(1.05);
}

/* ==========================================================================
   Premium Frosted Glass Content Overlay System
   ========================================================================== */

.sm-mosaic-grid-section .mosaic-glass-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%; /* Tailored height ratio to secure space balances */
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  box-sizing: border-box;
  transition: height 0.35s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.35s ease;
}

/* Micro-Interaction: Expands height cleanly when user interacts with the card */
.sm-mosaic-grid-section .mosaic-card-item:hover .mosaic-glass-overlay {
  height: 65%; /* Adjusted ratio to prevent inner content clipping */
  background: rgba(80, 17, 29, 0.9);
}

.sm-mosaic-grid-section .overlay-inner-content {
  text-align: center;
  width: 100%;
}

/* Typography Scale Engine Settings */
.sm-mosaic-grid-section .overlay-inner-content h3 {
  font-size: 15px; /* Shrunk for fine micro-layouts */
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 4px 0;
  letter-spacing: 0.2px;
}

.sm-mosaic-grid-section .overlay-inner-content p {
  font-size: 11.5px; /* Highly optimized legible micro text scaling */
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  opacity: 0.85;
  transform: translateY(4px);
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.35s ease;
}

/* Sync text movements on expand transitions */
.sm-mosaic-grid-section .mosaic-card-item:hover .overlay-inner-content p {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   CSS Keyframes Timelines Engine
   ========================================================================== */
@keyframes mosaicElasticReveal {
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* ==========================================================================
   Responsive Adaptations Media System
   ========================================================================== */

@media (max-width: 768px) {
  .sm-mosaic-grid-section {
    padding: 30px 15px;
  }

  .sm-mosaic-grid-section .mosaic-bento-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
    gap: 15px;
  }
  
  .sm-mosaic-grid-section .mosaic-card-item {
    aspect-ratio: 1.8 / 1; /* Retains crisp landscape space optimization on mobile viewports */
  }

  .sm-mosaic-grid-section .mosaic-glass-overlay {
    height: 48%;
  }
  
  .sm-mosaic-grid-section .mosaic-card-item:hover .mosaic-glass-overlay {
    height: 70%;
  }
}
/* ==========================================================================
   DigiGold Why Choose Us Style Matrix (Space-Saving Format)
   ========================================================================== */

/* Main wrapper using the soft golden-cream tint background */
.digigold-why-us-section {
  padding: 50px 20px; /* Low vertical padding footprint to avoid excessive blank space */
  background-color: #fdf2e9; 
  font-family: Arial, sans-serif;
  overflow: hidden;
}

.digigold-why-us-section .why-us-container {
  max-width: 1040px; /* Narrowed width prevents excessive horizontal spreading */
  margin: 0 auto;
}

/* --- Compact Top Heading Block --- */
.digigold-why-us-section .why-us-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 40px auto;
}

.digigold-why-us-section .why-us-header h2 {
  font-size: 26px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 12px 0;
  letter-spacing: -0.2px;
}

.digigold-why-us-section .why-us-header p {
  font-size: 13.5px;
  line-height: 1.55;
  color: #333333;
  margin: 0;
}

/* --- 3-Column Grid Layout Configuration --- */
.digigold-why-us-section .why-us-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; /* Tight gaps to cluster cards closely and save screen territory */
}

/* ==========================================================================
   Individual Compact Feature Card Component Block
   ========================================================================== */

.digigold-why-us-section .why-us-feature-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 24px 20px; /* Shrunk padding parameters to fit compact scopes */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 15px rgba(80, 17, 29, 0.02);
  box-sizing: border-box;
  
  /* Kinetic Pop-In Entry Animation Configuration */
  opacity: 0;
  transform: translateY(35px) scale(0.96);
  animation: digigoldCardPopIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.1) forwards;
  animation-delay: calc(var(--card-order) * 0.1s);
  
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
}

/* Micro-Interaction Card Hover Action Sequence */
.digigold-why-us-section .why-us-feature-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 12px 28px rgba(80, 17, 29, 0.08);
}

/* Rounded Icon Frame Container */
.digigold-why-us-section .card-icon-frame {
  width: 60px; /* Tiny, space-saving dimensions */
  height: 60px;
  background-color: #ffeeda; /* Exact light cream inner backdrop match */
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.digigold-why-us-section .why-us-feature-card:hover .card-icon-frame {
  transform: scale(1.08) rotate(3deg); /* Micro rotation wiggle on card hover */
}

/* Legible Image Graphic Layer Scaling */
.digigold-why-us-section .feature-custom-icon {
  width: 32px; /* Small layout limits to keep section compact */
  height: 32px;
  object-fit: contain;
  display: block;
}

/* Card Typography Setup */
.digigold-why-us-section .why-us-feature-card h3 {
  font-size: 15px; /* Shrunk sizing to sit cleaner on small cards */
  font-weight: 700;
  color: #111111;
  margin: 0 0 10px 0;
  line-height: 1.35;
  min-height: 40px; /* Aligns heading lines across rows evenly */
  display: flex;
  align-items: center;
  justify-content: center;
}

.digigold-why-us-section .why-us-feature-card p {
  font-size: 12px; /* Clean, micro-scaled body text */
  line-height: 1.5;
  color: #555555;
  margin: 0;
}

/* ==========================================================================
   CSS Keyframe Timelines Engine
   ========================================================================== */
@keyframes digigoldCardPopIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ==========================================================================
   Responsive Adaptations Media Breakpoint Rules System
   ========================================================================== */

@media (max-width: 992px) {
  .digigold-why-us-section .why-us-cards-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 Columns on tablet screens */
    gap: 16px;
  }
  
  .digigold-why-us-section {
    padding: 40px 15px;
  }
}

@media (max-width: 640px) {
  .digigold-why-us-section .why-us-header {
    margin-bottom: 30px;
  }

  /* Single column flow to save max width layout bounds on mobiles */
  .digigold-why-us-section .why-us-cards-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
    gap: 15px;
  }
  
  .digigold-why-us-section .why-us-feature-card h3 {
    min-height: auto; /* Dissolves row-alignment heights on flat tracks */
  }
}

/* ==========================================================================
   SM Mission Vision Style Architecture (Space-Saving Matrix)
   ========================================================================== */

.sm-mission-vision-section {
  padding: 40px 20px; /* Highly optimized padding parameters to completely eliminate spacing bloat */
  background-color: #ffffff;
  font-family: Arial, sans-serif;
  overflow: hidden;
}

.sm-mission-vision-section .mv-matrix-container {
  max-width: 1040px; /* Restricts layout container constraints for clean screen tracking */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px; /* Tight vertical gap between rows */
}

/* Base structural layout for rows */
.sm-mission-vision-section .mv-stagger-row {
  display: flex;
  align-items: stretch;
  gap: 20px; /* Tighter layout gap limits between primary cards and companion visuals */
}

/* ==========================================================================
   Primary Panel Layout & Typography Structure
   ========================================================================== */

.sm-mission-vision-section .mv-block-panel {
  flex: 2.3; /* Allots premium structural width to text descriptions elements */
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-sizing: border-box;
  
  /* Brand-New Skew & Blind Mask Entry Sequence Map */
  opacity: 0;
  transform: skewY(2deg) translateY(40px);
  animation: mvKineticBlindReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--row-order) * 0.2s);
}

/* --- Block Theme Color Matching Rules --- */
.sm-mission-vision-section .pink-theme-bg { background-color: #ffbba4; } /* Soft matching identity coral pink */
.sm-mission-vision-section .cream-theme-bg { background-color: #ffeeda; } /* Soft matching identity light golden cream */

/* Mini Nested Rounded Arch Media Frames */
.sm-mission-vision-section .panel-media-thumb {
  flex: 0.8;
  max-width: 170px; /* Shrunk image real estate footprints completely */
  display: block;
}

.sm-mission-vision-section .rounded-arch {
  border-radius: 100px 100px 0 0; /* Creates the distinct profile arch shape from the blueprint mockup */
  aspect-ratio: 0.85 / 1;
}

/* Inside Card Editorial Typography Setup */
.sm-mission-vision-section .panel-editorial-text {
  flex: 1.5;
}

.sm-mission-vision-section .panel-editorial-text h3 {
  font-size: 20px; /* Compressed font values to avoid page text overflow */
  font-weight: 700;
  color: #111111;
  margin: 0 0 12px 0;
}

.sm-mission-vision-section .panel-editorial-text p {
  font-size: 11.5px; /* Highly detailed compact micro text rules scaling */
  line-height: 1.6;
  color: #222222;
  margin: 0;
  text-align: justify;
}

/* ==========================================================================
   Companion Outer Graphic Frames Block System
   ========================================================================== */

.sm-mission-vision-section .mv-companion-showcase-frame {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  
  /* Counter Sliding Entry Transition Map */
  opacity: 0;
  transform: translateY(-30px);
  animation: mvCompanionReveal 0.9s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation-delay: calc((var(--row-order) * 0.2s) + 0.15s);
}

/* Standardized Universal Fluid Scaling Engine */
.sm-mission-vision-section .mv-fluid-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ==========================================================================
   CSS Keyframe Timelines Engine (Premium Stagger Matrix)
   ========================================================================== */

@keyframes mvKineticBlindReveal {
  to {
    opacity: 1;
    transform: skewY(0deg) translateY(0);
  }
}

@keyframes mvCompanionReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   Responsive Adaptation System
   ========================================================================== */

@media (max-width: 840px) {
  .sm-mission-vision-section {
    padding: 30px 15px;
  }
  
  /* Collapses layout rows into clean stacked vertical items to conserve device screens */
  .sm-mission-vision-section .mv-stagger-row {
    flex-direction: column;
    gap: 16px;
  }
  
  /* Re-aligns internal rows on tablet/mobile screens for natural vertical tracking loop flow */
  .sm-mission-vision-section .cream-block-row {
    flex-direction: column-reverse;
  }

  .sm-mission-vision-section .mv-block-panel {
    width: 100%;
  }

  .sm-mission-vision-section .mv-companion-showcase-frame {
    width: 100%;
    height: 240px; /* Locked fixed constraint layout height spectrum on portable devices */
  }
}

@media (max-width: 520px) {
  .sm-mission-vision-section .mv-block-panel {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .sm-mission-vision-section .panel-media-thumb {
    max-width: 140px;
    margin-bottom: 10px;
  }

  .sm-mission-vision-section .panel-editorial-text p {
    text-align: center;
  }
}


/* Clean Image Controller for the Contact Grid */
.info-header .amigoways-img {
  width: 26px;            /* Locks the exact icon layout width */
  height: 26px;           /* Locks the exact icon layout height */
  margin-right: 10px;     /* Sets clean horizontal spacing before your heading text */
  display: inline-block;  /* Maintains standard text line alignment */
  vertical-align: middle; /* Perfectly aligns the vector shape centers with your text */
  object-fit: contain;    /* Prevents distortion of your call/whatsapp brand graphics */
  flex-shrink: 0;         /* Stops the browser from crushing the icon on small views */
}


