
/* PRELOADER */

#preloader{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:#000;
display:flex;
align-items:center;
justify-content:center;
z-index:9999;
transition:opacity .5s ease;
}

/* CONTAINER */

.loader-container{
width:220px;
height:2px;
overflow:hidden;
}

/* GOLD LINE */

.gold-line{
width:0;
height:2px;

background:linear-gradient(
90deg,
#8a6a00,
#d4af37,
#fff2a6,
#d4af37,
#8a6a00
);

animation:lineReveal 1.4s ease forwards;
}

/* LINE ANIMATION */

@keyframes lineReveal{

0%{
width:0;
left:50%;
}

100%{
width:100%;
left:0;
}

}

.pb-5{
  padding-bottom: 5rem;
}




/* Navigation */
.navbar{
background: rgba(8,8,8,0.65);
backdrop-filter: blur(14px);
-webkit-backdrop-filter: blur(14px);
border-bottom: 1px solid rgba(212,175,55,0.25);
position:sticky;
top:0;
z-index:1000;
}

.nav-container{
display:flex;
justify-content:space-between;
align-items:center;
height:80px;
}

/* ACTIVE MOBILE */

.mobile-menu.show{
display:flex;
}


.logo {
display: flex;
align-items: center;
gap: 1rem;
}

.logo-link {
display: flex;
align-items: center;
gap: 10px;
text-decoration: none;   /* remove underline */
outline: none;           /* remove outline */
color: inherit;          /* keep text color */
}

.logo-link:focus,
.logo-link:active {
outline: none;
}


.logo-image {
width: 4.5rem;
height: 3.5rem;
background: url(../images/Logo-png.png) center/cover no-repeat;
/* background-color: var(--gold); */
/* border-radius: 50%; */
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
color: var(--gold-gradient);
font-size: 1.25rem;

}

.logo-text {
font-family: "Playfair Display", serif;
font-size: 1.4rem;
/* display: none; */
background: var(--gold-gradient);
background-clip: text;
-webkit-background-clip: text;
color: transparent;
-webkit-text-fill-color: transparent;
font-weight: 700;
line-height: 30px;
}

.logo-text-footer{
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  background: var(--gold-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  line-height: 24px;
}

@media (max-width: 821px) {
.logo-text {
line-height: 24px;
font-weight: 500;
}
}

.video-section{
    width:100%;
}
.video-wrapper{
    position: relative;
    width: 100%;
    max-width: 100%;
    padding-bottom: 56.25%; 
    height: 0;
    overflow: hidden;
    border-radius: 12px; 
}

.video-thumbnail{
    display:block;
    width:100%;
    height:100%;
    position:relative;
}

.video-thumbnail img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.play-button{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:80px;
    height:80px;
    border-radius:50%;
    background:rgba(0,0,0,0.6);
}

.play-button::before{
    content:'';
    position:absolute;
    left:32px;
    top:24px;
    border-style:solid;
    border-width:16px 0 16px 26px;
    border-color:transparent transparent transparent white;
}

.video-wrapper iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* overlay */
.video-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.35);
}

/* content */
.video-content{
    position:absolute;
    inset:0;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:#fff;
    z-index:2;
}

.video-content h2{
    font-size:2.5rem;
}

.video-content p{
    font-size:1.1rem;
}

/* responsive */
@media(max-width:768px){

.video-wrapper{
    height:20rem;
}

.video-content h2{
    font-size:1.6rem;
}

.video-content p{
    font-size:.95rem;
}

}

.nav-links {
display: none;
gap: 2rem;
list-style: none;
}



.nav-links a {
color: var(--text-primary);
text-decoration: none;
font-size: 0.875rem;
transition: color 0.3s;
}

.nav-links a:hover {
color: var(--gold);
}

.nav-links a.active {
color: var(--gold);
font-weight: 600;
}

.menu-btn {
display: none;
background: none;
border: none;
color: var(--text-primary);
cursor: pointer;
font-size: 1.5rem;
}

@media (max-width: 767px) {
.menu-btn {
display: block;
}
}

.mobile-menu{
position:absolute;
top:80px;
left:0;
width:100%;
background:#0a0a0a;

display:none;
flex-direction:column;

list-style:none;
border-top:1px solid rgba(212,175,55,0.2);
}

.mobile-menu li{
border-bottom:1px solid rgba(212,175,55,0.1);
}

.mobile-menu a{
display:block;
padding:16px 20px;
color:#ccc;
text-decoration:none;
}

.mobile-menu a:hover{
background:#111;
color:#d4af37;
}

/* Hero Section */
.hero {
position: relative;
min-height: 91vh;
display: flex;
align-items: center;
overflow: hidden;
padding: 26px 0 200px 0; 
border-bottom: none !important;

}

.hero::before {
content: '';
position: absolute;
inset: 0;
background:
linear-gradient(to right,
rgba(15,15,15,0.95) 0%,
rgba(15,15,15,0.85) 10%,
rgba(15,15,15,0.6) 10%,
rgba(15,15,15,0.2) 15%,
rgba(15,15,15,0) 10%
),
url(../images/banner.png) center/cover no-repeat;
z-index: 0;
}

.hero::after {
content: '';
position: absolute;
top: 50%;
right: 0;
width: 400px;
height: 400px;
background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
transform: translateY(-50%);
z-index: 0;
}

.hero .container {
position: relative;
z-index: 10;
height: 100%;
display: flex;
align-items: center;
padding-top: 5rem;
padding-bottom: 8rem;
}


.hero-tagline {
font-size: 1rem;
color: var(--gold);
letter-spacing: 0.1em;
text-transform: uppercase;
margin-bottom: 1rem;
display: flex;
flex-wrap: wrap;
gap: 0.55rem;
}

.hero-tagline span {
display: inline-block;
}

.hero-tagline span:not(:last-child)::after {
content: '•';
margin-left: 1rem;
display: none;
}

@media (min-width: 640px) {
.hero-tagline span:not(:last-child)::after {
display: inline;
}
.hero-content {
width: 100%;
}
}

.hero h1 {
font-family: "Playfair Display", serif;
font-size: 2rem;
font-weight: 700;
line-height: 1.2;
margin-bottom: 1.5rem;
background: var(--gold-gradient);
background-clip: text;
-webkit-background-clip: text;
color: transparent;
-webkit-text-fill-color: transparent;
animation: fadeIn 0.6s ease-out;
}



@media (min-width: 1024px) {
    
.hero h1 {
font-size: 4.5rem;
}
/* .hero-content {
width: 60%;
} */
}

.hero p {
font-size: 1rem;
color: var(--text-secondary);
max-width: 42rem;
margin-bottom: 2rem;
line-height: 2rem;
letter-spacing: 0.02em;
}

.hero-buttons {
display: flex;
flex-direction: column;
gap: 1rem;
}


@media (min-width: 640px) {
.hero-buttons {
flex-direction: row;
}
}

.btn {
padding: 0.75rem 2rem;
font-size: 1rem;
font-weight: 600;
border: none;
cursor: pointer;
transition: all 0.3s;
border-radius: 0.25rem;
}

.btn-primary {
background-color: var(--gold);
color: var(--bg-primary);
}

.btn-primary:hover {
background-color: var(--gold-light);
}

.btn-secondary {
background-color: transparent;
color: var(--gold);
border: 2px solid var(--gold);
}

.btn-secondary:hover {
background-color: rgba(212, 175, 55, 0.1);
}


/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  width: 100%;
  height: 91vh;
  overflow: hidden;
  background: #000;
  color: #fff;
}

