
:root{
--gold:#c0a16b;
--dark:#111832;
--light-gold:#d4b483;
}

/* Standard syntax (most modern browsers) */
::placeholder {
  color: #f3f3f3 !important;
}
.divider { width:120px;height:4px;background:linear-gradient(90deg,transparent,var(--gold),transparent);margin:20px auto;border-radius:10px; }

/* Mozilla Firefox 4 to 18 */
:-moz-placeholder {
  color: #f3f3f3 !important;
  opacity: 1; /* Firefox adds a default lower opacity, this ensures full opacity */
}
body{
background:#0b1022;
color:#fff;
font-family: Inter, system-ui, sans-serif;
overflow-x: hidden;
}

.gold{color:var(--gold);}
.bg-dark-custom{background:#0d1326;}
.bg-light-custom{background:#0b1022;}

.section-padding{padding:45px 0;}

.btn-gold{
background:var(--gold);
color:#111;
border:none;
padding:12px 28px;
border-radius:30px;
font-weight:600;
transition:all 0.3s ease;
}

.btn-gold:hover{
background:var(--light-gold);
transform:translateY(-3px);
box-shadow:0 10px 20px rgba(192, 161, 107, 0.2);
}

.btn-outline-gold{
border:1px solid var(--gold);
color:var(--gold);
padding:10px 24px;
border-radius:30px;
text-decoration:none;
transition:all 0.3s ease;
}

.btn-outline-gold:hover{
background:var(--gold);
color:#111;
transform:translateY(-3px);
}

.glass{
background:rgba(255,255,255,0.06);
backdrop-filter: blur(12px);
border-radius:20px;
border:1px solid rgba(255,255,255,0.08);
transition:all 0.4s ease;
}

nav{
background:rgba(10,15,40,0.85)!important;
backdrop-filter: blur(10px);
padding:20px 0;
}
/* Logo Styling */
.logo {
  width: 175px;       
  height: 50px; 
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover animation: slight scale + tilt */
.logo:hover {
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 8px 20px rgba(192, 161, 107, 0.5);
}

/* Make logo responsive */
@media (max-width: 768px) {
  .logo {
    width: 80px;
    /* height: 40px; */
  }
}

@media (max-width: 576px) {
  .logo {
    width: 85px;
   
  }
}
/* HERO SLIDER WITH NAVIGATION */
.hero{
    height:100vh;
    position:relative;
    overflow:hidden;
}
.slide{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    opacity:0;
    transition:1.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    transform:scale(1.1);
}
.slide.active{
    opacity:1;
    transform:scale(1);
}
.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to right, rgba(10,15,40,.9), rgba(10,15,40,.4));
}
.hero-content{
    position:relative;
    z-index:2;
    height:100%;
    display:flex;
    align-items:center;
}

/* Hero Navigation */
.hero-nav {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    z-index: 10;
}

.hero-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-arrows {
    display: flex;
    gap: 15px;
}

.hero-arrow {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(192, 161, 107, 0.15);
    border: 2px solid var(--gold);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.3rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.hero-arrow:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transform: scale(0);
    border-radius: 50%;
    transition: transform 0.4s ease;
    z-index: -1;
}

.hero-arrow:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(192, 161, 107, 0.3);
}

.hero-arrow:hover:before {
    transform: scale(1);
}

.hero-arrow:hover i {
    color: #111;
    animation: arrowPulse 0.6s ease;
}

@keyframes arrowPulse {
    0% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
    100% { transform: translateX(0); }
}

.hero-dots {
    display: flex;
    gap: 12px;
    margin: 0 40px;
}

.hero-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.hero-dot:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.4s ease;
}

.hero-dot.active {
    border-color: var(--gold);
    background: transparent;
}

.hero-dot.active:before {
    transform: scale(0.6);
}

.hero-dot:hover {
    background: var(--gold);
    transform: scale(1.2);
}

/* Hero Progress Bar */
.hero-progress {
    flex: 1;
    max-width: 300px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.hero-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--light-gold));
    width: 0%;
    transition: width 0.1s linear;
    border-radius: 3px;
}

/* Hero Slide Counter */
.hero-counter {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-weight: 600;
    font-size: 1.1rem;
}

