@font-face {
    font-family: 'Geologica';
    src: url("/wp-content/themes/customify/assets/fonts/Geologica-Light.ttf");
    font-weight: 300;
}

@font-face {
    font-family: 'Geologica';
    src: url("/wp-content/themes/customify/assets/fonts/Geologica-Regular.ttf");
    font-weight: 400;
}

@font-face {
    font-family: 'Geologica';
    src: url("/wp-content/themes/customify/assets/fonts/Geologica-Medium.ttf");
    font-weight: 500;
}

@font-face {
    font-family: 'Geologica';
    src: url("/wp-content/themes/customify/assets/fonts/Geologica-SemiBold.ttf");
    font-weight: 600;
}

@font-face {
    font-family: 'Geologica';
    src: url("/wp-content/themes/customify/assets/fonts/Geologica-Bold.ttf");
    font-weight: 700;
}

@font-face {
    font-family: 'Geologica';
    src: url("/wp-content/themes/customify/assets/fonts/Geologica-ExtraBold.ttf");
    font-weight: 800;
}

:root {
	--white: #ffffff;
	--off-white: #eee;
	--light-gray: #bebebe;
	--bg-gray: #f4f5f6;
    --primary-red: #d32f2f;
	--light-red: #fef4f3;
	--light-black: #333;
	--gray-text: gray;
    --primary-gradient: linear-gradient(to left, #b71c1c, #d32f2f);
    --dark-blue: #283b7b;
	--navy-blue: #3a3c7d;
}

h1 {
    font-size: 50px !important;
    line-height: 55px !important;
    font-weight: 600 !important;
    font-family: "Geologica" !important;
    color: #000 !important;
}

h2 {
    font-size: 34px !important;
    line-height: 38px !important;
    font-family: "Geologica" !important;
    color: #000 !important;
}

h3 {
    font-size: 30px !important;
    line-height: 34px !important;
    font-family: "Geologica" !important;
    color: #000 !important;
}

h4 {
    font-size: 22px !important;
    line-height: 26px !important;
    font-family: "Geologica" !important;
    color: #000 !important;
}

h5 {
    font-size: 20px !important;
    line-height: 24px !important;
    font-family: "Geologica" !important;
    color: #000 !important;
}

body {
    font-family: "Geologica" !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    line-height: 18px !important;
    color: #000 !important;
}

/* Utility Classes - START */
.sidespace {
    padding-right: 5% !important;
    padding-left: 5% !important;
}

.primary-btn {
    background-color: #002f74;
    color: #fff;
    padding: 10px 20px;
    height: 40px;
    display: block;
    text-decoration: none;
    border-radius: 5px;
    border: 1px solid #002f74;
    text-align: center;
    width: fit-content;
}

.primary-btn:hover,
.primary-btn:focus {
    background-color: #fff;
    color: #002f74;
}

.white-primary-btn {
    background-color: #fff;
    color: #002f74;
    padding: 10px 20px;
    height: 40px;
    display: block;
    text-decoration: none;
    border-radius: 5px;
    border: 1px solid #fff;
    text-align: center;
    width: fit-content;
}

.white-primary-btn:hover,
.white-primary-btn:focus {
    background-color: #002f74;
    color: #fff;
}

.wt-text {
    color: #fff !important;
}

.db-text {
    color: var(--dark-blue) !important;
}

.no-mb {
    margin-bottom: 0px !important;
}

.mt-10 {
    margin-top: 10px !important;
}

.mt-30 {
    margin-top: 30px !important;
}

.mt-50 {
    margin-top: 50px !important;
}

.mt-70 {
    margin-top: 70px !important;
}

.mt-90 {
    margin-top: 90px !important;
}

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

.mb-15 {
    margin-bottom: 15px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mb-70 {
    margin-bottom: 70px !important;
}

.mb-90 {
    margin-bottom: 90px !important;
}

.pt-10 {
    padding-top: 10px !important;
}

.pt-15 {
    padding-top: 15px !important;
}

.pt-20 {
    padding-top: 20px !important;
}

.pt-30 {
    padding-top: 30px !important;
}

.pt-50 {
    padding-top: 50px !important;
}

.pt-70 {
    padding-top: 70px !important;
}

.px-10 {
	padding-x: 10px;
}

.ps-20 {
	padding-left: 180px
}

.section-heading {
    margin-bottom: 15px;
}

.t-cent {
    text-align: center;
}

.font-light {
    font-weight: 300;
}

.font-regular {
    font-weight: 400;
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.gap-10 {
	gap: 10px;
}

.gap-50 { gap: 50px; }

/* Colors - START */

.bg-light-gray {
    background: #f9fafc;
}

.bg-primary-red {
    background: var(--primary-red);
}

.bg-gradient-red {
    background: var(--primary-gradient);
}

.text-black {
	color: #212529;
}

.text-primary-red {
    color: var(--primary-red) !important;
}

.text-body {
    color: var(--light-black) !important;
}

.text-white {
    color: var(--white) !important;
}

.text-dark-blue { color: var(--dark-blue); 
}

.text-navy-blue { color: var(--navy-blue)}

.text-gray { color: var(--gray-text); }

.border-red-primary { border-color: var(--primary-red) !important; }
/* Colors - END */

.min-h-content {
	min-height: min-content !important;
}

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

.flex-center {
    display: flex;
    align-items: center;
    gap: 15px;
}

.w-100 { width: 100%; }

.w-50 { width: 50%; }

.w-full { width: 100%; }

.max-w-800 { max-width: 800px; }

.max-w-90 { max-width: 90% !important; }

.h-full { height: 100%; }

.h-70 { height: 70%; }

.pt-100 { padding-top: 100px !important; }

.pb-70 { padding-bottom: 70px !important; }

.pb-50 { padding-bottom: 50px !important; }

.pb-30 { padding-bottom: 30px !important; }

.mt-10 { margin-top: 10px !important; }

.mx-10 { margin-left: 10px !important; margin-right: 10px !important; }

.opacity-70 { opacity: 0.7; }

.d-flex { display: flex !important; }

.justify-content-between { justify-content: space-between !important; }

.align-items-end { align-items: flex-end !important; }

.no-list-style { list-style: none !important; }

.flex-row-reverse { flex-direction: row-reverse !important; }

.mr-20 { margin-right: 20px !important; }

.text-right { text-align: right !important; }

.text-left { text-align: left !important; }

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

.text-xl { font-size: 1.5rem; }

.content-title { font-size: 35px !important; }

.text-transform-none { text-transform: none !important }

.p-50 { padding: 50px !important; }

.px-40 { padding-left: 40px !important; padding-right: 40px !important; }

.py-12 { padding-top: 12px !important; padding-bottom: 12px !important; }

.para-body-text {
	margin-top: 1.5rem !important;
	line-height: 1.5 !important;
	color: var(--light-black) !important;
	white-space: pre-line;
}

textarea#user-msg {
	height: 150px;
}
/* Utility Classes - END */


/* Custom CSS override - START */
.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: -40px !important;
    z-index: 1 !important;
    position: relative !important;
}

.owl-theme .owl-dots .owl-dot {
    background-color: transparent;
}
/* Custom CSS override - END */

/* Buttons */
.btn-avon {
	font-weight: 300 !important;
    padding: 10px 24px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
    border: 2px solid transparent;
	white-space: nowrap;
}

.btn-primary-red {
    background-color: var(--primary-red);
    color: white !important;
    border: 2px solid transparent; /* Prevents layout jump on hover */
    transition: 0.3s ease; /* Smooth transition for the border and color */
}

.btn-primary-red:hover {
    background-color: transparent !important; /* Makes background clear */
    border-color: var(--primary-red) !important; /* Applies the red border */
    color: var(--primary-red) !important; /* Changes text to red */
}

.btn-primary-white {
    background-color: var(--white);
    color: var(--light-black) !important;
	border: 2px solid transparent;
    transition: 0.3s ease;
}

.btn-primary-white:hover {
    background-color: transparent !important;
    border-color: var(--white) !important;
    color: var(--white) !important;
}

.btn-outline-white {
    background-color: transparent;
    border-color: white;
    color: white !important;
}

.btn-outline-white:hover {
    background-color: white;
    color: var(--dark-blue) !important;
}

.blue-btn {
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
    color: #333;
}

.blue-btn.active {
    background-color: #2b3d7d;
    color: #fff;
}

/* Top red bar CSS - START */

.vertical-divider {
	height: 100%;
	border-right: 1.5px solid var(--white);
	border-radius: 5px
}

/* Top red bar CSS - END */

/* Navbar Specifics */
.avon-site-header {
    position: relative;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
	max-width: 100vw;
    z-index: 9999 !important;
}

.top-bar {
    padding: 8px 5%;
    font-size: 13px;
}

.main-nav {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: top 0.3s ease;
}

.top-bar + .main-nav {
    position: absolute;
    top: 100%;
}

.main-nav.is-sticky {
    position: fixed;
    top: 0;
}

.nav-links {
    margin: 0 !important;
    list-style: none;
    display: flex;
    gap: 40px;
}

.nav-links li {
    position: relative;
    margin: 0 !important;
}

.nav-links a {
    text-decoration: none;
    color: var(--light-black);
    font-weight: 300;
}

/* Container for the Dropdown */
.nav-links .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 280px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    margin: 0;
    list-style: none;
    display: none;
    z-index: 1000;
}