.hero-slider-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-slider-wrapper {
  display: flex;
  height: 100%;
  transition: transform 0.8s ease-in-out;
}

/* ===== SLIDE ===== */
.hero-slider-item {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 8%;
  position: relative;
}

.hero-slider-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.8;
  z-index: 0;
}

.hero-slider-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.3), rgba(0,0,0,0.08));
  z-index: 1;
}

/* Background images */
.hero-slider-item:nth-child(1)::before {
  background-image: url(../images/banner.webp);
}
.hero-slider-item:nth-child(2)::before {
  background-image: url(../images/gallery/inauguration/Mavelikkara-Showroom-inauguration.webp);
}
.hero-slider-item:nth-child(3)::before {
  background-image: url(../images/gallery/news/mangluru-showroom.webp);
}

/* ===== CONTENT ===== */
.hero-slider-content {
  position: relative;
  z-index: 2;
  width: 60%;
  text-align: left;
  /* margin-left: 5%; */
}

.hero-slider-tagline span {
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  
}

.hero-slider-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: var(--gold-light);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: fadeIn 0.6s ease-out;
 filter: 
    drop-shadow(2px 2px 2px rgba(0,0,0,0.9))
    drop-shadow(6px 8px 12px rgba(0,0,0,0.8));}

.hero-slider-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 42rem;
  margin-bottom: 2rem;
  line-height: 2rem;
  letter-spacing: 0.02em;
}

.hero-slider-buttons {
  margin-top: 30px;
}

.hero-slider-btn {
  display: inline-block;
  padding: 12px 25px;
  margin-right: 15px;
  border: 1px solid #c9a45c;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.hero-slider-btn:hover {
  background: #c9a45c;
  color: #000;
}

/* ===== DOT NAV ===== */
.hero-slider-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-slider-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 6px;
  background: #777;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.hero-slider-dot.active {
  background: #c9a45c;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-slider-content{
    width: 100%;
  }
  .hero-slider-content h1 {
    font-size: 30px;
  }

  .hero-slider-content p {
    /* font-size: 14px; */
     display: none;
  }

  .hero-slider-btn {
    padding: 10px 18px;
  }
}

.hero-slider-arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 3;
}

.hero-slider-arrow {
  background: none;
  border: none;
  color: #c9a45c;
  font-size: 22px;
  width: 45px;
  height: 45px;
  cursor: pointer;
  transition: 0.3s;
}

.hero-slider-arrow:hover {
  background: #c9a45c;
  color: #000;
}

/* Optional: hide on mobile */
@media (max-width: 768px) {
  .hero-slider-arrows {
    position: absolute;
    top: 80%;
    right: 30%;
    width: 41%;
  }
  .hero-slider-arrow:hover {
    background: none;
    color: #d4af37;
}
}

/* ================================
   CCU Privacy Policy Styles
================================ */

.privacy-section{
    padding: 100px 20px;
    /* background: #0f172a; */
    color: #ffffff;
}

.privacy-container{
    max-width: 1100px;
    margin: 0 auto;
}

.section-title{
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
}

.section-description{
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,0.75);
    /* margin-bottom: 50px; */
    max-width: 900px;
}

.privacy-card{
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.privacy-card:hover{
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.06);
}

.privacy-card h2{
    font-size: 24px;
    margin-bottom: 18px;
    color: #ffffff;
    font-weight: 600;
}

.privacy-card p{
    font-size: 16px;
    line-height: 1.9;
    color: rgba(255,255,255,0.78);
    margin-bottom: 16px;
}

.privacy-list{
    padding-left: 20px;
    margin-top: 10px;
}

.privacy-list li{
    margin-bottom: 12px;
    line-height: 1.8;
    color: rgba(255,255,255,0.78);
}

/* Utility Classes */

.text-center{
    text-align: center;
}

.text-sm-left{
    text-align: left;
}

/* Responsive */

@media (max-width: 768px){

    .privacy-section{
        padding: 70px 16px;
    }

    .section-title{
        font-size: 30px;
    }

    .section-description{
        font-size: 16px;
    }

    .privacy-card{
        padding: 24px;
        border-radius: 16px;
    }

    .privacy-card h2{
        font-size: 20px;
    }

    .privacy-card p,
    .privacy-list li{
        font-size: 15px;
    }
}


/* SLIDER */
.horizontal-slider{
padding:60px 0;
}

.slider-card{
position:relative;
width:220px;
border-radius:12px;
overflow:hidden;
}

.slider-card img{
width:100%;
height:260px;
object-fit:cover;
border-radius:12px;
}

.slider-card span{
position:absolute;
bottom:12px;
right:12px;
/* left:50%; */
/* transform:translateX(-50%); */
background:#f4b400;
padding:8px 20px;
border-radius:25px;
font-size:14px;
color: #000;
font-weight:600;
}

.industry-section{
padding:80px 0;
}

.industry-wrapper{
display:flex;
justify-content:center;
gap:40px;
flex-wrap:wrap;
}

.industry-card{
position:relative;
width:220px;
border-radius:12px;
overflow:hidden;
}

.industry-card img{
width:100%;
height:260px;
object-fit:cover;
border-radius:12px;
}

.industry-tag{
position:absolute;
bottom:12px;
right:12px;
background:#f2b705;
color:#000;
padding:6px 14px;
font-size:14px;
border-radius:20px;
font-weight:500;
}

/* stagger positions */

.hospitality{
transform:translateY(0);
}

.healthcare{
transform:translateY(80px);
}

.finance{
transform:translateY(-20px);
}

.realestate{
transform:translateY(70px);
}

.tourism{
transform:translateY(-10px);
}









/* Slider Navigation */
.slider-nav {
position: absolute;
top: 50%;
transform: translateY(-50%);
z-index: 20;
background-color: rgba(212, 175, 55, 0.2);
border: none;
color: var(--gold);
padding: 0.75rem;
border-radius: 50%;
cursor: pointer;
transition: background-color 0.3s;
font-size: 1.5rem;
}

.slider-nav:hover {
background-color: rgba(212, 175, 55, 0.4);
}

.slider-nav.prev {
left: 1rem;
}



.slider-nav.next {
right: 1rem;
}



.slider-dots {
position: absolute;
bottom: 2rem;
left: 50%;
transform: translateX(-50%);
z-index: 20;
display: flex;
gap: 0.75rem;
}

.dot {
width: 0.5rem;
height: 0.5rem;
border-radius: 50%;
background-color: rgba(212, 175, 55, 0.4);
border: none;
cursor: pointer;
transition: all 0.3s;
}

.dot.active {
background-color: var(--gold);
width: 2rem;
height: 0.5rem;
}

/* Stats Section */
.stats {
background: rgb(15 15 15 / 95%);
border-top: 1px solid var(--border-color);
border-bottom: 1px solid var(--border-color);
width: 100%;
/* position: relative; */
position: fixed;
/* margin-top: -136px; */
margin-top: -56px;
z-index: 5;
}

.stats::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
/* height: 1px; */

background: linear-gradient(
90deg,
#8B6A2F 0%,
#F5D37A 50%,
#8B6A2F 100%
);
}

.stats::after {
content: "";
position: absolute;
bottom: 0;
left: 0;
width: 100%;
/* height: 1px; */

background: linear-gradient(
90deg,
#8B6A2F 0%,
#F5D37A 50%,
#8B6A2F 100%
);
}

