/* Reset */
* {
    margin: 0;
    
    padding: 0;
    box-sizing: border-box;
  }
  
  :root{
    --bg-soft: #d8c4a5;
    --font-main: 'Inter', sans-serif;
    --gap: 0.8rem;
    --transition-time: 0.5s;
  }



  html {
    scroll-behavior: smooth;
  }
  ::-webkit-scrollbar {
    width: 8px;            
    height: 10px;            
  }
  ::-webkit-scrollbar-track {
    background: #69573374;         
  }
  ::-webkit-scrollbar-thumb {
    background: #BF9C56;     
    border-radius: 6px;       
    transition: background 0.3s ease;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: #d4b067;     
  }


  body {
    font-family: 'Inter', sans-serif;
    color: #fff;
    background-color: #100f10;
    line-height: 1.6;
  }
  
  /* Navbar */
  .navbar {
    backdrop-filter: blur(5px);
    width: 100%;
    padding: 15px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0,0,0,0.6);
    position: fixed;
    top: 0;
    z-index: 1000;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
  }
  
   h1, h2, h3 {
    font-family: "Playfair Display", serif;
    font-size: 18px;
  }
  
  .logo p {
    font-size: 12px;
    color: #ddd;
  }
  
  .nav-links {
    display: flex;
    gap: 25px;
  }
  
  .nav-links a {
    color: #fff;
    position: relative;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
  }

  .nav-links a:hover::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 100%;
    background: #BF9C56;
    margin-top: 5px;
    border-radius: 2px;
  }
  
  .nav-links a:hover {
    color: #BF9C56;
  }
  
  .nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .btn {
    padding: 8px 15px;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
  }
  
  .btn.yellow {
    background: #BF9C56;
    color: #000;
  }
  
  .btn.yellow:hover {
    background: #fbbf24;
  }
  
  .btn.dark {
    border: 1px solid #fff;
    color: #fff;
  }
  
  .btn.dark:hover {
    background: #fff;
    color: #000;
  }
  
  .hamburger {
    display: none;
    font-size: 25px;
    cursor: pointer;
  }
  

  /* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100%;
    background: #fff;
    color: #000;
    z-index: 2000;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: right 0.4s ease;
  }
  
  .sidebar.active {
    right: 0;
  }
  
  .sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .sidebar-header .logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .sidebar-header img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
  }
  
  .sidebar-header h1 {
    font-family: "Playfair Display", serif;
    font-size: 18px;
    margin-bottom: 2px;
  }
  
  .sidebar-header p {
    font-size: 12px;
    color: #555;
  }
  
  .close-btn {
    font-size: 22px;
    cursor: pointer;
  }
  
  .sidebar-links {
    list-style: none;
    margin-top: 30px;
    flex-grow: 1;
  }
  
  .sidebar-links li {
    margin: 15px 0;
  }
  
  .sidebar-links a {
    text-decoration: none;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 10px;
    display: block;
    border-radius: 8px;
    transition: background 0.3s;
  }
  
  .sidebar-links li.active a,
  .sidebar-links a:hover {
    background: #fef3c7;
    color: #d97706;
  }
  
  .sidebar-footer {
    border-top: 1px solid #eee;
    padding-top: 15px;
    font-size: 14px;
  }
  
  .sidebar-footer p {
    margin: 8px 0;
  }
  
  .sidebar-footer .btn.yellow {
    display: block;
    text-align: center;
    margin-top: 10px;
  }
  
  /* Overlay */
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    opacity: 0;
    visibility: hidden;
    z-index: 1500;
    transition: opacity 0.4s ease;
  }
  
  .overlay.active {
    opacity: 1;
    visibility: visible;
  }
  


  /* Hero */
  .hero {
      width: 100%;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: start;
      align-items: start;
      text-align: left;
      padding: 100px 0px 50px 0;
      /* background: 
      linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
      url('assets/design_05.jpg') no-repeat center center/cover; */
      
    }

   .hero-container{
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    padding: 0 20px;
    overflow: hidden;
    justify-content: space-around;
    align-items: center;
   }

   


  @media (max-width: 1024px) {

    .hero{
        justify-content: center;
        text-align: center;
    }

    .hero-container {
      flex-direction: column;
      gap: 30px;
    }
  
    .robot-3d-design{
      transform: 1;
    }
    

  }

  .hero .hero-content{
    z-index: 3;
    width: 100%;
    max-width: 800px;
  }

  /* Wrapper */
  .robot-3d-design {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  @media (max-width:400px) {
    .robot-3d-design{
      transform: scale(0.6);
    }
  }

  @media (max-width:540px) {
    .robot-3d-design{
      transform: scale(0.8);
      padding-bottom: 100px;
    }

    .hero .tagline{
      transform: scale(0.8);
    }
  }

  @media (max-width:640px) {
    .robot-3d-design{
      transform: scale(1);
      padding-bottom: 70px;
    }
  }
  @media (max-width:1100px) {
    .robot-3d-design{
      transform: scale(0.8);
    }
  }
  @media (max-width:1220px) {
    .robot-3d-design{
      transform: scale(0.9);
    }
  }

  @media (max-width:440px) {
    .robot-3d-design{
      transform: scale(0.7);
    }
  }

  /* Main container */
  .hero-3d-image {
    position: relative;
    width: 100%;
    max-width: 600px;
    aspect-ratio: 1 / 1;
    overflow: visible;
  }

  .spline-robot {
      position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    transform: translate(-50%, -50%);
    border: none;
    z-index: 2;
    pointer-events: none;
    overflow-x: hidden;
  }

  /* Spline Robot (center) */
  .hero-spline-viewer {
      width: 601px;
      height: 100%;
      transform: translate(-44px, 0)
    
  }

  /* Orbit Circle */
  .orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 450px;
    height: 450px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    animation: orbit-rotate 20s linear infinite;
  }

  /* Each orbit item */
  .orbit-item {
    position: absolute;
    top: 44%;
    left: 44%;
    transform-origin: center;
  }

  .orbit-item img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid #BF9C56;
    object-fit: cover;
    animation:  orbit-rotate-reverse 20s linear infinite reverse;
    box-shadow: 0 0 10px #BF9C56;
  }

  /* Position items evenly around circle (360 / 7 ≈ 51.4°) */
  .orbit-item:nth-child(1) { transform: rotate(0deg) translate(225px) rotate(-0deg); }
  .orbit-item:nth-child(2) { transform: rotate(51.4deg) translate(225px) rotate(-51.4deg); }
  .orbit-item:nth-child(3) { transform: rotate(102.8deg) translate(225px) rotate(-102.8deg); }
  .orbit-item:nth-child(4) { transform: rotate(154.2deg) translate(225px) rotate(-154.2deg); }
  .orbit-item:nth-child(5) { transform: rotate(205.6deg) translate(225px) rotate(-205.6deg); }
  .orbit-item:nth-child(6) { transform: rotate(257deg) translate(225px) rotate(-257deg); }
  .orbit-item:nth-child(7) { transform: rotate(308.4deg) translate(225px) rotate(-308.4deg); }

  /* Rotate orbit */
  @keyframes orbit-rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to   { transform: translate(-50%, -50%) rotate(360deg); }
  }
  @keyframes orbit-rotate-reverse {
    from { transform:  rotate(0deg); }
    to   { transform:  rotate(360deg); }
  }
  
  


  .hero .tagline {
    margin: 20px auto;
    color: #BF9C56;
    background-color: #BF9C564d;
    box-shadow: 0 0 10px 4px #BF9C56c2;
    width: 340px;
    padding: 6px 15px;
    border-radius: 20px;
    
    display: flex;
    align-items: center;
    font-weight: bold;
    justify-content: space-around;
    font-size: 14px;
    margin-bottom: 15px;
  }
  
  .hero h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1rem, 10vw, 7rem);
  }

  @media (max-width:1220px) {
    .hero h2 {
        font-size: clamp(1rem, 8vw, 5rem);
      }
  }
  
  .hero h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(0.8rem, 3vw, 2rem);
    color: #BF9C56;
    margin-bottom: 15px;
  }
  
  .hero p {
    max-width: 700px;
    width: 100%;
  }
  
  .highlight {
    color: #BF9C56;
    font-weight: bold;
  }
  
  .hero-buttons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    justify-content: center;
  }
  
  /* Stats */
  .stats {
    z-index: 3;
    display: flex;
    margin-top: 50px;
    justify-content: center;
    width: 100%;
    max-width: 700px;
    justify-content: space-around;
  }
  

  .stats-container{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 20px;
  }

  @media (max-width: 884px) {
    .stats-container{
      flex-direction: column;
    }

    .navbar{
      padding: 15px 20px;
    }

  .hero-3d-image {
    max-width: 90%;  /* shrink Spline for small screens */
    aspect-ratio: 4 / 3;
  }
  }
  @media (max-width: 500px) {
    .stats-container{
      flex-direction: column;
    }
  }

  .stat-box {
    text-align: center;
    width: 150px;
    height: 180px;
  }
  
  .stat-box .icon {
    color: #BF9C56;
    background-color: #BF9C564d;
    box-shadow: 0 0 10px 2px #BF9C56c2;
    border: #BF9C56;
    margin: 0 auto;
    font-size: 25px;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
  }
  
  .stat-box .number {
    font-size: 22px;
    font-family: "Playfair Display", serif;
    font-weight: bold;
    color: #BF9C56;
  }

  .stat-box .label {
    font-size: 14px;
    color: #ddd;
    margin-top: 5px;
  }
  
  /* Infinite Scroll */

  .infiniteContainer{
    z-index: 3;
    position: relative;
    width: 100%;
    height: 10vh;
    padding: 0 ;
    margin-top: 80px;
    background-color: transparent;
}