.nav-links li:hover>.sub-menu {
    display: block;
    animation: fadeIn 0.3s ease;
}

.nav-links .sub-menu li {
    padding: 0 15px;
}

.nav-links .sub-menu li a {
    display: flex;
    align-items: center;
    padding: 12px 10px;
    color: #334155;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.2s;
    position: relative;
}

.nav-links .sub-menu li a:hover {
    background-color: #f1f5f9;
    color: var(--primary-red);
}

/* The Gray Initials Box */
.nav-links .sub-menu li a::before {
    content: "";
    display: inline-block;
    width: 32px;
    height: 32px;
    background: #e2e8f0;
    border-radius: 6px;
    margin-right: 15px;
    flex-shrink: 0;
}

.nav-links .sub-menu li a::before {
    content: attr(data-initials);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #e2e8f0;
    border-radius: 6px;
    margin-right: 15px;
    font-size: 11px;
    color: #475569;
    font-weight: bold;
}

.nav-links>li:has(.sub-menu)>a::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 10px;
    margin-left: 8px;
    vertical-align: middle;
    transition: transform 0.3s ease;
    display: inline-block;
}

/* Rotate chevron when hovering */
.nav-links>li:hover>a::after {
    transform: rotate(180deg);
    color: var(--primary-red);
}

.nav-links>li>a {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.nav-links>li>a:hover {
    color: var(--primary-red);
}

/* Animation for smooth appearance */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* Mobile Toggle Styling */
.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--light-black);
}


@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: block;
    }

    .quote-btn-desktop {
        display: none;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        max-height: 100vh; 
        overflow-y: auto;
		padding-left: 0;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    .nav-links li a {
        padding: 15px 5%;
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .nav-links .sub-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        background: #f9f9f9;
        display: none; /* Controlled by JS click on mobile */
    }
	
	.nav-links .sub-menu li a {
		justify-content: start;
	}
	
	.nav-links li:hover>.sub-menu {
		display: none;
	}

    .nav-links li.open > .sub-menu {
        display: block;
    }
}

/* Desktop: Hide the menu-item version of the button */
.mobile-cta-item {
    display: none;
}

@media (max-width: 992px) {
    /* Mobile: Show the menu-item version */
    .mobile-cta-item {
        display: block;
        padding: 20px 5%;
        text-align: center;
    }

    .mobile-cta-item .btn-avon {
        display: inline-block;
        width: 100%;
        padding: 12px;
        border-radius: 5px;
        background-color: var(--primary-red);
        color: #fff;
        text-decoration: none;
    }

    .quote-btn-desktop {
        display: none !important;
    }

    /* Remove the default 'initials' box from the CTA */
    .nav-links .mobile-cta-item a::before {
        display: none !important;
    }
	
	.mobile-cta-item a {
        justify-content: center;
        font-weight: 600;
    }
}

/* Footer Specifics */
.site-footer {
    background: url('/wp-content/uploads/2026/04/Avon-Home-Page-05-scaled.png') no-repeat center center;
    background-size: cover;
    color: #fff;
    padding: 100px 5% 20px;
    /* Top padding extra to accommodate floating card */
    position: relative;
}

/* Floating Features Card */
.features-card {
    background: var(--light-red);
    border-radius: 8px;
    display: flex;
    justify-content: space-around;
    padding: 20px 0px;
    max-width: 1100px;
    margin: 0px auto -40px;
    position: relative;
    z-index: 11;
}

.footer-text {
	font-size: 14px; 
	color: var(--white);
}

.feature-item {
    text-align: center;
    flex: 1;
    border-right: 2px solid var(--dark-blue);
}

.feature-item:last-child {
    border-right: none;
}

.feature-item i {
    font-size: 28px;
    color: var(--primary-red);
    margin-bottom: 15px;
    display: block;
}

.feature-item span {
    color: var(--light-black);
    font-weight: 300;
    font-size: 16px;
}

/* Footer Content Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 1.75fr 1.15fr 1fr 1fr 1.75fr;
    gap: 40px;
    padding-bottom: 20px;
}

.footer-col h4 {
	color: var(--white) !important;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #fff;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--white);
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
	font-weight: 300;
}

.footer-col ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

/* Contact Specifics */
.footer-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 14px;
	font-weight: 300;
}

.footer-contact-item i {
    color: #fff;
    margin-top: 4px;
	font-size: 16px;
}

.location-container {
	display: flex;
	gap: 20px;
}

.divider {
	margin: 10px 0;
	width: 100%;
    border-top: 1px solid var(--white);
}

/* Certifications Row */
.cert-row {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 20px;
}

.cert-row img {
	height: 45px;
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1.5px solid var(--white);
    padding-top: 20px;
    color: var(--white);
}

.social-circle {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: 10px;
    color: #fff;
    transition: 0.3s;
	text-decoration: none;
}

.social-circle:hover {
    background: var(--primary-red);
	color: var(--white);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
	
    .features-card {
		flex-wrap: wrap;
        flex-direction: column;
        margin: 20px auto -50px auto;
        width: 75%;
    }

    .feature-item {
        flex: 50%;
        border: none;
        margin-bottom: 20px;
    }
	
	.footer-bottom {
		flex-direction: column;
		align-items: start;
		gap: 20px
	}
}

/* Floating Social Icons - START */

.floating-socials {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border-radius: 12px 0 0 12px;
    padding: 10px 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    box-shadow: -2px 4px 15px rgba(0, 0, 0, 0.12);
    z-index: 9998;
}

.floating-social-link {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s ease;
    font-size: 15px;
}

.floating-social-link:hover {
    color: var(--primary-red);
}