.stats .container {
border-radius: 16px;
padding: 40px 20px;
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.stats-grid {
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 1.3rem;
text-align: center;
}



.stat-item {
text-align: center;
}

.stat-number {
font-size: 1.875rem;
font-weight: bold;
margin-bottom: 0.5rem;

background: var(--gold-gradient);
background-clip: text;
-webkit-background-clip: text;
color: #0f1525;
-webkit-text-fill-color: transparent;
}


.stat-label {
font-size: 0.875rem;
color: var(--text-muted);
margin-top: 8px;
}

/* Chairman Section */
.chairman {
padding: 7.5rem 0;
border-bottom: 1px solid var(--border-color);
width: 100%;
align-items: center;
justify-content: space-between;
}

.chairman .container {
padding-top: 0;
padding-bottom: 0;
align-items: center;
justify-content: space-between;
}

/* .chairman-image {
position: relative;
height: 30rem;
background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), transparent);
border-radius: 0.5rem;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
border: 1px solid var(--border-color);
}


.chairman-image-content {
width: 100%;
height: 100%;
background :url(../images/boby-chemmanur-rolls-royce-golden.webp) center/cover no-repeat;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
} */

.chairman-image{
border-radius: 0.5rem;
overflow: hidden;
border: 1px solid var(--border-color);
display: flex;
/* align-items: center; */
justify-content: center;
height: auto;
}

.chairman-image img{
width: 100%;
}

/* .chairman-image-content .emoji {
font-size: 3.75rem;
margin-bottom: 1rem;
} */

.chairman-image-content p {
color: var(--text-muted);
}


.chairman-signature {
color: var(--gold);
font-weight: 600;
margin-bottom: 1.5rem;
}

.chairman-signature .title {
font-size: 0.875rem;
color: var(--text-muted);
}

/* Businesses Section */
.businesses {
padding: 4rem 0;
border-bottom: 1px solid var(--border-color);
width: 100%;
}

.businesses .container {
padding-top: 0;
padding-bottom: 0;
}



.business-grid{
display:grid;
grid-template-columns: repeat(5, 1fr);
gap:1rem;
}        

/* Impact Section */
.impact {
padding: 4rem 0;
border-bottom: 1px solid var(--border-color);
width: 100%;
}

.impact .container {
padding-top: 0;
padding-bottom: 0;
}

.impact h2 {
font-family: "Playfair Display", serif;
font-size: 1.875rem;
font-weight: bold;
color: var(--gold);
margin-bottom: 1rem;
}


.impact-description {
color: var(--text-secondary);
max-width: 50rem;
margin-bottom: 3rem;
}

.impact-grid {
grid-template-columns: 1fr;
gap: 3rem;
}

.legacy-left {
/* background: url(images/Bobby-2.jpg); */
border-radius: 0.5rem;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
height: auto;
}

.legacy-left img{
width: 100%;
}

.impact-left {
/* background: url(images/Bobby-2.jpg); */
border-radius: 0.5rem;
overflow: hidden;
border: 1px solid var(--border-color);
display: flex;
align-items: center;
justify-content: center;
height: auto;
}

.impact-left img{
width: 100%;
}

.impact-left .emoji {
font-size: 3.75rem;
}

.impact-items {
grid-template-columns: repeat(2, 1fr);
gap: 1.5rem;
}

.impact-item {
/* background-color: rgba(51, 65, 85, 0.5);
border: 1px solid var(--border-color);
border-radius: 0.5rem; */
padding: 1.5rem;
transition: all 0.3s;
}

.impact-item:hover {
border-color: rgba(212, 175, 55, 0.5);
}

.impact-item-emoji {
font-size: 3rem;
margin-bottom: 1rem;
}

.impact-item h3 {
font-size: 0.875rem;
font-weight: bold;
color: var(--gold);
margin-bottom: 0.75rem;
}

.impact-item p {
font-size: 0.75rem;
color: var(--text-secondary);
line-height: 1.5;
}

/* Media Section */
.media {
padding: 4rem 0;
border-bottom: 1px solid var(--border-color);
width: 100%;
}

.media .container {
padding-top: 0;
padding-bottom: 0;
}

.media-grid {
grid-template-columns: 1fr;
gap: 2rem;
}

.media-item {
cursor: pointer;
}

.media-image {
/* background-color: var(--bg-tertiary); */
/* aspect-ratio: 16/9; */
border-radius: 0.5rem;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 1rem;
border: 1px solid var(--border-color);
max-height: 15rem;
height: auto;
transition: border-color 0.3s;
}

.media-image img {
width: 100%;
}

.media-item:hover .media-image {
border-color: rgba(212, 175, 55, 0.5);
}

.media-image .emoji {
font-size: 2rem;
}

.media-item h3 {
font-size: 1.375rem;
font-weight: 600;
color: var(--text-primary);
margin-bottom: 0.5rem;
transition: color 0.3s;
}

.media-item:hover h3 {
color: var(--gold);
}

.media-item p {
font-size: 0.875rem;
color: var(--text-muted);
margin-bottom: 1rem;
}

.media-link {
color: var(--gold);
text-decoration: none;
font-size: 0.875rem;
transition: color 0.3s;
}

.media-link:hover {
color: var(--gold-light);
}

.media-cta {
text-align: center;
padding-top: 2rem;
}

/* Footer */
footer {
background-color: var(--bg-primary);
border-top: 1px solid var(--border-color);
width: 100%;
}

footer .container {
padding-top: 4rem;
padding-bottom: 2rem;
}

.footer-grid {
grid-template-columns: 1fr;
gap: 2rem;
margin-bottom: 3rem;
}

.footer-section h4 {
font-weight: bold;
color: var(--gold);
margin-bottom: 1rem;
}

.footer-section ul {
list-style: none;
}

.footer-section li {
margin-bottom: 0.5rem;
}

.footer-section a {
color: var(--text-muted);
text-decoration: none;
font-size: 0.875rem;
transition: color 0.3s;
}

.footer-section a:hover {
color: var(--gold);
}

.footer-logo {
display: flex;
align-items: center;
gap: 0.5rem;
margin-bottom: 1rem;
}

.footer-description {
color: var(--text-muted);
font-size: 0.875rem;
margin-bottom: 1rem;
}

.social-links {
display: flex;
gap: 1rem;
margin-top: 1.5rem;
}

.social-links a {
color: var(--gold);
text-decoration: none;
transition: color 0.3s;
font-size: 1.25rem;
}

.social-links a:hover {
color: var(--gold-light);
}

.footer-bottom {
border-top: 1px solid var(--border-color);
padding-top: 2rem;
display: flex;
flex-direction: column;
gap: 1rem;
text-align: center;
}


.footer-bottom p,
.footer-bottom a {
color: var(--text-muted);
font-size: 0.875rem;
}

.footer-links {
display: flex;
gap: 1.5rem;
justify-content: center;
}

.footer-links a {
text-decoration: none;
transition: color 0.3s;
}

.footer-links a:hover {
color: var(--gold);
}




/* LOGO CARD */

.business-item{
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
gap:12px;
padding:28px 18px;
border:1px solid rgba(198,166,75,0.3);
border-radius:10px;
background:#0a0a0a;
cursor:pointer;
transition:.3s;
text-align:center;
}

.business-item:hover{
border-color:#d4af37;
transform:translateY(-4px);

}

.business-item img{
max-width:100%;
max-height:60px;
object-fit:contain;
/* filter: grayscale(50%) brightness(1.5); */
opacity:0.85;
}

.business-item:hover img{
filter:none;
opacity:1;
}

.business-name{
font-size:0.85rem;
color:#b8bcc2;
line-height: 1.6;
}

/* POPUP OVERLAY */

.popup-overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.75);
display:none;
align-items:center;
justify-content:center;
z-index:999;
}

