*{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;
font-family:'Inter',sans-serif;
}

html, body {
    overflow-y: auto;
}

body{
background:#fff;
color:#756868;
}

h1,h2,h3,h4,h5,h6{
font-family:'Sora',sans-serif;
color:#FFF;
}

.container-fluid{
    padding:0px;
}

.container{
max-width:1280px;
margin:auto;
}

header{
position:fixed;
width:100%;
background:#fff;
box-shadow:0 2px 10px rgba(0,0,0,.08);
z-index:999;
}

nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 0;
}

.logo{
font-size:28px;
font-weight:700;
color:#0A4A7A;
font-family: 'Sora', sans-serif;
}

nav ul{
display:flex;
gap:30px;
list-style:none;
}

nav ul li a{
text-decoration:none;
color:#333;
font-weight:500;
font-size:15px;
}

nav ul li a:hover{
color:#ECA427;
}

.hero{
background:url('../images/banner.jpg') center/cover;
align-items:center;
position:relative;
padding:150px 0;
}

.hero:before{
content:"";
position:absolute;
inset:0;
background:rgb(70 0 68 / 48%);
}

.hero-content{
position:relative;
z-index:2;
color:#fff;
max-width:800px;
}

.hero h1{
font-size:52px;
margin-bottom:20px;
}

.hero p{
font-size:18px;
line-height:1.8;
margin-bottom:30px;
}

.btn{
display:inline-block;
padding:15px 35px;
background:#ECA427;
color:#fff;
text-decoration:none;
border-radius:40px;
font-weight:600;
}

section{
padding:90px 0;
}

.section-title {
    color: #ECA427;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 25px;
}

.sub-heading {
   
    color: #0A4A7A;
}

.about-content p {
    
    line-height: 26px;
    color: #756868;
}

.services-content p {
    max-width: 550px;
    margin: 25px 0 30px;
}

.section-title h2{
font-size:38px;
color:#ECA427;
margin-bottom:15px;
}

.about{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

.about img{
width:100%;
border-radius:15px;
}

.about p{
line-height:2;
}

.services{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.card{
background:#fff;
padding:35px;
border-radius:15px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
transition:.3s;
}

.card:hover{
transform:translateY(-10px);
}

.card i{
font-size:45px;
color:#ECA427;
margin-bottom:20px;
}

.card h3{
font-size:24px;
margin-bottom:15px;
color:#0A4A7A;
}

.card p{
line-height:1.8;
}

.compliance{
background:#EDEAE3;
}

.compliance p {
    margin: 25px 0 30px;
    }

.contact-section p{
    margin: 25px 0 30px;
    max-width: 600px;
}

.points{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:25px;
}

.point {
    background: #fff;
    padding: 20px;
    border-left: 5px solid #ECA427;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .05);
    margin-bottom: 15px;
}

.point h3 {
    color: #ECA427;
    font-size: 22px;
}

.point p {
    margin: 0px;
}

.contact{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

.contact img{
width:100%;
border-radius:15px;
}

.info p{
margin-bottom:15px;
font-size:18px;
}

footer{
background:#0A4A7A;
color:#fff;
text-align:center;
padding:25px;
}

.about-section{
    background-color: #EDEAE3;

}

.about-section img{
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    }

.compliance img {
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    border-radius: 15px;
}



/* ===========================
   RESPONSIVE
===========================*/

img{
    max-width:100%;
    height:auto;
}

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
}

.hero h1{
    line-height:1.2;
}

.btn{
    transition:.3s;
}

.btn:hover{
    color:#fff;
    transform:translateY(-3px);
}

/* Laptop */

@media (max-width:1200px){

.container{
    padding:0 20px;
}

.hero h1{
    font-size:46px;
}

}

/* Tablet */

@media (max-width:991px){

section{
    padding:70px 0;
}

.logo{
    font-size:24px;
}

.hero{
    min-height:80vh;
    text-align:center;
}

.hero-content{
    margin:auto;
}

.hero h1{
    font-size:38px;
}

.hero p{
    font-size:16px;
}

.about-section .row,
.compliance .row{

    flex-direction:column;
}

.about-section .col,
.compliance .col-7,
.compliance .col-5{

    width:100%;
    max-width:100%;
    flex:0 0 100%;
}

.compliance img,
.about-section img{

    margin-top:30px;
}

.services{

    grid-template-columns:repeat(2,1fr);
}

.contact{

    grid-template-columns:1fr;
}

.contact img{

    margin-bottom:20px;
}

}

/* Mobile */

@media (max-width:767px){

header{

    padding:8px 0;
}

.navbar-collapse{

    background:#fff;
    margin-top:10px;
    padding:20px;
    border-radius:10px;
}

.navbar-nav{

    text-align:center;
}

.navbar-nav .nav-item{

    margin:8px 0;
}

.hero{

    padding:120px 0 80px;
    min-height:auto;
}

.hero h1{

    font-size:30px;
}

.hero p{

    font-size:15px;
    line-height:28px;
}

.section-title{

    font-size:30px;
}

.services{

    grid-template-columns:1fr;
}

.card{

    padding:30px;
}

.info{

    text-align:center;
}

.info p{

    font-size:16px;
}

footer{

    font-size:14px;
}

}

/* Small Phones */

@media (max-width:480px){

.hero h1{

    font-size:26px;
}

.section-title{

    font-size:26px;
}

.sub-heading{

    font-size:14px;
    margin-top:20px;
}

.btn{

    width:100%;
}

.card{

    padding:25px;
}

}
.nav-link{

    font-weight:600;
    color:#333 !important;
    transition:.3s;
}

.nav-link:hover{

    color:#ECA427 !important;
}