/* BASE STYLES START */

:root, [data-bs-theme=light] {    
    --bs-body-bg-color: #0c101c;
    --bs-black: #070a11;
    --bs-black-rgba: rgba(7, 10, 17, .8);
    --bs-white: #fefefe;    
    --bs-primary: #00b5cc;    
    --bs-primary-hover: #045f6b;
    --bs-primary-active: #02353a;
    --bs-mid-gray: #778586;
    --bs-light-gray: #dadfe9;
    --bs-dark: #212529;    
    --bs-dark-cyan: #031820;
    --bs-font-sans-serif: "Poppins", sans-serif;
}
body{
    background-color: var(--bs-body-bg-color);
}

b, strong{
    font-weight: 600;
}

.text-justify{
    text-align: justify;
}

a{
    color: var(--bs-primary);
    text-decoration: none;
    transition: all .2s ease-out;
}

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

.btn-primary{
    background-color: var(--bs-primary);
    font-weight: 600;
    border: 2px solid var(--bs-primary);
}

.btn-primary:hover{
    background-color: var(--bs-primary-hover);
    border: 2px solid var(--bs-primary-hover);
}

.btn-primary:disabled{
    background-color: var(--bs-primary-hover);
    border: 2px solid var(--bs-primary-hover);
}

.btn-primary:active{
    background-color: var(--bs-primary-active) !important;
    border: 2px solid var(--bs-primary-active) !important;
}

.btn-outline-primary{
    color: var(--bs-primary);
    border: 2px solid var(--bs-primary);
    font-weight: 600;
}

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

.full-width{
    width: 100%;
}

.page-section{
    padding-top: 4em;
    padding-bottom: 4em;
}

.section-title,
.section-subtitle{
    text-transform: uppercase;
    color: #dadfe9;
    font-size: 42px;
    margin-bottom: 1.5em;
    font-weight: 600;
    letter-spacing: 1px;
}

.section-subtitle{
    font-size: 32px;
    font-weight: 400;
}

@media (max-width: 575.98px) {
    .section-title{
        font-size: 30px;
    }
    
}

/** BASE STYLES END **/



/** NAVBAR START **/

.navbar{
    background-color: var(--bs-body-bg-color);
    padding-top: 1em;
    padding-bottom: 1em;
}

.navbar .nav-item{
    margin: 0 .75em;    
}

.navbar .nav-link,
.navbar .nav-link.show{
    color: var(--bs-white);
    white-space: nowrap;

}

.navbar .nav-link.active,
.navbar .nav-link:hover{
    color: var(--bs-primary);    
}

.navbar-toggler-icon{
    filter: invert(1);
}

.dropdown-menu-dark{
    --bs-dropdown-bg: var(--bs-body-bg-color);
}

.dropdown-item:hover{
    background-color: var(--bs-primary);
}

/** NAVBAR END **/



/** HERO SECTION START **/