.popup-overlay.active{
display:flex;
}

/* POPUP BOX */

.popup-box{
background:#0a0a0a;
border:1px solid rgba(198,166,75,0.3);
padding:40px;
max-width:420px;
width:90%;
text-align:center;
border-radius:10px;
position:relative;
transform:scale(.9);
opacity:0;
transition:.3s;
}

.popup-overlay.active .popup-box{
transform:scale(1);
opacity:1;
}

/* POPUP CONTENT */

.popup-logo{
max-height:200px;
height: auto;
margin-bottom:20px;
width: auto;
max-width: 230px;
}

.popup-box p{
color:#b8bcc2;
line-height:1.7;
margin-bottom:22px;
}

/* BUTTON */

.popup-btn{
display:inline-block;
padding:10px 22px;
border:1px solid #d4af37;
color:#d4af37;
text-decoration:none;
border-radius:6px;
transition:.3s;
}

.popup-btn:hover{
background:#d4af37;
color:#000;
}

/* CLOSE */

.popup-close{
position:absolute;
top:10px;
right:14px;
font-size:22px;
background:none;
border:none;
color:#fff;
cursor:pointer;
}

.sectors{
padding:80px 0;
background:#000;
}

.sector-card{
position:relative;
border-radius:12px;
overflow:hidden;
}

.sector-card img{
width:100%;
height:260px;
object-fit:cover;
display:block;
border-radius:12px;
}

.sector-tag{
position:absolute;
top:12px;
right:12px;
background:#f5b400;
color:#000;
font-size:0.85rem;
padding:6px 14px;
border-radius:20px;
font-weight:500;
}



/* Animations */
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

/* Responsive Utilities */
@media (max-width: 639px) {
.hide-mobile {
display: none;
}
}



/* About page */
/* about-Chairman Section */
.about-chairman {
padding: 7.5rem 0;
border-bottom: 1px solid var(--border-color);
width: 100%;
align-items: center;
justify-content: space-between;
}

.about-chairman .container {
padding-top: 0;
padding-bottom: 0;
align-items: center;
justify-content: space-between;
}

.about-chairman-grid {
grid-template-columns: 1fr;
display: grid;
gap: 3rem;
align-items: center;
}



.about-chairman-image {
position: relative;
/* height: 30rem; */
background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), transparent);
border-radius: 0.5rem;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
border: 1px solid var(--border-color);
width: 100%;
}

.about-chairman-image img {
width: 100%;
height: auto;   /* IMPORTANT */
display: block;
border-radius: 8px;
}


.about-chairman-image-content {
width: 100%;
height: 450px;
background :url(../images/about-boche.png) center/cover no-repeat;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}

/* .about-chairman-image-content .emoji {
font-size: 3.75rem;
margin-bottom: 1rem;
} */

.chairman-label {
font-size: 1.375rem;
color: var(--text-secondary);
font-weight: 200;
}

.about-chairman-image-content p {
color: var(--text-muted);
}

.about-chairman-content h2 {
font-family: "Playfair Display", serif;
font-size: 1.875rem;
font-weight: bold;
margin-bottom: 1.5rem;
line-height: 1.3; 

background: var(--gold-gradient);
background-clip: text;
-webkit-background-clip: text;
color: transparent;
-webkit-text-fill-color: transparent;
}

.about-chairman-label {
font-size: 0.75rem;
color: var(--text-secondary);
letter-spacing: 0.1em;
text-transform: uppercase;
margin-bottom: 1rem;
}

.about-chairman-content p {
color: var(--text-secondary);
font-size: 1.125rem;
line-height: 1.8;
margin-bottom: 1.5rem;
}

.about-chairman-signature {
color: var(--gold);
font-weight: 600;
margin-bottom: 1.5rem;
}

.about-chairman-signature .title {
font-size: 0.875rem;
color: var(--text-muted);
}



/* ===============================
BUSINESS SECTION
=================================*/

.business-section {
/* background: #05070c; */
padding: 80px 0;
position: relative;
}


/* Cards */
.business-card {
position: relative;
border-radius: 14px;
overflow: hidden;
transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.business-card img {
width: 100%;
height: 320px;
object-fit: cover;
display: block;
border-radius: 14px;
}

/* Hover - Only Up (No Scale) */
.business-card:hover {
transform: translateY(-8px);
box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Tag */
.tag {
position: absolute;
top: 15px;
right: 15px;
background: #f5b400;
color: #000;
padding: 8px 16px;
font-size: 14px;
font-weight: 600;
border-radius: 25px;
cursor: pointer;
transition: 0.3s ease;
}

.tag:hover {
background: #ffcc33;
}

/* ===============================
RESPONSIVE GRID
=================================*/


/* Core Values Section */
.core-values {
padding: 4rem 0;
border-bottom: 1px solid var(--border-color);
width: 100%;
}

.core-values .container {
padding-top: 0;
padding-bottom: 0;
}

.core-values h2{
line-height: 4rem;
}

.core-values-image-content .emoji {
font-size: 3.75rem;
margin-bottom: 1rem;
}

.core-values-grid {
grid-template-columns: repeat(1, 1fr);
gap: 1rem;
}

/* ==========================================
   CORE LEADERSHIP TEAM
========================================== */

.leadership-team-grid{
    grid-template-columns: repeat(3,1fr);
    gap: 2rem;
}

.team-card{
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 28px;
    overflow: hidden;
    transition: 0.4s ease;
}

.team-card:hover{
    transform: translateY(-6px);
    border-color: rgba(212,175,55,0.35);
}

.team-image{
    /* height: 320px; */
    height: 435px;
    overflow: hidden;
}

.team-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.team-card:hover .team-image img{
    transform: scale(1.05);
}

.team-content{
    padding: 1.5rem;
}

.team-content h3{
    font-size: 1.35rem;
    margin-bottom: .4rem;
}

.team-role{
    color: #d4af37;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: .95rem;
}

.team-description{
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    font-size: .95rem;
}

/* MOBILE */
@media(max-width:991px){

    .leadership-team-grid{
        grid-template-columns: repeat(2,1fr);
    }

}

@media(max-width:640px){

    .leadership-team-grid{
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .team-image{
        height: 280px;
    }

}


@media (min-width: 1024px) {
.core-values-grid {
grid-template-columns: repeat(4, 1fr);
}
}

.core-values-item {
/* aspect-ratio: 1; */
background-color: var(--bg-primary);
border: 1px solid var(--border-color);
border-radius: 0.5rem;
display: flex;
align-items: end;
justify-content: center;
cursor: pointer;
transition: all 0.35s ease;
}

.core-values-item:hover {
border-color: rgba(212, 175, 55, 0.5);
}

.core-values-item-content {
text-align: left;
padding:2rem;
}

.core-values-item img {
width:50% ; 
}

.core-values-item-emoji{
transition: all 0.35s ease;
}

.core-values-item:hover .core-values-item-emoji {
transform: scale(-3px);
}

.core-values-item-name {
font-weight: 600;
transition: color 0.3s;
}

.core-values-item:hover .core-values-item-name {
color: var(--gold);
}


/* Impact Section */
.business-page-impact {
padding: 4rem 0;
border-bottom: 1px solid var(--border-color);
width: 100%;
}

.business-page-impact .container {
padding-top: 0;
padding-bottom: 0;
}

.business-page-impact h2 {
font-family: "Playfair Display", serif;
font-size: 1.875rem;
font-weight: bold;
color: var(--gold);
margin-bottom: 1rem;
}

.business-page-impact-description {
color: var(--text-secondary);
max-width: 50rem;
margin-bottom: 3rem;
}

.business-page-impact-grid {
grid-template-columns: 1fr;
gap: 3rem;
}

.business-page-impact-left .emoji {
font-size: 3.75rem;
}



.business-page-impact-item {
/* background-color: rgba(51, 65, 85, 0.5);
border: 1px solid var(--border-color);
border-radius: 0.5rem; */
padding: 1.5rem;
transition: all 0.3s;
}

.business-page-impact-item:hover {
border-color: rgba(212, 175, 55, 0.5);
}

.business-page-impact-item-emoji {
font-size: 3rem;
margin-bottom: 1rem;
}

.business-page-impact-item h3 {
font-size: 0.875rem;
font-weight: bold;
color: var(--gold);
margin-bottom: 0.75rem;
}

.business-page-impact-item p {
font-size: 0.75rem;
color: var(--text-secondary);
line-height: 1.5;
}

.verticals {
padding: 120px 5%;
background: radial-gradient(circle at top center, #1a1a1a 0%, #000 70%);
position: relative;
overflow: hidden;
}

.verticals::before {
content: "";
position: absolute;
inset: 0;
background: url("https://www.transparenttextures.com/patterns/stardust.png");
opacity: 0.15;
}

.verticals-grid {
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 30px;
position: relative;
z-index: 2;
}

/* =========================
Business Hero Section
========================= */
/* BUSINESS HERO */

.business-hero{
position:relative;
width:100%;
min-height:80vh;
display:flex;
align-items:center;
justify-content:center;
text-align:left;
padding:60px 20px;
background:url("../images/business-banner.webp") center/cover no-repeat;
color:#fff;
}

.business-hero-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.55);
}

.business-hero-content{
position:relative;
/* max-width:900px; */
width: 100%;
padding: 0 2rem;
z-index:2;
}

/* HEADING */

.business-hero h1{
font-size:48px;
font-weight:700;
line-height:1.3;
margin-bottom:20px;
font-family: "Playfair Display", serif;
background: var(--gold-gradient);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
display: inline-block;
}

.business-hero h1 span{
color:#E8C547;
}

/* TEXT */

.business-hero p{
font-size:18px;
line-height:1.7;
opacity:0.9;
margin-bottom:50px;
max-width: 900px;
}

/* STATS */

.business-stats{
display:flex;
justify-content:flex-start;
gap:24px;
flex-wrap:wrap;
}

.business-stat{
text-align:center;
}

.business-stat h2{
font-size:40px;
color:#E8C547;
margin-bottom:5px;
}

.business-stat span{
font-size:16px;
opacity:0.9;
}

/* ===============================
LEADERSHIP SECTION
=================================*/


.leadership {
padding: 7.5rem 0;
border-bottom: 1px solid var(--border-color);
width: 100%;
align-items: center;
justify-content: space-between;
}

.leadership .container {
padding-top: 0;
padding-bottom: 0;
align-items: center;
justify-content: space-between;
}

.leadership-grid {
grid-template-columns: 1fr;
display: grid;
gap: 3rem;
align-items: center;
}

.leadership-trophy{
width: 100%;
}

.leadership-image {
position: relative;
/* height: 30rem; */
background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), transparent);
border-radius: 0.5rem;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
border: 1px solid var(--border-color);
width: auto;
}