.scroll {
    position: relative;
    display: flex;
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #fff 20%, #fff 80%, transparent)
}

.scroll div {
    white-space: nowrap;
    animation: scroll var(--time) linear infinite;
    animation-delay: calc(var(--time)*-1);

}

.scroll div:nth-child(2) {
    animation: scroll2 var(--time) linear infinite;
    animation-delay: calc(var(--time)/-2);
}

@keyframes scroll {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes scroll2 {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-200%);
    }
}

.scroll div span {

    box-shadow: 0 0 10px 2px #BF9C564d;
    display: inline-flex;
    margin: 10px;
    letter-spacing: 0.2em;
    background: #BF9C564d;
    color: #BF9C56;
    padding: 5px 10px;
    border-radius: 5px;
    transition: 0.5s;

}

.scroll div span:hover {
    background: #BF9C56;
    color: white;
    cursor: pointer;
}

.imgBox div {
    display: flex;
    align-items: center;
    justify-content: center;
}

.imgBox img {
    max-width: 100px;
    scale: 0.8;
}



  /* Responsive */
  @media (max-width: 996px) {

    .btn.yellow{
        display: none;
    }

    .nav-links {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 60px;
      right: 0;
      background: rgba(0,0,0,0.9);
      width: 200px;
      padding: 20px;
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .hamburger {
      display: block;
    }
  

  
    
  }
  

/* ----------------- About Us ---------------- */
.about {
    background: #0c0c0c;
    color: #fff;
    padding: 80px 20px;
  }
  
  .about-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: flex-start;
  }
  
  /* Left Text */
  .about-text .tag {
    display: inline-block;
    background: #1d1d1d;
    color: #BF9C56;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 15px;
  }
  
  .about-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
  }
  
  .about-text h2 span {
    color: #BF9C56;
  }
  
  .about-text p {
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.7;
    color: #ccc;
  }
  
  .about-text .highlight {
    color: #BF9C56;
    font-weight: 600;
  }
  
  .cta-btn {
    display: inline-block;
    margin-top: 25px;
    background: linear-gradient(90deg, #BF9C56, #f2a93b);
    color: #000;
    font-weight: 600;
    padding: 12px 22px;
    border-radius: 30px;
    font-size: 15px;
    cursor: pointer;
    transition: transform 0.3s;
  }
  
  .cta-btn:hover {
    transform: scale(1.05);
  }
  
  /* Right Highlights */
  .about-highlights {
    background: linear-gradient(145deg, #121212, #1a1a1a);
    padding: 35px 25px;
    border-radius: 14px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.5);
  }
  
  .about-highlights h3 {
    color: #BF9C56;
    font-size: 22px;
    margin-bottom: 25px;
    text-align: center;
  }
  
  .about-highlights ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .about-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
  }
  
  .about-highlights .icon {
    background: #BF9C56;
    color: #000;
    font-size: 18px;
    font-weight: bold;
    min-width: 40px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
  }
  
  .about-highlights h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
  }
  
  .about-highlights p {
    font-size: 14px;
    color: #aaa;
    line-height: 1.5;
  }
  
  /* Infinite Section */
  .infinite {
    text-align: center;
    margin-top: 35px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
  }
  
  .infinite .circle {
    width: 55px;
    height: 55px;
    background: #BF9C56;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 12px;
  }
  
  .infinite h4 {
    color: #BF9C56;
    font-size: 16px;
    margin-bottom: 6px;
  }
  
  .infinite p {
    color: #aaa;
    font-size: 14px;
  }
  
  /* Responsive */
  @media(max-width: 992px) {
    .about-container {
      grid-template-columns: 1fr;
    }
    .about-highlights {
      margin-top: 30px;
    }
  }
  