.hero-current {
    font-size: 2.2rem;
    color: var(--gold);
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-total {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.2rem;
}

/* Hero Content Animations */
.hero-content h1 {
    animation: slideInUp 1s ease-out 0.2s both;
}

.hero-content p {
    animation: slideInUp 1s ease-out 0.5s both;
}

.hero-content .btn-gold {
    animation: slideInUp 1s ease-out 0.8s both;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pause/Play Button */
.hero-play {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(192, 161, 107, 0.15);
    border: 2px solid var(--gold);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
}

.hero-play:hover {
    background: var(--gold);
    color: #111;
    transform: scale(1.1);
}

/* Responsive Hero Navigation */
@media (max-width: 992px) {
    .hero-controls {
        flex-direction: column;
        gap: 20px;
        bottom: 20px;
    }
    .hero-dots {
        margin: 10px 0;
    }
    .hero-progress {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-arrow {
        width: 50px;
        height: 50px;
    }
    .hero-dot {
        width: 12px;
        height: 12px;
    }
    .hero-counter {
        font-size: 0.9rem;
    }
    .hero-current {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .hero-arrows {
        gap: 10px;
    }
    .hero-arrow {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

.program-card{transition:.4s;}
.program-card:hover{
transform:translateY(-10px);
box-shadow:0 15px 30px rgba(0,0,0,0.3);
}


.program-card{transition:.4s;}
.program-card:hover{
transform:translateY(-10px);
box-shadow:0 15px 30px rgba(0,0,0,0.3);
}

/* INTRODUCTION SECTION STYLES */
.intro-section {
position: relative;
overflow: hidden;
}

.intro-container {
display: flex;
align-items: center;
gap: 60px;
}

.intro-content {
flex: 1;
}

.intro-image {
flex: 1;
position: relative;
}

.intro-img {
width: 100%;
height: 600px;
object-fit: cover;
border-radius: 20px;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
transition: all 0.5s ease;
position: relative;
z-index: 1;
}

.intro-img:hover {
transform: scale(1.02);
box-shadow: 0 30px 60px rgba(192, 161, 107, 0.2);
}

.image-overlay {
position: absolute;
top: 30px;
right: -20px;
width: 80%;
height: 100%;
background: linear-gradient(45deg, var(--gold), transparent);
border-radius: 20px;
z-index: 0;
opacity: 0.3;
}

.image-badge {
position: absolute;
top: 40px;
right: -20px;
background: var(--gold);
color: #111;
padding: 20px;
border-radius: 15px;
z-index: 2;
font-weight: 700;
text-align: center;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
transform: rotate(5deg);
animation: float 3s ease-in-out infinite;
}

.image-badge h4 {
margin: 0;
font-size: 1.5rem;
}

.image-badge p {
margin: 5px 0 0 0;
font-size: 0.9rem;
opacity: 0.8;
}

@keyframes float {
0%, 100% { transform: translateY(0) rotate(5deg); }
50% { transform: translateY(-10px) rotate(5deg); }
}

.intro-highlight {
color: var(--gold);
font-weight: 600;
font-size: 1.1rem;
margin-bottom: 20px;
display: block;
text-transform: uppercase;
letter-spacing: 1px;
}

.intro-features {
margin: 40px 0;
}

.feature-item {
display: flex;
align-items: flex-start;
gap: 15px;
margin-bottom: 25px;
}

.feature-icon {
width: 50px;
height: 50px;
background: rgba(192, 161, 107, 0.1);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
color: var(--gold);
font-size: 1.2rem;
flex-shrink: 0;
}

.feature-content h4 {
color: var(--gold);
margin-bottom: 8px;
font-size: 1.2rem;
}

.feature-content p {
color: #ccc;
margin: 0;
font-size: 0.95rem;
}

.intro-stats {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 25px;
margin-top: 40px;
padding-top: 40px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card {
text-align: center;
padding: 25px 15px;
border-radius: 15px;
background: rgba(192, 161, 107, 0.05);
border: 1px solid rgba(192, 161, 107, 0.1);
transition: all 0.3s ease;
}

.stat-card:hover {
transform: translateY(-5px);
border-color: var(--gold);
background: rgba(192, 161, 107, 0.08);
}

.stat-number {
font-size: 2.5rem;
font-weight: 700;
color: var(--gold);
margin-bottom: 10px;
line-height: 1;
}

.stat-label {
color: #ccc;
font-size: 1rem;
}

/* VISION & MISSION SECTION */
.vision-mission-section {
position: relative;
}

.vision-card, .mission-card {
height: 100%;
padding: 50px 40px;
position: relative;
overflow: hidden;
}

.vision-card:before, .mission-card:before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: var(--gold);
transform: scaleX(0);
transition: transform 0.6s ease;
}

.vision-card:hover:before, .mission-card:hover:before {
transform: scaleX(1);
}

.icon-container {
width: 80px;
height: 80px;
background: rgba(192, 161, 107, 0.1);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 30px;
font-size: 2rem;
color: var(--gold);
}

/* CORE OBJECTIVES SECTION */
.objectives-section {
position: relative;
}

.objectives-container {
max-width: 900px;
margin: 0 auto;
}

.objective-item {
display: flex;
align-items: flex-start;
gap: 20px;
padding: 25px;
margin-bottom: 20px;
border-radius: 15px;
background: rgba(255, 255, 255, 0.03);
border-left: 4px solid var(--gold);
transition: all 0.3s ease;
}

.objective-item:hover {
background: rgba(192, 161, 107, 0.05);
transform: translateX(10px);
}

.objective-number {
width: 40px;
height: 40px;
background: var(--gold);
color: #111;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
flex-shrink: 0;
}

.objective-content h4 {
color: var(--gold);
margin-bottom: 10px;
font-size: 1.2rem;
}

.objective-content p {
color: #ccc;
margin: 0;
}

/* NEWS SECTION STYLES */
.news-section {
position: relative;
overflow: hidden;
}

.news-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
gap: 30px;
margin-top: 50px;
}

.news-card {
height: 100%;
border-radius: 20px;
overflow: hidden;
background: rgba(13, 19, 38, 0.7);
border: 1px solid rgba(192, 161, 107, 0.1);
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.news-card:hover {
transform: translateY(-15px);
border-color: var(--gold);
box-shadow: 0 20px 40px rgba(192, 161, 107, 0.15);
}

.news-image {
height: 220px;
width: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}

.news-card:hover .news-image {
transform: scale(1.05);
}

.news-content {
padding: 25px;
}

.news-category {
display: inline-block;
background: var(--gold);
color: #111;
padding: 5px 15px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
margin-bottom: 15px;
text-transform: uppercase;
letter-spacing: 1px;
}

.news-title {
font-size: 1.4rem;
font-weight: 600;
margin-bottom: 15px;
line-height: 1.4;
}

.news-date {
color: #aaa;
font-size: 14px;
margin-bottom: 15px;
display: flex;
align-items: center;
gap: 8px;
}

.news-date i {
color: var(--gold);
}

.news-excerpt {
color: #ccc;
line-height: 1.6;
margin-bottom: 20px;
}

.read-more {
color: var(--gold);
text-decoration: none;
font-weight: 600;
display: inline-flex;
align-items: center;
gap: 8px;
transition: gap 0.3s ease;
}

.read-more:hover {
color: var(--light-gold);
gap: 12px;
}

/* CAROUSEL SLIDER STYLES */
.carousel-section {
position: relative;
padding: 100px 0;
}

.carousel-container {
max-width: 1200px;
margin: 0 auto;
position: relative;
}

.testimonial-carousel {
position: relative;
overflow: hidden;
border-radius: 30px;
background: rgba(13, 19, 38, 0.8);
padding: 40px;
border: 1px solid rgba(192, 161, 107, 0.2);
}

.carousel-track {
display: flex;
transition: transform 0.5s ease-in-out;
}

.carousel-slide {
min-width: 100%;
padding: 20px;
}

.testimonial-content {
text-align: center;
padding: 40px;
}

.testimonial-text {
font-size: 1.4rem;
line-height: 1.8;
color: #fff;
font-style: italic;
margin-bottom: 40px;
position: relative;
}

.testimonial-text:before,
.testimonial-text:after {
content: '"';
font-size: 4rem;
color: var(--gold);
opacity: 0.3;
position: absolute;
}

.testimonial-text:before {
top: -20px;
left: -10px;
}

.testimonial-text:after {
bottom: -40px;
right: -10px;
}

.testimonial-author {
display: flex;
align-items: center;
justify-content: center;
gap: 20px;
margin-top: 30px;
}

.author-avatar {
width: 70px;
height: 70px;
border-radius: 50%;
overflow: hidden;
border: 3px solid var(--gold);
}

.author-avatar img {
width: 100%;
height: 100%;
object-fit: cover;
}

.author-info h4 {
color: var(--gold);
margin-bottom: 5px;
font-size: 1.2rem;
}

.author-info p {
color: #aaa;
font-size: 0.9rem;
}

.carousel-nav {
display: flex;
justify-content: center;
gap: 20px;
margin-top: 40px;
}

.carousel-btn {
background: rgba(192, 161, 107, 0.1);
border: 2px solid var(--gold);
color: var(--gold);
width: 50px;
height: 50px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: all 0.3s ease;
font-size: 1.2rem;
}

.carousel-btn:hover {
background: var(--gold);
color: #111;
transform: scale(1.1);
}

.carousel-dots {
display: flex;
justify-content: center;
gap: 10px;
margin-top: 30px;
}

.carousel-dot {
width: 12px;
height: 12px;
border-radius: 50%;
background: rgba(192, 161, 107, 0.3);
cursor: pointer;
transition: all 0.3s ease;
}

.carousel-dot.active {
background: var(--gold);
transform: scale(1.2);
}

/* Section Headers */
.section-header {
text-align: center;
margin-bottom: 60px;
position: relative;
}

.section-header h2 {
font-size: 3rem;
margin-bottom: 20px;
position: relative;
display: inline-block;
}

.section-header h2:after {
content: '';
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
width: 100px;
height: 3px;
background: var(--gold);
border-radius: 2px;
}

.section-header p {
color: #ccc;
max-width: 600px;
margin: 0 auto;
font-size: 1.1rem;
line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
.intro-container {
flex-direction: column;
gap: 40px;
}
.intro-img {
height: 450px;
}
.image-badge {
right: 10px;
top: 30px;
}
}

@media (max-width: 768px) {
.news-grid {
grid-template-columns: 1fr;
}
.section-header h2 {
font-size: 2.5rem;
}
.testimonial-text {
font-size: 1.2rem;
}
.carousel-slide {
padding: 10px;
}
.testimonial-content {
padding: 20px;
}
.intro-stats {
grid-template-columns: repeat(2, 1fr);
}
.stat-number {
font-size: 2rem;
}
.intro-img {
height: 350px;
}
.image-badge {
padding: 15px;
right: 5px;
top: 20px;
}
.image-badge h4 {
font-size: 1.2rem;
}
}

@media (max-width: 576px) {
.intro-stats {
grid-template-columns: 1fr;
}
}

/* Animation */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

.news-card,
.carousel-slide {
animation: fadeInUp 0.6s ease forwards;
}

/* Footer */
.site-footer {
  margin-top: 80px;
  padding: 50px 0;
  background: linear-gradient(135deg, #0b1022, #0f1735);
  border-top: 1px solid rgba(192,161,107,0.3);
}

.footer-brand {
  font-weight: 800;
  letter-spacing: 1px;
  color: #fff;
}

.footer-brand span {
  color: #c0a16b;
  text-shadow: 0 0 10px rgba(192,161,107,0.6);
}

.footer-text {
  color: #aaa;
  font-size: 0.95rem;
}

.footer-contact a {
  color: #ddd;
  text-decoration: none;
  font-weight: 500;
}

.footer-contact a:hover {
  color: #c0a16b;
}

.footer-copy {
  color: #888;
  font-size: 0.85rem;
}

/* Social Icons */
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(192,161,107,0.4);
  color: #c0a16b;
  margin-right: 8px;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #c0a16b;
  color: #0b1022;
  box-shadow: 0 0 15px rgba(192,161,107,0.6);
}

/* Back to Top */
#backToTop {
  position: fixed;
  bottom: 90px;
  right: 25px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: #c0a16b;
  color: #0b1022;
  font-size: 22px;
  display: none;
  z-index: 999;
  box-shadow: 0 0 15px rgba(192,161,107,0.6);
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 999;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

/* Mini Footer */
.mini-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0b1022;
  border-top: 1px solid rgba(192,161,107,0.3);
  text-align: center;
  padding: 8px;
  font-size: 14px;
  z-index: 998;
}

.mini-footer a {
  color: #c0a16b;
  text-decoration: none;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.programme-card {
  background: rgba(255,255,255,0.04);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(192,161,107,0.25);
  transition: 0.4s ease;
}

.programme-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 35px rgba(192,161,107,0.25);
}

.programme-img {
  position: relative;
  overflow: hidden;
}

.programme-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: 0.6s ease;
}

.programme-card:hover .programme-img img {
  transform: scale(1.08);
}

.programme-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(11,16,34,0.8));
}

.programme-body {
  padding: 25px;
}

.programme-body h5 {
  color: #c0a16b;
  font-weight: 700;
}

.programme-body p {
  color: #ccc;
  font-size: 0.95rem;
}

.programme-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  border: 1px solid #c0a16b;
  color: #c0a16b;
  font-weight: 600;
  transition: 0.3s ease;
}

.programme-btn:hover {
  background: #c0a16b;
  color: #0b1022;
  box-shadow: 0 0 15px rgba(192,161,107,0.6);
}

.card {
    background: #1a1f3a;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}
.card-title {
    color: #c0a16b;
}
.card-text {
    color: #ccc;
}
a.read-more {
    color: #c0a16b;
    text-decoration: none;
}
a.read-more:hover {
    text-decoration: underline;
}
.pagination .page-link {
    background: #1a1f3a;
    color: #fff;
    border: none;
}
.pagination .page-link:hover {
    background: #c0a16b;
    color: #0b1022;
}

/* Programmes */
.programme-card { background:#111832; border-radius:20px; overflow:hidden; border:1px solid rgba(192,161,107,.3); transition:.4s; }
.programme-card:hover { transform:translateY(-8px); box-shadow:0 0 30px rgba(192,161,107,.25); }
.programme-card img { width:100%; height:220px; object-fit:cover; }
.programme-title { color:var(--gold); font-weight:700; }
.programme-btn { display:inline-block; padding:10px 22px; border-radius:30px; border:1px solid var(--gold); color:var(--gold); text-decoration:none; font-weight:600; margin-top:10px; }
.programme-btn:hover { background:var(--gold); color:#0b1022; }


/* Team Cards */
.team-card {
    background: var(--secondary);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: transform .3s, box-shadow .3s;
}
.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(192,161,107,.3);
}
.team-card img {
    border-radius: 50%;
    width: 140px;
    height: 140px;
    object-fit: cover;
    border: 4px solid var(--gold);
}
.team-card h5 {
    color: var(--gold);
    margin-top: 15px;
    font-weight:700;
}
.team-card p { font-size: 0.95rem; color: #ddd; margin-top:10px; }
.social-icons a {
    color: var(--gold);
    margin: 0 8px;
    font-size: 1.2rem;
    transition: color .3s;
}
.social-icons a:hover { color: #fff; }

.gallery-container {
    padding: 90px 0;
}
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-header h2 {
    color: #c0a16b;
    font-size: 3rem;
    margin-bottom: 10px;
}
.section-header p {
    color: #ccc;
    font-size: 1.1rem;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}
.gallery-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.4s ease;
    cursor: pointer;
}
.caption {
    margin-top: 8px;
    text-align: center;
    font-size: 0.9rem;
    color: #c0a16b;
}
/* Pagination styles */
.pagination {
    justify-content: center;
    margin-top: 40px;
}
.pagination .page-link {
    background: #1a1f3a;
    color: #c0a16b;
    border: none;
    margin: 0 5px;
}
.pagination .page-link:hover {
    background: #c0a16b;
    color: #0b1022;
}
.pagination .active .page-link {
    background: #c0a16b;
    color: #0b1022;
}

.contact-container {
    padding: 80px 0;
}
.contact-info i {
    color: #c0a16b;
    margin-right: 15px;
}
.contact-form input, .contact-form textarea {
    background: #1a1f3a;
    border: none;
    color: #fff;
}
.contact-form input:focus, .contact-form textarea:focus {
    background: #1a1f3a;
    color: #fff;
    border-color: #c0a16b;
    box-shadow: none;
}
.contact-form button {
    background: #c0a16b;
    color: #0b1022;
    border: none;
    transition: 0.3s;
}
.contact-form button:hover {
    background: #fff;
    color: #0b1022;
}
iframe {
    border: 0;
    width: 100%;
    height: 350px;
    border-radius: 15px;
}