/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #159344;
    --primary-orange: #FF6B35;
    --dark-navy: #0F172A;
    --light-gray: #F8FAFC;
    --text-muted: #485669;
    --border-color: #E3E9F0;
    --white: #ffffff;
    --yellow--30: #FEFCE8;
    --bdrRadius: 10px;
    --boxShadow: 0 4px 24px 0 rgba(216, 210, 252, 0.64);
}

p, h1, h2, h3, h4, h5, h5, h6, ul, li {
	padding: 0;
	margin: 0;
	list-style-type: none;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
    
}
a{
    text-decoration: none;
    color: var(--dark-navy);
}

a:hover{
    color: var(--primary);
}


body {
    font-family: 'Inter', sans-serif;
    color: var(--text-muted);
    line-height: 1.6;
    overflow-x: hidden;
    -moz-transition: ease 0.1s;
    -o-transition: ease 0.1s;
    -webkit-transition: ease 0.1s;
    transition: ease 0.1s;
}

h1{
    font-size:3.5rem!important;
    color: var(--dark-navy);
}
h2{
    font-size: 3rem!important;
}

.text-orange {
    color: var(--primary-orange);
}

.text-blue {
    color: var(--primary);
}

/* Buttons */
.btn {
    padding: 0.625rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

.btn-outline {
    background: transparent;
    color: var(--dark-navy);
    border: 2px solid var(--border-color);
}

.btn-outline:hover {
    background: var(--dark-navy);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-orange {
    background: var(--primary-orange);
    color: var(--white);
}

.btn-orange:hover {
    background: var(--primary-orange);
    transform: translateY(-2px);
    color: var(--white);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--dark-navy);
}

.btn-white:hover {
    background: var(--gray--50);
    color: var(--primary);
}
.btn-sm{
    padding: 0.25rem 0.85rem;
    font-size: 0.8rem;
    font-weight: 500;
}

.btn-purple{
    background-color: #9334EA!important;
    color:var(--white);
}

.button-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.w-65 {
	width: 65%;
}
.w-45{
    width: 45%;
}
.text-orenage{
  color: var(--primary-orange)!important;
}

img {
	display: block;
	max-width: 100%;
}

.navbar-toggler:focus, .navbar-toggler:focus-visible, button:focus-visible, button:focus, input:focus, input:focus-visible, select:focus, select:focus-visible, textarea:focus, textarea:focus-visible, .form-control:focus, .form-control:focus-visible, .form-select:focus, .form-select:focus-visible{
    outline: none;
    box-shadow: none;
}

.bg-light{
    background-color: var(--light-gray)!important;
}


@media(max-width:992px){
  .w-65 {
    width: auto;
  }
  .btn {
    font-weight: 500;
    font-size: 0.875rem;
    white-space: nowrap;
  }
  h2 {
	font-size: 2rem !important;
}

  h1 {
	font-size: 2.5rem !important;
}
}