/* ---- Vision & Mission Section ---- */
.vision-mission {
    /* background: #0a0a0a; */

    box-shadow: 0 0 100px 150px #1a1a1a inset;
    color: #fff;
    position: relative;
    text-align: center;
    padding: 80px 20px;
  }

  .vision-container{

    width: 100%;
    height: 100%;
    z-index: 3;
  }
  

  .vision-mission .vision-spline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

  .section-label {
    display: inline-block;
    background: #1a1a1a;
    color: #BF9C56;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 15px;
  }
  
  .section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .section-title span {
    color: #BF9C56;
  }
  
  .section-subtitle {
    color: #ccc;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 16px;
    line-height: 1.6;
  }
  
  /* ---- Cards ---- */
  .cards-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
  }
  
  .vm-card {
    border: 1px solid #BF9C56;
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
    transition: 0.3s linear;
  }

  .vm-card:hover{
    box-shadow: 0 0 10px 3px #BF9C56;
  }

  .vm-column-heading{ 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    justify-content: start; 
    margin-bottom: 20px;
} 
  .vm-column-heading .icon{ 
    width: 50px; 
    height: 50px; 
    color: #ffca28; 
    background: #eebd2bb0; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    border-radius: 10px; 
}
  
  .vm-heading {
    color: #BF9C56;
    font-size: 22px;
  }
  
  .vm-heading span {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #aaa;
  }
  
  .vm-card blockquote {
    font-style: italic;
    color: #ddd;
    border-left: 3px solid #BF9C56;
    padding-left: 15px;
    margin-bottom: 25px;
  }
  
  .vm-points {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .vm-points li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
  }
  
  .vm-points .icon {
    font-size: 22px;
    color: #BF9C56;
  }
  
  .vm-points h4 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 5px;
  }
  
  .vm-points p {
    font-size: 14px;
    color: #bbb;
  }
  
  /* ---- Core Values ---- */
  .core-values h2 {
    font-size: 28px;
    font-weight: 700;
    color: #BF9C56;
    margin-bottom: 8px;
  }
  
  .core-values p {
    color: #aaa;
    margin-bottom: 35px;
  }
  
  .values-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
  }
  
  .value-box {
    background: #141414;
    padding: 30px 20px;
    border-radius: 12px;
    width: 220px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  }
  
  .value-box .circle {
    width: 50px;
    height: 50px;
    background: #BF9C56;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    font-weight: bold;
    font-size: 20px;
    margin: 0 auto 15px;
  }
  
  .value-box h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #fff;
  }
  
  .value-box p {
    font-size: 14px;
    color: #bbb;
  }
  
  /* ---- Responsive ---- */
  @media (max-width: 768px) {
    .section-title {
      font-size: 28px;
    }
    .cards-container {
      grid-template-columns: 1fr;
    }
    .value-box {
      width: 100%;
    }
  }
  

