/* ================================================
	GLOBAL STYLES
================================================ */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+Georgian:wght@100..900&display=swap');

:root{
    --primary-color: #FFBD59;
    --secondary-color: #AF0120;
}


* {
	/* font-family: 'Montserrat', sans-serif; */
	font-family: "Noto Serif Georgian", serif;
	font-weight: 400;
	font-style: normal;
	line-height: 1.5em;
	scroll-behavior: smooth;
}

body {
	color: #212529;
	padding-top: 76px;
}

.row {
	margin: 0 !important;
	padding: 0 !important;
}

a {
	text-decoration: none !important;
}

@media (max-width: 440px) {
	body {
		padding-top: 0px !important;
	}
}

h4 {
	/* font-family: 'Playfair Display', serif; */
	font-weight: 400;
}

/* ===========================
   Logo Area
===========================*/

.navbar {
    background: #fff;
    box-shadow: none;
}

/* ===========================
   Main Menu
===========================*/

.usthadian-menu {
    background: #fff;
    border-top: 1px solid #d8d8d8;
    border-bottom: 1px solid #d8d8d8;
}

.main-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu>li {
    position: relative;
    padding: 10px 0;
}

.main-menu>li>a {
    /* display: block; */
    padding: 14px 10px;
    color: #111;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    font-family: Georgia, serif;
}

.main-menu>li:not(:last-child)::after {
    content: "|";
    color: #777;
    margin-left: 5px;
}

.main-menu li:hover>a {
    color: #d48c1b;
}

/* Dropdown */

.dropdown-menu {
    border: none;
    border-radius: 0;
    padding: 0;
    margin-top: 0;
}

.dropdown-menu li {
    border-bottom: 1px solid #eee;
}

.dropdown-menu li a {
    padding: 12px 20px;
    display: block;
    color: #222;
    text-decoration: none;
}

.dropdown-menu li:hover {
    background: #f6f6f6;
}


/* ===========================
   Mobile
===========================*/

