
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

 :root{
  --gold: #d59b15;
  --gold-2: #f1a820;
}

/* Splash Layout */
.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #0b0b0b, #060606);
  color: var(--gold);
  transition: opacity .8s ease, transform .6s ease;
}

/* Hide animation */
.splash.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
}

/* Logo */
.splash .logo {
  text-align: center;
}

.splash h1 {
  margin: 0;
  font-family: "Playfair Display";
  font-size: 36px;
  letter-spacing: 1px;
}

/* Loader Bar */
.loader {
  margin-top: 16px;
  width: 70px;
  height: 6px;
  border-radius: 6px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
  position: relative;
}

.loader::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 40%;
  background: linear-gradient(90deg, transparent, var(--gold-2));
  animation: loading 1.4s infinite;
}

@keyframes loading {
  0% { left: -40%; }
  50% { left: 60%; }
  100% { left: 140%; }
}

/* General Styling */
body {

  /* font-family: "Aboreto", system-ui; */
  font-weight: 200;
  font-style: normal;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-style: normal;
  /* font-family: "REM", sans-serif; */
  line-height: 1.6;
  background-color: rgb(255, 255, 255);
}

.material-icons {
  font-size: 36px;     /* icon size */
  color: #D1AB2C;      /* icon color */
  vertical-align: middle; /* text kuda align */
}

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(-10px);}
  to {opacity: 1; transform: translateY(0);}
}

/* Responsive */
@media (max-width: 900px) {
  header {
    flex-direction: column;
    gap: 10px;
    padding: 15px 30px;
  }
  /* nav a {
    margin-left: 15px;
  } */
  .services-panel {
    width: 90%;
    padding: 20px;
  }
}

 /* NAVBAR */
 
.navbar {
  background: #000;
  height: 80px;
  padding: 0 20px;
}

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

/* DESKTOP MENU (FIXED ALIGNMENT) */
.desktop-menu {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.desktop-menu .nav-item {
  list-style: none;
}

.desktop-menu .nav-link {
  color: #f1f1f1 !important;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  position: relative;
  padding: 0 !important;
  line-height: normal !important;
}

/* Hover underline */
.desktop-menu .nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #f3c623d0;
  transition: width 0.3s ease;
}

.desktop-menu .nav-link:hover::after {
  width: 100%;
}


/* BRAND AREA */
.brand-area {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  height: 60px;
  width: auto;
  margin-right: 12px;
}

.brand-text {
    padding-top: 8px;
  font-family: "Lexend Peta", sans-serif;
  display: flex;
  flex-direction: column;
  line-height: 18px;
}

.brand-title {
    padding-top: 4px;
     font-size: 20px; /* 26px*/
  /* font-weight: 300; */
  color:#debf5b;;
  letter-spacing: 1px;
}

.brand-subtitle {
  font-size: 10px;
  color: #fff9eb;
  margin-top: 1px;/* -2px*/
}

/* MOBILE MENU ICON */
.menu-icon {
  font-size: 25px; /* 35px*/
  color: #d8a114;
  cursor: pointer;
  display: none;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}


/* FORCE MOBILE HIDE — IMPORTANT FIX */
@media (max-width: 1000px) {
  .desktop-menu {
    display: none !important;
  }
  .menu-icon {
    display: block !important;
  }
  .brand-title {
    padding-top: 4px;
   font-size: 14px; /* 26px*/
  /* font-weight: 700; */
  color: #f8db7d;
  letter-spacing: 1px;
}

.brand-subtitle {
  font-size: 6px;
  color: #fff9eb;
  margin-top: 0px;/* -2px*/
}


}

/* SIDE MENU (Mobile Drawer) */
.side-menu {
  height: 100%;
  width: 260px;
  position: fixed;
  top: 0;
  right: 0;
  background: #000000;
  overflow-y: auto;
  padding-top: 80px;
  z-index: 999999;
  
  /* OLD: width transition → REMOVE */
  /* transition: 0.4s ease; */

  /* NEW SMOOTH ANIMATION */
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.22, 0.9, 0.36, 1);
}

/* When opened */
.side-menu.open {
  transform: translateX(0);
}


/* Side menu links */
.side-menu a {
  padding: 15px 30px;
  font-size: 20px;
  color: #fff;
  display: block;
  text-decoration: none;
}

.side-menu a:hover {
  /* background: #0b740f; */
  color: #e1b532;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 35px;
  color: white;
  cursor: pointer;
  z-index: 1000000;
}


/* Hero Section */

.hero {
  /* background-color: #000; */
  position: relative;
  height: 70vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70vh;
  object-fit: cover;
  z-index: -1;
}

/* .hero-video {
  opacity: 0;
  transition: opacity 0.2s linear;
}
.hero-video.loaded {
  opacity: 1;
} */



.hero .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6));
  z-index: 2;
}

.hero .hero-content {
  position: relative;
  z-index: 3;
}

.hero h1 {
  font-size: 50px;
  animation: fadeInDown 1.5s ease;
}

.hero p {
  font-size: 1.2rem;
  animation: fadeInUp 2s ease;
}