/* -------------------- Leadership ------------------------- */

.leadership-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background: #100f10;
  padding: 80px 20px;
  color: #fff;
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-btn {
  background: #1a1a1a;
  color: #BF9C56;
  border: none;
  border-radius: 20px;
  padding: 8px 18px;
  font-size: 14px;
  margin-bottom: 15px;
  font-weight: 600;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
}

.section-header span {
  color: #BF9C56; /* highlight word */
}

.section-header p {
  font-size: 16px;
  color: #bbb;
  line-height: 1.7;
}

/* Main Leader Cards */
.leader-main-card {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  background: #181818;
  border-radius: 16px;
  padding: 30px;
  align-items: center;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .leader-main-card{
    flex-direction:column ;
  }

  .leader-main-card2{
    flex-direction: column-reverse;
  }
}

.leader-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.leader-photo {
  width: 70%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.leader-photo img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.leader-info {
  flex: 2;
}

.leader-info h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #BF9C56;
}

.leader-info h4 {
  font-size: 16px;
  color: #aaa;
  margin-bottom: 10px;
}

.leader-meta {
  display: flex;
  gap: 15px;
  font-size: 14px;
  color: #999;
  margin-bottom: 15px;
}

.leader-info p {
  color: #ccc;
  font-size: 15px;
  line-height: 1.7;
}

