* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

.hero {
    background: #1d2026;
    min-height: 100vh;
    width: 100%;
    color: #fff;
    position: relative;
}

nav {
    display: flex;
    align-items: center;
    padding: 20px 5%;
}

nav .menu-img {
    width: 25px;
    margin-right: 20px;
    cursor: pointer;
}

nav .logo {
    height: 90px;
    width: 90px;
    border-radius: 50%;
    cursor: pointer;
}

nav ul {
    flex: 1;
    text-align: center;
}

nav ul li {
    display: inline-block;
    list-style: none;
    margin: 0 20px;
    border-bottom: solid transparent 3px;
    transition: .3s ease;
    color: #fff;
}

nav ul li:hover {
    transition: border-bottom .3 ease;
    border-bottom: solid #2038bd 3px;
}

nav ul li a {
    text-decoration: none;
    color: inherit;
}

button {
    background: #2038bd;
    color: #fff;
    height: 40px;
    width: 80px;
    margin: 0px 8px;
    border-radius: 10px;
    border: 0;
    outline: 0;
    cursor: pointer;
    transition: background 0.5s;
}

.btn a {
    text-decoration: none;
    display: block;
    line-height: 40px;
    height: inherit;
    width: inherit;
    color: inherit;
}

.btn:hover {
    transform: scale(1.1);
}

label {
    position: absolute;
    right: -100%;
    margin-right: 0px;
    font-size: 30px;
    cursor: pointer;
    color: #fff;
    display: none;
}

.information-container {
    position: relative;
    height: 600px;
    background: url('../imgs/realtime_img1.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
}

.information-container .overlay {
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
    height: inherit;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.information-content {
    z-index: 3;
    display: block;
    position: absolute;
    top: 5%;
    left: 5%;
    padding: 0;
    width: 700px;
}
.information-content-title {
    font-size: 50px;
    margin: 20px 0px;
}
.information-content-description {
    text-align: justify;
    font-size: 18px;
}

.trusted-intelligence {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3% 5%;
    background: #1d2026;
    margin-top: 2%;
    position: relative;
}

.trusted-intelligence .content-section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.trusted-intelligence .content {
    margin-bottom: 80px;
}

.trusted-intelligence .content h1 {
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 20px;
}

.trusted-intelligence .content p {
    font-size: 1.2em;
    line-height: 1.5em;
    margin-bottom: 20px;
}

.trusted-intelligence .stat-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    color: #1d2026;
}

.trusted-intelligence .stat-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

.trusted-intelligence .stat-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #fff;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    width: 350px;
    height: 150px;
}
.trusted-intelligence .stat-card h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
}

.trusted-intelligence .stat-card p {
    font-size: 18px;
    line-height: 1.5em;
}

.latest_news h2 {
    color: #fff;
    text-align: center;
    font-size: 32px;
    font-weight: 700;
}

.container {
    height: 850px;
}

