@import url(https://db.onlinewebfonts.com/c/0983e84d4a1963e075b5ae8ca12e2a4f?family=Avenir+Medium);
@import url(https://db.onlinewebfonts.com/c/b820ad079bcb3b0bad2caa08a92d9ce7?family=Avenir+Next+World);

#banner {}

.banner-content {
    position: relative;
    z-index: 1;
    color: white !important;
    padding: 1rem;
    max-width: 42vw;
    margin-bottom: 15vh;
    margin-left: 5vw;
display:flex;
height:100%;
flex-direction:column;
justify-content:flex-end;
align-items:left
}

.banner-content h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: white !important;
    font-family: "Avenir Medium", sans-serif;


}

.banner-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: white !important;
    font-family: "Avenir Next World", sans-serif !important;

}

.banner-content .btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: white;
    color: #333;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.3s ease;
max-width:300px
}

.banner-content .btn:hover {
    background-color: #f0f0f0;
}

/* Responsive design */
@media (max-width: 768px) {
    .banner-content h2 {
        font-size: 2rem;
    }

    .banner-content p {
        font-size: 1rem;
    }

    .banner-content {
        padding: 2rem;
        margin-bottom: 5vh;
    }
}

.banner-image {
    height: 90vh;
    width: 100%;
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    /* animation: zoomIn 1.5s ease-out forwards; */
}

/* Zoom animation */
@keyframes zoomIn {
    0% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
    }
}

/* Gradient overlay from left */
.banner-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(to right, rgba(40, 60, 80, 0.8) 0%, rgba(60, 80, 100, 0.65) 20%, rgba(100, 120, 140, 0.2) 40%);      */
    background: linear-gradient(to right, rgb(1, 14, 58, 1) 0%, rgb(37, 44, 66, 0.65) 25%, rgba(100, 120, 140, 0.2) 45%);
}

.frontend-section .content {
    gap: 10px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;

}

.frontend-section .card-text {
    display: flex;
    justify-content: center;
    align-items: left;
    flex-direction: column;

    padding-left: 2rem;

    gap: 15px
}

.news-section *,
.events-section * {

    line-height: 20px;
    font-size: 10px
}

.frontend-section .card-title,
.frontend-section .card-title *,
.news-section .card-title,
.events-section .card-title {
    color: var(--Neutral-100, #010E3A) !important;
    font-size: 2.5em !important;
    font-style: normal;
    line-height: 2.8rem;
    letter-spacing: -0.05rem;
    margin: 0rem;
    padding-bottom: .75rem;
    font-family: "Avenir Medium", sans-serif;
    font-weight: 500;
}

.frontend-section .card-subheader,
.news-section .card-subheader,
.events-section .card-subheader {
    color: var(--Neutral-90, #1A264E) !important;
    font-size: 1.1em !important;
    font-style: normal;
    font-family: "Avenir Next World", sans-serif !important;
    font-weight: 400;
    line-height: 1.5rem;
    text-align: justify;

}

.frontend-section .card-image {
    display: flex;
    justify-content: center;
    align-items: left;
    flex-direction: column;

}

.frontend-section #myVideo {
    width: 100%;
    height: 470px;
    object-fit: cover;
    z-index: -100;
    border-radius: 1em;

}

.frontend-section img {
    width: 100%;
    height: 470px;
    object-fit: cover;
    z-index: -100;
    border-radius: 1em;


}

.frontend-section .primary-button,
.frontend-section .primary-button-light {
    font-family: "Avenir Medium", sans-serif;
    font-weight: 600;
    display: inline-block;
    padding: .8125rem 1.5rem;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    border-radius: 6.25rem;
    background: var(--Primary-60, #12498a);
    color: var(--Neutral-00-White, #FFF);
    font-size: 1rem;
    font-style: normal;
    line-height: 1.5rem;
    letter-spacing: .015625rem;
    text-align: center;
    text-wrap: nowrap;
    text-decoration: none;
}

.frontend-section .box-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
}

.frontend-section .three-box {
    flex-basis: 100px;
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 350px;
    overflow: hidden
}

.hover-affect:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);

}