.profile-btn {
  background: #BF9C56;
  color: #0a0a0a;
  border: none;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  margin-top: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.profile-btn:hover {
  background: #d1b06a;
}

.profile-btn.small {
  padding: 10px 18px;
  font-size: 14px;
}

/* Executive Team Title */
.sub-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
  color: #BF9C56;
}

/* -------------------- Executive Leadership Scroll -------------------- */
.leader-section, .team-section {
  background: #100f10;
  color: #fff;
  position: relative;
  padding-bottom: 50px;
}

#leader-grid, #team-grid {
  padding: 50px 0;
  position: relative;
}

.leader-container,.team-container {
  overflow: hidden;
  position: relative;
}

.leader-horizontal, .team-horizontal {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;

  /* Scroll Snap */
  scroll-snap-type: x mandatory; /* horizontal snap */
  -webkit-overflow-scrolling: touch; /* smooth on iOS */
}




.leader-horizontal::-webkit-scrollbar, .team-horizontal::-webkit-scrollbar {
  display: none;
}

/* Cards */
.leader-horizontal > .leader-card, .team-horizontal > .team-card  {
  flex-shrink: 0;
  width: 367px;
  height: 310px;
  background: #181818;
  border-radius: 16px;
  padding: 30px 25px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;

  scroll-snap-align: start; /* aligns card at start */
}

.leader-horizontal > .leader-card:hover, .team-horizontal > .team-card:hover {
  transform: translateY(-6px);
}

.leader-card .leader-photo, .team-card .team-photo {
  width: 90px;
  height: 90px;
  margin: 0 auto 15px;
}

.leader-card .leader-photo img, .team-card .team-photo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #BF9C56;
}

.leader-card h4, .team-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #BF9C56;
}



.leader-card .role, .team-card .role {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 10px;
}

