@import url(https://fonts.googleapis.com/css?family=Raleway:400,700,500);

:root {
    --main-color: #00103C;
    --accent-color: #FB8500;
    --accent-color-yellow: #FFB703;
}

.logo {
    max-width: 100px;
    height: auto;  /* This keeps the aspect ratio */
}


body {
    background: #fff;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    color: #282828;
    line-height: 26px;
    padding: 0;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
}

a {
    color: #45aed6;
    -webkit-transition: color 400ms, background-color 400ms;
    -moz-transition: color 400ms, background-color 400ms;
    -o-transition: color 400ms, background-color 400ms;
    transition: color 400ms, background-color 400ms;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #2a95be;
}

hr {
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #fff;
}

.section-header {
    margin-bottom: 50px;
    margin-top: 50px;
}

.section-header p {
    text-align: center;
}

.section-header .section-title {
    font-size: 32px;
    color: var(--main-color);
    position: relative;
    padding-bottom: 20px;
    margin: 0 0 20px;


    display: block;
    text-align: center;
}

.section-header .section-title:before {
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 30px;
    background: var(--main-color);
    border-radius: 50%;
    margin: 0 auto;
    left: 0;
    height: 10px;
}

.custom-divider {
    border-top: 1px solid #ddd;
}

.bg-color-orange {
    background-color: var(--accent-color);
}

.bg-color-yellow {
    background-color: var(--accent-color-yellow);
}

.color-orange {
    color: var(--accent-color);
}

.color-yellow {
    color: var(--accent-color-yellow);
}

.btn {
    border-width: 0;
    border-radius: 0;
}

.btn.btn-primary {
    background: var(--main-color);
}

.btn.btn-primary:hover,
.btn.btn-primary:focus {
    background: #FF8A41;
}

.navbar-nav .nav-link {
    color: var(--main-color);
    font-size: 1.05rem; /* Adjust as needed */

}

.navbar-nav .nav-link.active, .navbar-nav .nav-link:hover {
    color: var(--accent-color); !important;
}


/* Override right alignment of dropdown menu when navbar is collapsed */
@media (max-width: 991.98px) {
    .navbar-collapse .dropdown-menu {
        right: auto;
        left: 0;
    }
}

#hero-banner {
    overflow: hidden;
    height: 99vh; /* Takes up most of the viewport height */
    background: url('../images/banner/banner.jpg') no-repeat center center;
    background-size: cover; /* Makes the background image responsive */
    color: #fff;
    display: flex;
    align-items: center; /* Centers content vertically */
    justify-content: flex-end; /* Aligns content to the right */
    text-align: right;
}

#hero-banner .banner-inner {
    width: 100%;
    padding: 20px; /* Adds padding to prevent content from touching edges */
    color: #fff;
}

#hero-banner h2 {
    font-size: 39px;
    line-height: 49px;
    text-align: right;
    margin-bottom: 20px;
}

#hero-banner p {
    font-size: 22px;
    line-height: 35px;
    text-align: right;
    margin-bottom: 20px;
}

/* Apply color to <strong> inside <h2> */
#hero-banner h2 strong {
    color: var(--accent-color);
}


#hero-banner a {
    width: 150px;
    margin: 0;
    display: block;
    background: transparent;
    border: 2px solid #fff;
    float: right;
}

#hero-banner a:hover {
    text-align: center;
    width: 150px;
    margin: 0 auto;
    display: block;
    background: var(--main-color);
    border: 2px solid var(--main-color);
    color: #FFF;
}

#hero-banner.banner-inner h2 > span {
    color: #45aed6;
}

#hero-banner.banner-inner .btn {
    margin-top: 10px;
}

#hero-text {
    padding: 50px 0;
    border-top: 1px solid #FFFFFF;
}

#hero-text h2 {
    margin-top: 0;
}

#hero-text .btn {
    margin-top: 40px;
}

img, video, iframe, embed, object {
    max-width: 100%;
    height: auto;
}


/* Container styling */
#timeline {
    background: #fff;
    padding-top: 10px;
    padding-bottom: 10px;
    overflow: hidden;
}