.leadership-image img {
width: 100%;
height: auto;   /* IMPORTANT */
display: block;
border-radius: 8px;
}


.leadership-image-content {
width: 100%;
height: 450px;
background :url(../images/about-boche.png) center/cover no-repeat;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}

/* .leadership-image-content .emoji {
font-size: 3.75rem;
margin-bottom: 1rem;
} */

.leadership-image-content p {
color: var(--text-muted);
}

.leadership-content h2 {
font-family: "Playfair Display", serif;
font-size: 1.875rem;
font-weight: bold;
margin-bottom: 1.5rem;
line-height: 1.3; 

background: var(--gold-gradient);
background-clip: text;
-webkit-background-clip: text;
color: transparent;
-webkit-text-fill-color: transparent;
}

.leadership-label {
font-size: 0.75rem;
color: var(--gold);
letter-spacing: 0.1em;
text-transform: uppercase;
margin-bottom: 1rem;
}

.leadership-content p {
color: var(--text-secondary);
font-size: 1rem;
line-height: 1.8;
/* margin-bottom: 1.5rem; */
}

.leadership-signature {
color: var(--gold);
font-weight: 600;
margin-bottom: 1.5rem;
}

.leadership-signature .title {
font-size: 0.875rem;
color: var(--text-muted);
}



/* leadership-impact Section */
.leadership-page-impact {
/* padding: 4rem 0; */
border-bottom: 1px solid var(--border-color);
width: 100%;
}

.leadership-page-impact .container {
padding-top: 0;
padding-bottom: 0;
}

.leadership-page-impact h2 {
font-family: "Playfair Display", serif;
font-size: 1.875rem;
font-weight: bold;
/* color: var(--gold); */
margin-bottom: 1rem;
}

.leadership-page-impact-description {
color: var(--text-secondary);
max-width: 50rem;
margin-bottom: 3rem;
}

.leadership-page-impact-grid {
grid-template-columns: 1fr;
gap: 3rem;
}

.leadership-page-impact-left .emoji {
font-size: 3.75rem;
}



.leadership-page-impact-item {
border-right: 1px solid; 

/* Apply your specific 5-stop gradient */
border-image-source: linear-gradient(
180deg, 
#B38728 0%, 
#F5D37A 35%, 
#FFF4C2 50%, 
#F5D37A 65%, 
#B38728 100%
);

/* This ensures the gradient stretches the full height */
border-image-slice: 1;
padding: 1.5rem;
transition: all 0.3s;
}

.leadership-page-impact-item:nth-child(4) {
border-right: none;
border-image-source: none; 
}

.leadership-page-impact-item:last-child {
border-right: none;
}

.leadership-page-impact-item:hover {
border-color: rgba(212, 175, 55, 0.5);
}

.leadership-page-impact-item-emoji {
font-size: 3rem;
margin-bottom: 1rem;
}

.leadership-page-impact-item h3 {
font-size: 0.875rem;
font-weight: bold;
color: var(--gold);
margin-bottom: 0.75rem;
}

.leadership-page-impact-item p {
font-size: 0.75rem;
color: var(--text-secondary);
line-height: 1.5;
}



/* SECTION */

.leadership-action-section{
/* padding:80px 5%; */
border-bottom: 1px solid var(--border-color);
}

.leadership-action-container{
/* max-width:1200px; */
margin:auto;
display:flex;
align-items:center;
gap:24px;
}

/* IMAGE */

.leadership-action-image{
flex:1;
}

.leadership-action-image img{
width:100%;
border-radius:6px;
}

/* CONTENT */

.leadership-action-content{
flex:1;
}

.leadership-action-title{
font-family:"Playfair Display", serif;
font-size:42px;
color:#d4af37;
margin-bottom:20px;
}

.leadership-action-text{
color:#444;
line-height:1.7;
margin-bottom:40px;
}

/* POINTS */

.leadership-action-points{
display:flex;
gap:60px;
}

.leadership-action-point{
display:flex;
align-items:center;
gap:10px;
}

.leadership-action-circle{
width:22px;
height:22px;
border:2px solid #d4af37;
border-radius:50%;
}

.leadership-action-label{
color:#d4af37;
font-size:14px;
letter-spacing:0.5px;
}