.leader-card .desc, .team-card .desc {
  font-size: 14px;
  color: #bbb;
  margin-bottom: 15px;
  line-height: 1.6;
}

/* Section Title */
.sub-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  color: #BF9C56;
}

/* Scroll Buttons */
.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(191, 156, 86, 0.8);
  border: none;
  color: #fff;
  font-size: 32px;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

.leader-left-btn, .team-left-btn { left: 10px; }
.leader-right-btn, .team-right-btn { right: 10px; }

/* Responsive */
@media (max-width: 1024px) {
  .leader-horizontal > .leader-card, .team-horizontal > .team-card { width: 320px; padding: 20px; }
  .leader-card .leader-photo, .team-card .team-photo { width: 80px; height: 80px; }
}

@media (max-width: 768px) {
  .leader-horizontal > .leader-card, .team-horizontal > .team-card { width: 280px; }
}

@media (max-width: 480px) {
  .leader-horizontal > .leader-card, .team-horizontal > .team-card { width: 300px; padding: 15px; }
  .leader-card .leader-photo, .team-card .team-photo { width: 70px; height: 70px; }
}


/* -------------------- Team Members Scroll -------------------- */



  /* Contact us */


  .contact-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background: #0a0a0a;
    color: #fff;
    padding: 80px 20px;
  }
  
  .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
  }
  
  .section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #BF9C56;
  }
  
  .section-header p {
    font-size: 16px;
    color: #bbb;
    line-height: 1.6;
  }
  
  .contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
  }
  
  .contact-form {
    background: #181818;
    padding: 30px;
    border-radius: 16px;
  }
  
  .contact-form h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #BF9C56;
  }
  
  .form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 15px;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #333;
    background: #0a0a0a;
    color: #fff;
    font-size: 15px;
  }
  
  .contact-form textarea {
    min-height: 120px;
    resize: none;
    margin-bottom: 15px;
  }

  .contact-form .checkbox{
    width: auto;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    border: 1px solid #BF9C56;
    outline: none;
  }
  
  .form-consent {
    display: flex;
    align-items: start;
    gap: 8px;
    font-size: 13px;
    color: #aaa;
    margin-bottom: 20px;
  }

  .form-consent input{
    margin: 4px;
  }
  
  .form-consent a {
    color: #BF9C56;
    text-decoration: underline;
  }
  
  .btn-send {
    background: #BF9C56;
    color: #0a0a0a;
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .btn-send:hover {
    background: #d1b06a;
  }
  
  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .info-card {
    background: #181818;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 20px;
    border-radius: 12px;
  }
  
  .info-card .icon {
    background: #BF9C56;
    color: #0a0a0a;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
  }
  
  .info-card h4 {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 600;
    color: #BF9C56;
  }
  
  .info-card p {
    font-size: 14px;
    color: #bbb;
    line-height: 1.5;
  }
  
  @media (max-width: 992px) {
    .contact-wrapper {
      grid-template-columns: 1fr;
    }
  }



  /* Testimonials */
  /* Section Base */
.testimonials {
  background: #111;
  color: #fff;
  padding: 80px 20px;
  border-radius: 16px;
  text-align: center;
  position: relative;
}

.testimonials-header h4 {
  text-transform: uppercase;
  color: #aaa;
  font-size: 14px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.testimonials-header h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #d4af37;
  margin-bottom: 15px;
}

.testimonials-header p {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
}

/* Wrapper for scroll + arrows */
.testimonials-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Horizontal Scroll */
.testimonials-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 20px 0;
  scrollbar-width: none; /* Firefox */
  scroll-behavior: smooth;
}

.testimonials-scroll::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.testimonial-card {
  flex: 0 0 300px;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 20px;
  border-radius: 16px;
  scroll-snap-align: start;
  box-shadow: 0 5px 20px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
}

.testimonial-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid #d4af37;
  margin: -40px auto 15px;
  display: block;
  background: #fff;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 15px;
}