.container h2 {
    color: #fff;
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

.slider-wrapper {
    position: relative;
    height: 700px;
    max-width: 100%;
    margin: 0 auto;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
    height: 300px;
    width: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
}

.slider {
    height: inherit;
    display: flex;
    overflow: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    box-shadow: 0 1.5rem 3rem -0.75rem hsla(0, 0%, 0%, 0.75);
}

.slide {
    position: relative;
    flex: 1 0 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0px 5% 3% 5%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    color: #fff;
    text-align: justify;
    z-index: 4;
}

.slide-title {
    font-size: 30px;
    margin-bottom: 20px;
}

.slide-description {
    font-size: 16px;
    margin-bottom: 10px;
}

.slider-nav {
    display: flex;
    column-gap: 1rem;
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}

.slider-nav a {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.5;
    transition: opacity ease 250ms;
}

.slider-nav a:hover {
    opacity: 1;
}

.more-news-container {
    width: 100%;
}

.more-news {
    display: block;
    text-align: center;
    margin-top: 20px;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    border-bottom: 3px solid transparent;
    font-weight: 600;
    width: 1160px;
    margin-left: auto;
    margin-right: auto;
    transition: border-bottom 0.3s ease;
}

.more-news:hover {
    border-bottom: 3px solid #152a8a;
}

.latest-feeds {
    background-color: #1d2026;
    padding: 30px 0px;
}

.latest-feeds-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.latest-feeds h2 {
    color: #fff;
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

.feeds-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.feeds-item {
    width: calc(33.33% - 20px);
    margin-bottom: 30px;
}

.feeds-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.feeds-item-content {
    height: 360px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.category {
    font-size: 14px;
    font-weight: 600;
    color: #2038bd;
    margin-bottom: 10px;
}

.feeds-item-content h3 {
    color: #4051af;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feeds-item-content p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #1d2026;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more {
    display: inline-block;
    padding: 8px 16px;
    background-color: #1d2026;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    border-bottom: 3px solid transparent;
    transition: background-color 0.4s ease;
}

.read-more:hover {
    border-bottom: 3px solid #1d2026;
    background-color: #fff;
    color: #1d2026;
}

.more-feeds {
    display: block;
    text-align: center;
    margin-top: 10px;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    border-bottom: 3px solid transparent;
    font-weight: 600;
    transition: border-bottom 0.3s ease;
}

.more-feeds:hover {
    border-bottom: 3px solid #152a8a;
}

/* footer code start here */
footer {
    background-color: #262626;
    padding: 30px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 2px solid grey;
    margin: 10px 0px;
    padding: 10px 0px;
    transition: 0.4s ease;
}

.footer-column {
    text-align: left;
    margin: 0px 20px;
    height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-logo {
    height: 80px;
    width: 80px;
    border-radius: 50%;
}

.footer-logo-description {
    color: #fff;
    font-size: 16px;
    width: 500px;
    text-align: left;
}

.footer-column h3 {
    margin-bottom: 15px;
    border-bottom: 3px solid #152a8a;
    height: 50px;
    width: 150px;
}

.footer-column ul {
    list-style-type: none;
    padding: 0;
}

.footer-column li {
    margin: 0px;
}

.footer-column a {
    color: #fff;
    text-decoration: none;
}

.footer-column .social-links {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-column .social-links a {
    margin: 0 10px;
    font-size: 20px;
}
/* footer code ends here */

@media (max-width:1230px){
    .footer-logo-description {
        color: #fff;
        font-size: 16px;
        width: 250px;
        text-align: left;
    }
    .more-news {
        display: block;
        text-align: center;
        margin-top: 20px;
        padding: 10px 20px;
        color: #fff;
        text-decoration: none;
        border-radius: 5px;
        border-bottom: 3px solid transparent;
        font-weight: 600;
        transition: background-color 0.3s;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width:1160px) {
    nav ul li {
        height: 50px;
        list-style: none;
        transition: .3s ease;
        border-radius: 10px;
        margin: 5px 10px;
        line-height: 50px;
    }
}

@media (max-width:1026px) {
    nav .logo {
        height: 80px;
        width: 80px;
        border-radius: 50%;
        cursor: pointer;
    }
    nav ul li {
        height: 50px;
        list-style: none;
        transition: .3s ease;
        border-radius: 10px;
        margin: 5px 5px;
        line-height: 50px;
    }
}

@media (max-width:956px) {
    nav {
        display: flex;
        align-items: center;
        padding: 20px 6%;
    }

    nav .logo {
        height: 70px;
        width: 70px;
        border-radius: 50%;
        cursor: pointer;
    }

    nav ul {
        background-color: #1d2026;
        position: absolute;
        top: 100px;
        left: -100%;
        display: flex;
        flex-direction: column;
        flex: 1;
        text-align: center;
        width: 100%;
        transition: .3s ease;
        z-index: 0;
    }

    nav ul.active {
        left: 0%;
        z-index: 999;
    }

    nav ul li {
        height: 50px;
        list-style: none;
        transition: .3s ease;
        border-radius: 10px;
        margin: 5px 0px;
        line-height: 50px;
    }

    nav ul li a {
        display: block;
        height: inherit;
        width: inherit;
    }

    .button-section {
        background-color: #1d2026;
        width: 100%;
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 280px;
        left: -100%;
        justify-content: space-between;
        transition: .3s ease;
        z-index: 0;
    }

    .button-section.active {
        left: 0%;
        z-index: 999;
    }

    button {
        background-color: transparent;
        color: #fff;
        font-size: 16px;
        height: 40px;
        width: inherit;
        margin: 5px 0px;
        border-radius: 10px;
        cursor: pointer;
        transition: border-bottom 0.3s ease;
        border-bottom: solid transparent 3px;
    }

    .btn:hover {
        transform: none;
        border-bottom: solid #2038bd 3px;
    }

    label {
        display: block;
        right: 0;
        margin-right: 30px;
    }

    .feeds-item {
        width: 100%;
        margin-bottom: 30px;
    }

    .more-news {
        display: block;
        text-align: center;
        margin-top: 20px;
        padding: 10px 20px;
        color: #fff;
        text-decoration: none;
        border-radius: 5px;
        border-bottom: 3px solid transparent;
        font-weight: 600;
        transition: background-color 0.3s;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-content {
        display: flex;
        justify-content: space-around;
        align-items: flex-start;
        flex-wrap: wrap;
        border-bottom: 0px;
        margin: 10px 0px;
        padding: 10px 20px;
        flex-direction: column;
    }

    .footer-column {
        text-align: left;
        margin: 15px 0px;
        width: 100%;
        height: auto;
    }
    
    .footer-logo-description {
        color: #fff;
        font-size: 16px;
        width: 100%;
        text-align: left;
    }

    .footer-column h3 {
        margin-bottom: 0px;
        border-bottom: 3px solid #152a8a;
        height: 40px;
        width: 100%;
        text-align: center;
    }

    .footer-column ul {
        list-style-type: none;
        padding: 0;
        text-align: center;
    }

    .footer-column li {
        margin: 10px 0px;
    }

    footer p {
        margin-top: 40px;
    }
    
}

@media (max-width:786px) {
    nav {
        display: flex;
        align-items: center;
        padding: 20px 6%;
    }

    nav .logo {
        height: 70px;
        width: 70px;
        border-radius: 50%;
        cursor: pointer;
    }

    nav ul {
        background-color: #1d2026;
        position: absolute;
        top: 100px;
        left: -100%;
        display: flex;
        flex-direction: column;
        flex: 1;
        text-align: center;
        width: 100%;
        transition: .3s ease;
        z-index: 0;
    }

    nav ul.active {
        left: 0%;
        z-index: 999;
    }

    nav ul li {
        height: 50px;
        list-style: none;
        transition: .3s ease;
        border-radius: 10px;
        margin: 5px 0px;
        line-height: 50px;
    }

    nav ul li a {
        display: block;
        height: inherit;
        width: inherit;
    }

    .button-section {
        background-color: #1d2026;
        width: 100%;
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 280px;
        left: -100%;
        justify-content: space-between;
        transition: .3s ease;
        z-index: 0;
    }

    .button-section.active {
        left: 0%;
        z-index: 999;
    }

    button {
        background-color: transparent;
        color: #fff;
        font-size: 16px;
        height: 40px;
        width: inherit;
        margin: 5px 0px;
        border-radius: 10px;
        cursor: pointer;
        transition: background 0.5s;
        border-bottom: solid transparent 3px;
    }

    .btn:hover {
        transform: none;
        border-bottom: solid #2038bd 3px;
    }

    label {
        display: block;
        right: 0;
        margin-right: 30px;
    }

    .slide-overlay {
        padding: 0px 5% 10% 5%;
    }

    .slide-title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .slide-description {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .trusted-intelligence {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 5% 8%;
        background: #1d2026;
        margin-top: 4%;
        position: relative;
    }

    .trusted-intelligence .content-section {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        flex: 1;
    }

    .trusted-intelligence .content {
        margin-bottom: 80px;
    }

    .trusted-intelligence .content h1 {
        font-size: 2em;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .trusted-intelligence .content p {
        font-size: 1em;
        line-height: 1.5em;
        margin-bottom: 20px;
    }

    .trusted-intelligence .content button {
        height: 50px;
        width: 200px;
        border-radius: 50px;
        font-size: 1em;
        font-weight: 600;
    }

    .trusted-intelligence .stat-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        flex: 1;
    }

    .trusted-intelligence .stat-cards {
        display: flex;
        flex-direction: column;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
        width: 100%;
    }

    .trusted-intelligence .stat-card {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        background: #fff;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
        width: 100%;
        height: 180px;
    }

    .trusted-intelligence .stat-card h2 {
        font-size: 30px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .trusted-intelligence .stat-card p {
        font-size: 16px;
        line-height: 1.5em;
    }
    
    .information-content {
        z-index: 3;
        display: block;
        position: absolute;
        top: 10%;
        left: 0;
        padding: 30px;
        width: 100%;
    }

    .information-content-title {
        font-size: 38px;
        margin: 10px 0px;
    }

    .information-content-description {
        font-size: 16px;
    }

    .overlay {
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 2;
        height: inherit;
        width: 100%;
        position: absolute;
        bottom: 0;
        right: 0;
    }
}
