@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@500;600;700;800&display=swap");

.light {
  --mainColor: #c9a84c;
  --hoverColor: #dfc87a;
  --backgroundColor: #f8f6f1;
  --navy: #0a1628;
  --navyLight: #1a2332;
  --darkOne: #1a2332;
  --darkTwo: #2c3e50;
  --lightOne: #5a6577;
  --lightTwo: #8a8a8a;
}

.dark {
  --mainColor: #c9a84c;
  --hoverColor: #dfc87a;
  --backgroundColor: #0d1117;
  --navy: #0a1628;
  --navyLight: #161b22;
  --darkOne: #e6e6e6;
  --darkTwo: #c9c9c9;
  --lightOne: #8b949e;
  --lightTwo: #6b7280;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
}

.stop-scrolling {
  height: 100%;
  overflow: hidden;
}

img {
  width: 100%;
}

a {
  text-decoration: none;
}

.big-wrapper {
  /* position: relative; */
  padding: 1.7rem 0 2rem;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background-color: var(--backgroundColor);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.container {
  position: relative;
  max-width: 81rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 3rem;
  z-index: 10;
}
.nav-container{
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex_container {
  display: flex;
  max-width: 81rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 3rem;
  z-index: 10;
}

.left_box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70%;
}

.right_box {
  width: 80%;
  display: flex;
  position: relative;
  right: 50px;
}

.image-box{
  height: 500px !important;
  position: relative;
  right: 12px;
}
.image-box img{
 width: 700px;
 position: relative;
 right: 150px;
 bottom: 100px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 70;
  transition: all 0.3s ease;
  background: rgba(248, 246, 241, 0.92);
  backdrop-filter: blur(8px);
  padding: 10px 0;
  box-shadow: 0 1px 10px rgba(0,0,0,0.04);
}
header.scrolled {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  padding: 5px 0;
}
header.scrolled .links a {
  color: rgba(255,255,255,0.8);
}
header.scrolled .links a:hover {
  color: #c9a84c;
}
header.scrolled .logo h3 {
  color: #c9a84c;
}

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

.overlay {
  display: none;
}

.logo {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.logo img {
  height: 50px;
  width: auto;
  border-radius: 5px;
  margin-right: 0.6rem;
  margin-top: -0.6rem;
}

.logo h3 {
  color: var(--navy);
  font-size: 1.55rem;
  line-height: 1.2;
  font-weight: 700;
}

.links ul {
  display: flex;
  justify-content: center;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.links a {
  color: var(--lightTwo);
  margin-left: 4.5rem;
  display: inline-block;
  transition: 0.3s;
}

.links a:hover {
  color: var(--hoverColor);
  transform: scale(1.05);
}

.btn {
  display: inline-block;
  padding: 0.9rem 1.9rem;
  color: #fff !important;
  background-color: var(--mainColor);
  border-radius: 8px;
  text-transform: capitalize;
  transition: 0.3s;
  border: none;
  font-weight: 500;
}

.btn:hover {
  background-color: var(--hoverColor);
  transform: scale(1) !important;
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

.hamburger-menu {
  position: relative;
  z-index: 99;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  display: none;
}

.hamburger-menu .bar {
  position: relative;
  width: 100%;
  height: 3px;
  background-color: var(--darkTwo);
  border-radius: 3px;
  transition: 0.5s;
}

.bar::before,
.bar::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--darkTwo);
  border-radius: 3px;
  transition: 0.5s;
}

.bar::before {
  transform: translateY(-8px);
}

.bar::after {
  transform: translateY(8px);
}

.big-wrapper.active .hamburger-menu .bar {
  background-color: transparent;
}

.big-wrapper.active .bar::before {
  transform: translateY(0) rotate(-45deg);
}

.big-wrapper.active .bar::after {
  transform: translateY(0) rotate(45deg);
}

.showcase-area .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  justify-content: center;
}

.big-title {
  font-size: 1.4rem;
  color: var(--darkOne);
  text-transform: capitalize;
  line-height: 1.4;
}

.text {
  color: var(--lightOne);
  font-size: 1.1rem;
  margin: 1.9rem 0 2.5rem;
  max-width: 600px;
  line-height: 2.3;
}

.showcase-area .btn {
  box-shadow: 0 0 40px 2px rgba(0, 0, 0, 0.05);
}

.person {
  width: 123%;
  transform: translate(15%, 25px);
}

.toggle-btn {
  display: inline-block;
  border: none;
  background: var(--darkTwo);
  color: var(--backgroundColor);
  outline: none;
  cursor: pointer;
  height: 39px;
  width: 39px;
  border-radius: 50%;
  font-size: 1.1rem;
  transition: 0.3s;
}

.toggle-btn i {
  line-height: 39px;
}

.toggle-btn:hover {
  background: var(--mainColor);
}

.big-wrapper.light .toggle-btn i:last-child {
  display: none;
}

.big-wrapper.light .toggle-btn i:first-child {
  display: block;
}

.big-wrapper.dark .toggle-btn i:last-child {
  display: block;
}

.big-wrapper.dark .toggle-btn i:first-child {
  display: none;
}

.shape {
  position: absolute;
  z-index: 0;
  width: 500px;
  bottom: -180px;
  left: -15px;
  opacity: 0.1;
}

.copy {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  animation: appear 1s 1 both;
}

@keyframes appear {
  0% {
    clip-path: circle(30% at -25% -25%);
  }

  100% {
    clip-path: circle(150% at 0 0);
  }
}

@media screen and (max-width: 870px) {
  .hamburger-menu {
    display: flex;
    background-color: var(--backgroundColor);
    border-radius: 10px;
    padding: 5px;
    
  }

  .links {
    position: fixed;
    top: 0;
    right: 0;
    max-width: 300px;
    width: 100%;
    height: 100%;
    background-color:#312f3a;
    color: var(--backgroundColor);
    z-index: 95;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: 0.5s;
  }

  .links ul {
    flex-direction: column;
    padding-bottom: 100px;;
    font-size: 23px;
  }

  .links ul li:first-child {
    margin-top: 70px;
  }

  .links a {
    color: #fff;
    margin-left: 0;
    padding: 2rem 0;
  }

  .links .btn {
    background: none;
    font-size: 23px;
  }

  .overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    pointer-events: none;
    transition: 0.5s;
  }

  .big-wrapper.active .links {
    transform: translateX(0);
    box-shadow: 0 0 50px 2px rgba(243, 237, 237, 0.4);
  }

  .big-wrapper.active .overlay {
    pointer-events: all;
    opacity: 1;
  }

  .showcase-area {
    padding: 2.5rem 0;
    max-width: 700px;
    margin: 0 auto;
  }

  .showcase-area .container {
    grid-template-columns: 1fr;
    justify-content: center;
    grid-gap: 2rem;
  }

  .big-title {
    font-size: 1.1rem;
  }

  .text {
    font-size: 0.95rem;
    margin: 1.4rem 0 1.5rem;
  }

  .person {
    width: 100%;
    transform: none;
  }

  .logo h3 {
    font-size: 1.25rem;
  }

  .shape {
    bottom: -180px;
    left: -150px;
  }
}