.testimonial-card h3 {
  color: #d4af37;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.testimonial-card span {
  font-size: 0.85rem;
  color: #aaa;
}

/* Arrows */
.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s ease;
}

.scroll-btn:hover {
  background: rgba(212, 175, 55, 0.8);
}

.scroll-btn.left {
  left: 10px;
}

.scroll-btn.right {
  right: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 80%;
  }

  .scroll-btn {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
}



  /* Footer */

  .footer {
    width: 100%;
    background: #0a0a0a;
    color: #ddd;
    padding: 60px 20px 20px;
    font-family: "Poppins", sans-serif;
  }
  
  .footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 0 30px;
    margin: auto;
  }
  
  .footer-col h4 {
    color: #BF9C56;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
  }
  
  .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
  }
  
  .logo-icon {
    color: #0a0a0a;
    font-weight: 700;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
  }

  .logo-icon img{
    width: 50px;
    height: 50px;
    border-radius: 8px;
  }
  
  .footer-col p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
  }
  
  .footer-contact li {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .footer-socials {
    display: flex;
    flex-wrap: wrap;   /* allows wrapping to next line */
    gap: 12px;
    margin-top: 15px;
    justify-content: center; /* centers them on small screens */
  }
  
  /* Optional tweak for very small devices */
  @media (max-width: 480px) {
    .footer-socials {
      gap: 8px;   /* tighter spacing on phones */
    }
  }
  
  
  .footer-socials a {
    background: transparent;
    color: #d4af37; /* Golden color */
    font-size: 20px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid #d4af37;
    transition: 0.4s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
  }
  
  /* Add a golden glow effect */
  .footer-socials a::before {
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,215,0,0.4), transparent 70%);
    transform: rotate(45deg);
    transition: 0.5s;
    opacity: 0;
  }
  
  .footer-socials a:hover::before {
    top: 0;
    left: 0;
    opacity: 1;
  }
  
  .footer-socials a:hover {
    background: linear-gradient(145deg, #FFD700, #b8860b);
    color: black;
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
  }
  
  
  .footer-col ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-col ul li {
    margin-bottom: 10px;
  }
  
  .footer-col ul li a {
    text-decoration: none;
    color: #bbb;
    font-size: 14px;
    transition: 0.3s;
  }
  
  .footer-col ul li a:hover {
    color: #BF9C56;
    padding-left: 5px;
  }
  
  .newsletter {
    display: flex;
    margin: 15px 0;
  }
  
  .newsletter input {
    padding: 10px;
    border: none;
    outline: none;
    flex: 1;
    border-radius: 8px 0 0 8px;
    background: #181818;
    color: #fff;
  }
  
  .newsletter button {
    background: #BF9C56;
    border: none;
    padding: 0 18px;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s;
  }
  
  .newsletter button:hover {
    background: #d1b06a;
  }
  
  .legal-title {
    margin-top: 25px;
    color: #BF9C56;
    font-size: 16px;
  }
  
  .legal-links li {
    margin-bottom: 8px;
  }
  
  .footer-bottom {
    border-top: 1px solid #222;
    margin-top: 40px;
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 13px;
    color: #888;
  }
  
  .footer-bottom .highlight {
    color: #BF9C56;
    font-weight: 600;
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    .footer-container {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 600px) {
    .footer-container {
      grid-template-columns: 1fr;
    }
    .footer-bottom {
      flex-direction: column;
      gap: 8px;
      text-align: center;
    }
  }
  


  .visit-btn{
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px 15px;
    background: goldenrod;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    margin: 0 auto;
  }










  /* Gallery */
  .gallery{
    text-align: center;
      background: #0c0c0c;
      color: #fff;
      padding: 80px 20px;
    
  }
  .gallery-container {
    width: 90%;
    max-width: 900px;
    background-color: transparent;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    padding: var(--gap);
    margin: 2rem auto;
    border-radius: 8px;
}

/*
----------------------------------
3. Dynamic Grid Layout
----------------------------------
*/
.gallery-container #galleryGrid {
    display: grid;
    gap: var(--gap);
    opacity: 1;
    transition: opacity var(--transition-time) ease-in-out;
}

/* Layout 1: 3x2 grid */
.gallery-container .layout-1 {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
}
.gallery-container .layout-1 .item-1 { grid-area: 1 / 1 / 3 / 2; }
.gallery-container .layout-1 .item-2 { grid-area: 1 / 2 / 2 / 4; }
.gallery-container .layout-1 .item-3 { grid-area: 2 / 2 / 3 / 3; }
.gallery-container .layout-1 .item-4 { grid-area: 2 / 3 / 3 / 4; }

/* Layout 2: 2-column with bottom row */
.gallery-container .layout-2 {
    grid-template-columns: 1.3fr 1fr;
    grid-template-rows: auto auto;
}
.gallery-container .layout-2 .item-1 { grid-area: 1 / 1 / 2 / 2; }
.gallery-container .layout-2 .item-2 { grid-area: 1 / 2 / 2 / 3; }
.gallery-container .layout-2 .bottom-row {
    grid-area: 2 / 1 / 3 / 3;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
}

/*
----------------------------------
4. Image Item Styling
----------------------------------
*/
.gallery-container .image-item {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: flex-end;
    min-height: 150px;
    border-radius: 6px;
    background: #f5f5f5;
}

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

/* Aspect ratios */
.gallery-container .image-item.tall img { aspect-ratio: 2 / 3; }
.gallery-container .image-item.wide img { aspect-ratio: 3 / 2; }
.gallery-container .image-item.square img { aspect-ratio: 1 / 1; }

/* Enhanced zoom effect on hover */
.gallery-container .image-item:hover img { 
    transform: scale(1.1); 
}

.gallery-container .item-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 0.4rem 0.8rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    font-size: 0.85rem;
}
.gallery-container .image-item:hover .item-info { transform: translateY(0); }
.gallery-container .item-info strong { display: block; font-weight: 700; }