.floating-social-divider {
    width: 60%;
    height: 1px;
    background-color: var(--light-gray);
    display: block;
    margin: 1px 0;
}

/* Floating CTA Buttons - END */

/* Floating CTA Buttons - START */

.floating-cta-btns {
    position: fixed;
    bottom: 30px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9998;
}

.floating-cta-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-cta-btn:hover {
    transform: scale(1.1);
    color: #fff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.floating-call {
    background-color: var(--primary-red);
}

.floating-whatsapp {
    background-color: #25d366;
	font-size: 30px;
}

.floating-scroll-top {
    background-color: #333333; /* Modern dark gray, fits cleanly next to red and green */
    font-size: 18px;
    
    /* Visibility setup for smooth entry transition */
    opacity: 0;
    visibility: hidden;
    transform: scale(0);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, background-color 0.3s ease;
}

/* State when user scrolls past threshold */
.floating-scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

/* Hover state overrides standard scaling if visible */
.floating-scroll-top.show:hover {
    transform: scale(1.1);
    background-color: #111111; 
}

/* @media (max-width: 992px) {
	.floating-socials, .floating-cta-btn {
		display: none;
	}
} */

/* Floating CTA Buttons - END */


/* HOME PAGE START */

/* Hero Carousel CSS - START */

.hero-slide {
    height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
}

.pill-gray {
    background: rgba(255,255,255,0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-title {
    font-weight: 400 !important;
	color: var(--white) !important;
}

.hero-subtitle {
	max-width: 600px; 
}

.owl-theme .owl-dots .owl-dot span {
	background-color: var(--light-gray) !important;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
	background-color: var(--white) !important;
	width: 40px !important;
	border-radius: 10px !important;
}

.owl-theme button.owl-dot:hover {
	box-shadow: none !important;
}

/* Hero Carousel CSS - END */

/* Marquee Tag CSS - START */

.marquee-wrapper {
    overflow: hidden;
    width: 100%;
    background-color: #fff;
    display: flex;
}

/* The moving track */
.marquee-text {
    display: flex;
    white-space: nowrap;
    font-size: 70px;
    font-weight: 900;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1px var(--primary-red);
    letter-spacing: 5px;
    line-height: 0.8;
}

/* Seamless Animation */
.animate-rtl {
    animation: marquee-infinite 12s linear infinite;
}

.marquee-text span {
    padding-right: 70px;
}


@keyframes marquee-infinite {
    0% {
        transform: translateX(0);
    }
    100% {
        /* This moves the text exactly halfway, making the loop perfect */
        transform: translateX(-50%);
    }
}
/* Marquee Tag CSS - END */


/* Product Categories section - START */

/* Section Typography */
.section-tag {
    color: var(--dark-blue);
    text-transform: capitalize;
    margin-bottom: 10px;
    display: block;
    font-size: 18px;
}

.section-title-container {
	text-align: center; 
}

.section-title {
    font-size: 3rem !important;
    font-weight: 400;
    color: var(--light-black) !important;
}

.section-desc {
	max-width: 80%;
    margin: 0 auto 10px;
    color: var(--light-black);
    line-height: 1.6;
}

/* Grid & Cards */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    padding-top: 30px;
}

.category-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
    background-color: #f5f5f5;
    /* Fallback */
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* Card Label Button */
.card-label {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    /* background: #fff; */
    color: #333;
    /* padding: 10px 25px; */
    /* border-radius: 6px; */
    font-weight: 600;
    /* text-decoration: none; */
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
    min-width: 140px;
    text-align: center;
	white-space: nowrap;
}

/* Custom Blue Underline */
.blue-underline, .bg-white-underline {
    width: 90px;
    height: 4px;
    background: var(--dark-blue);
    margin: 0 auto;
    border-radius: 10px;
}

.bg-white-underline {
	background: var(--white);
}

/* Product Categories section - END */

/* About Avon lifestyle - START */

/* About Section Specifics */
.about-section {
	background-color: var(--light-red);
}

.about-grid {
	display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image-wrapper img {
    width: 100%;
    display: block;
}

.image-overlay-box {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 20px;
    border-top-right-radius: 20px;
}

.image-overlay-box h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
}

.image-overlay-box p {
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
    opacity: 0.9;
}

/* Stats Counter */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding-top: 60px;
	padding-bottom: 40px;
}

.stat-item {
	display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
	min-height: 90px;
	padding: 10px;
    border-right: 1.5px solid var(--dark-blue);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 500;
    color: var(--primary-red);
    margin-bottom: 5px;
	line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
	
	.about-image-wrapper img {
		min-height: 450px;
		object-fit: cover;
	}
	
	.image-overlay-box {
		width: 85%;
	}

    .stats-grid {
        grid-template-columns: 1fr 1fr;
/*         gap: 30px; */
    }
	
	.stat-item {
		margin-bottom: 30px;
	}
	
	.stat-number {
		font-size: 1.5rem;
	}

    .stat-item:nth-child(2n) {
        border-right: none;
    }
}

/* About Avon lifestyle - END */

/* Our Clients - START */

/* About Section Specifics */
.our-clients-section {
	background-color: var(--white);
}

/* Client Tabs */
.client-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.clients-tab-btn {
	background-color: transparent !important;
    color: var(--light-black) !important;
    font-weight: 400 !important;
	margin: 0 !important;
	transition: 0.3s ease;
}

.clients-tab-btn.active {
	background-color: var(--primary-red) !important;
	color: var(--white) !important;
    border-radius: 5px !important;
    font-weight: 400 !important;
	margin: 0 !important;
}

.clients-tab-btn:hover {
	background-color: var(--primary-red) !important;
    color: var(--white) !important;
    border-radius: 4px !important;
	box-shadow: none !important;
}

.our-clients-section li {
	margin: 0 !important;
}


/* Client Grid */
.client-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

/* .tab-content {
    display: none;
}

.tab-content.active {
    display: block;
} */

/* Ensure cards look consistent inside the slider */
.client-card {
    margin: 10px;
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
	overflow: hidden;
	transition: ease 0.15s;
}

/* .client-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
 */
.client-card:hover {
    border-color: var(--primary-red);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

.client-logo {
    max-width: 100px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 15px;
    /* Optional: Grayscale by default, color on hover */
    filter: grayscale(100%);
    opacity: 0.7;
    transition: 0.3s;
}

.client-card:hover .client-logo {
    filter: grayscale(0%);
    opacity: 1;
}

.client-name {
    font-size: 14px;
    color: #888;
    font-weight: 500;
    transition: 0.3s;
}

.client-card:hover .client-name {
    color: var(--primary-red);
}

.our-clients-section .owl-carousel .owl-stage {
    transition-timing-function: linear !important;
    -webkit-transition-timing-function: linear !important;
}


@media (max-width: 768px) {
    .client-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Our Clients - END */

/* Business Verticals - START */

.business-verticals-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1300px;
    margin-inline: auto;
}

.verticals-left {
    flex: 0 0 290px;
}

.verticals-icon-box {
    background: #fff5f5;
    color: var(--primary-red);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 24px;
    margin-bottom: 20px;
}

.verticals-subheading {
    font-size: 28px;
    margin-bottom: 15px;
}

.verticals-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.verticals-right {
    flex: 1;
    overflow: hidden;
}

.vertical-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 350px;
}

.vertical-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vertical-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, #1a2b5a); /* Navy blue bottom */
    padding: 30px 20px;
    text-align: center;
    color: #fff;
	display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.vertical-card-overlay i {
    font-size: 30px;
    margin-bottom: 10px;
    display: block;
}