@media screen and (max-width: 470px) {
  .container {
    padding: 0 1.5rem;
  }

  .big-title {
    font-size: 0.9rem;
  }

  .text {
    margin: 1.1rem 0 1.5rem;
  }

  .showcase-area .btn {
    font-size: 0.8rem;
  }


  .image-box img{
    width: 450px;
    position: relative;
    top: -90px;
    right: 25px;
    bottom:150px;
   }

   .image-box{
    height: 300px !important;
   }
   .get-started{
    height: 400px !important;
   }

   .carousel-box {
    width: 90% !important;
  }

}


/* Hero Section */
.hero-section {
  padding: 140px 0 60px;
  position: relative;
}
.hero-badge {
  display: inline-block;
  background: rgba(201, 168, 76, 0.12);
  color: #c9a84c;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 16px;
  border: 1px solid rgba(201, 168, 76, 0.2);
}
.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--darkOne);
  line-height: 1.2;
  margin-bottom: 16px;
}
.hero-text p {
  font-size: 1.05rem;
  color: var(--lightOne);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 540px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}
.btn-gold {
  background: #c9a84c !important;
  color: #0a1628 !important;
  font-weight: 600;
}
.btn-gold:hover {
  background: #dfc87a !important;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35) !important;
}
.btn-outline {
  background: transparent !important;
  border: 2px solid #c9a84c !important;
  color: #c9a84c !important;
}
.btn-outline:hover {
  background: #c9a84c !important;
  color: #0a1628 !important;
}
.hero-stats {
  display: flex;
  gap: 32px;
}
.hero-stats .stat {
  display: flex;
  flex-direction: column;
}
.hero-stats .stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--darkOne);
}
.hero-stats .stat-label {
  font-size: 13px;
  color: var(--lightOne);
  letter-spacing: 0.5px;
}
.hero-image img {
  width: 100%;
  max-width: 550px;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

/* Feature Cards Premium */
.show-cards .card {
  border: 1px solid #eae7e1 !important;
  border-radius: 12px;
  background: #ffffff;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.show-cards .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #c9a84c, #dfc87a);
}
.dark .show-cards .card {
  background: #161b22;
  border-color: #1a2332 !important;
}
.show-cards p {
  color: var(--lightOne);
  text-align: left;
  padding: 0;
  font-size: 14px;
  line-height: 1.7;
}
.show-cards .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(10, 22, 40, 0.1) !important;
}
.dark .show-cards .card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.3) !important;
}
.show-cards h3 {
  color: #0a1628;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.dark .show-cards h3 {
  color: #e6e6e6;
}
.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.card-icon i {
  font-size: 24px;
  color: #c9a84c;
}
.section-title {
  text-align: center;
  margin-bottom: 40px;
}
.section-title .gold-accent {
  display: inline-block;
  width: 40px;
  height: 3px;
  background: #c9a84c;
  margin-bottom: 12px;
}
.section-title h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: #0a1628;
  margin-bottom: 8px;
}
.dark .section-title h2 {
  color: #e6e6e6;
}
.section-title p {
  color: var(--lightOne);
  font-size: 15px;
}
.card-container {
  margin-top: 80px !important;
}