.hero .btn {
  border-radius: 30px;
  padding: 10px 30px;
}

.btn-primary{
 background-color:#feba17;
 border-color: #ffffff;
}

.btn-primary:hover{
  background-color: #f3c623;
  transform: scale(1.1);
  border-color: #ffffff;
}

/* ===== MOBILE HERO SECTION (GoldenBulls Style) ===== */
@media (max-width: 1000px) {

  .hero {
    height: 300px;               /* Fixed height like example */
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* .hero img {
    height: 300px;               /* Force mobile height */
    /* object-fit: cover; */
    /* object-position: center top; Focus top part of image */
  /* } */ 

  .hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 300px;
  object-fit: cover;
  z-index: -1;
}

  .hero .overlay {
    background: linear-gradient(
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.7)
    );
  }

  .hero-content {
    padding: 0 20px;             /* Side spacing like sample */
  }

  .hero h1 {
    font-family:"Playfair Display";
    padding-top: 20px;
    font-size: 20px !important;
    line-height: 26px;
    font-weight: 600;
  }

}



/* Popup background */
.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  text-align: center;
  padding: 15px;
  z-index: 9999;
  display: none; 
} 

 /* Privacy Popup Styling */
.privacy-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background:#000000cc;
  color: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  font-size: 15px;
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.privacy-popup a {
  color: #D1AB2C;
  font-weight: 500;
  text-decoration: underline;
}

.popup-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

#acceptBtn {
  background: #D1AB2C;
  color: #000000;
  border: none;
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

#acceptBtn:hover {
  background: #f4de96;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}


/* footer */
.footer a:hover {
  color: #D1AB2C;
  text-decoration: underline;
}

.footer p, .footer li {
  font-size: 12px;
  line-height: 1.6;
}
.footer{
  margin-top: 50px;
  background-color: #000000;
  font-family:"Playfair Display";
}


/* partnership */
.partner-card {
 /* background-color: lilinear-gradient(rgba(0,0,0,0.4), rgba(134, 0, 0, 0.6)); */
  border-radius: 12px;
  padding: 30px 20px; /* more space for big logos */
  transition: all 0.3s ease;
  /* box-shadow: 0 6px 18px rgba(0,0,0,0.05); */
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px; /* taller box */
  
}

/* .partner-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
} */

.partner-card img {
 
  max-width: 80%;
  max-height: 80px; /* logo size increased */
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.partner-card img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* .section-title {
  color: #000000;
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: 0.5px;
} */



/* Mission & Vision */
.mission-vision {
  background: #ffffff;
  padding: 90px 0;
}
.section-title {
    text-align: center;
  color: #020202c6;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 50px;
  letter-spacing: 1px;
}
.mv-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.mv-box {
  background: #ffffff;
  border: 2px solid #000000;
  border-radius: 15px;
  flex: 1 1 450px;
  max-width: 550px;
  padding: 40px 35px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.4s ease;
}
.mv-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.mv-icon {
  font-size: 45px;
  color: #d4af37;
  margin-bottom: 15px;
}
.mv-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 15px;
}
.mv-text {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  text-align: justify;
}

/* why choose us box */

