ul, h1, h2, h3, h4, p, figure {
    padding: 0;
    margin: 0;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  background-color: #1A1A1A !important; /* Changed: Lighter dark gray */
  overflow-x: hidden;
  color: #F5F5F5 !important; /* Match index page off-white text */
}

a { 
    transition: all 0.3s ease; 
    text-decoration: none;
}

a:hover { text-decoration: none; }
button:focus { outline: none; }

h1, h2, h3 {
    color: #D4AF37 !important; /* Gold like index page */
    font-weight: 800 !important; /* Bold like index page */
}

p {
    color: #F5F5F5 !important; /* Off-white like index page */
    line-height: 1.6;
}

.tm-color-primary { color: #D4AF37 !important; } /* Gold */

.navbar-toggler {
    padding: 10px 15px;
    border-color: #D4AF37 !important; /* Gold border */
}

.container-fluid {
    max-width: 1200px;
    background-color: #1E1E1E !important; /* Changed: Dark gray instead of black */
    padding-left: 40px;
    padding-right: 40px;
}

@media (max-width: 992px) {
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.tm-site-header { 
    padding-top: 50px; 
    background: linear-gradient(to right, #1E1E1E, #2A2A2A) !important; /* Changed: Lighter gradient */
    border-bottom: 3px solid #D4AF37 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

@media (max-width: 992px) {
    .tm-site-header {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

.tm-site-header-col {
    display: flex;
    justify-content: space-between;
}

.tm-site-icon { 
    padding: 10px; 
    color: #D4AF37 !important; /* Gold */
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
}

.tm-site-name {
    display: inline-block;
    text-transform: uppercase;
    font-size: 2rem;
    color: #D4AF37 !important; /* Gold */
    text-shadow: 0 2px 4px rgba(212, 175, 55, 0.4);
    font-weight: 800;
    letter-spacing: 1px;
}

.tm-main-bg {
    background-image: url(../img/new-vision-01.jpg);
    background-repeat: no-repeat;
    background-position: 45% top;
    height: 800px;
    min-height: 500px;
    margin-left: -40px;
    margin-right: -40px;
}

.tm-about-bg { background-image: url(../img/new-vision-02.jpg); }
.tm-services-bg { background-image: url(../img/new-vision-03.jpg); }
.tm-contact-bg { background-image: url(../img/new-vision-04.jpg); }

@media (max-width: 992px) {
    .tm-contact-bg { background-position: 80% top; }
}

nav > ul > li { list-style: none; }

.tm-nav {
    border: 1px dotted #666; /* Changed: Lighter border */
    margin: 0 5px 10px;
}

.tm-nav > ul {
    display: flex;
    flex-direction: row;
    padding-right: 20px;
}

@media (max-width: 992px) {
    .tm-nav > ul {
        flex-direction: column;
        padding-right: 0;
    }
}

.tm-nav-link {
    font-size: 1.2rem;
    text-decoration: none;
    color: #F5F5F5 !important; /* Off-white */
    font-weight: 600;
    display: inline-block;
    padding: 10px 20px !important; /* Match index padding */
    margin-left: 25px;
    border-bottom: 5px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

@media (min-width: 1080px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 30px;
        padding-left: 30px;
    }    
}

.nav-item .tm-nav-link:hover,
.nav-item.active .tm-nav-link {
    color: #D4AF37 !important; /* Gold on hover/active */
    border-bottom: 5px solid #D4AF37; /* Gold border */
    border-left: none;
}

.nav-item.active .tm-nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 20px;
    right: 20px;
    height: 3px;
    background: #D4AF37;
    border-radius: 3px;
}

@media (max-width: 992px) {
    .navbar-nav .tm-nav-link {
        margin-left: 0;
        margin-bottom: 10px;
        width: 100%;
        display: block;
        padding: 10px 20px;
    }
    
    .nav-item .tm-nav-link {
        border-left: 5px solid transparent;
        border-bottom: none;
    }
    
    .nav-item .tm-nav-link:hover, 
    .nav-item.active .tm-nav-link {
        border-left: 5px solid #D4AF37;
        border-bottom: none;
    }
}

.tm-mobile-menu { display: none; }

.tm-mobile-menu.active.focus, 
.tm-mobile-menu.active:focus,
.tm-mobile-menu.focus, 
.tm-mobile-menu:active.focus, 
. tm-mobile-menu:active:focus, 
.tm-mobile-menu:focus {
  outline: none;
  box-shadow: none;
  background-color: #1E1E1E !important; /* Changed: Dark gray instead of black */
}

.tm-menu-container-outer {
    display: flex;
    justify-content: flex-end;
}

.tm-menu-container {
    display: inline-block;
    margin-right: -20px;
}

@media (max-width: 992px) {
    .tm-menu-container {
        position: absolute;
        right: 30px;
        top: 0;
    }
    
    .tm-mobile-menu {
        display: block;
        padding: 10px 15px;
        border-radius: 3px;
        background-color: transparent;
    }
    
    .tm-nav {
        height: 0;
        transition: all 0.3s ease;
        position: absolute;
        right: 0;
        top: 44px;
        z-index: 1000;
        background-color: #1E1E1E !important; /* Changed: Dark gray instead of black */
        margin: 0;
        min-width: 180px;
    }
    
    .tm-nav.show { height: auto; }
    
    #navbarSupportedContent1 {
        position: absolute;
        top: 50px;
        right: 0px;
        z-index: 1000;
        background-color: #1E1E1E !important; /* Changed: Dark gray instead of black */
    }
}

.tm-section-header {
    display: inline-block;
    background-color: transparent !important; /* Transparent - let dark gray show through */
    color: #D4AF37 !important; /* Gold text */
    padding: 0 0 15px 0 !important; /* Remove side padding, keep bottom padding */
    margin: 40px 0 30px 0 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    text-align: center;
    width: 100%;
}

.tm-section-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

@media (max-width: 500px) {
    .tm-section-header { padding: 0 0 15px 0 !important; }
}

.tm-section-header-small {
    font-size: 1.4rem;
    color: #D4AF37 !important; /* Gold */
    padding: 0 0 15px 0 !important;
    margin: 30px 0 20px 0 !important;
    position: relative;
}

.tm-section-header-small::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.tm-header-floating {
    position: absolute;
    z-index: 100;
    top: -30px;
    background-color: transparent !important;
}

.tm-welcome-row {
    margin-top: 128px;
    margin-bottom: 10px;
}

.tm-welcome-row-2 { margin-bottom: 45px; }

.tm-article-link:hover .tm-article-title { color: #F4E4A6 !important; } /* Light gold */
.tm-hover-color { color: #F4E4A6 !important; } /* Light gold */

.tm-article-title {
    margin-bottom: 30px;
    transition: all 0.3s ease;
    color: #D4AF37 !important; /* Gold */
    font-weight: 800;
    font-size: 1.4rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.tm-media {
    display: flex;
    align-items: flex-start;
    margin-bottom: 70px;
    background: rgba(255, 255, 255, 0.08) !important; /* Changed: Slightly lighter */
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.3) !important; /* Changed: More visible border */
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.tm-media:hover {
    transform: translateY(-8px);
    border-color: #D4AF37 !important;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
    background: rgba(255, 255, 255, 0.12) !important; /* Changed: Slightly lighter */
}

.tm-media-v-center { align-items: center; }

.tm-media-img {
    margin-right: 20px;
    width: 55%;
    max-width: 300px;
    height: 250px;
    object-fit: cover;
    filter: none !important;
    -webkit-filter: none !important;
    transition: transform 0.6s ease;
}

.tm-media:hover .tm-media-img {
    transform: scale(1.08);
}

.tm-media-body {
    margin-right: 10px;
    width: 45%;
    padding: 25px;
    background: rgba(30, 30, 30, 0.9) !important; /* Changed: Lighter dark gray */
}

@media (max-width: 992px) {
    .tm-media-body { width: auto; }
}

@media (max-width: 480px) {
    .tm-media { flex-direction: column; }
    .tm-media-img { 
        width: 100% !important;
        max-width: 100% !important;
        margin-right: 0 !important;
    }
    
    .tm-media-body {
        max-width: 100% !important;
        margin-right: 0;
        margin-top: 0;
        width: 100% !important;
    }
}

.tm-dotted-box-container { margin-bottom: 35px; }

.tm-dotted-box {
    display: flex;
    flex-direction: column;
    border: 2px solid #D4AF37 !important; /* Gold border */
    border-radius: 15px !important;
    padding: 35px !important;
    height: 100%;
    background: linear-gradient(135deg, rgba(40, 40, 40, 0.9), rgba(55, 55, 55, 0.9)) !important; /* Changed: Lighter */
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.tm-dotted-box:hover {
    transform: translateY(-8px);
    border-color: #F4E4A6 !important; /* Light gold */
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.25);
    background: linear-gradient(135deg, rgba(45, 45, 45, 0.95), rgba(60, 60, 60, 0.95)) !important; /* Changed: Lighter */
}

.tm-article-icon {
    color: #D4AF37 !important; /* Gold */
    margin-top: 20px;
    margin-bottom: 40px;
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.4));
    font-size: 3.5rem !important;
}

.tm-article-title {
    font-size: 1.3rem;
    text-transform: uppercase;
    line-height: 1.5;
}

.tm-article-title,
.tm-article-text {
    margin-bottom: 30px;
}

.tm-article-text {
    color: #F5F5F5 !important; /* Off-white */
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.95;
}

.tm-article-link { align-self: flex-end; }

.tm-btn {
    background: linear-gradient(135deg, #D4AF37, #B8941F) !important; /* Gold gradient */
    color: #1A1A1A !important; /* Changed: Dark gray text instead of black */
    padding: 14px 35px !important;
    border: none !important;
    font-weight: 800;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
    display: inline-block;
    text-decoration: none;
    font-size: 0.95rem;
}

.tm-btn:hover,
.tm-btn:focus {
    background: linear-gradient(135deg, #B8941F, #A37C17) !important;
    color: #1A1A1A !important; /* Changed: Dark gray text */
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
    text-decoration: none;
}

.tm-btn-rounded { border-radius: 8px !important; }

.tm-carousel {
    padding-top: 40px;
    padding-bottom: 35px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 992px) {
    .tm-carousel { max-width: 800px; }
}

@media (max-width: 420px) {
    .tm-carousel { max-width: 240px; }
}

.tm-featured { 
    margin-bottom: 50px; 
    background-color: #1E1E1E !important; /* Changed: Dark gray instead of black */
    padding: 5px 0;
    border-top: 3px solid #D4AF37;
    border-bottom: 3px solid #D4AF37;
    position: relative;
    overflow: hidden;
}

.slick-dots li { width: 30px; }
.slick-dots li button { width: 30px; }

.slick-dots li button:before {
    font-family: "Font Awesome 5 Free";
    font-size: 30px;
    font-weight: 900;
    content: "\f068";
    color: #D4AF37 !important; /* Gold */
    opacity: 0.7;
    width: 30px;
    transition: all 0.3s ease;
}

.slick-dots li button:hover:before, 
.slick-dots li button:focus:before,
.slick-dots li.slick-active button:before {
    color: #F4E4A6 !important; /* Light gold */
    opacity: 1;
    font-size: 16px !important;
}

footer {
    color: #F5F5F5 !important; /* Off-white */
    padding: 60px 0 40px !important;
    text-align: center;
    background: linear-gradient(to bottom, #1E1E1E, #252525) !important; /* Changed: Lighter gradient */
    border-top: 4px solid #D4AF37;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

footer a { 
    color: #D4AF37 !important; /* Gold */
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 4px;
}

footer a:hover {
    color: #F4E4A6 !important; /* Light gold */
    text-decoration: none;
    background: rgba(212, 175, 55, 0.1);
}

/* Hover Effect */
/* Common style */
.grid figure {
  position: relative;
  float: left;
  overflow: hidden;
  margin-left: 20px;
  margin-right: 20px;
  background: rgba(255, 255, 255, 0.08) !important; /* Changed: Lighter */
  text-align: center;
  cursor: pointer;
  border: 2px solid rgba(212, 175, 55, 0.4) !important; /* Changed: More visible */
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease;
  height: 320px;
  display: flex;
  flex-direction: column;
}

.grid figure:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #D4AF37 !important;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

@media (max-width: 768px) {
    .grid figure {
        margin-left: 10px;
        margin-right: 10px;
    }
}

.grid figure img {
  position: relative;
  display: block;
  min-height: 100%;
  max-width: 100%;
  opacity: 1 !important; /* Full opacity */
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: none !important;
  -webkit-filter: none !important;
  transition: transform 0.6s ease;
  flex: 1;
}

.grid figure:hover img {
    transform: scale(1.05);
}

.grid figure figcaption {
  padding: 2em;
  color: #fff;
  text-transform: uppercase;
  font-size: 1.25em;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.grid figure figcaption::before,
.grid figure figcaption::after {
  pointer-events: none;
}

.grid figure figcaption,
.grid figure figcaption > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Anchor will cover the whole item by default */
/* For some effects it will show as a button */
.grid figure figcaption > a {
  z-index: 1000;
  text-indent: 200%;
  white-space: nowrap;
  font-size: 0;
  opacity: 0;
}

.grid figure h4 {
  word-spacing: -0.15em;
  font-weight: 300;
}

.grid figure h4 span { font-weight: 800; }

.grid figure h4,
.grid figure p {
  margin: 10px 0 0;
}

.grid figure p {
  letter-spacing: 1px;
  font-size: 68.5%;
}

/*---------------*/
/***** Honey *****/
/*---------------*/

figure.effect-honey {
  background: transparent !important;
  max-width: 240px;
}

figure.effect-honey img {
  opacity: 1 !important; /* Full opacity */
  -webkit-transition: transform 0.6s ease;
  transition: transform 0.6s ease;
}

figure.effect-honey:hover img { transform: scale(1.05); }

figure.effect-honey figcaption::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: #D4AF37; /* Gold */
  content: "";
  -webkit-transform: translate3d(0, 10px, 0);
  transform: translate3d(0, 10px, 0);
}

figure.effect-honey h4 {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 1em 1.5em;
  width: 100%;
  text-align: left;
  -webkit-transform: translate3d(0, -30px, 0);
  transform: translate3d(0, -30px, 0);
}

figure.effect-honey h4 i {
  font-style: normal;
  opacity: 1 !important; /* Full opacity */
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(0, -30px, 0);
  transform: translate3d(0, -30px, 0);
}

figure.effect-honey figcaption::before,
figure.effect-honey h4 {
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
}

figure.effect-honey:hover figcaption::before,
figure.effect-honey:hover h4,
figure.effect-honey:hover h4 i {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* Our Company */
.tm-about { max-width: 975px; }

.tm-about-icon {
    color: #D4AF37 !important; /* Gold */
    min-width: 235px;
    display: flex;
    justify-content: center;
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.4));
}

@media (max-width: 600px) {
    .tm-about-icon {
        padding-bottom: 50px;
        margin-left: auto;
        margin-right: auto;
        min-width: 160px;
    }
}

.tm-about-1 {
    padding: 30px;
    max-width: 540px;
    background: transparent !important;
    border: none !important;
}

/*---------------*/
/***** Zoe *****/
/*---------------*/

.grid figure.effect-zoe { background: transparent !important; }

figure.effect-zoe figcaption {
	top: auto;
	bottom: 0;
	padding: 15px 15px 0;
	height: 5em;
	background: rgba(30, 30, 30, 0.95) !important; /* Changed: Lighter dark gray */
	color: #F4E4A6 !important; /* Light gold */
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: translate3d(0,100%,0);
	transform: translate3d(0,100%,0);
    border-top: 2px solid #D4AF37;
    text-align: center;
}

figure.effect-zoe p.icon-links a {
	color: #D4AF37 !important; /* Gold */
	font-size: 1.4em;
	padding: 5px 10px;
}

figure.effect-zoe:hover p.icon-links a:hover,
figure.effect-zoe:hover p.icon-links a:focus {
	color: #F4E4A6 !important; /* Light gold */
}

figure.effect-zoe p.description {
	position: absolute;
	bottom: 8em;
	padding: 2em;
	color: #fff;
	text-transform: none;
	font-size: 90%;
	opacity: 0;
	-webkit-transition: opacity 0.35s;
	transition: opacity 0.35s;
	-webkit-backface-visibility: hidden; /* Fix for Chrome 37.0.2062.120 (Mac) */
}

figure.effect-zoe h2,
figure.effect-zoe p.icon-links a {
	-webkit-transition: all 0.35s;
	transition: all 0.35s;
	-webkit-transform: translate3d(0,200%,0);
	transform: translate3d(0,200%,0);
    color: #F4E4A6 !important; /* Light gold */
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
}

figure.effect-zoe p.icon-links a span::before {
	display: inline-block;
	padding: 8px 10px;
	font-family: 'feathericons';
	speak: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.icon-eye::before { content: '\e000'; }
.icon-paper-clip::before { content: '\e001'; }
.icon-heart::before { content: '\e024'; }
figure.effect-zoe h2 { font-size: 1.2rem; }
figure.effect-zoe:hover p.description { opacity: 1; }

figure.effect-zoe:hover figcaption,
figure.effect-zoe:hover h2,
figure.effect-zoe:hover p.icon-links a {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

figure.effect-zoe:hover h2 {
	-webkit-transition-delay: 0.05s;
	transition-delay: 0.05s;
}

figure.effect-zoe:hover p.icon-links a:nth-child(3) {
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

figure.effect-zoe:hover p.icon-links a:nth-child(2) {
	-webkit-transition-delay: 0.15s;
	transition-delay: 0.15s;
}

figure.effect-zoe:hover p.icon-links a:first-child {
	-webkit-transition-delay: 0.2s;
	transition-delay: 0.2s;
}

.tm-services {
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .tm-services { max-width: 510px; }
}

.tm-services-img {
    max-width: 240px;
    margin: 0 auto 40px;
}

.tm-service-description {
    font-size: 1.1rem;
    color: #D4AF37 !important; /* Gold */
    text-align: center;
    margin-top: 20px;
}

.tm-solid-border {
    border: 1px solid #CCCDCE;
    padding: 40px;
}

.tm-service-icon {
    text-align: center;
    min-width: 125px;
    margin-right: 15px;
    color: #D4AF37 !important; /* Gold */
}

.tm-approach-row {
    max-width: 1082px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}

.tm-approach-box {
    margin-left: 12px;
    margin-right: 12px;
}

@media (max-width: 992px) {
    .tm-approach-box {
        margin-left: auto;
        margin-right: auto;
    }
}

.tm-media-2 { margin-bottom: 54px; }

@media (max-width: 992px) {
    .tm-media-2 { margin-bottom: 30px; }
}

@media (max-width: 880px) and (min-width: 768px) {
    .tm-media-2 { flex-direction: column; }
    .tm-service-icon { margin-bottom: 30px; }
}

@media (max-width: 480px) {
    .tm-service-icon {
        margin-right: 0;
        margin-bottom: 30px;
    }
}

.tm-partners {
    max-width: 1020px;
    margin-top: 30px;
}

.tm-partners img {
    margin-left: 10px;
    margin-right: 10px;
}

.tm-partner-text {
    margin-top: 40px;
    max-width: 830px;
}

.form-group { margin-bottom: 40px; }

.tm-btn-primary {
    color: #1A1A1A !important; /* Changed: Dark gray text instead of black */
    background: linear-gradient(135deg, #D4AF37, #B8941F) !important; /* Gold gradient */
    font-size: 1.2rem;
    padding: 14px 35px !important;
    border: none !important;
    font-weight: 800;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.tm-btn-primary:hover,
.tm-btn-primary:focus {
    color: #1A1A1A !important; /* Changed: Dark gray text */
    background: linear-gradient(135deg, #B8941F, #A37C17) !important;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
}

.tm-link { color: #D4AF37 !important; } /* Gold */
.tm-contact-box { padding: 65px; }

.mapouter{
    position:relative;
    text-align:right;
    height:440px;
    padding-left: 60px;
    padding-right: 60px;
    width:100%;
}

.gmap_canvas {
    overflow:hidden;
    background:none!important;
    height:440px;
    width:100%;
}

.tm-ul-hyphen li {
    list-style-type: none;
    line-height: 1.9;
    color: #F5F5F5 !important; /* Off-white */
}

.tm-ul-hyphen li:before {
    content: '-';
    margin-right: 5px;
}

.tm-contact-l,
.tm-contact-r {
    padding-left: 75px;
    padding-right: 75px;
}

@media (max-width: 992px) {
    .mapouter,
    .tm-contact-l,
    .tm-contact-r,
    .tm-contact-box {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 768px) {
    .tm-contact-r { margin-top: 50px; }
    
    .mapouter,
    .tm-contact-l,
    .tm-contact-r,
    .tm-contact-box {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* Diamond-shaped elements */
.diamond-shape {
    display: inline-block;
    transform: rotate(45deg);
    background: #D4AF37;
    width: 12px;
    height: 12px;
    margin: 0 15px;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Product labels */
.product-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #D4AF37, #B8941F);
    color: #1A1A1A; /* Changed: Dark gray text */
    padding: 6px 15px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 800;
    z-index: 3;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

/* Team title styling */
.tm-team-title {
    color: #F5F5F5 !important; /* Off-white */
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    margin: 0 0 10px 0 !important;
    opacity: 1 !important;
}

/* Make all backgrounds dark gray for text containers */
.tm-media-body,
.tm-dotted-box,
.tm-carousel figcaption,
.tm-about-1,
.tm-media.tm-media-v-center {
    background-color: transparent !important;
    background-image: none !important;
}

/* Ensure text is visible on dark gray backgrounds */
.tm-media.tm-media-v-center p,
.tm-about-1 p,
.tm-article-text,
.tm-media-body p {
    color: #F5F5F5 !important; /* Off-white */
    opacity: 1 !important;
    text-shadow: none !important;
}

.tm-media.tm-media-v-center strong {
    color: #D4AF37 !important; /* Gold */
    font-weight: 800;
}

/* Responsive adjustments to match index page */
@media (max-width: 992px) {
    .tm-cta-title {
        font-size: 2.2rem;
    }
    
    .tm-cta-box {
        padding: 50px 30px;
    }
    
    .tm-section-header {
        font-size: 2rem;
    }
    
    .tm-carousel figure {
        height: 280px;
    }
    
    .tm-carousel img {
        height: 180px;
    }
    
    .tm-carousel figcaption {
        min-height: 90px !important;
        padding: 15px 10px 10px 10px !important;
    }
    
    .tm-carousel figcaption h2 {
        font-size: 1rem !important;
    }
    
    .tm-team-title {
        font-size: 0.85rem !important;
    }
}

@media (max-width: 768px) {
    .tm-cta-title {
        font-size: 1.8rem;
    }
    
    .tm-cta-box {
        padding: 40px 20px;
    }
    
    .tm-section-header {
        font-size: 1.8rem;
    }
    
    .tm-nav-link {
        padding: 10px !important;
    }
    
    .tm-carousel figure {
        height: 260px;
    }
    
    .tm-carousel img {
        height: 160px;
    }
    
    .tm-carousel figcaption {
        min-height: 85px !important;
        padding: 12px 8px 8px 8px !important;
    }
    
    .tm-carousel figcaption h2 {
        font-size: 0.95rem !important;
    }
    
    .tm-team-title {
        font-size: 0.8rem !important;
    }
    
    .tm-dotted-box {
        padding: 25px !important;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .tm-media {
        margin-bottom: 20px;
    }
    
    .tm-media-img {
        height: 200px;
    }
    
    .tm-carousel figure {
        height: 240px;
    }
    
    .tm-carousel img {
        height: 140px;
        filter: none !important;
        -webkit-filter: none !important;
    }
    
    .product-label {
        top: 10px;
        left: 10px;
        padding: 5px 12px;
        font-size: 0.75rem;
    }
    
    .tm-carousel figcaption {
        padding: 10px !important;
        min-height: 80px !important;
    }
    
    .tm-carousel figcaption h2 {
        font-size: 0.9rem !important;
        margin-bottom: 5px !important;
    }
    
    .tm-team-title {
        font-size: 0.75rem !important;
    }
}