
:root {
    --primary-blue: #0A192F;
    --accent-red: #D92525;
    --pure-white: #FFFFFF;
    --light-gray: #F4F7F6;
    --text-dark: #333333;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    margin: 0;
    overflow-x: hidden;
}


body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


img {
    pointer-events: none;
}


.section-spacing {
    padding: 100px 0;
}

h1, h2, h3, h4, h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}


.navbar {
    background: white;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.nav-link {
    color: var(--primary-blue) !important;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-left: 15px;
}

.nav-link:hover { color: var(--accent-red) !important; }

.btn-custom-red {
    background: var(--accent-red);
    color: white !important;
    font-weight: 700;
    padding: 10px 25px;
    border-radius: 4px;
    border: none;
    transition: 0.3s;
}

.btn-custom-red:hover {
    background: #b51f1f;
    transform: translateY(-2px);
}


#heroSlider {
    background-color: var(--primary-blue);
    height: 85vh;
}

.carousel-img-wrap {
    background-color: var(--primary-blue);
    height: 85vh;
}

.carousel-image {
    width: 100%;
    height: 85vh;
    object-fit: cover;
    filter: brightness(40%);
}

#heroSlider .carousel-caption {
    bottom: 30%;
}

#heroSlider .carousel-caption h1 {
    font-size: 4rem;
    font-weight: 800;
}


.info-bar {
    background: var(--accent-red);
    color: white;
    padding: 40px 0;
    margin-top: -50px;
    position: relative;
    z-index: 99;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.border-end-custom { border-right: 1px solid rgba(255,255,255,0.2); }

.feature-card {
    background: white;
    padding: 50px 30px;
    border-radius: 8px;
    transition: 0.4s;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-bottom: 4px solid var(--accent-red);
}

.feature-icon {
    font-size: 50px;
    color: var(--accent-red);
    margin-bottom: 25px;
}

.btn-details {
    color: var(--primary-blue);
    font-weight: 800;
    text-decoration: none;
    border-bottom: 2px solid var(--accent-red);
    font-size: 0.8rem;
    text-transform: uppercase;
}


.custom-arrow {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    color: var(--primary-blue);
    font-size: 2rem;
    background: #f8f9fa;
    border-radius: 50%;
    transition: 0.3s;
}

.carousel-control-prev.custom-arrow { left: -20px; }
.carousel-control-next.custom-arrow { right: -20px; }

.custom-arrow:hover { 
    background: var(--accent-red); 
    color: white; 
}


footer {
    background: #050e1b;
    color: #aaa;
    padding-bottom: 30px;
}

.footer-links a { color: #aaa; text-decoration: none; display: block; margin-bottom: 10px; }
.footer-links a:hover { color: var(--accent-red); }

.social-icons a { color: white; font-size: 22px; margin-right: 20px; transition: 0.3s; }
.social-icons a:hover { color: var(--accent-red); }

.footer-bottom { border-top: 1px solid #1a1a1a; padding-top: 20px; color: white; }


@media (max-width: 768px) {
    #heroSlider .carousel-caption h1 { font-size: 2.2rem; }
    .info-bar { margin-top: 0; }
    .border-end-custom { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 15px; margin-bottom: 15px; }
    .section-spacing { padding: 60px 0; }
    .custom-arrow { display: none; } 
}

.dropdown-menu {
    min-width: 250px;
    padding: 15px 0;
    border-radius: 12px !important;
    margin-top: 15px !important; 
    border-top: 4px solid var(--accent-red) !important; 
}

.dropdown-header {
    font-size: 0.7rem;
    font-weight: 800;
    color: #999;
    letter-spacing: 1px;
    padding: 10px 20px 5px;
}

.dropdown-item {
    padding: 10px 20px;
    font-weight: 500;
    color: var(--primary-blue);
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: var(--light-gray);
    color: var(--accent-red);
    padding-left: 25px; 
}

.dropdown-divider {
    border-color: #eee;
    margin: 10px 0;
}


@media (min-width: 992px) {
    .animate {
        animation-duration: 0.3s;
        -webkit-animation-duration: 0.3s;
        animation-fill-mode: both;
        -webkit-animation-fill-mode: both;
    }
}

@keyframes slideIn {
    0% {
        transform: translateY(1rem);
        opacity: 0;
    }
    100% {
        transform: translateY(0rem);
        opacity: 1;
    }
}

.slideIn {
    -webkit-animation-name: slideIn;
    animation-name: slideIn;
}


.navbar-nav .nav-link {
    white-space: nowrap;
}


@media (min-width: 992px) and (max-width: 1300px) {
    .nav-link {
        margin-left: 8px !important; 
        font-size: 0.8rem; 
    }
}