.img-hover img:hover {
    -moz-transform: scale(1.15);
    -webkit-transform: scale(1.15);
    -o-transform: scale(1.15);
    -ms-transform: scale(1.15);
    -webkit-transform: scale(1.15);
    transform: scale(1.15);

    -webkit-transition: transform 0.5s ease-in-out;
    -moz-transition: transform 0.5s ease-in-out;
    -ms-transition: transform 0.5s ease-in-out;
}

.frontend-section .box {
    flex-basis: 100px;
    flex-grow: 1;
    height: auto;
    /* padding: 1.5em; */
    background-color: #FFF;
    margin: 10px;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);  */
    border-radius: 1em;
    padding-bottom: 1.5em;

}

.frontend-section .content-wrapper {

    gap: 0.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.frontend-section .icon-wrapper img {
    width: 60px;
    height: 60px;

    object-fit: cover;
    border-radius: 8px 8px 0px 0px
}

.frontend-section .text-wrapper {

    font-style: normal;
    font-family: "Avenir Medium", sans-serif;
    text-align: center;
    padding: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    flex-direction: column;

}

.frontend-section .text-para {
    color: #695e4a;
    font-family: "Avenir Next World", Sans-serif;
    font-size: 16px !important;
    font-weight: 500;
    line-height: 24px;

}

.frontend-section .text-heading {
    font-family: "Avenir Next World", Sans-serif;
    font-size: 24.88px !important;
    font-weight: 500;
    font-style: normal;
    line-height: 32.35px;
    color: #5B5836
}

.frontend-section .text-wrapper-button {
    font-family: "Avenir Medium", sans-serif;
    font-weight: 600;
    display: inline-block;
    padding: .8125rem 1.5rem;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    border: thin solid var(--Primary-60, #12498a);
    color: #5B5836;
    font-size: 1rem;
    background: white;
    font-style: normal;
    line-height: 1.5rem;
    letter-spacing: .015625rem;
    text-align: center;
    text-wrap: nowrap;
    text-decoration: none;
    border-radius: 6.25rem;


}

.icon {
    color: white !important;
    padding-left: 10px;
}

.grow {
    transition: all 0.2s ease-in-out;
}

.fade-in {


    animation-name: myAnimation;
    animation-duration: 1s;
}

.fade-out {
    opacity: 0
}

@keyframes myAnimation {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.frontend-section .image-slider-wrapper {

    width: 100%;
    height: 100%
}

.slide-in-left {
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.frontend-section .image-slider,
.news-slider {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    overflow-x: scroll;
    height: 100%;
    gap: 1em;
    padding: 1.5em;
    background-color: #FFF;
    scrollbar-color: #7f3f98 #f3eeee !important;
    scrollbar-width: thick;

}

.frontend-section .image-slider::-webkit-scrollbar-button {
    display: none;
}

.frontend-section .image-slider::-webkit-scrollbar-button:vertical:decrement,
.frontend-section .image-slider::-webkit-scrollbar-button:vertical:increment,
.frontend-section .image-slider::-webkit-scrollbar-button:horizontal:decrement,
.frontend-section .image-slider::-webkit-scrollbar-button:horizontal:increment {
    display: none !important;
}

.frontend-section .image-slider::-webkit-scrollbar-button:single-button {
    display: none;
}

.frontend-section .image-slider::-webkit-scrollbar-button:double-button {
    display: none;
}

.frontend-section .image-container {
    flex-basis: 300px;
    flex-grow: 1;
    flex-shrink: 0;
    height: 100%;
    border-radius: 15px;

}

.frontend-section .image-container img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 15px;
}

.frontend-section .video-wrapper video {
    width: 350px;
    background: #d3d3d3 50% / cover no-repeat;
    box-shadow: 0px 4px 16px 4px rgba(0, 0, 0, .1);
    height: 450px;
    object-fit: cover;
    z-index: -100;
    border-radius: 1em
}



.icon {
    color: white !important;
    padding-left: 10px;
}

.grow {
    transition: all 0.2s ease-in-out;
}

.nav-tabs {}

header {
    background: #12498a
}

.navbar-expand-sm {
    justify-content: space-between !important;
    align-items: center
}

.nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

footer {
    background: linear-gradient(135deg, #1e3c72 0%, #12498a 100%);
    color: #ffffff;
    padding: 60px 20px 20px;
    margin-top: 60px
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-column h3 {
    font-size: 1.3em;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
    font-family: "Avenir Next World", sans-serif !important;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 15px;
}

.footer-column ul li a::before {
    content: '›';
    position: absolute;
    left: 0;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: #fff;
    padding-left: 20px;
    transform: translateX(5px);
}

.footer-column ul li a:hover::before {
    opacity: 1;
}

/* About section styling */
.footer-column.about p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 20px;
    font-family: "Avenir Next World", sans-serif !important;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Newsletter section */
.newsletter-form {
    margin-top: 20px;
}

.newsletter-form input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 5px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    width: 100%;
    padding: 12px 15px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Footer bottom */
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-bottom p {
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .content h1 {
        font-size: 2em;
    }
}





.top-bar-fixed {
    padding: 2px;
    column-gap: 20px;
    position: fixed;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    top: 0;
    left: 0;
    z-index: 99999;
    background: #12498a;
    font-size: 14px;
    height: 35px;
    padding-right: 22px;
    display: none
}

.top-bar-fixed a {
    color: white;
    font-size: 14px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

header.nav-tabs>li.active>a {

    color: white
}

header .nav-tabs>li.active>a {

    color: rgb(18, 73, 138);
    background-color: white;
}

header .nav-tabs>li.active>a {}

header .nav-tabs>li {
    margin: 0px !important;
    padding: 0px !important
}

header .nav-tabs>li>a {

    color: white;
    height: 100% !important;
    padding: 15px 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 550;
    letter-spacing: 1px;

}

.navbar-nav {
    font-size: 1em;

}

header {
    padding: 0px !important;
    margin-top: 0px !important
}

header .nav-tabs {
    height: 100% !important;
    padding: 0px;
    position: relative;
    padding: 0px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: 100%;
    gap: 0px !important;
    margin-right: 20px !important
}

header .nav-tab>li {}

header .nav-tabs li {
    flex: 1;
    height: 100%;
    float: left;
    margin-bottom: -1px;
    vertical-align: center;


}

#monitoring>a:hover,
#mapping>a:hover {

    /* box-shadow: inset 0 0 20px rgba(35, 35, 35, .25); */
    color: white;
    background: rgb(96, 49, 128) !important;


}



.icn {
    color: #12498a !important
}

header .nav-tabs {
    border-bottom: none
}

@media screen and (min-width: 760px) {
    .sm-screen {
        display: none !important
    }
}

@media screen and (max-width: 765px) {
    .lg-screen {
        display: none !important
    }
}

.nav-link {
    color: rgb(18, 73, 138);
    padding: 0.75em 2em 0.75em 2em;
    letter-spacing: 1px;
    font-size: 16px !important;
    font-weight: 900 !important
}



.video-section {
    height: 600px
}

#Ow-Video {

    min-height: 100%
}

.video-parallax {}

/* Background Video - Vimeo iframe */


.news-events.nav-tabs .nav-item.show .nav-link,
.news-events .nav-tabs .nav-link.active {
    border: none !important;
    border-bottom: 4px solid rgb(18, 73, 138) !important;
}


.features-bar {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    display: flex;
    justify-content: space-around;

    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 20;
    border-radius: 1em;
    align-items: center
}

.feature {
    text-align: center;
    flex: 1;

}

.feature-icon {
    font-size: 36px;
    margin-bottom: 12px;
    color: #1a4d7a;
}

.feature h3 {
    color: #1a4d7a;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    font-family: "Avenir Next World", sans-serif !important;
}

.feature p {
    color: #666;
    font-size: 13px;
    margin-bottom: 0px;
    font-family: "Avenir Next World", sans-serif !important;
}

@media (max-width: 768px) {

    .features-bar {
        flex-direction: column;
        gap: 30px;
    }
}