/* COLORS */
/* 
            PRIMARY RED: F12626
        */

html {
    scroll-behavior: smooth;
    /* Enables smooth scrolling */
}

body {
    background-color: #fcfcfc;
}

a {
    text-decoration: none;
}

/* Hero Section with Multiple Background Images */
.hero-bg {
    background-image:
        url('../images/assets/home-bg.jpg');
    background-size: cover, auto;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    /* Adjust the opacity value for darker or lighter overlay */
    z-index: 1;
    /* Make sure the overlay is above the background image */
}

.hero-bg>* {
    position: relative;
    z-index: 2;
    /* Ensure the content (text, buttons, etc.) is above the overlay */
}

.home-image-banner {
    box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.75);
    object-fit: cover;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.title-line {
    border: 3px solid #F12626;
    border-radius: 25px;
    /* Solid black line */
    width: 100%;
    /* Adjust line width */
    margin: 20px 0;
    /* Adjust margin */
}

/* Zoom and Rotate effect */
@keyframes zoom-rotate {
    0% {
        transform: scale(1) rotate(0deg);
    }

    40% {
        transform: scale(1.4) rotate(180deg);
    }

    80% {
        transform: scale(1.4) rotate(360deg);
    }

    100% {
        transform: scale(1) rotate(0deg);
    }
}

@keyframes floating {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
        /* Moves up by 15px */
    }

    100% {
        transform: translateY(0);
        /* Returns to original position */
    }
}

.hero-image {
    max-width: 400px;
    width: 100%;
    border-radius: 10px;
    animation: floating 3s ease-in-out infinite;
    /* Floating effect with smooth up and down */
}

/* .hero-image {
    max-width: 400px;
    width: 100%;
    border-radius: 10px;
    animation: zoom-rotate 1s ease-in-out;
} */

/* Get Started button styling */
.get-started-btn {
    background-color: #F12626;
    color: #FFFFFF;
    padding: 10px 20px;
    border: 2px #ffffff solid;
    border-radius: 5px;
    font-size: 18px;
    transition: background-color 0.3s;
}

.get-started-btn:hover {
    background: #FFFFFF;
    color: #F12626;
}

/* Navigation bar customizations */
.navbar-custom {
    background-color: rgba(255, 255, 255, 1);
    border-bottom: 1px rgba(0, 0, 0, 0.15) solid;
    box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.25);
}

.navbar-custom .navbar-brand,
.navbar-custom .nav-link {
    color: #000000;
}

.navbar-custom .nav-link:hover {
    color: #F12626;
}

.nav-logo {
    height: 50px;
    border-radius: 12px;
}

.nav-special {
    color: #F12626 !important;
    font-weight: bold;
}

/* CLASS GLOBAL STYLES */
.bold {
    font-weight: bold !important;
}

.text-primary {
    color: #F12626 !important;
}

/* SECTION GLOBAL STYLES */
.section {
    scroll-margin-top: 100px;
    /* Adjust as needed */
}

.section-title {
    font-size: 24px;
    letter-spacing: 10px;
    color: #333;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

/* SECTION HEADER STYLES */
.info-container-div {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    /* gap: 10px; */
}

.info-item-div-con2 {
    margin-bottom: 20px;
}

.info-item {
    background-color: #f8f8f8;
    border: 2px solid #F1262690;
    /* border: 1px solid #e0e0e0; */
    box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.50) !important;
    -webkit-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.50) !important;
    -moz-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.50) !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}