.vertical-card-overlay span {
    font-size: 18px;
}

.business-verticals-icon {
	width: 60px !important;
	height: 60px !important;
}

/* Navigation Overrides */
.verticals-right .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #fff !important;
    border-radius: 50% !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
    color: #333 !important;
}

.business-verticals-section .owl-dots {
	width: 100% !important;
    height: 2px !important;
    margin-top: 20px !important;
    background-color: var(--light-gray);
}

.business-verticals-section .owl-dot {
	width: 33% !important;
    height: 2px !important;
	background-color: var(--light-gray) !important;
}

.business-verticals-section .owl-dot.active {
	background-color: var(--primary-red) !important;
}

.verticals-right .owl-prev { left: -20px; }
.verticals-right .owl-next { right: -20px; }

/* Progress Bar Underneath */
.verticals-progress-container {
    height: 2px;
    background: #e2e8f0;
    width: 100%;
    margin-top: 40px;
    position: relative;
}

.verticals-progress-bar {
    position: absolute;
    left: 0;
    height: 100%;
    width: 33%; /* Match current slide */
    background: var(--primary-red);
    transition: 0.3s;
}

button.owl-next, button.owl-prev {
	border: 1px solid var(--primary-red) !important;
}

@media (max-width: 992px) {
	.business-verticals-content {
		flex-direction: column;
	}
	
	.verticals-right {
		display: none;
	}
}

/* Business Verticals - END */


/* Supporting Pillars - START */

/* Container for the Why Choose Us section */
.why-choose-section {
    background: url('/wp-content/uploads/2026/04/Avon-Home-Page-05-scaled.png') no-repeat center center;
    background-size: cover;
    text-align: center;
    padding: 80px 5%;
}

/* Glass-morphism Cards */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.choose-card {
    background: rgba(255, 255, 255, 0.2);
    /* Semi-transparent white */
    border: 1px solid var(--off-white);
    border-radius: 20px;
    padding: 20px;
    text-align: left;
    transition: transform 0.3s ease, background 0.3s ease;
}

.choose-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.choose-icon-box {
    background: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.choose-us-grid-image {
	width: 100%;
	height: 100%;
}

.choose-card h4 {
    color: var(--white) !important;
    margin-bottom: 15px;
}

.choose-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
}

/* Centered button at the bottom */
.btn-center {
    display: inline-block;
    background: #ffffff;
    color: #333;
    padding: 12px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.btn-center:hover {
    background: var(--primary-red);
    color: #ffffff;
}

/* Supporting Pillars - END */


/* Blogs Section - START */

/* Blog Grid Layout */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
/*     max-width: 1200px; */
/*     margin: 50px auto 0; */
}

.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: transform 0.3s ease;
    border: 1px solid #eee;
    /* Light gray border as seen in your UI */
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image-wrapper {
    position: relative;
    height: 250px;
}

.blog-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Category Tag Overlay */
.blog-category-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #2b3d7d;
    /* Dark blue theme color */
    color: #fff;
    padding: 6px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 500;
}

.blog-content {
    padding: 25px;
}

.blog-content h4 {
    font-size: 18px !important;
    line-height: 1.4;
    margin-bottom: 15px;
    color: #333;
}

