/* Preconnect to Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script&display=swap');
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css');


/* Root Theme Colors */
:root {
    --black: #000000;
    --soft-beige: #f1ebe5;
    --pinkish-white: #faf6f4;
    --red: #c22521;
    --charcoal-black: #1c1c1c;
    --light-black: #77777792;
    --primary-font: 'Poppins', sans-serif;
    --secondary-font: var(--primary-font);
    --heading-font: 'Poppins', sans-serif;
    --heading-color: var(--red);
    --text-color: #000000;
    --label-color: var(--soft-beige);
    --light-grey: #f1ebe5;
}

    /* :root {
        --red-dark: #c22521;
        --bg-main: #f1ebe5;
        --bg-section: #f8f5f1;
        --bg-offwhite: #ffffff;
    }
    
    body {
        background-color: var(--bg-main);
    } */

/* Body Font */
body {
    font-family: var(--secondary-font);
    font-size: 1rem;
    color: var(--text-color);
}

/* Main Heading (H1) */
.main-heading {
    font-family: var(--heading-font);
    font-size: 2rem;
    /*font-weight: 600;*/
    /* color: var(--heading-color) !important; */
    margin-bottom: 20px;
    letter-spacing: 1px;
    /*text-transform: uppercase;*/
}

/* Article Heading (H2) */
.article-heading {
    font-family: var(--secondary-font);
    font-size: 1.25rem;
    /*font-weight: 600;*/
    color: var(--red) !important;
    margin-bottom: 15px;
    border-left: 4px solid var(--red);
    padding-left: 10px;
    /*letter-spacing: 1px;*/
}

/* Subheadings (H3) */
.sub-heading {
    font-family: var(--secondary-font);
    font-size: 1rem;
    /*font-weight: 600;*/
    color: var(--red) !important;
    margin-bottom: 10px;
    border-left: 4px solid var(--red);
    padding-left: 10px;
    /*letter-spacing: 1.5px;*/
}

/* content-heading (H3) */
.content-heading {
    font-family: var(--secondary-font);
    font-size: 1rem;
    color: var(--charcoal-black) !important;
    margin-bottom: 10px;
}

/* Number heading (H4) */
.number-heading {
    font-family: var(--heading-font);
    font-size: 3rem;
    /*font-weight: 600;*/
    color: var(--red) !important;
    margin-bottom: 10px;
}

/* Number on the left */
.number-container {
    display: flex;
    width: 50px;
}

/* Paragraph (P) */
.paragraph {
    font-family: var(--secondary-font);
    font-size: 0.95rem;
    font-weight: 400;
    /*line-height: 1.8;*/
    color: var(--text-color);
    /*text-align: justify;*/
    margin-bottom: 15px;
}

/* Label */
.label {
    font-family: var(--heading-font);
    font-size: 0.5rem;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: var(--light-grey);
    max-width: fit-content;
    text-align: center;
    border-radius: 5px;
    padding: 5px 10px;

}

/* Explore the topics */
.explore-topics {
    font-family: var(--primary-font);
    font-size: 0.75rem;
    color: var(--charcoal-black);
    letter-spacing: 1px;
    background-color: var(--light-grey);
    max-width: fit-content;
    text-align: center;
    border-radius: 5px;
    padding: 5px 10px;

}

/* Adding space between labels */
.label+.label {
    margin-left: 10px;
    /* Adjust space as needed */
}

/* General Image Styling */
img {
    max-width: 100%;
    height: auto;
    display: block;
    /* margin: 0 auto; */
    border-radius: 8px;
}

