
/* ============================
   Global CSS Variables
   ============================ */
   :root {
    /* 🎨 Colors */
    --primary-color: #DDB45D;
    --secondary-color: #855709;
    --text-white: #ffffff;
    --font-family-base: "Manrope", sans-serif;
    --font-size-base: 16px;
    
    /* Header Colors */
    --header-bg-gradient: rgba(16, 16, 16, 1);
    --header-top-line: #0099ff;
    --menu-text-color: #FFFFFF99;
    --menu-text-hover: #ffffff;
    
    /* Spacing */
    --spacing-xs: 12px;
    --spacing-sm: 20px;
    --spacing-md: 32px;
    --spacing-lg: 40px;
    
    /* Font Sizes */
    --font-xs: 13px;
    --font-sm: 16px;
    
    /* Border Radius */
    --radius-sm: 22px;
    
    /* Transitions */
    --transition-base: 0.3s ease;
  }
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  /* Optional: smooth scrolling */
  html {
    scroll-behavior: smooth;
  }
  a {
    text-decoration: none;
    transition: color 0.3s ease;
  }
 
  body{
    font-family: var(--font-family-base);
    background-color: #020103;
  }
  h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-base);
  }
  p{
    font-size: 16px;
    font-weight: 500;
    color: var(--text-white);
  }
  h1{
    font-weight: 700;
    font-size: 64px;
    line-height: 106%;
  }
  h2{
    font-weight: 600;
    font-size: 44px;
    line-height: 130%;
    letter-spacing: 1%;
  }
  h3{
    font-weight: 600;
    font-size: 40px;
    line-height: 130%;
    letter-spacing: 1%;
  }
  h5{
    font-size: 28px;
    font-weight: 700;
    line-height: 130%;
    letter-spacing: 1%;
  }
  h6{
    font-size: 24px;
    font-weight: 500;
    line-height: 100%;
  }
  
  .section-gap{
    padding: 100px 0;
  }
  .btn-primary{
    font-weight: 700;
    background-color: var(--text-white);
    color: var(--secondary-color);
    padding: 11px 36px;
    border-radius: 22px;
    cursor: pointer;
    font-size: 14px;
    transition: all var(--transition-base);
  }
  .btn-primary:hover{
    background-color: transparent;
    color: var(--text-white);
    border: 1px solid var(--text-white);
    transform: translateY(-2px);
  }
  .btn-transparent{
    font-weight: 700;
    background-color: transparent;
    color: var(--text-white);
    font-size: 14px;
    padding: 11px 69px;
    border-radius: 22px;
    border: 1px solid var(--text-white);
    transition: all var(--transition-base);
  }
  .btn-transparent:hover{
    background-color: var(--text-white);
    color: var(--secondary-color);
    border: 1px solid var(--text-white);
    transform: translateY(-2px);
  }
  .main-btn-primary{
    background-color: #B7832C;
    border: 1px solid #B7832C;
    color: var(--text-white);
    font-size: 14px;
    padding: 11px 36px;
    border-radius: 22px;
    cursor: pointer;
    transition: all var(--transition-base);
    font-weight: 700;
  }
  .main-btn-primary:hover{
    background-color: transparent;
    color: #B7832C;
    border: 1px solid #B7832C;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(183, 131, 44, 0.3);
  }
  .main-btn-transparent{
    background-color: transparent;
    border: 1px solid #B7832C;
    color: #B7832C;
    font-size: 14px;
    font-weight: 700;
    padding: 11px 69px;
    border-radius: 22px;
    cursor: pointer;
    transition: all var(--transition-base);
  }
  .main-btn-transparent:hover{
    background-color: #B7832C;
    color: var(--text-white);
    border: 1px solid #B7832C;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(183, 131, 44, 0.3);
  }
  .gradient-banner {
    background: linear-gradient(90deg, #010C41 0%, #000000 60%, #99001880 100%);
    color: white;
    padding: 30px 0px;
    text-align: left;
    border-radius: 4px;
  }
 @media (max-width: 991px){
  .section-gap{
    padding: 60px 0;
  }
  h1{
    font-size: 40px;
  }
  h2{
    font-size: 32px;
  }
  h3{
    font-size: 28px;
  }
  h4{
    font-size: 24px;
  }
  h5{
    font-size: 20px;
  }
  h6{
    font-size: 18px;
  }
  p{
    font-size: 14px;
  }
  .btn-primary{
    padding: 10px 24px;
    font-size: 12px;
  }
  .btn-transparent{
    padding: 10px 24px;
    font-size: 12px;
  }
  .main-btn-primary{
    padding: 10px 24px;
    font-size: 12px;
  }
  .main-btn-transparent{
    padding: 10px 24px;
    font-size: 12px;
  }
  .gradient-banner{
    padding: 20px 0;
  }
  
  .gradient-banner h2{
    font-size: 28px;
  }
 }
  