.blog-content p {
    color: var(--light-blac);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Reusing your red button variable */
.btn-view-blog {
    display: inline-block;
    background-color: var(--primary-red);
    color: #fff;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: 0.3s;
}

.btn-view-blog:hover {
    background-color: #1a2b5a;
    /* Changes to dark blue on hover */
    color: #fff;
}

/* Blogs Section - END */


/* Contact Us - START */

.contact-container {
    display: grid;
    gap: 25px;
    grid-template-columns: 1fr 1fr !important;
}

/* Form Styles */
.contact-form-card {
    flex: 1.2;
    background: var(--light-red);
    padding: 40px;
    border-radius: 15px;
}

.contact-form-card h4 {
    margin-bottom: 25px;
    font-weight: 400;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-form-card form, .contact-form-card .submit-btn-container p {
	margin-bottom: 0;
}

.contact-form-card .form-row p {
	display: grid !important;
    grid-template-columns: 1fr min-content 1fr !important;
    gap: 10px !important;
    align-items: center !important;
    width: 100% !important;
}

.contact-form-card .form-row p span.wpcf7-form-control-wrap input, .contact-form-card .form-row p span.wpcf7-form-control-wrap select {
	min-height: 45px !important;
}

.contact-form-card p span.wpcf7-form-control-wrap textarea {
	min-height: 100px !important;
}

.form-control {
    display: block !important;
    width: 100% !important;
    padding: 12px 20px !important; /* Matches padding in form fields */
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    color: var(--light-black) !important; /* Reuses your light-black variable */
    background-color: var(--white) !important; /* Reuses your white variable */
    background-clip: padding-box !important;
    border: 1px solid var(--white) !important; /* Matches the "white border" look on pink background */
    border-radius: 8px !important; /* Matches rounded corners in UI */
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out !important;
    outline: none !important;
	box-shadow: none !important;
    border: none !important;
    border-radius: 10px !important;
}

/* Placeholder Styling */
.form-control::placeholder {
    color: #888 !important; /* Matches subtle placeholder text */
    opacity: 1 !important;
}

/* Focus State */
.form-control:focus {
    color: var(--light-black) !important;
    background-color: var(--white) !important;
    border-color: var(--primary-red) !important; /* Highlights red on click */
    outline: 0 !important;
    box-shadow: 0 0 0 0.2rem rgba(211, 47, 47, 0.25) !important; /* Subtle red glow using primary-red */
}

/* Disabled State */
.form-control:disabled, 
.form-control[readonly] {
    background-color: var(--off-white) !important; /* Reuses off-white for disabled fields */
    opacity: 1 !important;
}

.contact-form-card .btn-submit {
    background-color: var(--primary-red) !important;
    cursor: pointer;
	border-radius: 4px !important;
    font-weight: 300 !important;
}

/* Info Box Styles */
.contact-info-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.info-box {
    background: var(--light-red);
    padding: 30px 15px;
    text-align: center;
    border-radius: 15px;
    transition: 0.3s;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-icon {
    background: var(--primary-red);
    color: var(--white);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin: 0 auto 15px;
    font-size: 18px;
}

.info-box h5 {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 16px;
}

.info-box p {
    font-size: 13px;
    color: var(--light-black);
    line-height: 1.5;
}

/* Map Style */
.contact-map {
    margin-top: 50px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .contact-container {
		display: flex;
        flex-direction: column;
    }
	
	.contact-form-card {
		padding: 20px;
	}
	
	.contact-form-card .form-row p {
		display: flex !important;
		flex-direction: column;
	}
	
	.contact-form-card .form-row p span {
		width: 100%;
	}

    .contact-info-grid {
        grid-template-columns: 1fr 1fr;
		gap: 15px; /* Smaller gap for mobile screens */
        align-items: stretch;
    }
	
	.info-box {
        padding: 20px 10px; /* Reduce padding so content doesn't feel cramped */
        display: flex;
        flex-direction: column;
        height: 100%; /* Ensures the box fills the grid track height */
    }

    .info-box p {
        word-break: break-all; 
        font-size: 11px;
    }
}

/* Contact Us - END */

/* HOME PAGE END */


/* ==========================================================================
   				 Our Legacy Page Components
   ========================================================================== */

/* --- Banner & Underlines --- */
.sub-hero-section {
    position: relative;
    min-height: 350px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}

.sub-hero-content {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.title-underline {
    width: 80px;
    height: 4px;
    background-color: var(--primary-red, #d32f2f);
}

.header-line { 
    width: 60px; 
    height: 3px; 
    background: var(--dark-blue, #283b7b); 
}

/* --- Font Awesome Breadcrumb System --- */
.header-breadcrumb {
    --bs-breadcrumb-divider: "\f054"; 
}

.header-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 10px;
    color: var(--light-gray, #bebebe);
    vertical-align: middle;
}

.header-breadcrumb li.breadcrumb-item {
    color: var(--white) !important;
    font-weight: 300;
    margin: 0;
}

.header-breadcrumb li.breadcrumb-item a {
	color: var(--white) !important;
	text-decoration: none !important;
}

.header-breadcrumb ol.breadcrumb {
    margin: 0;
}

@media (max-width: 768px) {
    .sub-hero-content {
		flex-direction: column;
    	align-items: start !important;
    	gap: 20px;
    }
}

/* ==========================================================================
   Timeline System Block
   ========================================================================== */

.timeline-container {
    position: relative;
    padding: 40px 0;
}

/* Red Vertical Axis Rail */
.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 100%;
    background-color: var(--primary-red, #d32f2f);
    top: 0;
}

.timeline-row {
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.timeline-col { width: 80%; }
.point-side { width: 10%; }

/* Chrono Center Points */
.timeline-dot {
    width: 30px;
    height: 30px;
    background: var(--white, #ffffff);
    border: 1px solid var(--primary-red, #d32f2f);
    border-radius: 50%;
    box-shadow: 0px 0px 10px -1px var(--primary-red, #d32f2f);
}

.legacy-card {
    background: var(--light-red, #fef4f3);
    padding: 20px;
    border-radius: 15px;
}

.legacy-thumb {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
}

/* ==========================================================================
   Interactive Tab Pills & Key Features
   ========================================================================== */

.why-choose-us-tabs-section {
    background-color: var(--bg-gray, #f4f5f6);
}

.custom-pills-container {
    display: inline-flex;
    border-radius: 10px;
    padding: 5px;
}

.custom-pills-container .nav-item {
    margin: 0;
}

.custom-pills-container button.nav-link {
    color: #000000 !important;
    background-color: var(--light-red, #fef4f3) !important;
    font-weight: 300 !important;
    text-transform: none !important;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.custom-pills-container button.nav-link.active, 
.custom-pills-container button.nav-link:hover {
    color: var(--white, #ffffff) !important;
    background-color: var(--dark-blue, #283b7b) !important;
    font-weight: 300;
    text-transform: none;
}

.custom-pills-container button.nav-link:hover {
    box-shadow: none !important;
}

.custom-pills-container .nav-link {
    color: var(--dark-blue, #283b7b) !important;
    font-weight: 600;
    padding: 12px 35px;
    border-radius: 8px;
    transition: 0.3s;
}

.custom-pills-container .nav-link.active {
    background-color: var(--dark-blue, #283b7b) !important;
    color: var(--white, #ffffff) !important;
}

.first-nav-button { border-radius: 10px 0px 0px 10px !important; }
.last-nav-button  { border-radius: 0px 10px 10px 0 !important; }

.feature-box {
    background: var(--white, #ffffff);
    border: 1px solid #eeeeee;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.check-icon {
    color: var(--dark-blue, #283b7b);
    border: 1px solid var(--dark-blue, #283b7b);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

/* --- Graphic Composite Frames --- */
.composite-image-wrapper {
    position: relative;
    padding-bottom: 40px;
    display: flex;
    justify-content: flex-end;
}

.main-tab-img {
    width: 80%;
    border-radius: 20px;
}

.overlay-tab-img {
    position: absolute;
    width: 50%;
    left: 0;
    top: 15%;
    border-radius: 15px;
}

/* ==========================================================================
   Testimonial Sliders Component
   ========================================================================== */

.testimonial-card {
    background: #f8f9fa; 
    border-radius: 20px;
    padding: 40px 30px 30px;
    margin-top: 50px; 
    position: relative;
    text-align: center;
    transition: transform 0.3s ease;
}

.testimonial-owl .owl-item:not(.center) { opacity: 0.5; }
.testimonial-owl .owl-stage-outer       { padding-top: 10px; }

.user-img-wrapper {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
}

.user-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote-text {
    color: var(--light-black, #333);
    text-align: justify;
}

.card-divider {
    border-top: 1px solid #dddddd;
    margin: 20px 0;
}

.testimonial-owl .owl-item.active.center .testimonial-card {
    background: var(--bg-gray, #f4f5f6);
    transform: scale(1.05);
}

/* --- OWL Navigation Controls Overrides --- */
.testimonial-carousel-wrapper .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--white, #ffffff) !important;
    border-radius: 50% !important;
    box-shadow: 0 0px 10px -1px var(--primary-red, #d32f2f) !important;
    color: #333333 !important;
}

.testimonial-carousel-wrapper .owl-dots,
.testimonial-carousel-wrapper .owl-dot {
    border-top: 1px solid var(--light-gray, #bebebe) !important;
}

.testimonial-carousel-wrapper .owl-dots {
    width: 100% !important;
    height: 0px !important;
    margin-top: 20px !important;
    background-color: var(--light-gray, #bebebe);
}

.testimonial-carousel-wrapper .owl-dot {
    width: 25% !important;
    height: 0px !important;
    background-color: transparent !important;
}

.testimonial-carousel-wrapper button.owl-dot:hover {
    background-color: transparent !important;
    box-shadow: none !important;
    cursor: default;
}

.testimonial-carousel-wrapper .owl-dot.active {
    border-top: 1px solid var(--primary-red, #d32f2f) !important;
}

.testimonial-carousel-wrapper .owl-prev { left: 31%; }
.testimonial-carousel-wrapper .owl-next { right: 31%; }

button.owl-next, 
button.owl-prev {
    border: 1px solid var(--primary-red, #d32f2f) !important;
}

/* ==========================================================================
   Manufacturing Module Container
   ========================================================================== */

.manufacturing-card {
    background-color: var(--bg-gray, #f4f5f6);
    border-radius: 15px;
}

.achievement-box {
    background-color: var(--white, #ffffff);
    border-radius: 10px;
    border: 1px solid var(--off-white, #eee);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: space-between;
}

.icon-bg {
    background-color: var(--light-red, #fef4f3);
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.feature-list i {
    font-size: 14px;
    color: var(--dark-blue, #283b7b);
}

.feature-list li {
    margin: 0;
}

.btn-red-gradient {
    background: var(--primary-gradient);
    color: var(--white, #ffffff) !important;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.btn-red-gradient:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* ===========================================
   			Our Team 
   =========================================== */

.team-grid-wrapper {
    margin: 0 auto;
    padding-top: 80px; /* Provides overflow head clearance space */
}

/* --- Row Systems --- */
.team-row {
    display: flex;
    flex-wrap: wrap;
    gap: 200px;
    justify-content: center;
}

/* --- Card Bases & Sizing --- */
.team-card {
    position: relative;
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}


.team-card:hover {
    transform: translateY(-5px);
}

/* --- Shared Visual Asset Containers (Pink Pop-out Frames) --- */
.team-lead-img-wrapper,
.team-img-wrapper {
    background-color: #feeeee;
    border-radius: 15px 15px 0px 0px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.team-lead-img-wrapper { width: 110%; }
.team-img-wrapper      { width: 100%; max-height: 330px; }

/* The Person Real-Image Rendering */
.team-img-wrapper img {
    width: 100%; 
    height: auto;
    max-height: 380px; 
    max-width: 350px;
    bottom: 0;
    object-fit: contain;
    z-index: 1;
}

/* --- Shared Metadata Info Cards (Bottom Gray Plate) --- */
.team-lead-info,
.team-info {
    background: #f6f6f6;
    padding: 30px 10px;
    border-radius: 0px 0px 10px 10px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.team-lead-info { width: 110%; }
.team-info      { width: stretch; }

/* --- Micro-Typography --- */
.team-name {
    display: block;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 4px;
}

.team-designation {
    display: block;
    font-size: 14px;
    color: var(--light-black, #333);
    font-weight: 400;
    margin-top: 16px;
}

/* ==========================================================================
   Our Brands Component Matrix
   ========================================================================== */

/* --- Top Brand Menu Navigation --- */
.brand-main-nav {
    border-bottom: 1.5px solid var(--light-gray) !important;
	justify-content: center;
	gap: 3rem;
	font-size: 1.25rem;
}

.brand-tab-link {
    border: none !important;
    background: transparent !important;
    color: var(--light-black, #333) !important;
    font-size: 14px;
    font-weight: 500 !important;
    padding: 0px 10px !important;
    position: relative;
    transition: background-color 0.3s ease, font-weight 0.3s ease;
}

.brand-tab-link.active, 
.brand-tab-link:hover {
    background-color: var(--light-red, #fef4f3) !important;
    border-radius: 5px !important;
    font-weight: 600 !important;
}

.brand-tab-link:hover {
    box-shadow: none !important;
}

.brand-nav-wrapper li,
.brand-nav-wrapper ul {
    margin: 0 !important;
}

/* Red Bottom Border for Active Menu Item */
.brand-tab-link.active::after {
    content: '';
    position: absolute;
    bottom: -9.5px;
    left: 15%;
    width: 70%;
    height: 2px;
    background-color: var(--primary-red, #d32f2f);
}

/* --- Secondary Interlinking Tabs (About / Mission / Vision) --- */
.brand-internal-links li {
    margin: 0 !important;
}

.brand-internal-links .nav-link {
    font-family: "Geologica", sans-serif !important;
    font-size: 20px !important;
    font-weight: 300 !important;
    text-decoration: underline !important;
    transition: color 0.5s ease;
}

.brand-internal-links .nav-link.active {
    color: var(--primary-red, #d32f2f) !important;
}

.brand-internal-links .nav-link:not(.active) {
    color: #000000 !important;
}

.brand-internal-links .nav-link:hover {
    color: var(--primary-red, #d32f2f) !important;
    box-shadow: none !important;
}

.brand-internal-links .nav-link i {
    font-size: 14px;
    vertical-align: middle;
}

@media (max-width: 768px) {
	.brand-main-nav {
		column-gap: 15px;
		row-gap: 20px;
		justify-content: start;
	}
}


/* Legacy structural classes retained for compatibility layers */
.brand-internal-links a {
    font-size: 22px;
    position: relative;
    padding-bottom: 5px;
}
.brand-internal-links a.active {
    border-bottom: 2px solid var(--primary-red, #d32f2f);
}
.brand-internal-links a i {
    font-size: 14px;
    vertical-align: middle;
}

/* --- System Metrics & Graphic Stat Blocks --- */
.metric-card {
    background: #db3627 !important;
}

.stat-card h2 {
    font-size: 50px !important;
    margin-bottom: 20px !important;
    font-weight: 800;
}

.rounded-4 {
    border-radius: 20px !important;
}

/* --- Content Views Transitions Layout Engine --- */
.tab-pane.fade {
    transition: opacity 0.4s linear, transform 0.4s ease-out;
    transform: translateX(15px);
}

.tab-pane.fade.show {
    transform: translateX(0);
}

@media (max-width: 700px) {
    .brand-internal-links {
        gap: 25px !important;
    }
}

/* ==========================================================================
   Products: Umbrellas & Catalog Banners
   ========================================================================== */

/* --- Product Cards & Grid Layout --- */
.product-card {
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-image-wrapper {
    background-color: var(--white, #ffffff);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-title-wrapper {
    background-color: var(--bg-gray, #f4f5f6);
    width: 100%;
    flex-grow: 1; /* Standardized flex-fill instead of unanchored height: 100% */
    padding: 30px 15px;
}

.product-title {
    font-family: "Geologica", sans-serif !important;
    font-size: 1.15rem !important;
    color: var(--light-black, #333) !important;
    font-weight: 300;
    text-align: center;
    margin: 0;
}

/* --- Shared Client Component Overrides --- */
.client-card {
    border-radius: 12px;
    overflow: hidden;
} 

/* --- Diagonal Cut Download Banners --- */
.download-banner-container {
    height: 120px;
    width: 100%;
    display: block;
    position: relative;
}

.banner-container{
	display: flex !important;
    align-items: center !important;
    height: 100% !important;
}


.banner-image-side {
    width: 42%;
    height: 100%;
    position: relative;
    -webkit-clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%); /* Cross-browser safety */
    z-index: 2;
}

.fixed-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.red-overlay {
    position: absolute;
    inset: 0; /* Modern shortcut replacing top/left/width/height 100% */
    background-color: rgba(211, 47, 47, 0.7);
}

.banner-content-side {
	display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 68%;
    height: 100%;
    background-color: var(--dark-blue);
    margin-left: -10%;
    padding-left: 12% !important;
    z-index: 1;
}

.banner-content-side h3{
	color: var(--white) !important;
	margin-bottom: 0px !important;
    font-weight: 400 !important;  
    font-size: 1.5rem !important;
}

@media (max-width: 700px) {
	.banner-container {
		flex-direction: column;
	}
	
	.banner-image-side {
		width: 100%;
    	height: 70%;
		clip-path: none !important;
        -webkit-clip-path: none !important;
	}
	
	.banner-content-side {
		flex-direction: column;
		width: 100%;
		margin-left: 0;
		padding-left: 0% !important;
		padding: 10px;
    	gap: 10px;
	}
	
	.banner-content-side h3{
		font-size: 18px !important;
	}
	
	.banner-content-side a{
		padding: 7px 13px !important; 
	}
}


/* ==========================================================================
   Business Vertical: Corporate Gifting & Communications
   ========================================================================== */

/* --- Typography & Headings --- */
.gifting-title {
    font-family: "Geologica", sans-serif !important;
    font-weight: 300;
    letter-spacing: -0.5px;
}

.gifting-text {
    font-size: 0.95rem;
    color: #212529;
    line-height: 1.6;
    font-weight: 300;
}

.services-desc {
    margin: 1.5rem auto 10px !important;
    color: var(--light-black, #333);
    line-height: 1.8;
}

/* --- Media Containers & Image Wrappers --- */
.gallery-img-wrapper img,
.gallery-img-wrapper-2 img {
    width: 100%;
    object-fit: cover;
    display: block;
}

.gallery-img-wrapper img { height: 200px; }
.gallery-img-wrapper-2 img { height: 240px; }

.rounded-4 {
    border-radius: 24px !important;
}

/* --- Features & Services Grid Layout --- */
.features-grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Set to your preferred clean desktop layout */
    gap: 30px;
}

.feature-item-card {
    background-color: var(--white, #ffffff);
    border-radius: 16px;
    padding: 35px 30px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.feature-icon-holder {
    background-color: #fff1f1;
    width: 64px;
    height: 64px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-holder img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.feature-details {
    flex-grow: 1;
}

.feature-card-title {
    font-family: "Geologica", sans-serif !important;
    font-size: 1.35rem !important;
    color: var(--dark-blue, #283b7b) !important;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.2 !important;
}

.feature-card-text {
    font-size: 0.95rem;
    color: #1e293b;
    font-weight: 300 !important;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments for Features Grid */

@media (max-width: 991px) {
    .features-grid-container {
        /* Switch to 1 column on tablet and mobile */
        grid-template-columns: 1fr; 
        gap: 20px; /* Tighter gap for mobile */
    }

    .feature-item-card {
        /* Slightly reduce padding for smaller screens */
        padding: 25px 20px; 
        gap: 20px;
    }
}

/* Optional: Small mobile optimization for icons */
@media (max-width: 576px) {
    .feature-icon-holder {
        width: 50px;
        height: 50px;
    }

    .feature-icon-holder img {
        width: 28px;
        height: 28px;
    }

    .feature-card-title {
        font-size: 1.15rem !important;
    }
}

/* --- Interactive Elements & Forms --- */
.contact-card-wrapper {
    border-radius: 24px;
    padding: 40px;
}

.form-card-bg,
.info-card-bg {
    background-color: var(--light-red, #fef4f3);
}

.contact-card-title {
    font-size: 1.6rem !important;
    font-weight: 400 !important;
    margin-bottom: 8px !important;
    line-height: 1.2 !important;
}

.contact-card-subtitle {
    font-size: 0.95rem;
    color: #4a4a4a;
    margin-bottom: 25px;
    font-weight: 300;
}

.contact-input {
    border: none !important;
    background-color: var(--white, #ffffff) !important;
    border-radius: 12px !important;
    padding: 14px 20px !important;
    font-size: 0.95rem !important;
    color: var(--light-black, #333) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.01) !important;
    height: auto !important;
}

.contact-input::placeholder {
    color: #a0a0a0 !important;
    font-weight: 300;
}

.contact-textarea {
    resize: none !important;
}

.btn-contact-submit {
    background-color: var(--primary-red, #d32f2f) !important;
    color: var(--white, #ffffff) !important;
    font-weight: 500 !important;
    font-size: 1.05rem !important;
    padding: 14px 0 !important;
    border-radius: 12px !important;
    border: none !important;
    transition: opacity 0.2s ease, background-color 0.2s ease;
}

.btn-contact-submit:hover {
    background-color: var(--primary-red, #d32f2f) !important;
    opacity: 0.9;
}

.brand-details-section .contact-form-card p span.wpcf7-form-control-wrap textarea {
    height: 55vh;
}

/* --- Location & Metadata Components --- */
.info-meta-item {
    background-color: var(--white, #ffffff);
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    height: 100%;
}

.green-bg-tint {
    background-color: #effaf4 !important;
}

.info-icon-box {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon-box i {
    font-size: 25px;
}

.brand-red-tint { background-color: var(--light-red, #fef4f3); }
.brand-green-tint { background-color: #e3f7ed; }
.icon-red { color: var(--primary-red, #d32f2f); font-size: 1.15rem; }
.icon-green { color: #25d366; font-size: 1.3rem; }

.info-label {
    display: block;
    font-size: 0.88rem;
    font-weight: 300;
    color: #000000;
    margin-bottom: 2px;
}

.info-link {
    font-size: 0.95rem;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 300;
}

.info-link:hover {
    color: var(--primary-red, #d32f2f);
}

.info-schedule-text,
.location-address-text {
    font-size: 0.93rem;
    color: #1a1a1a;
    font-weight: 400;
    margin: 0;
    line-height: 1.55;
}

.location-address-text {
    color: #2b2b2b;
}

.map-embed-holder {
    border-radius: 14px;
    overflow: hidden;
    min-height: 250px;
    border: 1px solid var(--off-white, #eee);
}

/* ==========================================================================
   Manufacturing Facilities Tabs & Imagery Setup
   ========================================================================== */

/* --- Component Navigation Overrides --- */
.brand-tab-link.active::after {
    content: '';
    position: absolute;
    bottom: -9.5px;
    left: 0% !important;
    width: 100% !important;
    height: 3px !important;
    background-color: var(--primary-red, #d32f2f) !important;
}

/* --- Content Typography & Structural Rules --- */
.text-justify {
    text-align: justify;
}

.border-top-red {
    border-top: 1px solid var(--primary-red, #d32f2f);
}

/* --- Sizing, Badges & Spatial Elements --- */
.fixed-mfg-img {
    object-fit: cover;
    display: block;
    min-height: 420px;
}

.mfg-experience-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.65);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    padding: 25px 35px;
    border-top-right-radius: 24px;
    color: var(--white, #ffffff) !important;
    z-index: 5;
    text-align: center;
}

.mfg-badge-number {
    font-family: "Geologica", sans-serif !important;
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: var(--white, #ffffff) !important;
    line-height: 1 !important;
}

.mfg-badge-label {
    font-size: 0.85rem;
    font-weight: 300;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

/* --- Three-Column Metrics Component Grid --- */
.mfg-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    width: 100%;
}

.mfg-stat-box {
    background-color: var(--bg-gray, #f4f5f6) !important;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}

.mfg-stat-number {
    font-family: "Geologica", sans-serif !important;
    font-size: 2.2rem !important;
    font-weight: 700 !important;
    color: var(--primary-red, #d32f2f) !important;
    line-height: 1.1 !important;
}

.mfg-stat-unit {
    font-size: 1.1rem;
    font-weight: 400;
    margin-left: 2px;
}

.mfg-stat-label {
    display: block;
    font-size: 0.85rem;
    color: #111111;
    font-weight: 400;
    margin-top: 4px;
}

/* ----------- Manufacturing Gallery Grid System ------------------ */

.mfg-gallery-layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(130px, auto);
    gap: 24px;
    width: 100%;
}

.mfg-gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.mfg-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.mfg-gallery-item:hover img {
    transform: scale(1.03);
}

/* --- Gallery Layout Matrix Mappings --- */
.item-alley {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    height: 240px;
}

.item-worker-inspect {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    height: 240px;
}

.item-floor-row {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    height: 240px;
}

.item-hero-stitch {
    grid-column: 3 / 5;
    grid-row: 1 / 3;
    height: 504px; /* Flawless math alignment matches grid structure values */
}

.item-aerial-wide {
    grid-column: 1 / 5;
    grid-row: 3 / 4;
    height: 440px;
}

/* ==========================================================================
   Brand page Logo Cards Grid System (Matches Screenshot Grid Layout)
   ========================================================================== */

/* 6 Column Flex System container */
.brand-showcase-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    width: 100%;
/*     padding: 15px 0; */
}

/* Base Card structure with custom primary red/orange border line */
.brand-card-item {
    background-color: var(--white, #ffffff);
    border: 1.5px solid var(--primary-red, #d32f2f);
    border-radius: 16px;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    height: 210px; /* Uniform height execution rule */
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-card-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(211, 47, 47, 0.12);
}

/* Light subtle background badge box inside the border frame */
.brand-logo-frame {
    background-color: #f8fafc;
    border-radius: 8px;
    width: 65%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
/*     padding: 12px; */
    box-sizing: border-box;
    overflow: hidden;
}

.brand-logo-frame img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

/* Typography wrapper block */
.brand-label-box {
    width: 100%;
    margin-top: 15px;
}

/* Overriding any global heading limits to match the sleek blue color in image */
h4.brand-card-title {
    color: var(--dark-blue, #283b7b) !important;
    font-family: "Geologica", sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 20px !important;
    margin: 0 !important;
    padding: 0 !important;
    text-transform: none !important;
}

/* ==========================================================================
   			Contact Us page 
   ========================================================================== */

.contact-cards-showcase-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Base Card architecture using your pink tint background token */
.contact-showcase-card {
    background-color: var(--light-red) !important; /* Elegant pink tint background */
    border-radius: 15px;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Icon container matching the primary red square radius */
.contact-showcase-icon-box {
    background-color: var(--primary-red);
    color: var(--white);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 20px;
    margin-bottom: 15px;
}

/* Heading Lock-ups */
h5.contact-showcase-title {
    font-family: "Geologica", sans-serif !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #000 !important;
    margin-top: 0 !important;
    margin-bottom: 12px !important;
    text-transform: none !important;
}

/* Text & Details wrapper wrapper system */
.contact-showcase-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

.contact-showcase-link, 
.contact-showcase-text {
    font-size: 13px !important;
    color: var(--light-black) !important;
    margin: 0 !important;
    text-decoration: none;
}

.contact-showcase-link:hover {
    color: var(--primary-red) !important;
}

/* Gallery page - START */
.gallery-item {
    overflow: hidden;
    border-radius: 15px;
    height: 290px;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.04);
}

/* Mobile: all images same height, stack naturally */
@media (max-width: 768px) {
    .gallery-item {
        height: 180px;
    }
}

/* Gallery page - END */

/* Certificates page - START */
	
.certificates-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding-top: 40px;
}

.cert-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.cert-img-wrap {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--dark-blue);;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.cert-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.cert-label {
    font-size: 15px;
    color: #333;
    text-align: center;
    font-weight: 500;
}

/* cert card hover overlay */
.cert-card {
    cursor: pointer;
}

.cert-img-wrap {
    position: relative;
    overflow: hidden;
}

.cert-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s ease;
}

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

.cert-zoom-icon {
    font-size: 32px;
    color: #fff;
    line-height: 1;
}

/* lightbox */
.cert-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    align-items: center;
    justify-content: center;
}

.cert-lightbox.is-open {
    display: flex;
}

.cert-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    cursor: pointer;
}

.cert-lightbox-content {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.cert-lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    display: block;
    border-radius: 4px;
}

.cert-lightbox-label {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin: 0;
    text-align: center;
}

.cert-lightbox button.cert-lightbox-close {
    position: absolute !important;
    top: -15px !important;
    right: -25px !important;
    background: none !important;
    border: none !important;
    font-size: 28px !important;
    line-height: 1 !important;
    cursor: pointer !important;
    color: var(--white) !important;
    padding: 0 !important;
    transition: color 0.2s !important;
}

.cert-lightbox button.cert-lightbox-close:hover {
	box-shadow: none !important;
}
/* Certificates page - END */


/* Blog Inner Page - START */
.blog-main-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}

.blog-detail-heading {
    margin-top: 30px;
    margin-bottom: 20px;
	font-weight: 400;
	font-size: 40px !important;
}

.blog-detail-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--light-black);
    margin-bottom: 20px;
    text-align: justify;
}

.blog-inner-gallery-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 15px;
}

/* Sidebar Styling Blocks */
.sidebar-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-card {
    background-color: var(--light-red);
    border-radius: 15px;
    padding: 30px 25px;
}

.sidebar-card h4 {
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 20px;
	font-size: 30px !important;
    font-weight: 400;
}

.sidebar-card h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-red);
}

.sidebar-links-list {
    list-style: none !important;
    padding: 0;
}

.sidebar-links-list li {
    margin-bottom: 15px !important;
	margin-left: 0px !important;
}

.sidebar-links-list li:last-child {
    margin-bottom: 0 !important;
}

.sidebar-link-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #000;
    text-decoration: none;
    font-size: 20px;
    font-weight: 200;
	padding-bottom: 20px;
    transition: color 0.2s ease;
}

.sidebar-link-item i {
    color: var(--primary-red);
    font-size: 12px;
}

.sidebar-link-item:hover {
    color: var(--primary-red);
}

/* Colored Overlay Promo Card */
.sidebar-promo-card {
    position: relative;
    background-size: cover;
    border-radius: 15px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    text-align: center;
}

.sidebar-promo-text {
    color: var(--white);
    font-size: 15px;
    line-height: 1.6;
    font-weight: 400;
    margin: 0;
}

/* Social Box Elements */
.sidebar-social-links {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.sidebar-social-links .social-circle {
    margin-left: 0; /* Clear global left margin rule layout constraint */
    background: var(--navy-blue);
    color: var(--white);
}

.sidebar-social-links .social-circle:hover {
    background: var(--primary-red);
}
/* Blog Inner Page - END */

/* ==========================================================================
   Career Section: Dynamic Inline Application Matrix
   ========================================================================== */

.custom-career-form-container {
    background-color: var(--light-red, #fef4f3);
    border-radius: 24px;
    padding: 45px 40px;
    width: 100%;
    box-sizing: border-box;
}

/* 4-Column Grid Structure matching screenshot proportions */
.career-application-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 24px;
    align-items: center;
    width: 100%;
}

.career-field-group {
    width: 100%;
    position: relative;
}

/* Forces the Red Submit button to perfectly span the final 2 column tracks */
.career-submit-wrapper {
    grid-column: span 2;
}

/* Core Inputs Custom Form Styling */
.career-input-control {
    width: 100% !important;
    height: 52px !important;
    padding: 10px 20px !important;
    font-family: "Geologica", sans-serif !important;
    font-size: 14px !important;
    font-weight: 300 !important;
    color: var(--light-black, #333) !important;
    background-color: var(--white, #ffffff) !important;
    border: none !important;
    border-radius: 10px !important;
    box-sizing: border-box !important;
    outline: none !important;
    transition: box-shadow 0.2s ease-in-out;
}

.career-input-control::placeholder {
    color: #a0a0a0 !important;
    opacity: 1;
}

.career-input-control:focus {
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.2) !important;
}

/* File Upload Pseudo-Input Component Mapping */
.career-file-wrapper {
    position: relative;
}

.career-file-input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.career-file-label {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 52px;
    padding: 10px 20px;
    background-color: var(--white, #ffffff);
    border-radius: 10px;
    cursor: pointer;
    box-sizing: border-box;
    margin: 0 !important;
    transition: box-shadow 0.2s ease-in-out;
}

.career-file-placeholder {
    font-family: "Geologica", sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #a0a0a0;
}

.career-upload-icon {
    font-size: 18px;
    color: #888888;
    transition: color 0.2s ease;
}

.career-file-label:hover .career-upload-icon {
    color: var(--primary-red, #d32f2f);
}

/* Primary Action Execution Component */
.career-btn-submit {
    width: 100%;
    height: 52px;
    background-color: var(--primary-red) !important;
    color: var(--white) !important;
    font-family: "Geologica", sans-serif;
    font-size: 15px;
    font-weight: 400;
    border: 2px solid transparent;
    border-radius: 10px  !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}


/* Responsive Grid Interpolation Breakpoint */
@media (max-width: 992px) {
    .custom-career-form-container {
        padding: 30px 20px;
    }
    
    .career-application-grid {
        grid-template-columns: 1fr; /* Stacks completely flat on smaller mobile break lines */
        gap: 16px;
    }
    
    .career-submit-wrapper {
        grid-column: span 1;
    }
	
	.section-title {
    font-size: 35px !important;align-content
	}
	
	.content-title {
    font-size: 23px !important;
}
}