/* Premium Footer */
footer {
  background: #0a1628;
  padding: 60px 0 0;
  margin-top: 80px;
}
.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col h4 {
  font-family: 'Playfair Display', serif;
  color: #c9a84c;
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.footer-col p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 8px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: 0.3s;
  font-size: 14px;
}
.footer-col ul li a:hover {
  color: #c9a84c;
  padding-left: 4px;
}
.footer-col .social-icons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-col .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.6);
  transition: 0.3s;
}
.footer-col .social-icons a:hover {
  background: #c9a84c;
  color: #0a1628;
  transform: translateY(-2px);
}
.footer-bottom {
  text-align: center;
  padding: 24px 0;
}
.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 13px;
}

.carousel-box {
  width: 75%;
  margin: 40px auto;
}

.about-card {
  background: rgba(255,255,255,0.9);
  border-radius: 12px;
  padding: 24px;
}
.dark .about-card {
  background: rgba(22, 27, 34, 0.9);
}
.about-card p {
  color: var(--darkOne);
}
.about-card h3 {
  color: var(--darkOne);
  font-family: 'Playfair Display', serif;
}
.icon-hover i:hover {
  transition: all 0.2s ease;
  transform: scale(120%);
  color: #c9a84c;
}

/* Responsive Updates */
@media (max-width: 768px) {
  .hero-text h1 { font-size: 2rem; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .hero-cta { flex-direction: column; }
  .hero-section { padding: 100px 0 40px; }
  .footer-content { grid-template-columns: 1fr; gap: 30px; }
  .footer-col .social-icons { justify-content: flex-start; }
}