.achivements-grid {
grid-template-columns: 1fr 1fr;
display: grid;
gap: 2rem;
align-items: center;
}

.achivements-image {
position: relative;
/* max-width: 500px; */
background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), transparent);
border-radius: 0.5rem;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
border: 1px solid var(--border-color);
width: 100%;
height: 440px;
}

.achivements-image img {
width: 100%;
min-height: 320px;   
  height: 100%;
display: block;
border-radius: 8px;
object-fit: cover;
}

.career-why-work-grid{
display:grid;
grid-template-columns: repeat(4, 1fr);
}

.legacy-impact{
display:grid;
grid-template-columns: 30% 60%;
gap:1.5rem;
}

.global-impact{
display:grid;
grid-template-columns: repeat(2, 1fr);
gap:1.5rem;
}

.job-details{
background:#0a0a0a;
padding:80px 20px;
}

.job-container{
max-width:900px;
margin:auto;
}

.job-details h1{
color:#d4af37;
font-size:36px;
margin-bottom:10px;
}

.job-meta{
color:#cfcfcf;
margin-bottom:30px;
}

.job-intro{
color:#bdbdbd;
margin-bottom:40px;
line-height:1.7;
}

.job-block{
margin-bottom:35px;
}

.job-block h3{
color:#d4af37;
margin-bottom:10px;
}

.job-block ul{
padding-left:20px;
}

.job-block li{
color:#bdbdbd;
margin-bottom:8px;
}

/* Apply Form */

.apply-form-wrapper{
margin-top:60px;
padding:40px;
border:1px solid rgba(212,175,55,0.3);
}

.apply-form-wrapper h2{
color:#d4af37;
margin-bottom:25px;
}

.form-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
margin-bottom:20px;
}

.form-full{
margin-bottom:20px;
}

.apply-form input,
.apply-form textarea{
width:100%;
padding:12px;
background:#111;
border:1px solid rgba(212,175,55,0.25);
color:#fff;
}

.apply-form textarea{
min-height:120px;
}

.file-upload{
color:#d4af37;
cursor:pointer;
}

.file-upload input{
display:block;
margin-top:10px;
}

.apply-submit{
padding:14px 28px;
background:transparent;
border:1px solid #d4af37;
color:#d4af37;
cursor:pointer;
}

.apply-submit:hover{
background:#d4af37;
color:#000;
}

.chairman-grid{
grid-template-columns: repeat(1, 1fr);
}


.slider-wrapper {
  position: relative;
}

.slide {
  display: none;
}

.slide.active {
  display: block;
}

/* Controls */
.slider-controls {
  position: absolute;
  bottom: 20px;          /* distance from bottom */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 5;
}

.slider-controls button {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  color: #fff;
  border: none;
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 50%;
  transition: 0.3s;
}

.slider-controls button:hover {
  background: #d4af37;
  color: #000;
}







.legacyfuture-items {
grid-template-columns: repeat(1fr);
gap: 1.5rem;
}

.leadership-list-text{
color:#ffffff;
font-size:1.25rem;
}

.awards-container-grid {
grid-template-columns: repeat(1, 1fr);
}
.awards-container{
display:flex;
justify-content:left;
align-items:center;
}

.award-card{
text-align:center;
}

.award-card p{
    color: var(--gold);
    line-height: 1.6;
    font-weight: 500;
}

.award-icon{
font-size:48px;
color:#d4af37;
}

.award-icon img{
    width: 60px;
}

.award-year{
font-size:32px;
margin-bottom:10px;
}

.award-title{
font-size:22px;
line-height:1.4;
}

.career-why-work {
/* padding: 4rem 0; */
border-bottom: 1px solid var(--border-color);
width: 100%;
}

.career-opportunities-grid {
grid-template-columns: repeat(1, 1fr);
}

.contact-address-grid {
grid-template-columns: repeat(2, 1fr);
}

/* Career Stats Section */
.career-stats {
background: rgba(15, 15, 15, 0.5);
border-bottom: 1px solid var(--border-color);
width: 100%;
position: relative;
z-index: 5;
}


.career-stats .container {
border-radius: 16px;
padding: 40px 20px;
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.career-stats-grid {
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 2rem;
text-align: center;
}



.career-stat-item {
text-align: center;
}

.career-stat-number {
font-size: 1.875rem;
font-weight: bold;
margin-bottom: 0.5rem;

background: var(--gold-gradient);
background-clip: text;
-webkit-background-clip: text;
color: #0f1525;
-webkit-text-fill-color: transparent;
}


.career-stat-label {
font-size: 0.875rem;
color: var(--text-muted);
margin-top: 8px;
}

.contact-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.form-group input,
.form-group select,
.form-group textarea{
width:100%;
background:transparent;
border:none;
border-bottom:1px solid #d4af37;
padding:10px 0;
color:#fff;
outline:none;
}

textarea{
resize:none;
}

.form-bottom{
display:flex;
gap:30px;
margin-top:25px;
align-items:center;
}

.send-btn{
margin-top:25px;
padding:12px 25px;
background:none;
border:1px solid #d4af37;
color:#d4af37;
cursor:pointer;
}

.life-at-grid {
grid-template-columns: repeat(2, 1fr);
gap: 3rem;
}


/* ================================
   CCU SECTION - FULL STYLES
================================ */

/* Section */
.ccu-section {
    padding: 60px 20px;
    background: #0b0b0b;
    color: #fff;
    font-family: Arial, sans-serif;
}

/* Container */
.ccu-container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

/* Heading */
.ccu-section h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

/* Subtitle */
.subtitle {
    color: #aaa;
    max-width: 700px;
    margin: auto;
    line-height: 1.6;
}

/* ================================
   CARDS
================================ */
.ccu-card {
    background: #111;
    padding: 25px;
    border-radius: 12px;
    margin-top: 30px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.ccu-card h3{
  color: var(--gold);
}

.ccu-card p{
  color: var(--text-secondary);
}

.ccu-list li{
  color: var(--text-secondary);
}

.ccu-timeline .step{
  color: var(--text-secondary);
}

/* Highlight card */
.ccu-card.highlight {
    border-left: 4px solid gold;
}

/* Card Hover */
.ccu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.4);
}

/* ================================
   STAR LIST
================================ */
.ccu-list {
    list-style: none;
    padding-left: 0;
    text-align: left;
    margin-top: 15px;
}

.ccu-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    transition: all 0.2s ease;
}

.ccu-list li::marker {
    content: "";
}

/* Star Bullet */
.ccu-list li::before {
    content: "★";
    position: absolute;
    left: 0;
    top: 0;
    color: gold;
    font-size: 14px;
}

/* Nested List */
.ccu-list ul {
    margin-top: 8px;
    padding-left: 18px;
}

.ccu-list ul li::before {
    content: "✦";
    font-size: 12px;
}

/* List Hover */
.ccu-list li:hover {
    color: gold;
    transform: translateX(5px);
}

/* ================================
   TIMELINE
================================ */
.ccu-timeline {
    margin-top: 20px;
    text-align: left;
}

.ccu-timeline .step {
    padding: 15px;
    border: 1px solid transparent;
    margin-bottom: 15px;
    position: relative;
    transition: all 0.3s ease;
}

/* Timeline Dot */
.ccu-timeline .step::before {
    content: "";
    width: 10px;
    height: 10px;
    /* background: gold; */
    border-radius: 50%;
    position: absolute;
    left: -6px;
    top: 20px;
}