/* Large Feature Image */
.feature-image {
    width: 100%;
    max-height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.feature-image2{
    width: 60%;
    max-height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

/* Thumbnail Images */
.thumbnail {
    width: auto;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Image Hover Effects */
/* .thumbnail:hover,
.feature-image:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
} */


/* Full-Width Banner Image */
.banner-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
}


/* HR */
hr {
    border: none;
    height: 2px;
    background: var(--light-black);
    margin: 20px 0;
}

/* Default Vertical Line */
.vertical-line {
    width: 2px;
    height: 100px;
    background: var(--light-black);
    margin: 0 auto;
}

/* Text underline effect */
.text-hover-animated {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: var(--charcoal-black);
}

/* Text underline effect after*/
.text-hover-animated::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width 0.3s ease-in-out;
}

/* Text underline effect hover after */
.text-hover-animated:hover::after {
    width: 100%;
}

/* Border for right side */
.container-right-border {
    border-right: 1.5px solid var(--light-black);
    padding: 20px;
}

/* Remove right border from the last container */
.container-right-border:last-child {
    border-right: none;
}

/* Border for bottom side */
.container-bottom-border {
    border-bottom: 1.5px solid var(--light-black);
    padding: 20px;
}

/* Remove right bottom from the last container */
.container-bottom-border:last-child {
    border-bottom: none;
}


/* Carousel Container */
.carousel-container {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

/* Slick Wrapper */
.carousel-wrapper {
    display: flex;
}

/* Individual Slide */
.slide {
    text-align: center;
    padding: 10px;
}

/* Company Images */
.carousel-image {
    width: 100px;
    /* Adjust as needed */
    height: auto;
    border-radius: 8px;
    /* Optional */
    transition: transform 0.3s ease-in-out;
}

/* Hover Effect */
.carousel-image:hover {
    transform: scale(1.05);
}

/* News nav BAR */
.breadcrumb {
    font-size: 0.8rem;
    font-weight: 500;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "\F280";
    /* Correct Unicode for Bootstrap Icons chevron-right */
    font-family: "bootstrap-icons";
    color: #d4af37;
    /* soft-beige  color */
    padding: 0 8px;
}

.breadcrumb a:hover {
    color: var(--pinkish-white) !important;
}

/* Featured Box Styling */
.featured-box {
    background: linear-gradient(145deg, var(--light-grey), #ffff);
    border-radius: 12px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 6px 6px 12px var(--red), -6px -6px 12px var(--pinkish-white);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 130px;
    /* border: 2px solid var(--pinkish-white ); */
}

/* Hover Effect */
.featured-box:hover {
    transform: translateY(-5px);
    box-shadow: 10px 10px 20px var(--red), -10px -10px 20px var(--pinkish-white);
}

/* Image Styling */
.featured-image {
    max-width: 75%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(2px 2px 5px var(--soft-beige));
}


/* FLOATING Social Icons */
/* Floating Share Bar - Desktop View */
.floating-share {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

.floating-share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

/* Social Media Colors */
.facebook {
    background: #3b5998;
}

.twitter {
    background: #1da1f2;
}

.whatsapp {
    background: #25d366;
}

.linkedin {
    background: #0077b5;
}

.copy-link {
    background: #333;
}

.floating-share a:hover {
    transform: scale(1.1);
}









/*-------------------------------------------------- Responsive Typography ----------------------------------------------------*/
@media (max-width: 768px) {

    /* text decoration */
    .main-heading {
        font-size: 2rem;
    }

    .article-heading {
        font-size: 1.5rem;
    }

    .paragraph {
        font-size: 0.85rem;
    }

    /* Image decoration */
    .feature-image {
        max-height: 300px;
    }

    .banner-image {
        height: 350px;
    }

    .thumbnail {
        width: 100%;
        height: 180px;
    }

    /* Hide border on small screens (max-width: 768px) */
    .container-right-border {
        border-right: none !important;
    }

    /* Floating Icons */
    .floating-share {
        position: fixed;
        align-items: center;
        justify-content: center;
        top: 87.5%;
        bottom: 15px;
        /* Adjusted to stay at the bottom */
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: row;
        background: rgba(166, 166, 166, 0.5);
        padding: 12px 15px;
        border-radius: 50px;
        gap: 12px;
        z-index: 9999;
        /* Ensures it stays above other elements */
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    }

    .floating-share a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        font-size: 14px;
        text-decoration: none;
        color: white;
        transition: transform 0.2s ease-in-out;
    }

    .floating-share a:hover {
        transform: scale(1.1);
    }
}