/*
----------------------------------
6. Responsiveness
----------------------------------
*/

/* Laptops / Medium Screens */
@media (max-width: 1440px) {
    .gallery-container { width: 95%; padding: 0.6rem; }
}

/* Tablets */
@media (max-width: 1024px) {
    .gallery-container { width: 100%; padding: 0.5rem; }
    .gallery-container #galleryGrid { gap: 0.6rem; }
}

/* Small tablets / large mobiles */
@media (max-width: 440px) {
    .gallery-container { width: 98%; padding: 0.4rem; }

    .gallery-container #galleryGrid,
    .gallery-container .layout-1,
    .gallery-container .layout-2 {
        grid-template-columns: repeat(2, 1fr) !important;
        grid-template-rows: auto !important;
        gap: 0.4rem;
    }
    .gallery-container .image-item img { aspect-ratio: 4 / 3 !important; }
    .gallery-container .layout-1 .item-1,
    .gallery-container .layout-1 .item-2,
    .gallery-container .layout-1 .item-3,
    .gallery-container .layout-1 .item-4,
    .gallery-container .layout-2 .item-1,
    .gallery-container .layout-2 .item-2 { grid-area: unset !important; }
    .gallery-container .layout-2 .bottom-row { grid-template-columns: 1fr 1fr; }
    .gallery-container .layout-2 .item-5 { grid-column: span 2; }

    .gallery-container .item-info { font-size: 0.75rem; padding: 0.3rem 0.5rem; }
}

/* Mobile (up to 480px) */
@media (max-width: 480px) {
    .gallery-container #galleryGrid,
    .gallery-container .layout-1,
    .gallery-container .layout-2 { grid-template-columns: 1fr !important; }
    .gallery-container .layout-2 .bottom-row { grid-template-columns: 1fr !important; }

    .gallery-container .item-info { font-size: 0.7rem; padding: 0.25rem 0.4rem; }
}