#timeline h2, h3 {
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #222;
}

.timeline-item {
    margin-bottom: 30px;
    position: relative;
    text-align: left;
}

.timeline-item .timeline-content {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.timeline-item .timeline-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #0d6efd;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    position: absolute;
    top: 20px;
    left: -30px;
}

.timeline-item .timeline-line {
    position: absolute;
    top: 25px;
    left: -5px;
    width: 2px;
    height: 100%;
    background-color: #0d6efd;
    z-index: -1;
}

.timeline-item:last-child .timeline-line {
    display: none;
}

/* About */
/* Container styling */
#about {
    background: #fff;
    padding-top: 10px;
    padding-bottom: 10px;
    overflow: hidden;
}

#about h2 {
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #222;
}

/* Toast */
.toast {
    visibility: hidden;
    min-width: 250px;
    background-color: #4CAF50;
    color: #fff;
    text-align: center;
    border-radius: 4px;
    padding: 16px;
    position: fixed;
    top: calc(10vh + 1rem); /* Positioned relative to 10% of the viewport height */
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    font-size: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.toast.show {
    visibility: visible;
    animation: fadeInOut 5s;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0; }
    10%, 90% { opacity: 1; }
}
/* End Toast */

.nav.main-tab {
    background: #eee;
    border-bottom: 3px solid #222534;
    border-radius: 3px 3px 0 0;
}

.nav.main-tab > li > a {
    color: #272727;
}

.nav.main-tab > li.active > a {
    background: #222534;
    color: #45aed6;
}

.nav.main-tab > li:first-child > a {
    border-radius: 3px 0 0 0;
}

.nav.main-tab > li:last-child > a {
    border-radius: 0 3px 0 0;
}

.nav.main-tab > li:last-child {
    margin-left: 10px;
}


.navbar-nav {
    margin: 0;
}

.navbar-nav > li:last-child {
    margin-left: 100px;
}

/* Features */
#features {
    background: #fff;
    padding-top: 10px;
    padding-bottom: 10px;
    overflow: hidden;
}

#features .feature {
    margin-top: 30px;
    margin-bottom: 54px;
}

#features .right {
    padding-left: 32px;
    float: right;
}

#features .left {
    padding-right: 32px;
    float: left;
}

#features h2, h3 {
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #222;
}

#pricing {
    background: #fff;
    padding-top: 10px;
    padding-bottom: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}

#pricing h2 {
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #222;
}

#features {
    background: #fff;
    padding-top: 10px;
    padding-bottom: 10px;
    overflow: hidden;
}

/* Contact */
#contact-us {
    background: #fff;
    padding-top: 10px;
    padding-bottom: 10px;
    overflow: hidden;
}

#contact-us h2, h3 {
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #222;
}

.contact-info {
    padding: 25px;
    margin-bottom: 50px;
}

.contact-info .form-control {
    padding: 6px 12px;
    margin-top: 10px;
    border-radius: 0;
}

/***********************
********* Footer ******
************************/
#footer {
    padding-top: 30px;
    padding-bottom: 30px;
    color: #fff;
    background: #222222;
}

#footer a {
    color: #fff;
}

#footer a:hover {
    color: var(--main-color);
}

#footer ul {
    list-style: none;
    padding: 0;
    margin: 0 -7.5px;
}

#footer ul > li {
    display: inline-block;

    padding: 3px 0;
    width: 31px;
    text-align: center;
}

@media only screen and (min-width: 768px) {
    #footer .social-icons {
        float: right;
    }
}

@media only screen and (max-width: 768px) {
    .navbar-default .navbar-collapse, .navbar-default .navbar-form {
        border-color: #A3A3A3;
        padding: 20px 0;
    }
}

.form-control {
    box-shadow: none;
    -webkit-box-shadow: none;
}

@media only screen and (max-width: 480px) {
    #hero-banner h2 {
        margin-top: 161px;
        font-size: 26px;
        line-height: 40px;
        padding: 10px;
    }

    #hero-banner p {
        font-size: 18px;
        padding: 10px;
    }
}

.pricing-header {

}

.disclaimer {
    font-size: 0.8em;
    color: #888;
}