/* Timeline Hover */
.ccu-timeline .step:hover {
    background: rgba(255, 215, 0, 0.05);
    border-left: 2px solid #ffd700;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
    .ccu-section h2 {
        font-size: 24px;
    }

    .ccu-card {
        padding: 20px;
    }
}





.contact-form-grid {
grid-template-columns: repeat(1, 1fr);
}

.leadership-page-impact-items {
grid-template-columns: repeat(4, 1fr);
gap: 3rem;
}

.news-flex {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap; /* prevents overflow */
}

/* Adjust widths slightly */
.news-image {
  flex: 0 0 calc(40% - 20px);
}

.news-content-wrap {
  flex: 0 0 calc(60% - 20px);
}

.news-image img {
  width: 100%;
  border-radius: 8px;
}


.news-title {
  font-size: 1.8rem;
  margin: 10px 0;
}

.news-date {
  display: block;
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 15px;
}

.news-content {
  line-height: 1.8;
}


/* POPUP BACKGROUND */
.ai-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
  z-index: 9999;
}

/* ACTIVE */
.ai-popup.active {
  opacity: 1;
  visibility: visible;
}

/* CONTENT ANIMATION */
.popup-content {
  text-align: center;
  transform: scale(0.9);
  transition: transform 0.4s ease;
}

.ai-popup.active .popup-content {
  transform: scale(1);
}

/* IMAGE */
.popup-img {
  max-width: 90%;
  max-height: 70vh;
  border-radius: 12px;
}

/* CAPTION */
.popup-caption {
  color: #fff;
  margin-top: 15px;
  font-size: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* CLOSE */
.popup-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}






.ai-gallery {
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
}

.ai-header {
  text-align: center;
  margin-bottom: 40px;
}

.ai-header h6 {
  letter-spacing: 3px;
  color: #9c7b47;
  font-weight: 500;
  margin-bottom: 20px;
}

/* Filters */
.ai-filters {
  display: inline-flex;
  background: #e9e1d5;
  padding: 8px;
  border-radius: 50px;
  gap: 10px;
  text-align: center;
  margin-bottom: 20px;
}

.ai-filters button {
  border: none;
  background: transparent;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  color: #7a6a55;
  font-weight: 500;
  transition: 0.3s;
}

.ai-filters button.active {
  background: #1a120b;
  color: #fff;
}

/* Grid */
.ai-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  align-items: stretch;
}

/* Card */
.ai-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
  border: 1px solid var(--border-color);
  flex-direction: column;
  height: 100%;
}

.ai-card:hover {
  transform: translateY(-5px);
}

/* Image */
.ai-img {
  position: relative;
  overflow: hidden;
}

.ai-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: 0.4s;
}

.ai-card:hover img {
  transform: scale(1.1);
}

/* Badge */
.badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #d4af37;
  color: #fff;
  padding: 6px 14px;
  font-size: 12px;
  border-radius: 20px;
}

.badge.green {
  background: #2e7d32;
}

.badge.purple {
  background: #6a1b9a;
}

/* Content */
.ai-content {
  padding: 20px;
}

.ai-content h4 {
  font-size: 16px;
  margin-bottom: 10px;
}

.ai-content p {
  font-size: 14px;
  margin-bottom: 10px;
}

.date {
  font-size: 13px;
}


/* ── Core / Leadership Philosophy ── */
.core-section {
  padding: 80px 0 100px;
}

.core-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 70px;
}

.core-eyebrow {
  display: block;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.core-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 18px;
  line-height: 1.15;
}

.core-title span {
  color: var(--gold);
}

.core-subtitle {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin: 0;
}

/* ── Main Grid ── */
.core-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* ── Left ── */
.core-left {
  padding-right: 20px;
}

.boche-heading {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-bottom: 20px;
}

.boche-the {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: #fff;
}

.boche-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -2px;
  line-height: 0.95;
}

.boche-lower {
  color: #fff;
}

.boche-way {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  color: #fff;
}

.boche-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin: 0 0 28px;
}

.boche-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.boche-list li {
  display: flex;
  align-items: center;
  gap: 14px;
}

.boche-letter {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  min-width: 24px;
}

/* .boche-letter--red {
  color: #8b1a1a;
} */

.boche-word {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  font-weight: 400;
}

/* ── Center Image ── */
.core-center {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}

.core-image-wrap {
  position: relative;
  width: 100%;
  /* max-width: 360px; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.core-arch {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212,175,55,0.35), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  filter: blur(20px);
}

.core-img {
  max-width: 390px;
  width: 100%;
  height: auto;
  object-fit: contain;
  z-index: 2;
}

.core-circle {
  position: relative;
  bottom: 80px;
  right: 0;
  width: 180px;
  height: 70px;
  z-index: 2;
}


.core-circle img{
  width: 100%;
  height: auto;
}

/* ── Right ── */
.core-right {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding-left: 20px;
}

.core-block-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 16px;
}

.core-block-text {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  
  .legacy-impact{
grid-template-columns: 1fr;
}
  
  .global-impact{
grid-template-columns: 1fr;
}
  .core-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "left center"
      "right right";
    gap: 40px 30px;
  }
  .core-left  { grid-area: left; }
  .core-center { grid-area: center; }
  .core-right {
    grid-area: right;
    flex-direction: row;
    gap: 40px;
    padding-left: 0;
  }
  .core-block { flex: 1; }
}

@media (max-width: 768px) {
  .core-section { padding: 60px 0 80px; }

  .core-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "center"
      "left"
      "right";
    gap: 40px;
  }

  .core-left { padding-right: 0; text-align: center; }

  .boche-heading { align-items: center; }

  .boche-list { align-items: flex-start; display: inline-flex; }

  .core-center { order: -1; }

  /* .core-image-wrap { max-width: 280px; margin: 0 auto; } */

  .core-right {
    flex-direction: column;
    gap: 36px;
    padding-left: 0;
  }

  .core-block-title,
  .core-block-text { text-align: center; }
}

@media (max-width: 480px) {
  .core-header { margin-bottom: 48px; }
  .boche-name { font-size: 72px; }
  /* .core-image-wrap { max-width: 240px; } */
  .core-circle { margin-top: -44px; }
  .core-img{max-width: 350px; width: auto;}
  .core-circle{width: 90%;}
}



/* ── Stats Marquee ── */
.stats { padding: 0; }

.marquee-wrap {
  overflow: hidden;
  width: 100%;
  padding: 8px 0 0;
  border-top: 1px solid rgba(200, 169, 110, 0.3);
  border-bottom: 1px solid rgba(200, 169, 110, 0.3);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.stats .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 56px;
  border-right: 1px solid rgba(200, 169, 110, 0.3);
  white-space: nowrap;
  gap: 4px;
}

.stats .stat-number {
  /* font-family: 'Playfair Display', serif; */
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
}

.stats .stat-label {
  font-size: 11px;
  font-weight: 400;
  color: rgba(200, 169, 110, 0.65);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0;
}


.vimiva-text {
/* padding: 1.5rem; */
transition: all 0.3s;
}

.vimiva-text p{
font-size: 1rem;
color:#b8bcc2;
line-height: 1.6;
letter-spacing: 0.02em;
/* margin-bottom: 1rem; */
}


.vimiva-text h2 {
font-family: "Playfair Display", serif;
font-size: 3rem;
font-weight: bold;
margin-bottom: 1rem;
line-height: normal;
background: var(--gold-gradient);
background-clip: text;
-webkit-background-clip: text;
color: transparent;
-webkit-text-fill-color: transparent;
}








/* RESPONSIVE */
@media (max-width: 992px) {
  .vimava-boche-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .vimava-center-image {
    order: -1;
  }
}

