
:root {
    --white: #fff;
    --dark: #0a0a0a;
    --accent-color: #F96062;
    --grey-text : #3f3f3f;
    --accent-light :#f76c71;
    --primary-light:  #5490ff;
  }

* {
    transition: .4s;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
    background: url(../assets/back.png);
    position: relative;
}
nav {
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.699);
    backdrop-filter: blur(10px);
}
.custom-navbar {
    padding: 0.5rem 1rem;
    font-size: 14px;
}
.custom-navbar .navbar-toggler {
    padding: 0.25rem 0.5rem;
    font-size: 14px;
}
nav .navbar-brand {
    font-weight: bold;
    color: var(--dark);
    font-size: 1rem;
    
}
nav a {
    color: var(--dark);
    border-radius: 10px;
    margin-left: 4px;
    padding: 0;
    font-weight: 700;
}

nav a:hover, nav a.active {
     color: #fff;
     background: var(--accent-color);
}

nav .navbar-toggler {
    border-radius: 50px;
}

header {
    position: relative;
    background-image: url(../assets/header.png);
    background-position: center;
    background-repeat: no-repeat;
    width: auto;
    height: 100vh;
}



header .header-text {
    padding-top: 40vh;
    color: var(--white);
    z-index: 1;
    margin: auto;
}
header .header-text h1 {
    font-size: 6rem;
    letter-spacing: 25px;
    color: var(--accent-color);
}
header .header-text h4 {
    font-size: 1rem;
    letter-spacing: 5px;
    color: #ffffff8f;
    
}
header .contactUs {
    width: 300px;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    border-radius: 50px;
}
header .contactUs:hover {
    /* border: 1px solid var(--accent-color); */
    color: var(--white);
    background: var(--accent-color);
}


.about {
    height: 55vh;
    margin-top: 12vh;
}
.about .card {
    margin-top: 20vh;
    z-index: 1;
}
.about .card-title {
    color: var(--accent-color);
}
.about p {
    color:var(--grey-text);
}
.about img {
    width: auto;
    height: 400px;
    margin-left: -100px;
}
.services i {
    font-size: 3rem;
    border-radius: 10px;
    background: var(--accent-color);
    color: var(--white);
}


.introduction .introLists{
    max-width: 800px;
    font-weight: 400;
    color: var(--grey-text);
}
.objectives {
    min-height: 70vh;
    background-color: var(--primary-light);
}
.objectives h3 {
    margin-top: 10vh;
}
.objectives i {
    color: #F96062;
    background: #f9606336;
    font-size: 1.5rem;
    border-radius: 5px;
}

.objectives h6 {
    color: var(--grey-text);
    font-size: 1.4rem;
}

.clients img {
    width: 80%;
    aspect-ratio: 3/2;
    object-fit: contain;
    transition: 0.4s;
    
}
.clients img:hover {
    transform:scale(1.2);
}
.clients td {
    font-size: 0.9rem;
}

.contact {
    background: var(--accent-light);
    min-height: 80vh;
}
.contact h3 {
    padding-top: 15vh;
}
.contact i {
    color: var(--accent-color);
    font-size: 3rem;
    padding: 10px;
    background-color: #f960632a;
    border-radius: 10px;
    margin-bottom: 10px;
}
.contact .card {
    border-radius: 5px 20px;
    min-height: 250px;
}








footer {
    
    background: #363636;
    color: #e7e7e7;
}

footer .social {
    background: rgb(63, 63, 63);
}

footer .footer-logo{
    font-size: 1.3rem;
    color: greenyellow;
}

footer .footer-contact i {
    color: greenyellow;
}

footer i {
    color: #fff;
    font-size: 1.2rem;
}
.social i:hover {
    color: greenyellow;
}

