/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

:root {
    --primary-blue: #386BC9;
    --secondry-blue: #113A87;
    --primary-orange: #FF6B35;
    --black: #000000;
    --light-gray: #F5F5F5;
    --body-text: #383838;
    --border-color: #F0F0F0;
    --white: #ffffff;
    --gray--50: #f7f7f7;
    --placeholder-text: #939292;
    --white--43: rgba(255, 255, 255, 0.43);
    --common-shadow: 0 0px 10px rgba(0, 0, 0, 0.1);
}

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;
    font-family: "Poppins", sans-serif;
}
a{
    text-decoration: none;
}
body {
    font-family: "Poppins", sans-serif;
    color: var(--body-text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.text-blue {
    color: var(--primary-blue);
}
.text-blue-dark{
    color: var(--secondry-blue)!important;
}

/*--Heading tegs--*/
h1{
    font-size: 3.5rem!important;
}

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

h3{
    font-size: 2rem!important;
}

h4{
    font-size: 1.5rem!important;
}

h5{
    font-size: 1.25rem!important;
}

h6{
    font-size: 1rem!important;
}
p{
    font-size: 1rem;
    color: var(--body-text);
}

/* Buttons */
.btn {
    padding: 0.625rem 1.5rem;
    border: none;
    border-radius: 0px;
    font-weight: 400;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    box-shadow: 4px 4px 0 rgba(56, 107, 201, 0.2);
    -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;
}
.btn:hover{
    box-shadow: 0 0 0 rgba(56, 107, 201, 0.2);
    transform: translateY(-5px);
}

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

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

.btn-outline-white:hover {
    background: var(--primary-blue);
    color: var(--white);
    border-color:var(--primary-blue);
}

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

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

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

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

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

.btn-white:hover {
    background: var(--gray--50);
    color: var(--primary-blue);
}

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

.w-65 {
	width: 65%;
}
.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{
    outline: none;
    box-shadow: none;
}

.bdr-white{
    border-color: var(--white)!important;
}
.bg-white{
    background-color: var(--white)!important;
}

.section {
    padding: 4rem 0;
}
.section-title {
	margin-bottom: 2rem;
}
.section-title h2{
    font-weight: 700;
}

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

    h1 {
        font-size: 2.5rem !important;
    }
    
    .hero-banner-img video {
        height: 310px;
        object-fit: cover;
    }
    .section {
        padding: 3rem 0;
    }
    h2 {
        font-size: 1.5rem !important;
    }
    h3 {
        font-size: 1.2rem !important;
    }
    p{
        font-size: 0.875rem;
    }
    h5 {
        font-size: 1rem !important;
    }
}

@media(max-width:767px){
    h1 {
        font-size: 1.7rem !important;
    }
    .hero-banner-img video {
        height: 310px;
        object-fit: cover;
    }

}

