:root {
  --primary-color: #D4AF37;
  --primary-hover: #C58C1B;
  --dark-deep: #050B18;
  --dark-card: #0F172A;
  --text-main: #64748B;
  --white: #FFFFFF;
  --transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
  background-color: var(--dark-deep);
}

html {
  scroll-behavior: smooth;
}
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.container {
  max-width: 1140px;
}

.btn-primary {
  background: var(--primary-color) !important;
  border: none !important;
  color: #050B18 !important;
  transition: var(--transition);
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 8px;
}

.btn-primary:hover {
  background: var(--primary-hover) !important;
  transform: translateY(-2px);
}


/* Glass Panel - Responsive */
.hero-glass {
  max-width: 820px;
  width: 90%;
  margin: auto;
  padding: 40px 30px;
  background: rgba(8, 22, 55, 0.35);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 16px;
}

/* Cards inside hero */
.hero-card {
  padding: 24px 16px;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 12px;
  transition: var(--transition);
  text-align: center;
  color: #fff;
}

.hero-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.1);
}

.hero-card i {
  font-size: 28px;
  color: var(--primary-color);
  margin-bottom: 12px;
}

/* Section spacing - Responsive */
section {
  padding: 100px 0;
}

/* Media Queries for Tablet and Mobile */
@media (max-width: 991px) {
  .hero-bg {
    min-height: 60vh;
    padding: 100px 0 40px 0;
  }

  .hero-glass {
    width: 92%;
    padding: 30px 20px;
  }

  section {
    padding: 75px 0;
  }
}

@media (max-width: 768px) {
  .hero-bg {
    min-height: auto;
    padding: 90px 0 30px 0;
  }

  .hero-glass {
    width: 95%;
    padding: 24px 16px;
    margin: 0 auto;
  }

  .hero-card {
    margin-bottom: 20px;
  }

  section {
    padding: 50px 0;
  }
}


/* ============================= */
/* RESPONSIVE FIX PATCH */
/* ============================= */

img {
  max-width: 100%;
  height: auto;
}

/* Prevent horizontal scroll */
body {
  overflow-x: hidden;
}

/* Better typography scaling */
h1 {
  font-size: clamp(26px, 5vw, 48px) !important;
}

h2 {
  font-size: clamp(22px, 4vw, 36px) !important;
}

h3,
h4 {
  font-size: clamp(18px, 3vw, 28px) !important;
}

/* Section spacing fix */
section {
  padding: 60px 0 !important;
}

@media (max-width: 768px) {
  section {
    padding: 40px 0 !important;
  }

  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Hero fix */
  header .row {
    flex-direction: column;
  }

  header .col-lg-5,
  header .col-lg-7 {
    width: 100% !important;
  }

  /* Reduce hero height */
  header {
    min-height: auto !important;
  }

 

  /* Cards spacing fix */
  .row.g-4>div {
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 24px !important;
  }

  h2 {
    font-size: 20px !important;
  }

  .p-5,
  .p-4 {
    padding: 1rem !important;
  }
}

img {
  width: 100%;
  display: block;
  height: auto;
}