.hero-section{
    background-color: var(--bs-body-bg-color);
    background-image: url("../img/top.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    height: 85vh;
    animation-name: hero-bg-animation;
    animation-duration: .7s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    padding-top: 4em;
}

.hero-image{
    width: 100%;
    animation-name: hero-animation;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
}

.hero-box{
    background-color: var(--bs-black-rgba);
    backdrop-filter: blur(2px);
    border-radius: var(--bs-border-radius);
    animation-name: hero-animation;
    animation-duration: 1s;    
    animation-timing-function: ease-in-out;
}

.hero-box-title-1{
    color: #fff;    
    font-size: 24px;
    line-height: 1.25em;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: .5em;
    animation-name: hero-animation;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-delay: .2s;    
    animation-fill-mode: forwards;
}

.hero-box-title-2{
    color: var(--bs-primary);
    font-size: 40px;
    line-height: 1.25em;
    font-weight: 600;
    margin-bottom: .5em;
    animation-name: hero-animation;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-delay: .4s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero-box-text{
    margin-bottom: 2em;
    color: var(--bs-white);
    animation-name: hero-animation;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-delay: .6s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero-buttons .btn-primary{
    animation-name: hero-animation;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-delay: .8s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero-buttons .btn-outline-primary{
    animation-name: hero-animation;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-delay: .9s;
    opacity: 0;
    animation-fill-mode: forwards;
}

@keyframes hero-bg-animation{
    from{
        opacity: 0;
        background-position: center 50px;
    }
    to{        
        opacity: 1;
        background-position: center top;
    }
}

@keyframes hero-animation{
    from{
        opacity: 0;
        transform: translateY(30px);
    }
    to{
        opacity: 1;        
        transform: translateY(0);
    }
}

@media (max-width: 575.98px) {
    .hero-section{
        padding-top: 90px;
        padding-bottom: 50px;
        height: auto;
    }

    .hero-image {
        width: 80%;
        display: flex;
        margin: auto;
    }

    .hero-box-title-1{
        font-size: 18px;
    }

    .hero-box-title-2{
        font-size: 26px;
    }
}

/** HERO SECTION END **/



/** INTRO SECTION START **/

.intro-section{
    background-color: var(--bs-black);
    color: var(--bs-white);
}

.intro-section img{
    width: 80%;
}

/** INTRO SECTION END **/



/** ABOUT SECTION START **/

.about-section{
    background: #070A11;
    background: linear-gradient(45deg,rgba(7, 10, 17, 1) 25%, rgba(3, 24, 32, 1) 75%);
    color: #dadfe9;
}
.grid {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
}

.grid > div {
    flex: 1 1 calc(100% - 14px);
    max-width: calc(100% - 14px);
}

.icon-box{
    background-color: var(--bs-black);
    border-radius: var(--bs-border-radius);
    height: 100%;
    padding: 1.5rem;    
}

.icon-box-icon{
    color: var(--bs-primary);
    font-size: 45px;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.icon-box-icon img{
    width: auto;
    height: 45px;
}

.icon-box-title{
    color: var(--bs-primary);
    font-size: 20px;
    line-height: 1.25em;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

@media (max-width: 576px) {
    .grid > div {
        flex: 1 1 calc(100% - 14px);
        max-width: calc(100% - 14px);
    }
}

@media (min-width: 576px) {
    .grid > div {
        flex: 1 1 calc(50% - 14px);
        max-width: calc(50% - 14px);
    }
}

@media (min-width: 992px) {
    .grid > div {
        flex: 1 1 calc(33% - 14px);
        max-width: calc(33% - 14px);
    }
}

@media (min-width: 1200px) {
    .grid > div {
        flex: 1 1 calc(25% - 14px);
        max-width: calc(25% - 14px);
    }
}

/** ABOUT SECTION END **/



/** DOWNLOAD SECTION START **/

.download-section{
    background-color: var(--bs-black);
    color: var(--bs-white);
}

.download-section img{
    width: 90%;
}

/** DOWNLOAD SECTION END **/



/** MAKE SURE SECTION START **/

.make-sure-section{
    background: #070A11;
    background: linear-gradient(315deg,rgba(7, 10, 17, 1) 25%, rgba(3, 24, 32, 1) 75%);
    color: var(--bs-white);
}

.make-sure-section h3{
    font-weight: 600;
}

/** MAKE SURE SECTION END **/



/** CONTACT SECTION START **/

.contact-section{
    background-color: var(--bs-black);
    color: var(--bs-white);
}

.contact-icon{
    border-radius: var(--bs-border-radius);
    background-color: var(--bs-primary);
    aspect-ratio: 1;
    width: 44px;
    height: 44px;
    padding: 9px;
    text-align: center;    
}

.contact-icon i{
    vertical-align: middle;
    font-size: 20px;
}

.contact-title{
    font-weight: 600;
    font-size: 20px;
    line-height: 1;
    margin-bottom: .25rem;
}

/** CONTACT SECTION END **/



/** FOOTER SECTION START **/

.footer-section{
    background-color: var(--bs-dark-cyan);
    color: var(--bs-white);
    font-size: 14px;
}

.footer-contacts{
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.footer-contacts li{
    padding: .5rem 0;
}

.footer-contacts i{
    margin-right: 1rem;
    color: var(--bs-primary);
}

.footer-contacts a{
    color: var(--bs-primary); 
}

.footer-title{
    font-size: 18px;
    font-weight: 600;
}

.footer-menu{
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.footer-menu.cols-2{
    column-count: 2;
}

.footer-menu li{
    margin: 5px 0;
}

.footer-menu li:before{
    font-family: "Font Awesome 5 Pro";
    content: "\f105";
    display: inline-block;
    margin-right: 8px;
    color: var(--bs-primary);    
}

.footer-menu a{
    color: var(--bs-white);    
}

.footer-menu a:hover{
    color: var(--bs-primary);
}

.bottom-footer-section{
    background-color: var(--bs-black);
    color: var(--bs-mid-gray);
    font-size: 14px;
}

.bottom-footer-section a{
    color: var(--bs-white);    
}

/** FOOTER SECTION END **/



/** MODAL START **/

.modal-header{
    border-bottom: 0;
}

.modal-content{
    background-color: var(--bs-dark-cyan);
    color: var(--bs-white);
}

.modal-content p{
    color: var(--bs-light-gray);
}

.modal-content .small{
    color: var(--bs-mid-gray);
    font-size: 80%;
}

.btn-close{
    filter: invert(1);
}

.modal-dialog-narrow {
    width: 500px;
}

.modal-content h2{
    text-transform: uppercase;
    color: var(--bs-primary);
    font-weight: 600;
    font-size: 24px;
}

.modal-content h3{
    font-size: 20px;
}

.modal-footer{
    justify-content: center;
    border-color: var(--bs-mid-gray);
    color: var(--bs-light-gray);
    font-size: 14px;
}

.modal-social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    margin-top: 2rem;
}

.social-icon{
    border-radius: 300px;
    text-align: center;
    font-size: 28px;
    background-color: var(--bs-primary);
    color: var(--bs-white);
    width: 50px;
    height: 50px;
    padding-top: 5px;
}

.social-icon:hover{
    background-color: var(--bs-primary-hover);
    color: var(--bs-white);
}

/** MODAL END **/

/** Feedback **/

.success {
    color: #c3e6cb !important;
}

.error {
    color: #f87171 !important;
}

.form-control:focus {
  border-color: #ffffff !important; /* Custom color */
}

.php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.php-email-form .error-message br+br {
  margin-top: 25px;
}

.php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.grecaptcha-badge { visibility: hidden; }