.why-choose-us {
  margin-top: 130px;
  padding: 70px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.con {
  display: flex;
  width: 85%;
  background:  linear-gradient(to right, #000000, #0e0e0e);
  color: #d1ab2c;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.left-image {
  flex: 1;
}
.left-image img {
  width: 70%;
  height: 100%;
  object-fit: cover;
}
/* Mobile view (below 900px) — hide image */
@media (max-width: 1000px) {
  .left-image {
    display: none;
  }
}

/* Desktop view (above 900px) — show image */
@media (min-width: 901px) {
  .left-image {
    display: block;
  }
}
.right-content {
  flex: 1;
  padding: 40px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.right-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color:#d1ab2c;
}

.scroll-box {
  max-height: 350px;
  overflow-y: auto;
  padding-right: 10px;
}

.scroll-box::-webkit-scrollbar {
  width: 8px;
}
.scroll-box::-webkit-scrollbar-thumb {
  background-color: #d1ab2c;
  border-radius: 10px;
}

.point {
  margin-bottom: 25px;
}
.point h4 {
  color: #d1ab2c;
  margin-bottom: 5px;
}
.point p {
  color: #fff;
  opacity: 0.9;
  line-height: 1.5;
}

.final-line {
  margin-top: 20px;
  font-weight: 500;
  font-style: italic;
  /* color: #ffe4e4; */
}

@media (max-width: 900px) {
  .con {
    flex-direction: column;
  }
  /* .left-image img {
    height: 290px;
  } */
}


/*  Services  Section  */

.frame-section {
  width: 90%;
  margin: auto;
  padding: 40px 0;
}

.frame-title {
  /* font-family: "Lexend Peta", sans-serif; */
   font-size: 3rem;
  font-weight: 700;
  color:rgb(60, 59, 59);
  text-align: center;
  margin-bottom: 60px;
}

/* Slider wrapper */
.frame-slider {
  position: relative;
  display: flex;
  align-items: center;
}

/* Fade gradient LEFT */
.fade-left {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 80px;
  /* background: linear-gradient(to right, #000000, transparent); */
  z-index: 4;
  pointer-events: none;
}

/* Fade gradient RIGHT */
.fade-right {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 80px;
  /* background: white; */
  z-index: 4;
  pointer-events: none;
}

/* Window frame */
.frame-window {
  overflow: hidden;
  border-radius: 20px;
  margin: auto;
}

/* Track of cards */
.frame-track {
  display: flex;
  transition: transform 0.6s ease;
}

.frame-card {
  margin-right: 20px;
}

/* Cards */
.frame-card {
  min-width: 300px;
  background: #121212;
  color: #fff;
  padding: 25px;
  border-radius: 15px;
  border: 1px solid #d1ab2c;
  text-align: left;
  display: flex;
  flex-direction: column;   /* Important */
  justify-content: space-between; /* Push button bottom */
  height: 260px;            /* Fixed card height */
}


/* Kutty icon */
.service-icon {
  width: 65px;
  height: 65px;
  object-fit: contain;
  margin-bottom: 12px;
}

/* Learn More Button */
.learn-btn {
 
  font-family: "Aboreto", system-ui;

  margin-top: auto;   /* Push automatically to bottom */

  display: inline-block;
 width: 135px;
  padding: 8px 18px;
  border-radius: 25px;
  border: 1px solid #d1ab2c;
  color: #d1ab2c;
  text-decoration: none;
  transition: 0.3s ease;
}

.learn-btn:hover {
  background: #d1ab2c;
  color: black;
}

/* Buttons */
.frame-btn {
  background: #ffffff;
  border: none;
  padding: 10px 15px;
  border-radius: 50%;
  font-size: 22px;
  position: absolute;
  cursor: pointer;
  z-index: 5;
}
.prev { left: -15px; }
.next { right: -15px; }

/* Show More button */
.show-more-container {
  text-align: center;
  margin-top: 25px;
}

.show-more-btn {
  padding: 12px 25px;
  border-radius: 30px;
  color: #d1ab2c;
  border: 2px solid #d1ab2c;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s ease;
}

.show-more-btn:hover {
  background: #d1ab2c;
  color: black;
}

/* Responsive */
@media (max-width: 900px) {
  .frame-card { min-width: 250px; }
}
@media (max-width: 600px) {
  .prev, .next { display: none; }
  .fade-left, .fade-right { display: none; }
}


/* before after */
.philosophy {
  padding: 80px 20px;
  text-align: center;
}

.philosophy h1 {
  font-size: 36px;
  margin-bottom: 8px;
}

.subtitle {
  color: #555;
  margin-bottom: 60px;
}

.philo-wrap {
  display: grid;
  grid-template-columns: 1fr 300px 1fr;
  align-items: center;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

/* LEFT & RIGHT BOX */
.philo-box {
  font-size: 16px;
  line-height: 1.6;
}

.philo-box h3 {
  color: #c8a24b;
  font-size: 18px;
  margin-bottom: 12px;
  border-bottom: 1px solid #ddd;
  display: inline-block;
  padding-bottom: 6px;
}

.philo-box .bold {
  font-weight: 600;
  margin-bottom: 12px;
}

/* IMAGE HEX */
.philo-image {
  display: flex;
  justify-content: center;
}

.hex-border {
  width: 260px;
  height: 280px;
  /* border: 4px solid #c8a24b; */
  /* clip-path: polygon(
    25% 6.7%, 75% 6.7%, 
    100% 50%, 
    75% 93.3%, 25% 93.3%, 
    0% 50%
  ); */
  display: flex;
  justify-content: center;
  align-items: center;
  /* background: #fff; */
  padding: 18px;
}

.hex-border img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* =========================
   MOBILE RESPONSIVE
   ========================= */

@media (max-width: 768px) {

  .philosophy {
    padding: 50px 16px;
  }

  .philosophy h1 {
    font-size: 26px;
  }

  .subtitle {
    font-size: 14px;
    margin-bottom: 35px;
  }

  .philo-wrap {
    grid-template-columns: 1fr;  /* 3 column → 1 column */
    gap: 35px;
  }

  /* Image center */
  .philo-image {
    order: 1;   /* Image comes first */
  }

  .philo-box.left {
    order: 2;
  }

  .philo-box.right {
    order: 3;
  }

  .philo-box {
    text-align: center;
    font-size: 15px;
  }

  .philo-box h3 {
    font-size: 20px;
  }

  .hex-border {
    width: 200px;
    height: 220px;
    padding: 12px;
  }

  .hex-border img {
    object-fit: contain;
  }
}

/* Extra Small Devices (Very Small Mobiles) */
@media (max-width: 480px) {

  .philosophy h1 {
    font-size: 22px;
  }

  .philo-box {
    font-size: 14px;
  }

  .philo-box h3 {
    font-size: 18px;
  }

  .hex-border {
    width: 170px;
    height: 190px;
  }
}



/* AOS */
@media (max-width: 768px) {
  [data-aos] {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }
}
/* service lag */
.frame-track {
  transition: transform 0.6s ease;
  will-change: transform;
}