@media (max-width: 576px) {
  .vimava-section-header h2 {
    font-size: 28px;
  }

  .vimava-title {
    font-size: 22px;
  }
}













/* RESPONSIVE */

/* RESPONSIVE */
@media (max-width:1200px){
.tourism{
transform:translateY(70px);
}
.career-why-work-grid{
grid-template-columns: repeat(3, 1fr);
}
}


@media (max-width: 1024px) {
.business-grid{
grid-template-columns: repeat(4, 1fr);
}
.verticals-grid {
grid-template-columns: repeat(3, 1fr);
gap: 20px; /* Slightly reduced gap for smaller screens */
}
.nav-links{
display:none;
}

.menu-btn{
display:block;
}

.mobile-menu{
position:absolute;
top:80px;
left:0;
width:100%;
background:#0a0a0a;
flex-direction:column;
display:none;
}

.mobile-menu.show{
display:flex;
}

.mobile-menu a{
padding:18px 25px;
font-size:16px;
}
}


@media(max-width:900px){
.nav-links{
display:none;
}

.menu-btn{
display:block;
}

.leadership-action-container{
flex-direction:column;
}

.leadership-action-title{
font-size:32px;
}

.leadership-action-points{
flex-direction:column;
gap:20px;
}

}


@media (max-width:992px){
.achivements-grid{
    grid-template-columns:1fr;
}
.ai-grid {
grid-template-columns: repeat(2, 1fr);
}
.tourism{
transform:translateY(70px);
}
.industry-wrapper{
gap:24px;
}

.industry-card{
width:200px;
}
.legacy-impact{
grid-template-columns: 1fr;
}
.global-impact{
grid-template-columns: 1fr;
}
.career-why-work-grid{
grid-template-columns: repeat(2, 1fr);
}
.business-hero h1{
font-size:36px;
}

.business-hero p{
font-size:16px;
}

.business-stats{
gap:40px;
}
.contact-address-grid {
grid-template-columns: repeat(1, 1fr);
}
.leadership-page-impact-items {
grid-template-columns: repeat(1, 1fr);
gap: 3rem;
}


}


@media (min-width: 992px) {

.leadership-grid {
grid-template-columns: 1fr 2fr; /* 40% / 60% */
}
.about-chairman-grid {
grid-template-columns: 2fr 3fr; /* 40% / 60% ratio */
}


.business-card:nth-child(4) {
margin-top: 40px;
}
.footer-grid {
grid-template-columns: repeat(5, 1fr);
}    

}


@media (min-width: 768px) {

.section-title {
font-size: 3rem;
}
.nav-links {
display: flex;
}
.hero h1 {
font-size: 3rem;
}
.slider-nav.prev {
left: 2rem;
}
.slider-nav.next {
right: 2rem;
}
.stats-grid {
grid-template-columns: repeat(5, 1fr);
}
.stat-number {
font-size: 2.25rem;
}
.chairman-grid {
grid-template-columns: repeat(2, 1fr);
gap: 3rem;
}
.chairman-image {
height: 30rem;
}


.impact h2 {
font-size: 2.25rem;
}
.impact-grid {
grid-template-columns: repeat(2, 1fr);
gap: 3rem;
}
.impact-left {
height: 32rem;
}
.media-grid {
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
}
.footer-grid {
grid-template-columns: repeat(5, 1fr);
}
.footer-bottom {
flex-direction: row;
justify-content: space-between;
text-align: left;
}
.footer-links {
justify-content: flex-end;
}
.about-chairman-content h2 {
font-size: 2.25rem;
}
.core-values-grid {
grid-template-columns: repeat(3, 1fr);
}
.core-values-item:hover .core-values-item-emoji {
transform: scale(1.1);
}

.core-values-item-content {
text-align: left;
padding:2rem;
}

.core-values-item img {
width:80% ; 
}
.business-page-impact h2 {
font-size: 2.25rem;
}
.business-page-impact-grid {
grid-template-columns: repeat(4, 1fr);
gap: 3rem;
}
.leadership-content h2 {
font-size: 2.25rem;
}
.leadership-page-impact h2 {
font-size: 3rem;
}
.leadership-page-impact-grid {
grid-template-columns: repeat(4, 1fr);
gap: 3rem;
}

.business-page-impact-items {
grid-template-columns: repeat(2, 1fr);
gap: 1.5rem;
}

.life-at-grid {
grid-template-columns: repeat(3, 1fr);
gap: 3rem;
}




.card-border {
border-right: 1px solid #C6A64B40;
/* border-right: 1px solid; 
border-image-source: linear-gradient(
180deg, 
#B38728 0%, 
#F5D37A 35%, 
#FFF4C2 50%, 
#F5D37A 65%, 
#B38728 100%
);
border-image-slice: 1;
padding: 1.5rem;
transition: all 0.3s; */
}

.legacyfuture-items {
grid-template-columns: repeat(3, 1fr);
gap: 1.5rem;
}

.career-opportunities-grid {
grid-template-columns: repeat(2, 1fr);
}
.awards-container-grid {
grid-template-columns: repeat(9, 1fr);
}
.contact-form-grid {
grid-template-columns: repeat(3, 1fr);
}

}

@media (max-width: 768px){
  .vimiva-text p{
font-size: 0.55rem;
}
  .legacyfuture-items {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* Show image only on mobile (your requirement) */
    .core-image-wrap {
        display: flex;
        margin: 20px 0;
    }

    /* Better mobile sizing */
    /* .core-img {
        max-width: 200px;
    } */

    .core-arch {
        width: 240px;
        height: 240px;
    }

    .core-circle {
        width: 180px;
        height: 180px;
        bottom: 9%;
        left: 37%;
    }
.ai-filters {
    display: grid;
    grid-template-columns: 1fr; /* single column */
    gap: 10px;
    padding: 10px;
    border-radius: 20px;
    width: 100%;
  }

  .ai-filters button {
    width: 100%;
    text-align: center;
    padding: 12px;
  }
.industry-wrapper{
justify-content:center;

}

.industry-card{
width:45%;
transform:none !important;
}
.business-grid{
grid-template-columns: repeat(2, 1fr);
}
.form-grid{
grid-template-columns:1fr;
}

.job-details h1{
font-size:28px;
}
/* .logo-text{
font-size:14px;
} */

.mobile-menu a{
padding:16px 20px;
font-size:15px;
}
}

/* MOBILE */

@media (max-width:600px){

.business-hero{
padding:80px 20px;
}

.business-hero h1{
font-size:28px;
}

.business-hero p{
font-size:15px;
}

.business-stats{
flex-direction:column;
gap:25px;
}

.business-stat h2{
font-size:32px;
}

.news-flex {
    flex-direction: column;
  }

  .news-image,
  .news-content-wrap {
    max-width: 100%;
    flex: 100%;
  }

}


@media (max-width: 767px) {

.verticals-grid {
grid-template-columns: repeat(1, 1fr);
gap: 15px; /* Tightened gap for mobile scrolling */
}
}

@media (max-width:576px){
.achivements-image{
 height: 320px; 
}
.ai-grid {
grid-template-columns: 1fr;
}
.career-why-work-grid{
grid-template-columns: 1fr;
}
.legacy-impact{
grid-template-columns: 1fr;
gap:1rem;
}
.global-impact{
grid-template-columns: 1fr;
gap:1rem;
}
}

@media(max-width:480px){

.industry-card{
width:100%;
}

.ai-filters {
grid-template-columns: 1fr; /* stack buttons */
}

}