@media(max-width:768px) {

    
    .exam-scroll {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .exam-scroll a {
        min-width: auto;
        font-size: 14px;
        padding: 12px 8px;
    }

    .mobile-category {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 10px;
        background: #fff;
    }

    .mobile-category a {
        background: #f7b54b;
        padding: 10px;
        text-align: center;
        font-size: 13px;
        font-weight: 700;
        color: #000;
        text-decoration: none;
        border-radius: 6px;
    }

}


/*==========================
HEADER
==========================*/

.ust-header {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
    z-index: 9999;
}

.ust-logo {
    display: inline-block;
}

.ust-logo img {
    max-width: 450px;
    width: 100%;
    height: auto;
}

/* remove old bootstrap navbar */
.navbar {
    box-shadow: none;
    background: #fff;
}

/*==============================
USTHADIAN HEADER
==============================*/

.fixed-top {
    background: #fff !important;
    height: auto !important;
    padding: 0px 0;
    border-bottom: 1px solid #d9d9d9;
}

.fixed-top a {
    color: #111 !important;
    text-decoration: none;
}

.navbar-brand img {
    height: 90px;
    width: auto;
    object-fit: contain;
}

/*==============================
MAIN MENU
==============================*/

.middle-menu-bar {
    background: #fff;
    border-top: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
    min-height: 48px;
}

.middle-menu-bar .navbar-nav {
    width: 100%;
    justify-content: center;
}

.middle-menu-bar .nav-item {
    position: relative;
}

.middle-menu-bar .nav-item:not(:last-child)::after {
    content: "|";
    position: absolute;
    right: -2px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
}

.middle-menu-bar .nav-link {
    font-size: 17px;
    font-family: Georgia, serif;
    font-weight: 700;
    color: #111 !important;
    padding: 12px 18px;
}

.middle-menu-bar .nav-link:hover {
    color: #d7962a !important;
}

.middle-menu-bar .dropdown-menu {
    border-radius: 0;
    border: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
}

.middle-menu-bar .dropdown-item {
    padding: 10px 18px;
    font-size: 15px;
}

.middle-menu-bar .dropdown-item:hover {
    background: #f4f4f4;
    color: #d7962a;
}

/*==============================
SECOND BUTTON MENU
==============================*/

.exam-menu {
    background: #fff;
    padding: 14px;
    border-bottom: 1px solid #ddd;
}

.exam-scroll {
    display: flex;
    gap: 5px;
    overflow-x: auto;
}

.exam-scroll::-webkit-scrollbar {
    display: none;
}

.exam-scroll a {
    /* min-width: 260px; */
    flex: 1;
    background: var(--primary-color);
    color: #000;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 8px;
    transition: .3s;
    font-size: 14px;
    border: 4px solid var(--primary-color);
}

.exam-scroll a:hover {
    border-bottom: 4px solid var(--secondary-color);
}

/*==============================
MOBILE
==============================*/
@media(max-width:767px) {

    .fixed-top {
        padding: 10px 0;
    }

    .navbar-brand img {
        height: 55px;
    }

    .middle-menu-bar {
        overflow-x: auto;
    }

    .middle-menu-bar .navbar-nav {
        flex-wrap: nowrap;
    }

    .middle-menu-bar .nav-link {
        font-size: 15px;
        padding: 12px;
    }

}

/* mobile nav */
@media (max-width: 991px) {

    /* Header */

    .ust-header {
        position: relative !important;
        padding: 8px 0;
        border-bottom: none;
    }

    .ust-logo img {
        height: 55px;
        width: auto;
        max-width: 100%;
    }

    /* Main Menu - Row 2 */

    .usthadian-menu {
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        border-top: 1px solid #e5e5e5;
        border-bottom: 1px solid #e5e5e5;
        -webkit-overflow-scrolling: touch;
    }

    .main-menu {
        display: flex;
        flex-wrap: nowrap !important;
        justify-content: flex-start;
        align-items: center;
        width: max-content;
        margin: 0;
        padding: 0;
    }

    .main-menu li {
        flex: 0 0 auto;
        position: relative;
        padding: 0;
    }

    .main-menu li a {
        display: block;
        white-space: nowrap;
        padding: 12px 10px;
        font-size: 15px;
        font-weight: 600;
    }

    .main-menu li:not(:last-child)::after {
        content: "|";
        position: absolute;
        right: -2px;
        top: 50%;
        transform: translateY(-50%);
        color: #999;
    }

    /* Row 3 */

    .exam-menu {
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        scrollbar-width: thin;
        scrollbar-color: #8B5A2B #E8D5B5;
        padding: 10px 0 14px;
    }

    .exam-scroll {
        display: flex;
        flex-wrap: nowrap !important;
        gap: 8px;
        width: max-content;
        padding: 0 10px;
    }

    .exam-scroll a {
        flex: 0 0 auto;
        min-width: auto;
        white-space: nowrap;
        padding: 7px 14px;
        border-radius: 5px;
        font-size: 13px;
        font-weight: 600;
    }

    /* Row 2 - Main Menu */

    .usthadian-menu {
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        scrollbar-width: thin;
        scrollbar-color: #8B5A2B #E8D5B5;
    }

    .usthadian-menu::-webkit-scrollbar {
        height: 6px;
    }

    .usthadian-menu::-webkit-scrollbar-track {
        background: #E8D5B5;
        border-radius: 20px;
    }

    .usthadian-menu::-webkit-scrollbar-thumb {
        background: #8B5A2B;
        border-radius: 20px;
    }

    /* Row 3 - Category Menu */

    .exam-menu::-webkit-scrollbar {
        height: 6px;
    }

    .exam-menu::-webkit-scrollbar-track {
        background: #E8D5B5;
        border-radius: 20px;
    }

    .exam-menu::-webkit-scrollbar-thumb {
        background: #8B5A2B;
        border-radius: 20px;
    }


}

/* ================================================
	BUTTONS & BADGES
================================================ */
.loading-btn {
	border: none !important;
	font-size: 14px !important;
	color: white;
	background: linear-gradient(135deg, #ff6b6b, #ff9770);
	padding: 10px 20px;
	border-radius: 6px;
	transition: all 0.3s ease;
}

.loading-btn:hover {
	background: linear-gradient(135deg, #ff9770, #ff6b6b);
	transform: translateY(-1px);
	box-shadow: 0 4px 8px rgba(255, 107, 107, 0.4);
}

.cart-icon {
	position: relative;
	cursor: pointer;
}

.cart-icon .badge {
	position: absolute;
	background-color: #c6a35d !important;
	color: #fff;
	font-size: 13px;
	height: 18px;
	width: 18px;
	display: flex;
	justify-content: center;
	align-items: center;
	top: -6px;
	left: 0;
	border-radius: 50%;
	font-weight: 600;
	box-shadow: 0 0 6px rgba(255, 107, 107, 0.5);
}

/* ================================================
	BANNER SECTION
================================================ */
.main-banner {
	padding: 0 !important;
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.main-banner img {
	border-radius: 8px;
	height: 600px;
	width: 100%;
	transition: transform 1s ease;
}

.main-banner:hover img {
	transform: scale(1.05);
}

/* ================================================
	HEADERS & TEXT
================================================ */
.header {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	text-align: center;
	background-color: #c6a35d;
	padding: 0 !important;
    min-height: 90px;
}

.header .title {
	font-weight: 700;
	font-size: 38px;
	color: #212529;
	text-transform: capitalize;
	position: relative;
}

/**
	.underline {
	width: 90px;
	height: 4px;
	background: linear-gradient(90deg, #ff6b6b, #ff9770);
	border-radius: 10px;
	margin-top: 10px;
}**/

.header h1 {
	/** font-size: 40px; **/
	font-weight: 900;
	font-size: 35px;
}

/* ================================================
	PRODUCT CARD
================================================ */
.card1 {
	width: auto;
	border-radius: 10px;
	overflow: hidden;
	background: #fff;
	transition: all 0.3s ease;
}

.card1:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.card1 img {
	height: 270px;
	width: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.card1:hover img {
	transform: scale(1.05);
}

.card1 .card-body {
	border: 1px solid #e0e0e0;
	border-top: none;
	border-radius: 0 0 10px 10px;
	padding: 15px;
}

.price {
	font-size: 20px;
	color: #ff6b6b !important;
	font-weight: 600;
}

/**
	.card1 .btn {
	background: linear-gradient(135deg, #051144, #051144);
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 5px;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.3s ease;
	}
	
	.card1 .btn:hover {
	background: linear-gradient(135deg, #051144, #051144);
	transform: translateY(-2px);
	}
**/

/* Quantity Controls Wrapper */
.quantity-controls {
	width: 100% !important;
}

/* Quantity box (shown after ADD click) */
.quantity-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 140px;
	height: 42px;
	border: 1px solid #d1d1d1;
	border-radius: 30px;
	background: #fff;
	padding: 0 8px;
	width: 100% !important;
}

/* + and - buttons */
.quantity-btn {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: none;
	background: #f2f2f2;
	color: #333;
	font-size: 14px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.25s ease;
}

.quantity-btn:hover {
	background: #e0e0e0;
}

/* Quantity number */
.quantity-display {
	font-size: 14px;
	font-weight: 600;
	min-width: 20px;
	text-align: center;
}

/* ADD Button – Full Width */
.add-btn {
	width: 100% !important;
	color: #051144 !important;
	border: none;
	border-radius: 50px !important;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
	padding: 10px !important;
	background: none !important;
	border: #051144 solid 1px !important;
}

/* Hover effect */
.add-btn:hover {
	opacity: 0.9;
	transform: translateY(-1px);
}

/* Hide quantity until ADD is clicked (you already use hidden) */
.hidden {
	display: none;
}

/* ================================================
	RESPONSIVE DESIGN
================================================ */
@media (max-width: 768px) {
	.navbar-brand img {
		width: 40px;
		height: 40px;
	}
	
	.header .title {
		font-size: 30px;
	}
	
	.card1 img {
		height: 220px;
	}
	
	.main-banner img {
		height: 200px;
	}
}


/* ====================================================
	GENERAL STYLES
==================================================== */
hr {
	background-color: #eee !important;
	color: #000 !important;
	margin: 10px 0 !important;
	border: none;
	height: 2px;
	border-radius: 5px;
}

.card-title {
	font-size: 24px;
	color: #222;
	letter-spacing: 0.5px;
}

.card1 {
	position: relative;
	cursor: pointer;
	background: #fff;
	border-radius: 10px;
	transition: all 0.3s ease;
}

.card1:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

/* ====================================================
	ADD BUTTONS & QUANTITY CONTROLS
==================================================== */
/**
	.control-box {
	width: 65px;
	height: 25px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #f8f9fa;
	color: #333;	
	border-radius: 6px;
	border: 1px solid #ddd;
	box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
	}
	
	.quantity-wrapper {
	width: 250px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	}
	
	.quantity-display {
	color: #111;
	font-weight: 600;
	font-size: 14px;
	}
	
	.add-btn {
	width: 65px;
	height: 25px;
	color: #fff;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	font-size: 12px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: linear-gradient(135deg, #ff6b6b, #ff9770);
	transition: all 0.3s ease;
	}
	
	.add-btn:hover {
	background: linear-gradient(135deg, #ff9770, #ff6b6b);
	box-shadow: 0 3px 10px rgba(255,107,107,0.3);
	}
**/
/* ====================================================
	BUTTONS
==================================================== */
.btn-primary,
.btn-success {
	border: none;
	color: white;
	font-size: 13px;
	border-radius: 5px !important;
	padding: 8px 14px;
	background: linear-gradient(135deg, #007bff, #00b4d8);
	transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-success:hover {
	transform: translateY(-1px);
}

.btn-warning {
	border-radius: 50px !important;
	padding: 8px 14px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	background: none !important;
}

.btn-danger {
	border-radius: 50px !important;
	padding: 8px 14px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	background: #051144 !important;
	border:#051144 1px solid !important;
}

.btn-warning:hover,
.btn-danger:hover {
	transform: translateY(-1px);
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
	border:#051144 1px solid !important;
}

.btn-outline-primary {
	border: #051144 solid 1px !important;
}

.btn-outline-primary:hover {
	border: #051144 solid 1px !important;
	background: #051144 !important;
}

.btn.loading-btn {
	padding: 5px 10px;
	font-size: 12px;
	background-color: rgb(46, 182, 254) !important;
}

.btn.loading-btn .spinner-border-sm {
	width: 16px;
	height: 16px;
	padding: 20px !important;
}

/* ====================================================
	FLOATING ICONS
==================================================== */
.whatsup {
	position: fixed;
	bottom: 20px;
	left: 20px;
	height: 55px;
	width: 55px;
	font-size: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 10;
	background: #25D366;
	border-radius: 50%;
	color: #fff;
	box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
	transition: all 0.3s ease-in-out;
}

.whatsup:hover {
	transform: scale(1.1) rotate(10deg);
	box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}

.check-btn a {
	position: fixed;
	bottom: 20px;
	right: 20px;
	height: 55px;
	width: 55px;
	padding: 10px;
	text-decoration: none;
	font-size: 20px;
	color: #fff;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 10;
	background: linear-gradient(135deg, #ff6b6b, #ff9770);
	box-shadow: 0 8px 18px rgba(255, 107, 107, 0.4);
	transition: all 0.3s ease-in-out;
}

.check-btn a:hover {
	transform: scale(1.1);
	box-shadow: 0 10px 25px rgba(255, 107, 107, 0.6);
}

/* ====================================================
	PRODUCT & CART SECTIONS
==================================================== */
.item-1 {
	padding: 10px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
	border-radius: 8px;
	background: #fff;
	transition: all 0.3s ease;
}

.item-1:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.cart-img img {
	width: 200px;
	height: 100px;
	object-fit: contain;
}

.quantity-wrapper1 button {
	padding: 5px 8px;
	background-color: #f1f3f5;
	margin: 0 10px;
	height: 25px;
	width: 25px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: background 0.3s ease;
}

.quantity-wrapper1 button:hover {
	background: #ff9770;
	color: #fff;
}

/* ====================================================
	FORM STYLES
==================================================== */
.s-address input,
.s-address textarea,
.s-address select {
	margin-bottom: 5px;
	background-color: #f7f7f7;
	font-size: 13px;
	border: 1px solid #ddd;
	border-radius: 5px;
	padding: 8px;
	transition: border-color 0.3s ease;
}

.s-address input:focus,
.s-address textarea:focus,
.s-address select:focus {
	border-color: #ff6b6b;
	outline: none;
}

.cart-details input,
.cart-details .btn {
	background-color: #f7f7f7;
	font-size: 13px;
	margin-bottom: 20px !important;
}

/* ====================================================
	PRODUCT DISPLAY
==================================================== */
.p-name {
	font-size: 18px;
	font-weight: 700;
	color: #333;
}

.quantity {
	background-color: #f1f3f5;
	font-size: 14px;
	border-radius: 4px;
	padding: 2px 6px;
	font-weight: 600;
}

.line-through {
	text-decoration: line-through;
	color: #888;
}

.desc li,
.desc p {
	text-align: justify;
	color: #555;
}

/* ====================================================
	ABOUT PAGE
==================================================== */
.about-ul li {
	text-align: justify;
	padding-right: 20px;
}

.about-card {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	border-radius: 10px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.about-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.about-card img {
	width: 100%;
	height: 13rem;
	object-fit: cover;
}

/* ====================================================
	CONTACT PAGE
==================================================== */
.contact-page {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	border-radius: 10px;
	background: #fff;
	padding: 20px;
}

.contact-form input,
.contact-form textarea {
	margin-bottom: 20px;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: 5px;
	transition: border 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
	border-color: #ff6b6b;
	outline: none;
}

.contact-info {
	color: #000;
	border-radius: 10px;
	padding: 0 20px;
}

.contact-info a {
	color: #000 !important;
	text-decoration: none !important;
}

.contact-info i {
	font-size: 24px;
	height: 50px;
	width: 50px;
	border-radius: 50%;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ff6b6b;
	color: #fff;
}

/* ====================================================
	SOCIAL ICONS
==================================================== */
.social-icons {
	margin-top: 30px;
	text-align: center;
}

.social-icons a {
	display: inline-block;
	width: 45px;
	height: 45px;
	line-height: 45px;
	border-radius: 50%;
	background-color: #fff;
	color: #001524;
	margin: 0 8px;
	text-align: center;
	font-size: 22px !important;
	transition: all 0.3s ease;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.social-icons a:hover {
	transform: translateY(-3px);
	box-shadow: #c6a35d;
}

/* ====================================================
	DROPDOWNS
==================================================== */
.dropdown-center {
	position: relative !important;
	padding: 3px 10px 3px 0px;
}

.dropdown-center a {
	color: #ffffff;
	text-decoration: none !important;
	font-size: 16px;
}

.track-img {
	filter: brightness(2000%);
	margin-bottom: 5px;
	width: 20px;
	height: 20px;
}

/* ====================================================
	MISC
==================================================== */
.txt-secondary {
	color: #aaa;
}

.txt-success {
	color: #00ad09;
}

.hidden {
	display: none;
}

.btn:active {
	border: none !important;
}

.title {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #fff5e6;
	color: #444;
	height: 25px;
	font-weight: 600;
}

/* ----------------------------------------------------
	✨ FANCY ECOMMERCE ENHANCEMENTS ✨
---------------------------------------------------- */

/* Smooth transitions globally */
* {
	transition: all 0.3s ease-in-out;
	scroll-behavior: smooth;
}

/* Navbar enhancement */
.navbar {
	/** background: linear-gradient(90deg, #fefefe, #f5f8ff); **/
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.navbar-brand img {
	transition: transform 0.4s;
}

.navbar-brand img:hover {
	transform: rotate(-5deg) scale(1.1);
}

/* Nav links */
.nav-link {
	color: #333 !important;
	position: relative;
	border-bottom: 2px solid transparent;
	padding-bottom: 3px;
	/* match your spacing */
	transition: border-color 0.3s;
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.nav-link:hover {
	border-bottom: 2px solid #007bff;
}


/* Banner styling */
.main-banner {
	position: relative;
	overflow: hidden;
}

.main-banner img {
	filter: brightness(0.95);
	transition: transform 1s ease;
}

.main-banner:hover img {
	transform: scale(1.05);
}

/* Card styling */
.card1 {
	border: none;
	background: #fff;
	border-radius: 15px;
	overflow: hidden;
	transition: all 0.4s ease;
}

.card1:hover {
	transform: translateY(-8px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.card1 img {
	height: 270px;
	object-fit: cover;
	border-radius: 15px 15px 0 0;
}

/* Card body refinement */
.card1 .card-body {
	border: none;
	padding: 15px 20px;
	background-color: #fff;
}

.card1 .card-body .card-title {
	font-size: 16px;
	margin-bottom: 5px;
	color: #232323;
}

.card1 .card-body p {
	color: #555;
	font-size: 13px;
	line-height: 1.5;
}


/* Add to cart or button enhancement */
.btn,
.apply-btn {
	border-radius: 8px;
	font-weight: 600;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
}

.apply-btn {
	background: linear-gradient(135deg, #007bff, #00aaff);
	color: #fff !important;
	border: none;
}

.apply-btn:hover {
	background: linear-gradient(135deg, #00aaff, #007bff);
	transform: translateY(-2px);
}

/* Cart icon badge */
.cart-icon .badge {
	box-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
}

/* Header title enhancement */
.header .title {
	font-weight: 800;
	font-size: 40px;
	background: linear-gradient(90deg, #007bff, #00bcd4);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* Underline accent 
	.underline {
	background: linear-gradient(90deg, #00bcd4, #007bff);
	margin-top: 5px;
}*/

/* Footer or bottom fixed elements */
.btns {
	background: #fff;
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
}

/* Product details fancy touch */
.product-name {
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	color: #333;
}

.discount-tax-info {
	border-left: 5px solid transparent;
	background: linear-gradient(90deg, #f8f9fa, #ffffff);
}

/* Hover pop for discount/tax info */
.discount-tax-info:hover {
	transform: scale(1.02);
}

/* Contact icons hover */
.contact-info i {
	background-color: #1A2D4A;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-info i:hover {
	background-color: #051144;
	color: #fff;
	transform: rotate(10deg);
}

/* Smooth mobile card interaction */
@media (max-width: 440px) {
	.card1 {
		border-radius: 12px;
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	}
	
	.card1:hover {
		transform: scale(1.03);
	}
	
	.main-banner img {
		border-radius: 12px !important;
	}
}


/* ============================================
	✨ Modern Fancy Alert & Rating Enhancements ✨
	(Keeps all class names, logic, and behavior)
=============================================== */

/* App Alert (Base) */
.app-alert {
	position: fixed;
	top: 27% !important;
	right: 20px;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: left;
	width: 320px !important;
	min-height: 55px;
	font-size: 15px;
	font-weight: 500;
	border-radius: 12px;
	padding: 12px 20px;
	backdrop-filter: blur(14px);
	background: rgba(255, 255, 255, 0.2);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
	color: #fff;
	text-align: left;
	opacity: 0;
	transform: translateX(100px);
	animation: slideIn 0.5s forwards;
}

/* Entry animation */
@keyframes slideIn {
	0% {
		opacity: 0;
		transform: translateX(100px);
	}
	
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

/* Exit animation */
@keyframes fadeOut {
	0% {
		opacity: 1;
		transform: translateX(0);
	}
	
	100% {
		opacity: 0;
		transform: translateX(50px);
	}
}

/* Text inside alert */
#app-page-alert span {
	padding-left: 35px;
	line-height: 1.3em;
}

/* Close icon styling */
.btn-sm i {
	position: absolute;
	right: 18px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 20px;
	cursor: pointer;
	opacity: 0.8;
	transition: 0.3s;
}

.btn-sm i:hover {
	opacity: 1;
	transform: translateY(-50%) rotate(90deg);
}

/* SUCCESS Alert */
.app-alert.success {
	background: linear-gradient(90deg, #d8f8e4, #a4f0c6);
	border-left: 5px solid #1fa87d;
	color: #0a573f;
}

.app-alert.success::before {
	content: "✓";
	position: absolute;
	height: 28px;
	width: 28px;
	border-radius: 50%;
	background: #1fa87d;
	display: flex;
	align-items: center;
	justify-content: center;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 16px;
	color: #fff;
	font-weight: bold;
	box-shadow: 0 0 8px rgba(31, 168, 125, 0.5);
}

/* DANGER Alert */
.app-alert.danger {
	background: linear-gradient(90deg, #ffd6d6, #ffb1b1);
	border-left: 5px solid #e74c3c;
	color: #a22020;
}

.app-alert.danger::before {
	content: "✕";
	position: absolute;
	height: 28px;
	width: 28px;
	border-radius: 50%;
	background: #e74c3c;
	display: flex;
	align-items: center;
	justify-content: center;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 16px;
	color: #fff;
	font-weight: bold;
	box-shadow: 0 0 8px rgba(231, 76, 60, 0.4);
}

/* WARNING Alert */
.app-alert.warning {
	background: linear-gradient(90deg, #fff2c4, #ffe694);
	border-left: 5px solid #ffbf00;
	color: #856404;
}

.app-alert.warning::before {
	content: "!";
	position: absolute;
	height: 28px;
	width: 28px;
	border-radius: 50%;
	background: #ffbf00;
	display: flex;
	align-items: center;
	justify-content: center;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 18px;
	color: #fff;
	font-weight: bold;
	box-shadow: 0 0 8px rgba(255, 191, 0, 0.4);
}

/* Mobile Responsive */
@media (max-width: 450px) {
	.app-alert {
		top: 48% !important;
		left: 5%;
		width: 90% !important;
		font-size: 15px;
		padding: 16px;
		border-radius: 10px;
	}
}

/* Dismiss button */
.alert-dismissable .close,
.alert-dismissible .close {
	right: -6px;
	top: -6px;
	font-size: 22px;
	color: inherit;
	opacity: 0.8;
	transition: all 0.3s;
}

.alert-dismissible .close:hover {
	opacity: 1;
	transform: rotate(90deg);
}

/* ============================================================
	✨ Modern Rating Stars
============================================================ */

.rating {
	display: flex;
	gap: 6px;
	font-size: 2.2rem;
	align-items: center;
	justify-content: flex-start;
}

.rating input {
	display: none;
}

.rating label {
	color: #ddd;
	cursor: pointer;
	transition: all 0.3s ease;
	filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.2));
}

/* Hover and selected colors */
.rating label:hover,
.rating label:hover~label {
	color: #ffc107;
	transform: scale(1.1);
}

.rating input:checked~label {
	color: #ffb800;
	text-shadow: 0 0 8px rgba(255, 184, 0, 0.4);
}

/* Rating text */
.rating-text {
	font-size: 14px;
	font-weight: 600;
	color: #ff9800;
	margin-left: 10px;
}

/* Product name + rating layout */
.product-name-rating a {
	text-decoration: none !important;
}

.product-name-rating img {
	width: 60px;
	height: 80px;
	object-fit: cover;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 5px;
	transition: transform 0.3s ease;
}

.product-name-rating img:hover {
	transform: scale(1.05);
}

/* Carousel arrows polish */
.carousel-control-prev i,
.carousel-control-next i {
	font-size: 25px;
	color: #333;
	background: #fff;
	padding: 8px 12px;
	border-radius: 50%;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
}

.carousel-control-prev i:hover,
.carousel-control-next i:hover {
	background: #007bff;
	color: #fff;
	transform: scale(1.1);
}


/* ===========================
	🌟 Fancy Ecommerce Enhancements
=========================== */

/* Buttons & Links */
.view-msg a {
	background: linear-gradient(135deg, #00c6ff, #0072ff);
	color: #fff !important;
	font-weight: 600;
	border: none;
	box-shadow: 0 4px 15px rgba(0, 114, 255, 0.3);
	transition: all 0.3s ease-in-out;
}

.view-msg a:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(0, 114, 255, 0.5);
}

/* Ratings */
.star-rating {
	color: rgb(255, 143, 0);
	/* dark green shade */
	font-size: 25px;
}

.average-ratings {
	color: #145a32;
	/* deeper green tone for text */
	font-weight: 600;
}


/* Product Card */
.card1 {
	background: #fff;
	border: none;
	border-radius: 0px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.card1:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.card1 img {
	height: 350px;
	object-fit: cover;
	transition: all 0.4s ease;
}

.card1:hover img {
	transform: scale(1.05);
}

.card1 .card-body {
	border-top: 1px solid #eee;
	border-radius: 0 0 15px 15px;
}

/* Price Styling */
.price {
	font-size: 18px;
	color: #111 !important;
	font-weight: 700;
}

/* media query for mobile devices */
@media (max-width: 440px) {
	.card1 img {
		height: 150px;
		object-fit: cover;
		transition: all 0.4s ease;
	}
	
	.price {
		font-size: 12px !important;
	}
}

/* ============================= */
/* 🔹 Fancy Pagination Design */
/* ============================= */
.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 40px 0;
}

.pagination .nav-links {
	display: flex;
	gap: 10px;
	align-items: center;
}

.pagination .nav-links .page-numbers {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 38px;
	height: 38px;
	font-size: 15px;
	font-weight: 600;
	color: #444;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
	border: 1px solid #e0e0e0;
	transition: all 0.3s ease;
	cursor: pointer;
	text-decoration: none !important;
}

.pagination .nav-links .page-numbers:hover {
	background: var(--primary-color);
	color: #fff !important;
	transform: translateY(-3px);
	text-decoration: none !important;
}

.pagination .nav-links .page-numbers.current {
	background: var(--primary-color);
	color: #fff !important;
	border: none;
	transform: scale(1.1);
}

.pagination .nav-links .page-numbers.next,
.pagination .nav-links .page-numbers.prev {
	width: auto;
	padding: 0 14px;
	font-weight: 600;
	border-radius: 50px;
}

.pagination .nav-links .page-numbers.next:hover,
.pagination .nav-links .page-numbers.prev:hover {
	background: var(--primary-color);
	color: #fff !important;
	transform: translateY(-2px);
}

/* Mobile optimization */
@media (max-width: 768px) {
	.pagination .nav-links .page-numbers {
		width: 34px;
		height: 34px;
		font-size: 13px;
	}
	
	.pagination {
       margin: 15px 0;
    }
}


.loader-container {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) !important;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 50px;
}

.spinner-container {
	display: flex;
	align-items: center;
	gap: 10px;
}

.custom-spinner {
	width: 20px;
	height: 20px;
	border: 2px solid #ccc;
	border-top: 2px solid #0d6efd;
	border-radius: 50%;
	animation: spin 1s linear infinite !important;
}

.loading-text {
	margin: 0;
	font-size: 16px;
	color: #0d6efd;
}

/* Spinner inside button */
.spinner {
	width: 16px;
	height: 16px;
	border: 2px solid #f3f3f3;
	/* light gray border */
	border-top: 2px solid #0d6efd;
	/* blue color */
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
	display: inline-block;
	vertical-align: middle;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	
	100% {
		transform: rotate(360deg);
	}
}




/* Add to Cart Check Icon */
.cart-check-icon {
	display: inline-block;
	color: #00AD09 !important;
	animation: pop 0.4s ease;
}

@keyframes pop {
	0% {
		transform: scale(0.5);
		opacity: 0;
	}
	
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

/* Header Title */
.header .title {
	font-size: 40px;
	font-weight: 800;
	text-transform: uppercase;
	background: linear-gradient(90deg, #0072ff, #00c6ff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	letter-spacing: 1px;
}

/* Underline 
	.underline {
	background: linear-gradient(90deg, #0072ff, #00c6ff);
	height: 6px;
	width: 90px;
	border-radius: 10px;
	margin-top: 10px;
}*/

/* Track Order */
.card-track-order .card {
	background: #fff;
	border: none;
	border-radius: 15px;
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.tracking-item .tracking-content {
	background: #f1f9ff;
	border-left: 4px solid #00ba0d;
	font-weight: 600;
}

.tracking-item .tracking-icon {
	background: #00ba0d;
	box-shadow: 0 0 10px rgba(0, 186, 13, 0.4);
}

/* Smooth hover for all interactive elements */
a,
button {
	transition: all 0.3s ease-in-out !important;
}

/* ================================
	🌟 Fancy Enhancements (Tracking + Reviews)
================================ */

/* --- Enhanced Professional Order Tracking --- */
#tracking {
	padding: 20px 0;
}

.tracking-list {
	position: relative;
	margin-left: 20px;
	border-left: 3px solid #e5e5e5;
	padding-left: 25px;
}

.tracking-item-pending {
	position: relative;
	margin-bottom: 30px;
	padding-left: 15px;
}

.tracking-item-pending:last-child {
	margin-bottom: 0;
}

/* Icon Circle */
.tracking-item-pending .tracking-icon {
	position: absolute;
	left: -34px;
	top: 0;
	width: 22px;
	height: 22px;
	background-color: #e5e5e5;
	border-radius: 50%;
	border: 2px solid #fff;
	box-shadow: 0 0 0 3px #e5e5e5;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #888;
	font-size: 12px;
	transition: all 0.3s ease;
}

/* Active/Completed Step */
.tracking-item-pending.active .tracking-icon {
	background-color: #28a745;
	box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.3);
	color: #fff;
}

/* Step Box */
.tracking-item-pending .tracking-content {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 8px;
	padding: 12px 15px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.tracking-item-pending.active .tracking-content {
	background: #f5fff7;
	border-color: #c2f2cb;
}

/* Hover Effect */
.tracking-item-pending:hover .tracking-content {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* Text styles */
.tracking-item-pending .tracking-content span {
	display: block;
	color: #666;
	font-size: 13px;
	margin-top: 3px;
}

.tracking-item-pending .tracking-content strong {
	display: block;
	font-size: 15px;
	font-weight: 600;
	color: #333;
	margin-bottom: 4px;
}

/* Animation Pulse for active step */
.tracking-item-pending.active .tracking-icon::after {
	content: '';
	position: absolute;
	border: 2px solid rgba(40, 167, 69, 0.4);
	border-radius: 50%;
	width: 28px;
	height: 28px;
	left: -5px;
	top: -5px;
	animation: pulse 1.5s infinite;
}

@keyframes pulse {
	0% {
		transform: scale(0.95);
		opacity: 1;
	}
	
	70% {
		transform: scale(1.3);
		opacity: 0;
	}
	
	100% {
		transform: scale(0.95);
		opacity: 0;
	}
}

/* Pending style */
.tracking-item-pending {
	background: #fcfcfc;
	border-left: 4px solid #ddd;
	border-radius: 10px;
}

.tracking-item-pending .tracking-content {
	color: #999;
	background: #f4f4f4;
	border-left: 3px dashed #ccc;
}

/* --- Customer Review Carousel --- */
#carouselExampleSlidesOnly1 {
	background: linear-gradient(145deg, #fdfdfd, #f1f1f1);
	padding: 25px 0;
	border-radius: 20px;
}

#carouselExampleSlidesOnly1 .card {
	border: none;
	background: #fff;
	border-radius: 15px !important;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease-in-out;
}

#carouselExampleSlidesOnly1 .card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.customer-card .card-body {
	background: linear-gradient(135deg, #f8f9fa, #e8e7c8);
	border-radius: 0 0 15px 15px;
}

.customer-card img {
	border-radius: 15px 15px 0 0;
	filter: brightness(0.98);
	transition: all 0.3s ease-in-out;
}

.customer-card:hover img {
	filter: brightness(1.05);
	transform: scale(1.03);
}

/* Review Texts */
#carouselExampleSlidesOnly1 .card-title {
	color: #0072ff;
	font-size: 1.1rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

#carouselExampleSlidesOnly1 .card-text {
	color: #555;
	line-height: 1.5;
}

/* Carousel Controls */
#carouselExampleSlidesOnly1 .carousel-control-prev,
#carouselExampleSlidesOnly1 .carousel-control-next {
	background: rgba(0, 0, 0, 0.2);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

#carouselExampleSlidesOnly1 .carousel-control-prev:hover,
#carouselExampleSlidesOnly1 .carousel-control-next:hover {
	background: linear-gradient(135deg, #0072ff, #00c6ff);
	transform: scale(1.1);
}

/* Hover wave overlay effect */
#carouselExampleSlidesOnly1 .hover-effect::after {
	background: radial-gradient(circle, rgba(0, 0, 0, 0.1) 0%, transparent 80%);
}

/* Responsive */
@media (max-width: 768px) {
	#carouselExampleSlidesOnly1 .card-title {
		font-size: 1rem;
	}
	
	#carouselExampleSlidesOnly1 .card-text {
		font-size: 0.85rem;
	}
}

/* .test-qoute i{
    position: absolute;
	right: 30px;
	top:  5%;
	font-size: 40px;
	color: #3fca55;
	z-index: 1;
} */


/* ======== PRODUCT PAGE ======== */
.product-name-rating a {
	color: #222 !important;
	font-weight: 600;
	text-decoration: none;
	transition: color 0.3s ease, transform 0.3s ease;
}

.product-name-rating a:hover {
	color: #e91e63 !important;
	transform: scale(1.03);
}

/* Review Box */
.review-textarea {
	height: 120px;
	font-size: 14px;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 10px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.review-textarea:focus {
	outline: none;
	border-color: #e91e63;
	box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.15);
}

/* File Input */
.file-input {
	display: flex;
	height: 60px;
	border: 2px dashed rgba(0, 0, 0, 0.2);
	align-items: center;
	justify-content: center;
	background-color: #fafafa;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.file-input:hover {
	background-color: #fff5f8;
	border-color: #e91e63;
	box-shadow: 0 3px 10px rgba(233, 30, 99, 0.1);
}

/* Carousel Controls */
.slide .carousel-control-next:hover,
.slide .carousel-control-prev:hover,
.slide .carousel-control-next:focus,
.slide .carousel-control-prev:focus {
	background-color: rgba(255, 255, 255, 0.4) !important;
	backdrop-filter: blur(5px);
	border-radius: 50%;
}

/* Responsive Iframe */
iframe {
	height: 350px !important;
	border-radius: 10px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

@media screen and (max-width: 450px) {
	iframe {
		height: 200px !important;
	}
}

@media (max-width: 440px) {
	.product-name {
		margin-top: 40px !important;
	}
}

/* ======== ORDER TRACKING ======== */
.tracking-icon {
	height: 38px;
	width: 38px;
	background: linear-gradient(135deg, #f9f9f9, #fff);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease;
}

.tracking-icon i {
	color: rgba(0, 0, 0, 0.7);
	font-size: 14px;
}

.tracking-icon:hover {
	transform: scale(1.1);
	background: linear-gradient(135deg, #ffe6ef, #fff);
}

.col-12 {
	position: relative !important;
}

.status-pending {
	position: absolute;
}

/* ======== PAYMENT SUCCESS ======== */
.fancy-row {
	padding: 15px 0 5px 0 !important;
	display: flex;
	align-items: center;
	border-bottom: 1px dashed #eee;
}

.fancy-row:last-child {
	border-bottom: none;
}

.fancy-label {
	font-weight: 600;
	font-size: 16px;
	color: #333;
}

.fancy-value {
	font-weight: 400;
	font-size: 16px;
	color: #555;
}

.fancy-label::after {
	margin-left: 5px;
	color: #888;
	content: "";
}

.fancy-row h6 {
	margin-bottom: 0 !important;
}

/* Responsive */
@media (max-width: 768px) {
	
	.fancy-label,
	.fancy-value {
		font-size: 14px;
	}
}

/* CATEGORY CARD STYLING */
.category {
	position: relative;
	text-align: center;
	margin-bottom: 25px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	
}

.category a {
	text-decoration: none;
	color: inherit;
	display: block;
	position: relative;
	overflow: hidden;
	border-radius: 2%;
}

.category .center-container {
	position: relative;
	width: 100%;
	overflow: hidden;
	border-radius: 2%;
	border: 1px solid #dcc1a4;
}

.category .center-container span {
	display: block;
	padding: 12px 8px 6px;
	/* top | left-right | bottom */
	font-size: 15px;
	font-weight: 500;
	text-align: center;
	color: #222;
	letter-spacing: 0.4px;
}

/* MAIN CHANGE HERE */
.category .img-circle {
	width: 100%;
	height: 390px;
	/* increase here */
	aspect-ratio: unset;
	/* remove ratio lock */
	border-radius: 2%;
	overflow: hidden;
	position: relative;
	background: #f7f7f7;
}

.category .img-circle img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 1%;
	transition: transform 0.4s ease;
}


/* Optional hover zoom like reference */
.category:hover .img-circle img {
	transform: scale(1.08);
}


/* OVERLAY EFFECT */
.category a p {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0;
	padding: 10px 0;
	color: #fff;
	font-size: 1rem;
	font-weight: 600;
	text-transform: capitalize;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(2px);
	transition: background 0.3s ease;
}

/* HOVER EFFECT */

.category:hover a p {
	background: rgba(0, 0, 0, 0.65);
}

/* MOBILE ADJUSTMENTS */
@media screen and (max-width: 440px) {
	
	.check-btn a,
	.whatsup {
		bottom: 7%;
		z-index: 2;
	}
	
	.index-container {
		padding-right: 0 !important;
		padding-left: 0 !important;
	}
	
	.home-checkout {
		top: 40%;
		right: 0;
		padding: 0 15px;
		box-shadow: none;
		width: 100% !important;
	}
}


/* ======== CUSTOM FIELDS ======== */
.custom-field {
	font-size: 16px;
	color: #333;
	font-weight: 500;
}



/* ============================= */
/* 🔹 PAYMENT SUCCESS PAGE STYLE */
/* ============================= */
.payment-success h1 {
	color: #00AD09;
	font-size: 22px !important;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
}


/* ============================= */
/* 🔹 TESTIMONIAL SECTION */
/* ============================= */
.testimonial-dv .carousel-indicators {
	left: 0;
	top: auto;
	bottom: -40px;
}

.testimonial-dv .carousel-indicators button {
	background: #bbb;
	border-radius: 50%;
	width: 9px;
	height: 9px;
	border: none;
	transition: all 0.3s ease;
}

.testimonial-dv .carousel-indicators button:hover {
	background: #888;
	transform: scale(1.2);
}

.testimonial-dv .carousel-indicators .active {
	background: #444;
}

.testimonial-dv .mobile-frame {
	position: absolute;
	width: 100%;
	height: 100%;
	pointer-events: none;
	filter: brightness(0.7) saturate(0.3);
}

.testimonial-dv .image-container {
	position: relative;
	width: 100%;
	height: 100%;
}

.testimonial-dv .image-container img {
	width: 100%;
	border-radius: 10px;
	object-fit: cover;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* ============================= */
/* 🔹 BUTTON & INPUT CLEANUP */
/* ============================= */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

input[type=number] {
	-moz-appearance: textfield;
}

/* ============================= */
/* 🔹 ANNOUNCEMENT & NAVBAR */
/* ============================= */
.announcement-bar {
	padding: 10px;
	background: linear-gradient(135deg, #ff6f61, #ff9a76);
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
	text-align: center;
}

.announcement-bar a {
	color: #fff !important;
	text-decoration: none !important;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
	font-weight: 600;
	letter-spacing: 0.5px;
}

.nav-first-row {
	min-height: 10px !important;
	color: #2c2528 !important;
	padding: 4px 0 !important;
}

.nav-second-row {
	height: 60px;
	color: #2c2528 !important;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	background: #fff;
	border-radius: 0 0 10px 10px;
}

.search-menu .nav-link {
	color: #000 !important;
	display: inline;
	padding: 6px;
	top: 35px;
	transition: all 0.3s ease;
}

.search-menu .nav-link:hover {
	color: #e91e63 !important;
	transform: scale(1.1);
}

.search-menu .nav-link i {
	margin-top: 25%;
	font-size: 20px;
	color: #333;
}

/* ============================= */
/* 🔹 CATEGORY & PRODUCT DISPLAY */
/* ============================= */
.bg-orange-category {
	background: linear-gradient(135deg, #fffde7, #fcffd6);
	padding: 60px 0;
	border-radius: 10px;
}

.swiper-slide img {
	width: 100% !important;
	height: 170px;
	display: block;
	border-radius: 12px;
	object-fit: cover;
	box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
	transition: transform 0.4s ease;
}

.swiper-slide img:hover {
	transform: scale(1.05);
}

.swiper-slide a {
	color: #000 !important;
	text-decoration: none !important;
	font-weight: 500;
}

/* ============================= */
/* 🔹 PRODUCT CARDS */
/* ============================= */
.image-container {
	position: relative;
	display: inline-block;
	width: 100%;
}

.card-img-top,
.card-img-top-product {
	width: 100% !important;
	border-radius: 0px !important;
	object-fit: cover;
	transition: all 0.3s ease;
}

.card-img-top {
	height: 500px;
}

.card-img-top-product {
	height: 400px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card-img-top:hover,
.card-img-top-product:hover {
	transform: scale(1.03);
}

.overlay-text {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	background: rgba(0, 0, 0, 0.6);
	color: white;
	padding: 8px 15px;
	font-size: 18px;
	text-align: center;
	border-radius: 8px;
	backdrop-filter: blur(4px);
}

.overlay-text h3 {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 16px;
	font-weight: 600;
}

/* ============================= */
/* 🔹 DISCOUNT BADGE */
/* ============================= */
.discount-badge {
	position: absolute;
	top: 10px;
	right: 10px;
	background: linear-gradient(135deg, #006400, #228B22);
	color: #fff;
	font-weight: 700;
	font-size: 14px;
	padding: 5px 10px;
	border-radius: 30px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
	animation: floatBadge 3s ease-in-out infinite;
	z-index: 2;
}

/* Subtle floating animation for fancy look */
@keyframes floatBadge {
	
	0%,
	100% {
		transform: translateY(0);
	}
	
	50% {
		transform: translateY(-3px);
	}
}

/* Optional: make it smaller on mobile */
@media (max-width: 576px) {
	.discount-badge {
		font-size: 12px;
		padding: 4px 8px;
		top: 8px;
		right: 8px;
	}
}


/* ============================= */
/* 🔹 NEWSLETTER SECTION */
/* ============================= */
.bg-orange-newsletter {
	background: linear-gradient(135deg, #fffde7, #fcffd6);
	padding: 25px;
	border-radius: 20px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.bg-orange-newsletter .form-control,
.bg-orange-newsletter .input-group .btn {
	border-radius: 25px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.bg-orange-newsletter .btn-primary {
	border-top-right-radius: 25px !important;
	border-bottom-right-radius: 25px !important;
	background: linear-gradient(135deg, #ff6f61, #ff9a76);
	border: none;
	transition: all 0.3s ease;
}

.bg-orange-newsletter .btn-primary:hover {
	background: linear-gradient(135deg, #ff8a80, #ffb199);
	transform: scale(1.05);
}

/* ============================= */
/* 🔹 ABOUT IMAGE */
/* ============================= */
.about-img img {
	width: 100%;
	border-radius: 15px;
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
	height: 180px;
	object-fit: cover;
}

/* ============================= */
/* 🔹 WISHLIST BUTTON */
/* ============================= */
.wishlist-btn {
	position: absolute;
	top: -100px;
	right: 10px;
	background: #000 !important;
	border-radius: 50%;
	font-size: 14px;
	color: #fff !important;
	border: #fff solid 1px;
	padding: 6px;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
	transition: all 0.3s ease;
}

.wishlist-btn:hover {
	background: #e91e63 !important;
	transform: scale(1.1);
}

/* ============================= */
/* 🔹 MOBILE RESPONSIVE UPGRADES */
/* ============================= */
@media (max-width: 768px) {
	.nav-item.social-media {
		position: absolute;
		bottom: 0;
		width: 100%;
	}
	
	.nav-item.social-media .insta {
		width: 35px !important;
		height: 35px !important;
	}
	
	.nav-item.social-media .youtube {
		width: 50px !important;
		height: 36px !important;
	}
	
	.copy-right {
		font-size: 13px;
	}
	
	.home-products {
		margin: 20px 0;
		background: #fff;
		padding: 20px !important;
		border-radius: 20px;
		box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
	}
	
	.center-container .img-circle img {
		height: 170px !important;
	}
	
	.cat-name {
		font-size: 13px;
		text-align: center;
	}
	
	.testimonial-card {
		height: 220px !important;
	}
}




/* ============================= */
/* 🔹 HOME PRODUCT SECTION */
/* ============================= */
.bg-products {
	background: #f5f5f5;
	padding: 50px 0;
}

.home-products {
	margin: 20px 0;
	background: #fff;
	padding: 50px;
	border-radius: 25px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-products:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* ============================= */
/* 🔹 PRODUCT GALLERY */
/* ============================= */
.product-gallery {
	position: relative;
	max-width: 100%;
	margin: 0 auto;
}

.product-gallery__media-list-wrapper {
	width: 100%;
}

.product-gallery__media-list {
	display: flex;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	width: 100%;
	height: 470px;
	padding: 0;
	scrollbar-width: none;
}

.product-gallery__media-list::-webkit-scrollbar {
	display: none;
}

.product-gallery__media {
	scroll-snap-align: start;
	flex: 0 0 100%;
	width: 100%;
	padding: 0;
	margin: 0;
	height: auto;
}

.product-gallery__media img {
	display: block;
	width: 100%;
	max-height: 550px;
	object-fit: cover;
	border-radius: 15px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
	transition: transform 0.3s ease;
}

.product-gallery__media img:hover {
	transform: scale(1.03);
}

.product-gallery__thumbnail-list-wrapper {
	overflow: hidden;
}

.product-gallery__thumbnail-list {
	display: flex;
	gap: 10px;
	overflow-x: auto;
	scrollbar-width: none;
	padding-bottom: 10px;
}

.product-gallery__thumbnail-list::-webkit-scrollbar {
	display: none;
}

.product-gallery__thumbnail {
	cursor: pointer;
	border: 2px solid transparent;
	border-radius: 10px;
	flex: 0 0 auto;
	transition: all 0.3s ease;
	background: none;
}

.product-gallery__thumbnail:hover {
	border-color: #00bcd4;
	transform: scale(1.05);
	padding: 0 !important;
}

.product-gallery__thumbnail[aria-current="true"] {
	border-color: #00bcd4;
	padding: 0 !important;
}

.product-gallery__thumbnail img {
	display: block;
	width: 100px;
	height: 100px;
	object-fit: cover;
	border-radius: 10px;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

/* ============================= */
/* 🔹 GALLERY CONTROLS */
/* ============================= */
.circle-button {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid #ddd;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
	transition: all 0.3s ease;
}

.circle-button:hover {
	background: #f8f8f8;
	transform: scale(1.1);
}

.gallery-controls {
	position: relative;
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	padding-top: 10px;
}

.gallery-progress-container {
	width: 100%;
}

.gallery-progress-bar {
	height: 4px;
	background-color: #e0e0e0;
	border-radius: 2px;
	overflow: hidden;
	position: relative;
}

.gallery-progress-fill {
	height: 100%;
	background: linear-gradient(90deg, #00bcd4, #0097a7);
	border-radius: 2px;
	transition: width 0.3s ease;
}

.gallery-nav-buttons {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-left: 10px;
}

.gallery-nav-button {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid #ddd;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.gallery-nav-button:hover {
	background: #e0f7fa;
	transform: scale(1.1);
}

.gallery-nav-button svg {
	width: 20px;
	height: 20px;
	color: #0097a7;
}

/* ============================= */
/* 🔹 TESTIMONIALS */
/* ============================= */
.testimonials {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	align-items: stretch;
	margin-top: 20px;
}

.testimonial-card {
	flex: 1 1 calc(100% - 30px);
	background: #fff;
	padding: 20px;
	border-radius: 15px;
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.profile-icon {
	width: 45px !important;
	height: 45px !important;
	border-radius: 50%;
	margin-right: 10px;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.testimonial-header {
	display: flex;
	align-items: center;
	font-weight: 600;
	font-size: 16px;
}

.verified-badge {
	background-color: #00ad09;
	color: white;
	font-size: 12px;
	padding: 4px 8px;
	border-radius: 6px;
	margin-left: 10px;
	box-shadow: 0 2px 5px rgba(0, 173, 9, 0.4);
}

.stars {
	color: #ffc107;
	font-size: 15px;
	margin: 5px 0;
}

.review-text {
	font-size: 14px;
	color: #555;
	line-height: 1.6;
}

/* ============================= */
/* 🔹 RESPONSIVE OPTIMIZATION */
/* ============================= */
@media (max-width: 768px) {
	.product-gallery__media img {
		max-height: 400px;
	}
	
	.product-gallery__thumbnail {
		margin-top: 15px;
	}
	
	.product-gallery__thumbnail img {
		width: 90px;
		height: 90px;
	}
	
	.gallery-controls {
		padding: 0 10px;
	}
	
	.gallery-nav-button {
		width: 34px;
		height: 34px;
	}
	
	.product-gallery__media-list {
		height: 350px;
		border-radius: 10px;
	}
	
	.testimonial-card {
		height: auto !important;
		padding: 18px;
	}
	
	.review-text {
		font-size: 13px;
	}
}

/* ============================= */
/* 🔹 LOGIN PAGE */
/* ============================= */

.login-page {
	display: flex;
	justify-content: center;
}

.login {
	/** background: #fff; **/
	border-radius: 10px;
	max-width: 500px;
	width: 100%;
}

.login-page .btn-danger {
	border-top-left-radius: 0 !important;
	border-bottom-left-radius: 0 !important;
}


/* ============================= */
/* 🔹 PRODUCT WIDGET */
/* ============================= */

.sidebar-widget {
	background: #ffffff;
	border-radius: 12px;
	border: none !important;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	padding: 20px;
	transition: transform 0.3s, box-shadow 0.3s;
}

.sidebar-widget:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.sidebar-widget img {
	width: 50px;
	height: 50px;
	object-fit: cover;
	border-radius: 10px;
	margin-bottom: 15px;
	transition: transform 0.3s;
}

.sidebar-widget img:hover {
	transform: scale(1.05);
}

.sidebar-widget h3 {
	font-size: 1.25rem;
	margin-bottom: 15px;
	color: #333;
	border-bottom: 2px solid #f0f0f0;
	padding-bottom: 5px;
}

.sidebar-widget p {
	font-size: 0.95rem;
	color: #666;
	line-height: 1.5;
}

@media(max-width:768px) {
	.sidebar-widget {
		margin-top: 20px;
		padding: 15px;
	}
	
	.sidebar-widget img {
		height: 50px;
		width: 50px;
	}
	
}

/* ============================= */
/* 🔹 PRODUCT VARIANT */
/* ============================= */

.variant-section {
	background: #ebeeff;
	border-radius: 1rem;
}

.variant-card {
	transition: all 0.3s ease;
}

.variant-card:hover {
	transform: translateY(-2px);
}

.variant-pill {
	background: #fff !important;
	color: #333;
	border-color: #dee2e6;
	font-weight: 500;
	transition: all 0.25s;
	cursor: pointer;
}

.variant-pill a {
	color: #000 !important;
}

.variant-pill:hover {
	background: #051144 !important;
	border-color: #0d6efd;
	color: #fff !important;
}

.variant-pill a:hover {
	color: #fff !important;
}


@media(max-width:768px) {
	.variant-section {
		padding: 5px !important;
	}
}


/* ============================= */
/* 🔹 Whatsapp Icon */
/* ============================= */

.whatsapp-float {
	position: fixed;
	bottom: 10px;
	right: 10px;
	background-color: #25D366;
	color: white;
	width: 50px;
	height: 50px;
	font-size: 22px;
	border-radius: 50%;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
	z-index: 999;
	transition: background 0.3s ease;
}


.whatsapp-float i {
	font-size: 30px !important;   /* increase icon size */
	line-height: 1;
	background-color: #25D366;
    color: white;
    border-radius: 50%;
}


.whatsapp-float:hover {
	background-color: #1ebd5a;
	color: #fff !important;
}



/* ----------------------------
	Mobile Menu Enhancements
----------------------------- */

@media (max-width: 576px) {
	
	/* Navbar */
	.navbar {
		background-color: #fff;
		border-bottom: 1px solid #e0e0e0;
		box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
		padding: 6px 10px !important;
	}
	
	.navbar-brand img {
		/** max-height: 42px; **/
		object-fit: contain;
	}
	
	.navbar-toggler {
		border: none;
		padding: 5px 8px;
	}
	
	.navbar-toggler:focus {
		box-shadow: none;
	}
	
	.navbar-toggler-icon {
		filter: brightness(0);
	}
	
	/* Cart + Icons */
	.nav-link i {
		font-size: 1.2rem;
	}
	
	.nav-link {
		color: #222 !important;
		padding: 8px 0;
	}
	
	.nav-link:hover {
		color: #000 !important;
	}
	
	.badge {
		font-size: 0.65rem;
		min-width: 15px;
		min-height: 15px;
		top: auto !important;
	}
	
	/* -------------------
		Offcanvas Menu
	------------------- */
	.offcanvas {
		background: #fff;
		width: 85%;
		max-width: 320px;
		border-right: none;
		box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
	}
	
	.offcanvas-header {
		background: #f8f8f8;
		border-bottom: 1px solid #e0e0e0;
	}
	
	.offcanvas-title {
		font-size: 1rem;
		font-weight: 600;
		color: #333;
	}
	
	.btn-close {
		filter: brightness(0.3);
	}
	
	/* Menu Items */
	.offcanvas-body {
		padding: 0;
	}
	
	.navbar-nav .nav-item {
		padding: 10px 15px;
	}
	
	.navbar-nav .nav-item.border-bottom {
		border-color: #eee !important;
	}
	
	.navbar-nav .nav-link {
		font-size: 0.95rem;
		color: #333 !important;
		font-weight: 500;
		display: block;
		padding: 6px 0;
		position: relative;
	}
	
	.navbar-nav .nav-link i {
		margin-right: 6px;
		font-size: 1rem;
		color: #666;
	}
	
	.navbar-nav .nav-link:hover {
		background-color: #f7f7f7;
		border-radius: 6px;
	}
	
	/* Hello User */
	.name-nav {
		font-weight: 600;
		color: #222 !important;
		background: #f5f5f5;
		border-radius: 6px;
	}
	
	/* Social Icons Row */
	.offcanvas-body .row {
		padding: 8px 10px;
		justify-content: flex-start;
		align-items: center;
		margin-left: 10px !important;
	}
	
	.offcanvas-body .row .col-1 {
		width: auto;
		margin-right: 8px;
	}
	
	.offcanvas-body .row .nav-link {
		padding: 4px;
		font-size: 1.1rem;
		color: #333 !important;
	}
	
	.offcanvas-body .row .nav-link:hover {
		color: #000 !important;
		transform: scale(1.1);
	}
	
	/* WhatsApp Floating Button */
	.whatsapp-float {
		bottom: 15px;
		left: 15px;
		padding: 10px 18px;
		font-size: 15px;
		border-radius: 25px;
		box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
	}
	
	.whatsapp-float i {
		font-size: 18px;
	}
}

.fixed-top {
	height: 75px;
}

.fixed-top a {
	font-size: 12px;
}



/* Header Icon Base */
.header-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	font-size: 14px;
	text-decoration: none;
	position: relative;
	transition: all 0.25s ease;
	background: transparent;
}

/* ALL icons inside header */
.header-icon i {
	width: 38px;
	height: 38px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: 18px;
	color: #fff !important;
	transition: all 0.25s ease;
}

/* Hover effect – SAME for login, track, cart */
.header-icon:hover i {
	background-color: #fff;
	color: #051144 !important;
	transform: scale(1.1);
}

/* Cart badge stays clean */
.cart-icon .badge {
	position: absolute;
	top: -4px;
	right: -4px;
	min-width: 18px;
	height: 18px;
	font-size: 11px;
	line-height: 18px;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	z-index: 5;
}

/* Search input */
.search-btn {
	border-top-right-radius: 999px !important;
	border-bottom-right-radius: 999px !important;
	background: #dfa64c;
	border: none;
	transition: all 0.25s ease;
}

.search-btn i {
	color: #fff;
}



/* Button hover */
.search-btn:hover {
	background: #7a1d1d;
}

/* ===============================
	MOBILE HEADER – MATCH DESKTOP
=============================== */
@media (max-width: 767px) {
	
	/* Apply desktop icon style to mobile icons */
	.col-3 .nav-link {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 38px;
		height: 38px;
		border-radius: 50%;
		position: relative;
		transition: all 0.25s ease;
		background: transparent;
		padding: 0;
	}
	
	.col-3 .nav-link i {
		width: 38px;
		height: 38px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		border-radius: 50%;
		font-size: 18px;
		transition: all 0.25s ease;
	}
	
	/* Hover / tap effect same as desktop */
	.col-3 .nav-link:hover i,
	.col-3 .nav-link:active i {
		background-color: #fff;
		color: #051144 !important;
		transform: scale(1.1);
	}
	
	/* Cart badge – same as desktop */
	.col-3 .cart-icon .badge {
		position: absolute;
		top: -4px;
		right: -4px;
		min-width: 18px;
		height: 18px;
		font-size: 11px;
		line-height: 18px;
		padding: 0;
		display: flex;
		align-items: center;
		justify-content: center;
		font-weight: 600;
		z-index: 5;
	}
	
	/* Spacing like desktop */
	.col-3 {
		gap: 1.5rem !important;
		align-items: center;
	}
	
	/* ===============================
		CART ICON – WHITE BG, BLACK ICON
	=============================== */
	
	/* Default cart appearance */
	.cart-icon .fa-shopping-cart {
		background-color: #fff !important;
		color: #000 !important;
	}
	
	/* Optional hover – keep it clean & subtle */
	.cart-icon:hover i {
		background-color: #f5f5f5 !important;
		color: #000 !important;
		transform: scale(1.1);
	}
	
	/* Force navbar toggler icon to white */
	.navbar-toggler-icon {
		filter: invert(1) brightness(2) contrast(2);
	}
	
	
	.category .img-circle {
		width: 100%;
		height: 150px;
		/* increase here */
		aspect-ratio: unset;
		/* remove ratio lock */
		border-radius: 2%;
		overflow: hidden;
		position: relative;
		background: #f7f7f7;
	}
	
	.fixed-top {
		height: 60px !important;
	}
	
	.fixed-top a {
		font-size: 15px !important;
	}
	
	.whatsapp-float {
		left: auto !important;
		/*remove left */
		right: 15px !important;
		/* move to right */
		bottom: 15px;
	}
	
	.btn-primary,
	.btn-success {
		font-size: 12px !important;
	}
	
	/* Mobile logo: remove underline and focus outline */
	
	.navbar-brand .img:hover {
		text-decoration: none !important;
		
	}
	
	.main-banner img {
		height: 150px !important;
		margin-top: 0px !important;
	}
	
	.header h1 {
		font-size: 25px !important;
	}
	
	
}


/* Remove default Bootstrap arrow */
.accordion-button::after {
	background-image: none !important;
	content: "+";
	font-size: 22px;
	font-weight: 600;
	transform: none !important;
}

/* Change to minus when open */
.accordion-button:not(.collapsed)::after {
	content: "−";
}

/* Optional: align better */
.accordion-button {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.exclusive-bg {
	background: #ebeeff;
}

.exclusive-box p {
	font-size: 14px;
	color: #777;
}

.icon-circle {
	width: 70px;
	height: 70px;
	border: 1.5px solid #051144;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
}

.icon-circle i {
	font-size: 26px;
	color: #051144;
}


.price-row {
	display: flex;
	align-items: center;
	gap: 8px;
}

.old-price {
	font-size: 13px;
	color: #000;
	text-decoration: line-through;
}

.new-price {
	font-size: 16px;
	font-weight: 600;
	color: #0a9d58;
}

.save-badge {
	margin-top: 4px;
	display: inline-block;
	padding: 1px 10px;
	background: #0a9d58;
	color: #fff;
	font-size: 12px;
	border-radius: 5px;
}


/* ============================= */
/* 🔹 RELATED PRODUCT  */
/* ============================= */
.hover-card {
	transition: all 0.3s ease;
	margin: 10px;
}

.hover-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.swiper-slide a:hover {
	color: #fff !important;
}

.swiper-button-prev,
.swiper-button-next {
	color: #333;
	background: #fff;
	border-radius: 50%;
	width: 38px;
	height: 38px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
	transition: all 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
	background: #1A2D4A;
	color: #fff;
}

.swiper-button-prev::after,
.swiper-button-next::after {
	font-size: 16px;
	font-weight: bold;
}

.search-bar-mobile {
	position: sticky;
	top: 45px;
	z-index: 3;
	background-color: #fff;
}

.watermark-bg {
	position: fixed;
	inset: 0;
	z-index: -1;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
}

.watermark-bg img {
	width: 700px;
	max-width: 70%;
	opacity: 0.07;
}

@media screen and (max-width:500px) {
	.watermark-bg img {
		width: 700px;
		max-width: 100%;
		opacity: 0.07;
	}
}

.your-cart {
	width: 65%;
}

.your-cart .add-more a {
	text-decoration: none;
	color: #198754;
	font-weight: bold;
	transition: all .5s ease;
}

.your-cart .add-more a:hover,
.your-cart .add-more a:hover .plus-outline {
	border-color: #051144;
	color: #051144;
	transition: all .5s ease;
}

.your-cart .add-more a .plus-outline {
	width: 18px;
	height: 18px;
	padding: 5px;
	border: 2.3px solid #198754;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
}


@media screen and (max-width:500px) {
	.your-cart {
		width: 100%;
	}
	
	.your-cart .add-more a .plus-outline {
		width: 18px;
		height: 18px;
		padding: 7px;
		font-size: 11px;
	}
}

.image-wrapper {
	position: relative;
	width: 100%;
}

.out-of-stock-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.55);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}

.out-of-stock-overlay span {
	background: #dc3545;
	color: #fff;
	padding: 6px 14px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1px;
	border-radius: 4px;
}


.out-of-stock-overlay-text span {
	background: #dc3545;
	color: #fff;
	padding: 6px 14px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1px;
	border-radius: 4px;
}

.badge-online {
    background: #1c7ed6;
    color: #fff;
}
.badge-office {
    background: #6c757d;
    color: #fff;
}




/* Buttons */
.btn-primary {
    background: #1A2D4A !important;
    border-color: #1A2D4A !important;
    color: #ffffff !important;
}

.btn-primary:hover {
    background: #dfa64c !important;
    border-color: #dfa64c !important;
    color: #ffffff !important;
}

.blog-item {
    background-color: #ffffff;
    box-shadow: 0 6px 2px #ccc;
    height: 600px;
}

.blog-item a img {
    border: none !important;
    border-top-left-radius: 10px !important;
    border-top-right-radius: 10px !important;
    height: auto;
}

.cat-badge {
    color: #1A2D4A;
}

/* ===============================
   BLOG SIDEBAR
==================================*/

.widget{
    position: sticky;
    top:30px;
}

/* Card Design */
.category-card,
.latest-card{
    background:#ffffff !important;
    border:1px solid #f1f1f1;
    border-radius:12px;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
    transition:.3s;
}

.category-card:hover,
.latest-card:hover{
    box-shadow:0 12px 35px rgba(0,0,0,.08);
}

/* Heading */
.category-card h5,
.latest-card h5{
    font-size:22px;
    font-weight:700;
    color:#222;
    margin-bottom:25px;
    position:relative;
    padding-bottom:12px;
}

.category-card h5::after,
.latest-card h5::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:55px;
    height:3px;
    background:#1A2D4A;
    border-radius:10px;
}

/* ===============================
   CATEGORY
==================================*/

.category-list{
    margin:0;
    padding:0;
}

.category-list li{
    list-style:none;
    margin-bottom:12px;
}

.category-item{
    display:flex;
    align-items:center;
    gap:15px;
    text-decoration:none;
    padding:12px 15px;
    border-radius:10px;
    transition:.3s;
    border:1px solid #eeeeee;
    background:#fff;
}

.category-item:hover{
    background:#fff8f2;
    border-color:#1A2D4A;
    transform:translateX(5px);
    text-decoration:none;
}

/* Circle Badge */

.category-badge{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#1A2D4A;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:18px;
    transition:.3s;
}

.category-item:hover .category-badge{
    background:#dfa64c;
    transform:rotate(8deg);
}

.category-name{
    color:#444;
    font-size:15px;
    font-weight:600;
    transition:.3s;
}

.category-item:hover .category-name{
    color:#1A2D4A;
}

/* ===============================
   LATEST POSTS
==================================*/

.latest-card .latest-item{
    display:flex;
    align-items:flex-start;
    gap:15px;
    margin-bottom:20px;
    padding-bottom:20px;
    border-bottom:1px solid #efefef;
}

.latest-item:last-child{
    margin-bottom:0;
    padding-bottom:0;
    border:none;
}

.latest-card .latest-img{
    width:90px;
    min-width:90px;
    height:80px;
    border-radius:10px;
    overflow:hidden;
}

.latest-card .latest-img img{
    width:100% !important;
    height:100% !important;
    object-fit:cover;
    transition:.4s;
}

.latest-card .latest-item:hover .latest-img img{
    transform:scale(1.08);
}

.latest-card .latest-content{
    flex:1;
}

.latest-card .latest-title{
    display:block;
    color:#222;
    font-size:15px;
    font-weight:600;
    line-height:1.5;
    text-decoration:none;
    transition:.3s;
    margin-bottom:10px;
}

.latest-card .latest-title:hover{
    color:#1A2D4A;
    text-decoration:none;
}

.latest-card .latest-date{
    color:#777;
    font-size:13px;
}

/** .latest-card .latest-date i{
    color:#1A2D4A;
    margin-right:6px;
} **/

/* ===============================
   RESPONSIVE
==================================*/

@media(max-width:991px){

    .widget{
        position:relative;
        top:0;
        margin-top:40px;
    }

    .latest-img{
        width:75px;
        min-width:75px;
        height:70px;
    }

}

@media(max-width:576px){

    .category-item{
        padding:10px;
    }

    .category-badge{
        width:38px;
        height:38px;
        font-size:16px;
    }

    .latest-item{
        gap:12px;
    }

    .latest-title{
        font-size:14px;
    }

}

/* ==========================
   BLOG CONTENT
========================== */

.blog h2 {
    font-weight: 700;
}

.blog-content ~ p,
.other-page p{
    text-align: justify;
    color: #555;
}

/* Headings */
.blog-content ~ h1,
.blog-content ~ h2,
.blog-content ~ h3,
.blog-content ~ h4,
.blog-content ~ h5,
.blog-content ~ h6,
.other-page h1,
.other-page h2,
.other-page h3,
.other-page h4,
.other-page h5,
.other-page h6{
    font-weight: 700;
    line-height: 1.4;
}

/* Bold */
.blog-content ~ b,
.blog-content ~ strong,
.other-page b,
.other-page strong{
    color: #000000b5 !important;
    font-weight: 700;
}

/* Italic */
.blog-content ~ i,
.blog-content ~ em,
.other-page i,
.other-page em{
    color: #666;
    font-style: italic;
}

/* Lists */
.blog-content ~ ul,
.blog-content ~ ol,
.other-page ul,
.other-page ol{
    padding-left: 30px;
    color: #555;
}

.blog-content ~ ul li::marker,
.blog-content ~ ol li::marker,
.other-page ul li::marker,
.other-page ol li::marker{
    color: #1A2D4A;
}

/* Links */
.blog-content ~ p a,
.other-page a{
    color: #1A2D4A;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

.blog-content ~ p a:hover,
.other-page a:hover{
    color: #dfa64c;
    text-decoration: underline;
}

/* Images */
.blog img {
    max-width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
}

/* Tables */
.blog-content ~ table,
.other-page table{
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: #fff8dc;
}

.blog-content ~ table td,
.other-page table td{
    padding: 12px;
    border-top: 1px solid #d2b48c;
}

.blog-content ~ table tr:nth-child(even),
.other-page table tr:nth-child(even){
    background: #fff5cc;
}

/* Horizontal Line */
.blog-content ~ hr,
.other-page hr{
    border: none;
    border-top: 1px solid #ddd;
    margin: 30px 0;
}

.blog-centent a {
    font-size: 18px;
}

.blog-single-header h1 {
    font-size: 28px;
}

/* Responsive */
@media (max-width:768px){

    .blog-content,
    .other-page{
        font-size: 15px;
        line-height: 1.8;
    }

    .blog-content ~ h1,
    .other-page h1{
        font-size: 30px;
    }

    .blog-content ~ h2,
    .other-page h2{
        font-size: 26px;
    }

    .blog-content ~ h3,
    .other-page h3{
        font-size: 22px;
    }
    
    .blog-content ~ table,
    .other-page table{
        display: block;
        width: 100%;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .blog-content ~ table th,
    .blog-content ~ table td,
    .other-page table th,
    .other-page table td{
        min-width: 140px;
    }
    
    .blog img {
        height: auto;
    }
}

/* Index page new sections */

.welcome-section {
    padding: 60px 0 20px;
    background: transparent;
}

.welcome-section .section-tag {
    display: inline-block;
    color: #dfa64c;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 15px;
}

.welcome-section h2 {
    color: #1A2D4A;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
}

.welcome-section h2 span {
    color: #dfa64c;
}

.welcome-section .welcome-content {
    /* max-width: 900px; */
    margin: 0 auto 60px;
}

.welcome-section .welcome-content p {
    text-align: justify;
    line-height: 1.9;
    color: #666;
    margin-bottom: 20px;
}

.welcome-section .welcome-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.welcome-section .feature-box {
    background: #fff;
    padding: 35px 25px;
    text-align: center;
    border: 1px solid #edf0f5;
    transition: .3s;
}

.welcome-section .feature-box:hover {
    transform: translateY(-8px);
    border-color: #dfa64c;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.welcome-section .feature-box i {
    font-size: 34px;
    color: #dfa64c;
    margin-bottom: 18px;
}

.welcome-section .feature-box h5 {
    color: #1A2D4A;
    margin-bottom: 10px;
    font-weight: 700;
}

.welcome-section .feature-box p {
    color: #666;
    margin: 0;
}

@media(max-width:991px) {

    .welcome-section .welcome-features {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:576px) {

    .welcome-section .welcome-features {
        grid-template-columns: 1fr;
    }

    .welcome-section h2 {
        font-size: 16px;
    }
    
    .welcome-section .section-tag {
        display: inline-block;
        color: #dfa64c;
        letter-spacing: 2px;
        font-weight: 800;
        margin-bottom: 7px;
        font-size: 13px;
    }
    
    .welcome-section {
        padding: 20px 0;
    }
    
    .welcome-section .welcome-content {
        max-width: 900px;
        margin: 0 auto 25px;
    }
}

.spiritual-banner {
    background: url('../images/Temple.jpg') center center/cover;
    position: relative;
    padding: 140px 0;
    margin-bottom: 50px;
}

.spiritual-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(26, 45, 74, .82);
}

.spiritual-banner .overlay {
    position: relative;
    z-index: 2;
    text-align: center;
}

.spiritual-banner h2 {
    color: #fff;
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 20px;
}

.spiritual-banner p {
    color: #eee;
    max-width: 750px;
    margin: auto;
    line-height: 1.9;
    margin-bottom: 35px;
}

@media screen and (max-width: 468px) {
    .spiritual-banner h2 {
        font-size: 20px;
    }
    
    .spiritual-banner {
        padding: 45px 0;
    }
}

.offer-banner {
    padding: 30px 0 10px;
    overflow: hidden;
}

.offer-banner img {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    display: block;
    animation: offerZoom 4s ease-in-out infinite;
    transition: .3s;
}

.offer-banner:hover img {
    animation-play-state: paused;
    transform: scale(1.02);
}

@keyframes offerZoom {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.04);
    }

    100% {
        transform: scale(1);
    }
}

@media(max-width:768px) {
    .offer-banner {
        padding: 7px 14px;
    }

    .offer-banner img {
        border-radius: 8px;
        height: auto;
    }
}


/*******************************/
/********* Footer CSS **********/
/*******************************/

.custom-footer {
    background: #f8f4ee;
    border-top: 1px solid var(--primary-color);
    padding: 0px 0 0;
}

.custom-footer .footer-about {
    padding-right: 20px;
}

.custom-footer .footer-logo img {
    /* max-width: 260px; */
    width: 100%;
    height: auto;
    margin-bottom: 25px;
}

.custom-footer .footer-desc {
    color: #28466b;
    font-size: 16px;
    line-height: 30px;
}

.custom-footer .footer-link h2,
.custom-footer .footer-contact h2 {
    color: #153b70;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
}

.custom-footer .footer-link a {
    display: block;
    color: #2b476d;
    text-decoration: none;
    padding: 5px 0;
    transition: .3s;
    font-size: 16px;
}

.custom-footer .footer-link a:hover {
    color: #d4a043;
    padding-left: 8px;
}

.custom-footer .footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: #28466b;
    font-size: 16px;
}

.custom-footer .footer-contact i {
    width: 22px;
    color: #28466b;
    margin-top: 4px;
}

.custom-footer .footer-contact a {
    color: #28466b;
    text-decoration: none;
}

.custom-footer .footer-social {
    margin-top: 25px;
}

.custom-footer .footer-social a {
    display: inline-flex;
    width: 42px;
    height: 42px;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    color: var(--primary-color);
    font-size: 24px;
    transition: .3s;
}

.custom-footer .footer-social a:hover {
    color: #153b70;
    transform: translateY(-4px);
}

.custom-footer .copyright {
    background: var(--primary-color);
    padding: 18px 0;
    margin-top: 50px;
}

.custom-footer .copyright p {
    margin: 0;
    color: #000;
    font-size: 15px;
}

.custom-footer .managed-logo {
    height: 34px;
    margin-left: 8px;
    vertical-align: middle;
}

@media(max-width:991px) {

    .custom-footer {
        padding-top: 20px;
    }

    .custom-footer .footer-about,
    .custom-footer .footer-link,
    .custom-footer .footer-contact {
        text-align: left;
        margin-bottom: 30px;
    }

    .custom-footer .footer-about {
        padding-right: 0;
    }

    .custom-footer .footer-contact p {
        justify-content: left;
    }

    .custom-footer .footer-social {
        text-align: left;
    }

    .custom-footer .copyright {
        text-align: center;
        margin-top: 0;
    }

    .custom-footer .copyright .container {
        padding: 0;
    }

    .custom-footer .copyright .text-lg-end {
        margin-top: 12px;
    }

}


/* New index page */

.news-home {
    padding: 30px 0 0;
    background: #fff;
    border-bottom: 1px dashed var(--primary-color);
}

.news-home .news-box,
.sidebar-2-widget .news-box {
    background: #fff;
    border-bottom: 2px solid #868686;
}

.news-home .news-box-right,
.sidebar-2-widget .news-box-right {
    border-bottom: none;
}

.news-home .section-heading,
.sidebar-2-widget .section-heading {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color);
    border-bottom: 2px solid #868686;
    padding-bottom: 8px;
}

.news-home .section-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.news-home .section-title-row h2,
.sidebar-2-widget .section-title-row h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--secondary-color);
}

.news-home .premium-icon,
.sidebar-2-widget .premium-icon {
    width:34px;
    height:34px;
    background:var(--primary-color);
    border-radius:50%;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:18px;
    margin-left:8px;
    vertical-align:middle;
}

.news-home .view-all {
    background: var(--primary-color);
    padding: 8px 18px;
    border-radius: 4px;
    color: #000;
    font-weight: 600;
    text-decoration: none;
}

.news-home .main-news-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 10px;
    transition: .3s;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.24);
}

.news-home .main-news-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, .12);
}

.news-home .main-news-card img {
    height: 170px;
    width: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.news-home .main-news-card h4 {
    font-size: 24px;
    margin-top: 5px;
    color: #222;
    font-weight: 500;
}

.news-home .category {
    color: var(--secondary-color);
    font-weight: 600;
}

.news-home .date {
    font-size: 14px;
    color: #000000;
    display: block;
    margin: 6px 0;
    font-weight: 500;
}

.news-home .premium-post,
.sidebar-2-widget  .premium-post {
    padding: 15px 0;
    border-bottom: 1px solid #ececec;
}

.news-home .premium-post h6,
.sidebar-2-widget .premium-post h6 {
    font-size: 19px;
    color: #222;
    line-height: 1.4;
    font-weight: 700;
}

.news-home .quiz-post {
    padding: 15px 0;
}

.news-home .q-icon {
    width:34px;
    height:34px;
    background:var(--secondary-color);
    border-radius:50%;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:18px;
    margin-left:8px;
    vertical-align:middle;
}

.news-home .quiz-post a {
    color: #222;
    font-size: 20px;
    text-decoration: none;
    line-height: 1;
    font-weight: 500;
}

.news-home .quiz-date {
    font-size: 14px;
    color: #000000;
    display: block;
    margin-bottom: 5px;
    font-weight: 700;
}

.news-home .quiz-category {
    color: var(--secondary-color) !important;
    /* Change to your theme color */
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 16px !important;
}

.news-home .quiz-category:hover {
    text-decoration: underline;
}

.news-home .premium-categories,
.sidebar-2-widget .premium-categories {
    margin-top: 20px;
}

.news-home .category-service-item,
.news-box-right .category-service-item {
    margin-bottom: 12px;
}

.news-home .category-link,
.sidebar-2-widget .category-link {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
    transition: 0.3s;
}

.news-home .category-link:hover,
.sidebar-2-widget .category-link:hover {
    color: #8c6118;
    text-decoration: underline;
}

.news-home .service-link,
.sidebar-2-widget .service-link {
    display: block;
    font-size: 22px;
    font-weight: 500;
    color: #000000;
    line-height: 1.5;
    text-decoration: none;
    transition: 0.3s;
}

.news-home .service-link:hover,
.sidebar-2-widget .service-link:hover {
    color: #b8860b;
}

.news-home .category-divider,
.sidebar-2-widget .category-divider {
    border: 0;
    border-top: 1px solid #868686;
    margin: 15px 0;
}


/* Current Affairs section */

.current-affairs-section .section-title {
    font-size: 32px;
    font-weight: 700;
    border-bottom: 2px solid #bdbdbd;
    margin-bottom: 25px;
    padding-bottom: 8px;
}

.current-affairs-section .featured-blog img {
    width: 100%;
    height: 360px;
    border-radius: 10px;
}

.current-affairs-section .featured-blog h3 {
    font-size: 23px;
    margin-top: 18px;
}

.current-affairs-section .featured-blog h3 a {
    color: #111;
    text-decoration: none;
    line-height: 1.3;
}

.current-affairs-section .featured-blog p {
    font-size: 18px;
    line-height: 1.4;
    color: #444;
    text-align: justify;
}

.current-affairs-section .side-blog {
    padding-bottom: 10px;
    margin-bottom: 25px;
    border-bottom: 2px dotted #868686;
}

.current-affairs-section .side-blog img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 5px;
}

.current-affairs-section .side-blog h5 {
    font-size: 19px;
}

.current-affairs-section .side-blog h5 a {
    color: #111;
    text-decoration: none;
    line-height: 1.3;
}

.current-affairs-section .side-blog span {
    font-size: 14px;
    color: #666;
}

/*  */

.current-affairs-section .upsc-news-list {
    padding-left: 10px;
}

.current-affairs-section .upsc-news-item {
    padding: 3px 0;
    border-bottom: 2px dotted #868686;
}

.current-affairs-section .upsc-news-item a {
    font-size: 18px;
    color: #111;
    line-height: 1.6;
    text-decoration: none;
    font-weight: 500;
    transition: .3s;
}

.current-affairs-section .upsc-news-item a:hover {
    color: #b3202a;
    padding-left: 6px;
}

/* Latest News section */

.latest-news-section {
    background: #fff;
}

.latest-news-section .latest-card {
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    transition: .3s;
    height: 100%;
}

.latest-news-section .latest-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, .12);
    transform: translateY(-4px);
}

.latest-news-section .latest-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.latest-news-section .latest-card-body {
    padding: 18px;
}

.latest-news-section .latest-card h4 {
    font-size: 20px;
    line-height: 1.45;
    font-weight: 600;
}

.latest-news-section .latest-card h4 a {
    color: #111;
    text-decoration: none;
}

.latest-news-section .latest-date {
    font-size: 14px;
    color: #000000;
    margin: 10px 0;
    font-weight: 600;
}

.latest-news-section .latest-card p {
    color: #444;
    line-height: 1.7;
    font-size: 16px;
    margin-bottom: 0;
}

@media screen and (max-width: 468px) {
    .news-home .section-title-row h2 {
        font-size: 24px;
        margin-bottom: 0;
    }

    .news-home .section-heading {
        margin-bottom: 0;
    }

    .news-home .view-all {
        padding: 4px 9px;
        font-size: 10px;
    }
    
    .news-home .main-news-card h4 {
        font-size: 18px;
        font-weight: 600;
    }

    .for-mobile-view {
        padding: 0;
    }

    .current-affairs-section .section-title {
        margin-bottom: 14px;
    }

    .current-affairs-section .featured-blog img {
        height: 200px;
    }

    .current-affairs-section .featured-blog h3 {
        font-size: 20px;
    }

    .current-affairs-section .side-blog h5 {
        font-size: 14px;
        margin-bottom: 0;
    }

    .current-affairs-section .side-blog {
        margin-bottom: 10px;
    }

    .current-affairs-section .side-blog span {
        font-size: 11px;
    }

    .current-affairs-section .upsc-news-list {
        padding-left: 0;
    }
}

/* Breadcrumb */
.blog-breadcrumb {
    background: #fff;
    padding: 12px 0;
}

.blog-breadcrumb .breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
    font-size: 15px;
}

.blog-breadcrumb .breadcrumb-item a {
    color: #000000;
    text-decoration: none;
    transition: 0.3s;
}

.blog-breadcrumb .breadcrumb-item a:hover {
    color: var(--primary-color);
}

.blog-breadcrumb .breadcrumb-item.active {
    color: #000000;
    font-weight: 600;
}

.blog-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    content: "-";
    color: #999;
}

.side-1-widget .section-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #000;
}

.side-1-widget .section-title-row h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--secondary-color);
}

.side-1-widget .latest-card {
    height: auto;
    margin-bottom: 10px;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    overflow: hidden;
    transition: .3s;
}

.side-1-widget .latest-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.side-1-widget .latest-card-body {
    padding: 18px;
}

.side-1-widget .latest-card h4 {
    font-size: 20px;
    line-height: 1.45;
    font-weight: 600;
}

.side-1-widget .latest-card h4 a {
    color: #111;
}

.side-1-widget .latest-date {
    font-size: 14px;
    color: #868686;
    margin: 5px 0;
    font-weight: 600;
}

.side-1-widget .latest-card p {
    color: #444;
    line-height: 1.7;
    font-size: 16px;
    margin-bottom: 0;
}

.blog .news-home {
    border-bottom: none;
    padding: 0 10px;
}
    
.blog .news-home .section-title-row {
    border-bottom: 1px solid #000;
}

.blog .news-home .main-news-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, .12);
    background: #fff0dc;
}

@media screen and (max-width: 468px) {

    .blog .latest-news-section .section-title-row h2 {
        font-size: 24px;
        margin-bottom: 0;
    }
    
    .side-1-widget {
        padding: 10px;
    }
    
     .blog .main-news-card p {
        display: none;
    }

    .blog .news-home .main-news-card img {
        height: 90px;
        width: 90%;
    }

    .blog .news-home .main-news-card h4 {
        font-size: 15px;
        font-weight: 700;
    }
    
    .blog .news-home .main-news-card {
        margin-bottom: 10px;
        padding: 10px;
    }
    
    .side-1-widget .section-title-row h2 {
        font-size: 24px;
        margin-bottom: 0;
    }

}

/* Blog-single page */

.blog-single .article-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    color: #000000;
    margin-bottom: 18px;
}

.blog-single .article-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 15px;
    color: #000000;
    margin-bottom: 25px;
}

.blog-single .updated-text {
    font-weight: 600;
    color: #000000;
}

.blog-single .article-date {
    color: #000000;
}

.blog-single .article-time {
    color: #000000;
}

.blog-single .social-share {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.blog-single .share-label {
    font-size: 16px;
    font-weight: 600;
    color: #444;
    margin-right: 5px;
}

.blog-single .share-btn i {
    width: 42px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border-radius: 8px;
    background: #f5f5f5;
    border: 1px solid #ececec;
    transition: .3s ease;
    font-size: 18px;
}

.blog-single .share-btn i {
    transition: .3s;
    color: #fff;
}

/* Icon Colors */

.blog-single .x i {
    background-color: #000;
}

.blog-single .facebook i {
    background-color: #1877F2;
}

.blog-single .instagram i {
    background-color: #E1306C;
}

.blog-single .threads i {
    background-color: #000;
}

.blog-single .whatsapp i {
    background-color: #25D366;
}

.blog-single .telegram i {
    background-color: #229ED9;
}

.blog-single .share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
    background: #fff;
}

.blog-content ~ h1,
.blog-content ~ h2,
.blog-content ~ h3,
.blog-content ~ h4,
.blog-content ~ h5,
.blog-content ~ h6 {
    font-size: 20px;
    color: var(--secondary-color);
}

.sidebar-2-widget {
    border: 1px solid #ffbd59;
    padding: 0 10px
}

.sidebar-2-widget .section-title-row h2 {
    font-size: 22px;
    background: var(--primary-color);
    color: #000;
    padding: 0 5px;
    border-radius: 5px;
    margin-top: 10px;
}

.sidebar-2-widget .main-news-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 8px;
    margin-bottom: 10px;
    padding: 10px;
    transition: .3s;
}

.sidebar-2-widget .main-news-card img {
    height: 100px;
    width: 100%;
}

.sidebar-2-widget  .main-news-card h4 {
    font-size: 19px;
    font-weight: 700;
    color: #000;
}

@media screen and (max-width:468px) {
    .blog-single .article-title {
        font-size: 27px;
    }
    
    .sidebar-2-widget .main-news-card h4 {
        font-size: 15px;
    }
    
    .sidebar-2-widget .main-news-card img {
        height: 70px;
        width: 96%;
    }
    
    .sidebar-2-widget {
        margin-bottom: 20px;
    }
}


        /*======================================
        CONTACT HERO
        ======================================*/

        .contact-hero {
            background: #FFBD592B;
            padding: 90px 0 0;
            text-align: center;
        }

        .contact-hero .contact-subtitle {
            color: #000;
            font-size: 18px;
            text-transform: uppercase;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .contact-hero h1 {
            font-size: 65px;
            font-weight: 800;
            color: var(--secondary-color);
            letter-spacing: 2px;
            margin: 0;
        }

        /*======================================
        MAIN SECTION
        ======================================*/

        .contact-main {
            background: #FFBD592B;
            padding: 30px 0 0;
        }

        /*======================================
        CONTACT INFO BOX
        ======================================*/

        .contact-main .contact-box {
            position: relative;
            padding: 30px 25px;
            transition: .35s;
            text-align: center;
        }

        .contact-main .contact-line {
            width: 100px;
            height: 12px;
            background: var(--primary-color);
            margin: 0 auto 25px;
        }

        .contact-main .contact-box h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--secondary-color);
        }

        .contact-main .contact-box p {
            color: #000;
            line-height: 1.8;
            font-size: 16px;
            margin: 0;
        }

        .contact-main .contact-box a {
            color: #000;
            text-decoration: none;
            transition: .3s;
        }

        .contact-main .contact-box a:hover {
            color: var(--secondary-color);
        }

        /*======================================
        CONTACT FORM
        ======================================*/

        .contact-main .contact-form-section {
            margin-top: 20px;
        }

        .contact-main .contact-form-section .contact-input {
            width: 100%;
            height: 58px;
            border: none;
            border-bottom: 3px solid var(--primary-color);
            border-radius: 0;
            background: #fff;
            font-size: 16px;
            padding: 15px 20px;
            box-shadow: none;
        }

        .contact-main .contact-form-section .contact-input:focus {
            border-bottom: 3px solid var(--secondary-color);
            box-shadow: none;
        }

        .contact-main .contact-form-section .contact-btn {
            width: 100%;
            height: 58px;
            border: none;
            border-radius: 0;
            background: var(--primary-color);
            color: #222;
            font-size: 22px;
            font-weight: 700;
            transition: .35s;
        }

        .contact-main .contact-form-section .contact-btn:hover {
            background: var(--secondary-color);
            color: #fff;
        }

        /*======================================
        GOOGLE MAP
        ======================================*/

        .contact-main .contact-map {
            margin-top: 80px;
        }

        .contact-main .contact-map iframe {
            width: 100%;
            height: 520px !important;
            border: 0;
            display: block;
        }

        /*======================================
RESPONSIVE
======================================*/

        @media (max-width: 991px) {

            .contact-hero {
                padding: 50px 0 0;
            }

            .contact-hero h1 {
                font-size: 40px;
            }

            .contact-main .contact-box {
                padding: 30px 18px;
            }

            .contact-main .contact-form-section {
                margin-top: 20px;
            }

            .contact-main .contact-form-section textarea.contact-input {
                min-height: 140px;
            }

            .contact-main .contact-map iframe {
                height: 420px !important;
            }
        }

        @media (max-width: 767px) {

            .contact-hero h1 {
                font-size: 32px;
            }
            
            .contact-main .contact-map {
                margin-top: 40px;
            }

            .contact-hero .contact-subtitle {
                font-size: 14px;
                letter-spacing: 2px;
            }

            .contact-main .contact-box {
                margin-bottom: 0;
            }

            .contact-main .contact-box h3 {
                font-size: 22px;
            }

            .contact-main .contact-form-section .contact-btn {
                margin-top: 10px;
                font-size: 18px;
            }
        }
