/* 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: "Libre Baskerville", 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;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --medium-gray: #e0e0e0;
  --dark-gray: #333333;
  --accent-color: #000000;
  --primary: #000000ff;
  --secondary: #6c757d;
  --success: #198754;
  --danger: #dc3545;
  --warning: #ffc107;
  --info: #e0e0e0ff;
  --light: #f8f9fa;
  --dark: #212529;
  --primary-color: #1a1a1a;
  --secondary-color: #333;
  --font-serif: "Libre Baskerville", serif;
  --font-sans: "Libre Baskerville", serif;
  --artikel-black: #222;
  --artikel-gray: #555;
  --artikel-light-gray: #eee;
  --artikel-border: 1px solid #ddd;
  --artikel-primary: #222;
  --artikel-facebook: #3b5998;
  --artikel-twitter: #1da1f2;
  --artikel-whatsapp: #25d366;
  --artikel-linkedin: #0077b5;
  --sr-primary-color: #000000;
  --sr-secondary-color: #ffffff;
  --sr-accent-color: #c22521;
  --sr-border-color: #e0e0e0;
  --sr-hover-color: #f5f5f5;
  --sr-text-muted: #6c757d;

  --dark-bg: #0a0a0a;
  --dark-card: #1a1a1a;
  --dark-text: #e5e5e5;
  --light-bg: #f5f5f5;
  --light-card: #ffffff;
  --light-text: #333333;
  --grey-text: #666666;
  --border-color: #e0e0e0;
  --accent-blue: #3b82f6;
  --accent-purple: #8b5cf6;
  --accent-pink: #ec4899;
  --accent-green: #10b981;
  --accent-orange: #f97316;
}

body {
  font-family: "Libre Baskerville", serif;
  font-size: 1rem;
  color: var(--text-color);
}

/* Main Heading (H1) */
.main-heading {
  font-family: "Libre Baskerville", serif;
  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: "Libre Baskerville", serif;
  font-size: 1.5rem;
  /* font-weight: 600; */
  color: black !important;
  margin-bottom: 15px;
  padding-left: 10px;
  /*letter-spacing: 1px;*/
}

/* Subheadings (H3) */
.sub-heading {
  font-family: "Libre Baskerville", serif;
  font-size: 2rem;
  /*font-weight: 600;*/
  color: black;
  margin-bottom: 10px;

  padding-left: 10px;
  /*letter-spacing: 1.5px;*/
}

/* content-heading (H3) */
.content-heading {
  font-family: "Libre Baskerville", serif;
  font-size: 1rem;
  color: var(--charcoal-black) !important;
  margin-bottom: 10px;
}

/* Number heading (H4) */
.number-heading {
  font-family: "Libre Baskerville", serif;
  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: "Libre Baskerville", serif;
  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: "Libre Baskerville", serif;
  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: "Libre Baskerville", serif;
  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;
}

/* 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: 52%;
  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;
}

/* 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) {

  
    .main-heading {
        font-size: 2rem;
    }

    .article-heading {
        font-size: 1.5rem;
    }

    .paragraph {
        font-size: 0.85rem;
    }


    .feature-image {
        max-height: 300px;
    }

    .banner-image {
        height: 350px;
    }

    .thumbnail {
        width: 100%;
        height: 180px;
    }

   
    .container-right-border {
        border-right: none !important;
    }

   
    .floating-share {
        position: fixed;
        align-items: center;
        justify-content: center;
        top: 87.5%;
        bottom: 15px;
        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;
       
        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);
    }
} */

/* index.php css  start */

    
        body {
            font-family: var(--primary-font);
            color: var(--black);
            background-color: var(--white);
            line-height: 1.6;
        }

        /* Typography */
        .section-title {
            font-family: var(--primary-font);
            font-weight: 600;
            color: var(--black);
            position: relative;
            padding-bottom: 10px;
            margin-bottom: 20px;
        }

        .section-title:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: linear-gradient(to right, var(--primary), var(--info));
        }

        .main-heading {
            font-size: 1.5rem;
            color: var(--black);
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-family: var(--primary-font);
        }

        .card-title {
            font-size: 1.1rem;
            color: var(--black);
            margin-bottom: 10px;
            transition: color 0.3s;
        }

        .card-text {
            font-size: 0.9rem;
            color: var(--dark-gray);
            line-height: 1.4;
            margin-bottom: 15px;
        }

        .news-date {
            font-size: 0.75rem;
            color: var(--dark-gray);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Layout */
        .main-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Section Divider */
        .section-divider {
            border: 0;
            height: 1px;
            background: var(--medium-gray);
            margin: 20px 0;
            opacity: 0.5;
        }

        /* Existing Styles for Other Sections */
        .category-badge {
            display: inline-block;
            padding: clamp(5px, 1.5vw, 6px) clamp(10px, 2vw, 14px);
            font-size: clamp(0.55rem, 1.5vw, 0.65rem);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            background-color: var(--white);
            color: var(--black);
            border-radius: 20px;
            margin-bottom: 12px;
            transition: all 0.3s;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }

        .category-badge:hover {
            background-color: var(--accent-color);
            color: var(--white);
        }

        .news-card {
            border: none;
            border-radius: 0;
            background: var(--white);
            transition: all 0.3s ease;
            margin-bottom: 20px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            height: 320px;
            width: 100%;
            position: relative;
            display: flex;
            flex-direction: column;
            border: 1px solid var(--medium-gray);
        }

        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
        }

        .news-card:hover .card-title {
            color: var(--accent-color);
        }

        .news-card img {
            width: 100%;
            height: 160px;
            object-fit: cover;
            border-radius: 0;
        }

        .news-card .card-body {
            padding: 15px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .news-card .card-footer {
            background: white;
            border-top: 1px solid var(--medium-gray);
            padding: 10px 15px;
            margin-top: auto;
            display: flex;
            justify-content: flex-end;
        }

        .news-card .btn-read-more {
            padding: 8px 8px;
            font-size: 0.8rem;
            background: var(--black);
            color: white;
            border: none;
            border-radius: 0;
            transition: all 0.3s;
            width: 80px;
            text-align: center;
        }

        .news-card .btn-read-more:hover {
            background: var(--dark-gray);
        }

        .card-content {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .featured-grid {
            display: grid;
            grid-template-rows: auto auto;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 30px;
        }

        .featured-grid .news-card:nth-child(1),
        .featured-grid .news-card:nth-child(2) {
            grid-column: span 1;
        }

        .featured-grid .news-card:nth-child(3),
        .featured-grid .news-card:nth-child(4),
        .featured-grid .news-card:nth-child(5) {
            grid-column: span 1;
        }

        .featured-grid .news-card {
            margin-bottom: 0;
            height: 430px;
            width: 100%;
        }

        .featured-grid .news-card img {
            height: 140px;
        }

        .featured-story {
            margin-bottom: 30px;
            border-bottom: 1px solid var(--medium-gray);
            padding-bottom: 30px;
            padding-right: 20px;
        }

        .featured-story img {
            width: 100%;
            height: auto;
            object-fit: cover;
            margin-bottom: 20px;
            border-radius: 0;
        }

        .featured-story .featured-title {
            font-size: 1.8rem;
            color: var(--black);
            margin-bottom: 15px;
        }

        .featured-story .featured-title:hover {
            text-decoration: underline;
        }

        .featured-story .featured-excerpt {
            font-size: 1rem;
            color: var(--dark-gray);
            margin-bottom: 20px;
        }

        .featured-story .read-more-btn {
            padding: 8px 8px;
            font-size: 0.8rem;
            background: var(--black);
            color: white;
            border: none;
            border-radius: 0;
            transition: all 0.3s;
            width: 125px;
            text-align: center;
        }

        .featured-story .read-more-btn:hover {
            background: var(--dark-gray);
        }

        .sidebar-section {
            background: var(--white);
            padding: 20px;
            margin-bottom: 30px;
            border: 1px solid var(--medium-gray);
            border-radius: 0;
        }

        .sidebar-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--black);
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding-bottom: 10px;
        }

        .trending-list {
            list-style: none;
            padding: 0;
        }

        .trending-list li {
            padding: 15px 0;
            border-bottom: 1px solid var(--medium-gray);
        }

        .trending-list li:last-child {
            border-bottom: none;
        }

        .trending-list a {
            color: var(--black);
            text-decoration: none;
            transition: color 0.3s;
        }

        .trending-list a:hover {
            color: var(--accent-color);
            text-decoration: underline;
        }

        .topic-pill {
            display: inline-block;
            padding: 8px 15px;
            margin: 0 10px 10px 0;
            background: var(--light-gray);
            color: var(--black);
            border-radius: 0;
            font-size: 0.8rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
            border: 1px solid var(--medium-gray);
        }

        .topic-pill:hover {
            background: var(--black);
            color: var(--white);
            text-decoration: none;
        }

        @media (max-width: 1200px) {
            .featured-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: auto auto auto;
            }

            .featured-grid .news-card:nth-child(3) {
                grid-column: span 1;
            }

            .featured-grid .news-card:nth-child(4) {
                grid-column: span 1;
            }

            .featured-grid .news-card:nth-child(5) {
                grid-column: span 2;
            }

            .featured-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: auto auto auto;
            }

            .featured-grid .news-card {
                grid-column: span 1 !important;
            }
        }

        @media (max-width: 992px) {
            .featured-story img {
                height: 300px;
            }

            .featured-story .featured-title {
                font-size: 1.5rem;
            }

            .news-card {
                height: 300px;
            }

            .featured-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .trending-now .news-card {
                height: 280px;
            }

            .section-divider {
                margin: 30px 0;
            }
        }

        @media (max-width: 768px) {
            .main-heading {
                font-size: 1.8rem;
            }

            .featured-story img {
                height: 250px;
            }

            .news-card {
                height: 280px;
            }

            .news-card img {
                height: 140px;
            }

           .featured-grid {
               
                grid-template-columns: 1fr;
                grid-template-rows: auto auto auto auto auto;
                
                 }

            .trending-now .col-md-3 {
                flex: 0 0 50%;
                max-width: 50%;
            }

            .trending-now .news-card {
                height: 260px;
            }

            .section-divider {
                margin: 25px 0;
            }
        }

        @media (max-width: 576px) {
            .main-heading {
                font-size: 1.5rem;
            }

            .featured-story .featured-title {
                font-size: 1.3rem;
            }
            .featured-story {
               
                padding-right: 0px !important ;
            }
            .news-card {
                height: 260px;
            }

            .news-card img {
                height: 120px;
            }

            .trending-now .col-md-3 {
                flex: 0 0 100%;
                max-width: 100%;
            }

            .trending-now .col-6 {
                flex: 0 0 100%;
                max-width: 100%;
            }

            .trending-now .news-card {
                height: auto;
            }

            .section-divider {
                margin: 20px 0;
            }
        }

        .vn-featured-columns {
            display: flex;
            gap: 30px;
            margin: 30px 0;
        }

        .vn-featured-col {
            flex: 1;
            padding: 0 15px;
        }

        .vn-col-border {
            border-left: 1px solid #e0e0e0;
        }

        .vn-featured-article {
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #f0f0f0;
        }

        .vn-featured-article:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }

        .vn-article-content {
            display: flex;
            gap: 15px;
            align-items: flex-start;
        }

        .vn-article-thumb {
            flex-shrink: 0;
            width: 100px;
            height: 100px;
            display: block;
        }

        .vn-article-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .vn-article-info {
            flex: 1;
        }

        .vn-article-meta {
            display: flex;
            justify-content: space-between;
            margin-bottom: 5px;
            font-size: 0.7rem;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .vn-article-headline {
            font-size: 0.9rem;
            line-height: 1.4;
            margin: 0;
            font-weight: 500;
            font-family: "Libre Baskerville", serif;
        }

        .vn-article-headline a {
            color: #000;
            text-decoration: none;
        }

        .vn-article-headline a:hover {
            text-decoration: underline;
        }

        @media (max-width: 768px) {
            .vn-featured-columns {
                flex-direction: column;
                gap: 0;
            }

            .vn-featured-col {
                padding: 0;
            }

            .vn-col-border {
                border-left: none;
                border-top: 1px solid #e0e0e0;
                padding-top: 20px;
                margin-top: 20px;
            }

            .vn-article-thumb {
                width: 60px;
                height: 45px;
            }

            .vn-article-headline {
                font-size: 0.85rem;
            }
        }

        /* Updated Trending Now Section */
        .trending-now-section {
            margin: 40px 0;
            font-family: "Libre Baskerville", serif;
        }

        .trending-columns {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }

        .trending-column {
            flex: 1;
            min-width: 0;
            padding: 0 10px;
        }

        .trending-column.border-left {
            border-left: 1px solid #e0e0e0;
        }

        .trending-item {
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #f0f0f0;
        }

        .trending-item:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }

        .trending-content {
            display: flex;
            gap: 12px;
            align-items: flex-start;
        }

        .trending-image {
            flex-shrink: 0;
            width: 90px;
            height: 60px;
            display: block;
        }

        .trending-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .trending-text {
            flex: 1;
        }

        .trending-meta {
            display: flex;
            justify-content: space-between;
            margin-bottom: 5px;
            font-size: 0.7rem;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .trending-title {
            font-size: 0.9rem;
            line-height: 1.4;
            margin: 0;
            font-weight: 600;
        }

        .trending-title a {
            color: #000;
            text-decoration: none;
        }

        .trending-title a:hover {
            text-decoration: underline;
        }

        /* Responsive Adjustments for Trending Now Section */
        @media (max-width: 992px) {
            .trending-columns {
                flex-direction: column;
                gap: 15px;
            }

            .trending-column {
                padding: 0;
            }

            .trending-column.border-left {
                border-left: none;
                border-top: 1px solid #e0e0e0;
                padding-top: 15px;
                margin-top: 15px;
            }

            .trending-item {
                margin-bottom: 15px;
                padding-bottom: 15px;
            }

            .trending-image {
                width: 80px;
                height: 55px;
            }

            .trending-title {
                font-size: 0.85rem;
            }
        }

        @media (max-width: 768px) {
            .trending-columns {
                gap: 10px;
            }

            .trending-column {
                padding: 0;
            }

            .trending-column.border-left {
                border-top: 1px solid #e0e0e0;
                padding-top: 10px;
                margin-top: 10px;
            }

            .trending-item {
                margin-bottom: 12px;
                padding-bottom: 12px;
            }

            .trending-image {
                width: 70px;
                height: 50px;
            }

            .trending-title {
                font-size: 0.8rem;
            }

            .trending-meta {
                font-size: 0.65rem;
            }
        }

        @media (max-width: 576px) {
            .trending-columns {
                gap: 8px;
            }

            .trending-column {
                padding: 0;
            }

            .trending-column.border-left {
                padding-top: 8px;
                margin-top: 8px;
            }

            .trending-item {
                margin-bottom: 10px;
                padding-bottom: 10px;
            }

            .trending-image {
                width: 60px;
                height: 45px;
            }

            .trending-title {
                font-size: 0.75rem;
            }

            .trending-meta {
                font-size: 0.6rem;
            }
        }

        .side-article-headline {
            font-size: 1rem;
            color: #000;
            line-height: 1.4;
            margin-bottom: 10px;
            font-weight: 500;
            font-family: "Libre Baskerville", serif;
        }

        .side-article-headline a {
            color: #000;
            text-decoration: none;
        }

        .side-article-headline a:hover {
            text-decoration: underline;
        }
    

/* index.php css end  */

/* Women Entrepreneurship start  */

.women-leadership-wrapper {
  margin-bottom: 3rem;
}

.women-leadership-title {
  text-align: center;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  font-size: 1.75rem;
  position: relative;
  padding-bottom: 1rem;
}

.women-leadership-title:after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--primary), var(--info));
}

/* Featured article styles */
.women-featured-article {
  display: flex;
  margin-bottom: 2rem;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 2rem;
  align-items: flex-start;
}

.women-featured-image {
  flex: 0 0 50%;
  max-width: 50%;
  padding-right: 2rem;
  align-self: flex-start;
}

.women-featured-image img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
}

.women-featured-content {
  flex: 1;
  align-self: flex-start;
}

.women-featured-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.women-featured-title:hover {
  text-decoration: underline;
}
.women-featured-excerpt {
  font-size: 1rem;
  line-height: 1.6;
  color: #666666;
  margin-bottom: 1.5rem;
}

.women-featured-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.women-featured-date {
  color: #6c757d;
  font-size: 0.9rem;
}

/* Grid styles matching sponsored content */
.women-leadership-grid {
  display: flex;
  flex-wrap: wrap;
}

.women-leadership-col {
  margin-bottom: 1.5rem;
}

.women-leadership-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 0;
  overflow: hidden;
  height: 100%;
}

.women-leadership-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.women-leadership-card-img-container {
  width: 100%;
  background-color: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
  max-height: 250px;
  padding: 15px;
  position: relative;
  overflow: hidden;
}

.women-leadership-card-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.women-leadership-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.women-leadership-category-badge {
  color: #666666;
  font-weight: 500;
  font-size: 11px;
  margin-bottom: 0.75rem;
  border-radius: 50px;
  display: inline-block;
  align-self: center;
  text-transform: uppercase;
}

.women-leadership-card-title {
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.women-leadership-card-title:hover {
  text-decoration: underline;
}
.women-leadership-card-text {
  color: #666666;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  text-align: center;
  flex-grow: 1;
}

.women-leadership-card-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #f0f0f0;
  background: transparent;
}

.women-leadership-card-date {
  color: #6c757d;
  font-size: 0.8rem;
}

.women-leadership-read-more-btn {
  background-color: #ffffff;
  color: #000000;
  border: 1px solid #000000;
  padding: 8px 16px;
  transition: all 0.3s ease;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.75rem;
  border-radius: 0;
  text-decoration: none;
}

.women-leadership-read-more-btn:hover {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
}

.women-leadership-no-content {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  color: #495057;
  font-size: 1rem;
}

@media (max-width: 767px) {
  .women-leadership-title {
    font-size: 1.5rem;
  }

  .women-featured-article {
    flex-direction: column;
  }

  .women-featured-image {
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 0;
    margin-bottom: 1.5rem;
  }

  .women-featured-title {
    font-size: 1.5rem;
  }

  .women-leadership-card-img-container {
    min-height: 180px;
  }
}

/* Women Entrepreneurship end */

/* top news start */

.news-section {
  font-family: "Libre Baskerville", serif;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background-color: #ffffff;
}

.section-title {
  text-align: center;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  font-size: 1.75rem;
  position: relative;
  padding-bottom: 1rem;
}

.section-title:after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--primary), var(--info));
}

.news-grid {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
}

.side-news {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.featured-news {
  flex: 2;
}

.news-item {
  margin-bottom: 15px;
  transition: all 0.3s ease;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.news-item:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.news-image {
  width: 100%;
  height: auto;
  margin-bottom: 0;
  background-color: #f5f5f5;
}

.side-news .news-image {
  height: 180px;
  object-fit: cover;
}

.featured-news .news-image {
  height: 400px;
  object-fit: cover;
}

.news-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-category {
  display: block;
  color: #666666;
  padding: 0.25rem 0.75rem;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
  text-align: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  border-radius: 4px;
}

.news-title {
  font-size: 1rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
  line-height: 1.4;
}

.news-title:hover {
  text-decoration: underline;
}

.featured-news .news-title {
  font-size: 1.8rem;
  line-height: 1.3;
  font-weight: 700;
}

.news-excerpt {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.news-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.news-meta {
  font-size: 0.8rem;
  color: #888;
}

.read-more {
  background-color: #ffffff;
  color: #000000;
  border: 1px solid #000000;
  padding: 8px 16px;
  transition: all 0.3s ease;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.8rem;
  text-decoration: none;
  display: inline-block;
}

.read-more:hover {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
}

.news-content hr {
  border: 0;
  border-top: 1px solid #e0e0e0;
  margin: 10px 0;
}

.additional-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
  position: relative;
}

.additional-row:before {
  content: "";
  position: absolute;
  top: -28px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #e0e0e0;
}

.additional-item {
  transition: all 0.3s ease;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.additional-item:not(:last-child):after {
  content: "";
  position: absolute;
  top: 0;
  right: -10px;
  height: 100%;
  width: 1px;
  background-color: #e0e0e0;
}

.additional-item:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.additional-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .additional-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .additional-item:nth-child(2n):after {
    display: none;
  }

  .additional-item:not(:last-child):after {
    right: -10px;
  }
}

@media (max-width: 768px) {
  .news-grid {
    flex-direction: column;
  }

  .featured-news .news-image {
    height: 250px;
  }

  .side-news .news-image {
    height: 150px;
  }

  .featured-news .news-title {
    font-size: 1.5rem;
  }

  .additional-row {
    grid-template-columns: 1fr;
  }

  .additional-item:not(:last-child):after {
    display: none;
  }

  .additional-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
    border-radius: 0;
  }

  .additional-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
  }
}

/* top news end */

/* Sponsored news start */

.sponsored-content-wrapper {
  margin-bottom: 10px;
}

.sponsored-section-title {
  text-align: center;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  font-size: 1.75rem;
  position: relative;
  padding-bottom: 1rem;
}

.sponsored-section-title:after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--primary), var(--info));
}

.sponsored-grid {
  display: flex;
  flex-wrap: wrap;
}

.sponsored-col {
  margin-bottom: 1.5rem;
}

.sponsored-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 0;
  overflow: hidden;
  height: 100%;
  cursor:pointer;
}

.sponsored-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.sponsored-card-img-container {
  width: 100%;
  background-color: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
  max-height: 250px;
  padding: 15px;
  position: relative;
  overflow: hidden;
}

.sponsored-card-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.sponsored-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #000000;
  color: #ffffff;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 1;
}

.sponsored-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sponsored-category-badge {
  color: #333333;
  font-weight: 500;
  font-size: 11px;
  margin-bottom: 0.75rem;
  border-radius: 50px;
  display: inline-block;
  align-self: center;
  text-transform: uppercase;
}

.sponsored-card-title {
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color:black;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.sponsored-card-title a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.sponsored-card-title a:hover {
  text-decoration: underline;
}

.sponsored-card-text {
  color: #666666;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  text-align: center;
  flex-grow: 1;
}

.sponsored-card-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #f0f0f0;
  background: transparent;
}

.sponsored-card-date {
  color: #6c757d;
  font-size: 0.8rem;
}

.sponsored-read-more-btn {
  background-color: #ffffff;
  color: #000000;
  border: 1px solid #000000;
  padding: 8px 16px;
  transition: all 0.3s ease;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.75rem;
  border-radius: 0;
}

.sponsored-read-more-btn:hover {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
}

.sponsored-no-content {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  color: #495057;
  font-size: 1rem;
}

@media (max-width: 767px) {
  .sponsored-section-title {
    font-size: 1.5rem;
  }

  .sponsored-card-img-container {
    min-height: 180px;
  }
}
/* Sponsored news end */

/* highlightednews start  */

.section-title {
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  font-size: 1.75rem;
  position: relative;
  padding-bottom: 1rem;
}

.section-title:after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--primary), var(--info));
}

.read-more-btn {
  background-color: #ffffff !important;
  color: #000000 !important;
  border: 1px solid #000000 !important;
  padding: 6px 6px;
  transition: all 0.3s ease;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 0px;
  font-size: 0.7rem;
}

.read-more-btn:hover {
  background-color: #000000 !important;
  color: #ffffff !important;
  border-color: #000000 !important;
}

.main-highlight-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  background-color: #ffffff !important;
  border: 1px solid #e0e0e0 !important;
  border-radius: 8px;
  overflow: hidden;
  max-height: 600px;
}

.main-highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1) !important;
}

.card-img-container {
  width: 100%;
  background-color: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
  max-height: 250px;
  padding: 10px;
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
}

.card-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-title {
  text-align: center !important;
  font-size: 1.25rem !important;
}
.card-title:hover {
  text-decoration: underline;
}

.secondary-highlight-card .card-title,
.additional-news-card .card-title {
  font-size: 1rem !important;
  text-align: left !important;
  /* Left-align for secondary and additional news */
}

.main-highlight-card .card-body {
  padding: 1rem !important;
  min-height: 150px;
  flex: 1;
}

.main-highlight-card .badge {
  margin-bottom: 0.5rem !important;
}

.main-highlight-card .card-text {
  margin-bottom: 0.5rem !important;
}

.badge {
  color: #666666 !important;
  /* Grey text for badge */
  font-weight: 500 !important;
  background-color: transparent !important;
  /* No background */
  text-transform: uppercase !important;
  /* Added this line to make badge text uppercase */
  white-space: normal !important;
  /* Allow text to wrap */
  word-break: break-word !important;
  /* Break long words if needed */
  display: inline-block !important;
  /* Ensure proper wrapping */
  max-width: 100% !important;
  /* Prevent overflow */
  line-height: 1.3 !important;
  /* Better line spacing */
  text-align: start;
}

.card-text {
  color: #666666 !important;
  margin: 2px;
}

.no-content-message {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  color: #495057;
  font-size: 1rem;
}

.main-highlight-card {
  height: 100%;
}

.main-highlight-card .card-img-container {
  min-height: 300px;
  max-height: 350px;
}

.secondary-highlight-card .card-img-container {
  min-height: 120px;
  max-height: 150px;
}

.additional-news-card .card-img-container {
  min-height: 100px;
  max-height: 120px;
}

.divider {
  border-left: 1px solid #e0e0e0;
  height: 100%;
}

.row.g-4 {
  align-items: flex-start;
}

.col-lg-5 {
  max-height: 600px;
  overflow-y: auto;
}

.secondary-highlight-card .card-body {
  padding: 1rem !important;
}

.additional-news-card .card-body {
  padding: 1rem !important;
}

@media (max-width: 768px) {
  .main-highlight-card .card-img-container {
    min-height: 200px;
    max-height: 250px;
  }

  .divider {
    border-left: none;
    border-top: 1px solid #e0e0e0;
    margin: 1.5rem 0;
  }
}
/* highlightednews end  */

/* franchise start  */

body {
  font-family: "Libre Baskerville", serif;
  margin: 0;
}

.news-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 0px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.section-title {
  text-align: center;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  font-size: 1.75rem;
  position: relative;
  padding-bottom: 1rem;
}

.section-title:after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--primary), var(--info));
}

.square-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.row-cards {
  flex: 3;
  display: flex;
  gap: 20px;
  min-width: 500px;
}

.column-cards {
  flex: 0.8;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 250px;
  align-items: stretch;
}

.heading-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
  min-width: 250px;
}

.card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 0px;
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 15px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.card-image {
  width: 100%;
  height: 210px;
  object-fit: contain;
  border-radius: 4px;
  margin-bottom: 10px;
}

.column-cards .card {
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.column-cards .card-image {
  width: 100%;
  height: auto;
  margin-right: 0;
  margin-bottom: 10px;
}

.card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-headline {
  font-size: 1rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 8px;
  line-height: 1.4;
}

.column-cards .card-headline {
  font-size: 1rem;
}

.card-headline a {
  color: inherit;
  text-decoration: none;
}

.card-headline a:hover {
  text-decoration: underline;
}

.card-excerpt {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 10px;
}

.card-meta {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 10px;
}

.read-more {
  background-color: #ffffff;
  color: #000000;
  border: 1px solid #000000;
  padding: 8px 16px;
  transition: all 0.3s ease;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.8rem;
  text-decoration: none;
  display: inline-block;
  margin-left: auto;
}

.read-more:hover {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
}

.card-content hr {
  border: 0;
  border-top: 1px solid #e0e0e0;
  margin: 10px 0;
}

.list-item {
  font-size: 1rem;
  font-weight: 600;
  color: #222;
  padding: 10px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 0px;
  transition: all 0.3s ease;
}

.list-item a {
  color: inherit;
  text-decoration: none;
}

.list-item:hover {
  background-color: #f8f9fa;
  transform: translateY(-2px);
  text-decoration: underline;
}

.no-content-message {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  color: #495057;
  font-size: 1rem;
  border: 1px dashed #ddd;
}

@media (max-width: 1200px) {
  .square-container {
    flex-direction: column;
    align-items: center;
  }

  .row-cards {
    flex-direction: column;
    min-width: 100%;
    max-width: 600px;
  }

  .column-cards {
    min-width: 100%;
    max-width: 400px;
  }

  .heading-list {
    min-width: 100%;
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .news-section {
    padding: 15px;
  }

  .card-image {
    height: 120px;
  }

  .column-cards .card-image {
    width: 100%;
    height: auto;
  }

  .card-headline {
    font-size: 0.95rem;
  }

  .column-cards .card-headline {
    font-size: 0.85rem;
  }

  .card-excerpt {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .news-section {
    padding: 10px;
  }

  .card-image {
    height: 100px;
  }

  .column-cards .card-image {
    width: 100%;
    height: auto;
  }

  .card-headline {
    font-size: 0.9rem;
  }

  .column-cards .card-headline {
    font-size: 0.8rem;
  }

  .card-excerpt {
    font-size: 0.75rem;
  }

  .section-title {
    font-size: 1.5rem;
  }
}

/* franchise end  */

/* header.php start  */

.animate-icon {
  transition: transform 0.3s ease, color 0.3s ease;
  display: inline-block;
}

.animate-icon:hover {
  transform: scale(1.3) rotate(10deg);
  filter: brightness(1.2);
}

.category-link {
  position: relative;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 14px;
  font-weight: 600;
}

.category-link:hover {
  color: #333;
}

.category-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: #333;
  transition: width 0.3s ease;
}

.category-link:hover::after {
  width: 100%;
}

.weather {
  transition: color 0.3s ease;
}

.weather:hover {
  color: #000;
}

/* Colorful Weather Icons */
.bi-sun {
  color: #ffd700; /* Gold for clear/sun */
}

.bi-clouds {
  color: #a9a9a9; 
  font-weight: 800;
}

.bi-cloud-rain {
  color: #4682b4;
}

.bi-cloud-lightning {
  color: #ff4500; 
}

.bi-cloud-snow {
  color: #add8e6; 
}

.bi-cloud-fog {
  color: #b0c4de; 
}

.bi-cloud {
  color: #808080; 
}

/* preloader start */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loader-container {
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

.circular-loader {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-top: 2px solid #000;
  border-radius: 50%;
  animation: rotate 1.2s cubic-bezier(0.5, 0.1, 0.4, 0.9) infinite;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  color: #000;
  margin-bottom: 6px;
  letter-spacing: 0.8px;
}

.tagline {
  font-size: 0.9rem;
  color: #666;
  text-align: center;
  max-width: 280px;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.3;
}

.progress-container {
  width: 90px;
  height: 2.2px;
  background: #f1f1f1;
  border-radius: 4px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: #000;
  transition: width 0.4s ease;
}

.loading-text {
  margin-top: 12px;
  font-size: 0.6rem;
  color: #888;
  letter-spacing: 0.4px;
  font-weight: 500;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* preloader end */
/* header.php end  */

/* about start  */

.about-hero {
  background: url("https://images.unsplash.com/photo-1580587771525-78b9dba3b914?ixlib=rb-4.0.3&auto=format&fit=crop&w=1300&q=80")
    center/cover no-repeat;

  margin: 0 auto;
  padding: 100px 0 80px;
  text-align: center;
  color: white;
  position: relative;
}
.about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}
.about-hero h1 {
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}
.about-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.divider-about {
  height: 4px;
  width: 80px;
  background: linear-gradient(to right, var(--primary), var(--info));
  margin: 1.5rem auto;
  border-radius: 2px;
  position: relative;
  z-index: 2;
}
.main-heading {
  font-weight: 700;
  color: var(--dark);
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 2rem;
  text-align: center;
}
.main-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, var(--primary), var(--info));
  border-radius: 2px;
}
.sidebar {
  position: sticky;
  top: 100px;
  background: var(--light);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}
.sidebar-nav a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--dark);
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
  margin-bottom: 0.5rem;
}
.sidebar-nav a:hover,
.sidebar-nav a.active {
  background: black;
  color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.about-card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  background: white;
  padding: 2rem;
  margin-bottom: 2rem;
}
.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.about-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  font-family: "bootstrap-icons";
  font-weight: normal;
}
.about-card:nth-child(1) .about-icon {
  background: linear-gradient(to right, var(--primary), var(--info));
}
.about-card:nth-child(2) .about-icon {
  background: linear-gradient(to right, var(--success), #28a745);
}
.about-card:nth-child(3) .about-icon {
  background: linear-gradient(to right, var(--warning), #ffc107);
}
.about-card h4 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark);
}
.about-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.about-card ul {
  padding-left: 0;
  list-style: none;
}
.about-card li {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 5px;
  flex-wrap: wrap;
}
.about-card li i {
  margin-top: 5px;
  flex-shrink: 0;
}
.about-card li strong {
  color: #000000;
  flex-shrink: 0;
  min-width: 180px;
  font-weight: 600;
}
.about-card li span {
  flex: 1;
  color: #555555;
}
.nomination-section {
  background: #f8f8f8;
  padding: 25px;
  border-radius: 8px;
  transition: background 0.3s ease;
  width: 100%;
}
.nomination-section:hover {
  background: #f0f0f0;
}
.nomination-section p.fw-semibold {
  margin-bottom: 15px;
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nomination-section ul {
  padding-left: 0;
  list-style: none;
}
.nomination-section li {
  display: flex;
  align-items: flex-start;
  gap: 3px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.nomination-section li i {
  margin-top: 5px;
  flex-shrink: 0;
}
.nomination-section li strong {
  min-width: 140px;
  font-weight: 600;
  color: #000000;
}
.nomination-section li span {
  flex: 1;
  color: #555555;
}
.cta-section {
  background: var(--light);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  margin-top: 3rem;
}
.btn-primary {
  background: black;
  border: none;
  padding: 0.8rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background: #2e2e2e;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(66, 66, 66, 0.3);
}
/* Responsive adjustments */
@media (max-width: 991px) {
  .sidebar {
    position: static;
    margin-bottom: 2rem;
  }
  .sidebar-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .sidebar-nav a {
    margin: 0.5rem;
  }
}
@media (max-width: 768px) {
  .about-hero {
    padding: 80px 0 60px;
  }
  .about-hero h1 {
    font-size: 2rem;
  }
  .about-card {
    padding: 1.5rem;
  }
  .nomination-section {
    padding: 20px;
  }
  .nomination-section li {
    flex-direction: row;
    align-items: flex-start;
    gap: 3px;
    flex-wrap: wrap;
  }
  .nomination-section li strong {
    min-width: 100px;
    margin-bottom: 0;
  }
  .nomination-section li span {
    width: auto;
    flex: 1;
  }
  .about-card li strong {
    min-width: 120px;
  }
}
@media (max-width: 576px) {
  .nomination-section li {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  .nomination-section li strong {
    min-width: 100%;
    margin-bottom: 5px;
  }
  .nomination-section li span {
    width: 100%;
  }
  .about-card li {
    flex-direction: column;
    gap: 2px;
  }
  .about-card li strong {
    min-width: 100%;
    margin-bottom: 5px;
  }
  .about-card li span {
    width: 100%;
  }
}

/* about end  */

/* contact start  */

.contact-hero {
  background: url("https://images.unsplash.com/photo-1516387938699-a93567ec168e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1500&q=80")
    center/cover no-repeat;
  padding: 100px 0 80px;
  text-align: center;
  color: white;
  position: relative;
}

.contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.contact-hero h1 {
  font-weight: 700;
  color: white;
  /* Updated to white to match the new design */
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  /* Ensure text is above the overlay */
}

.contact-hero p {
  color: rgba(255, 255, 255, 0.8);
  /* Slightly opaque white for better contrast */
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  /* Ensure text is above the overlay */
}

.contact-card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  background: white;
  padding: 2.5rem 1.5rem;
  text-align: center;
  margin-bottom: 2rem;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  height: 90px;
  width: 90px;
  line-height: 90px;
  border-radius: 50%;
  background: rgba(13, 110, 253, 0.1);
}

.contact-icon.email {
  color: var(--primary);
  background: rgba(13, 110, 253, 0.1);
}

.contact-icon.social {
  color: var(--info);
  background: rgba(13, 202, 240, 0.1);
}

.contact-card h4 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark);
}

.contact-card p {
  color: #666;
  margin-bottom: 1.5rem;
}

.btn-primary {
  background: black;
  border: none;
  padding: 0.8rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #2e2e2eff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(66, 66, 66, 0.3);
}

.social-links {
  margin-top: 1.5rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 0 8px;
  color: white;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.social-links a:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.social-links a.twitter {
  background: #1da1f2;
}

.social-links a.linkedin {
  background: #0077b5;
}

.social-links a.facebook {
  background: #3b5998;
}

.contact-infos,
.map-card {
  background: white;
  border-radius: 12px;
  /*padding: 2rem;*/
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
}

.contact-infos h3,
.map-card h3 {
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--dark);
  text-align: center;
}

.contact-infos-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-infos-item:hover {
  background: #f8f9fa;
}

.contact-infos-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-size: 1.2rem;
  color: white;
}

.contact-infos-icon.location {
  background: var(--primary);
}

.contact-infos-icon.phone {
  background: var(--success);
}

.contact-infos-icon.clock {
  background: var(--warning);
  color: var(--dark);
}

.contact-infos-icon.mail {
  background: var(--danger);
}

.contact-infos-content h5 {
  margin-bottom: 0.2rem;
  font-weight: 600;
}

.contact-infos-content p {
  margin-bottom: 0;
  color: #666;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  flex-grow: 1;
  max-height: 100%;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Ensure Email Us and Follow Us cards have equal height */
.row.justify-content-center {
  display: flex;
  flex-wrap: wrap;
}

.row.justify-content-center > .col-md-6 {
  display: flex;
}

.row.justify-content-center > .col-md-6 > .contact-card {
  flex-grow: 1;
}

/* Ensure contact-infos and map-card have equal height */
.row.mt-5 {
  display: flex;
  flex-wrap: wrap;
}

.row.mt-5 > .col-lg-6 {
  display: flex;
}

.row.mt-5 > .col-lg-6 > .contact-infos,
.row.mt-5 > .col-lg-6 > .map-card {
  flex-grow: 1;
}

.main-heading {
  font-weight: 700;
  color: var(--dark);
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 2rem;
}

.main-heading:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--info));
  border-radius: 2px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-hero {
    padding: 80px 0 60px;
  }

  .contact-hero h1 {
    font-size: 2rem;
  }

  .contact-card {
    padding: 2rem 1rem;
  }
}

/* contact end  */

/* privacy start  */

.privacy-hero {
  background: url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?q=80&w=1470&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D")
    center/cover no-repeat;
  padding: 100px 0 80px;
  text-align: center;
  color: white;
  position: relative;
}
.privacy-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}
.privacy-hero h1 {
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}
.privacy-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.divider-privacy {
  height: 4px;
  width: 80px;
  background: linear-gradient(to right, var(--primary), var(--info));
  margin: 1.5rem auto;
  border-radius: 2px;
  position: relative;
  z-index: 2;
}
.main-heading {
  font-weight: 700;
  color: var(--dark);
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 2rem;
  text-align: center;
}
.main-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, var(--primary), var(--info));
  border-radius: 2px;
}
.accordion {
  --bs-accordion-border-radius: 12px;
  --bs-accordion-inner-border-radius: 12px;
  --bs-accordion-btn-padding-x: 1.5rem;
  --bs-accordion-btn-padding-y: 1.25rem;
  --bs-accordion-body-padding-x: 1.5rem;
  --bs-accordion-body-padding-y: 1.25rem;
}
.accordion-item {
  border: none;
  border-radius: 12px !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  margin-bottom: 1.5rem;
  background: white;
}
.accordion-button {
  font-weight: 600;
  color: var(--dark);
  background: white;
  border-radius: 12px !important;
  transition: all 0.3s ease;
}
.accordion-button:not(.collapsed) {
  color: var(--primary);
  background: rgba(171, 184, 204, 0.1);
  box-shadow: none;
}
.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}
.accordion-body {
  color: #666;
  line-height: 1.6;
}
.accordion-body ul {
  padding-left: 1.5rem;
}
.cta-section {
  background: var(--light);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  margin-top: 3rem;
}
.btn-primary {
  background: black;
  border: none;
  padding: 0.8rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background: #2e2e2e;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(66, 66, 66, 0.3);
}
/* Responsive adjustments */
@media (max-width: 768px) {
  .privacy-hero {
    padding: 80px 0 60px;
  }
  .privacy-hero h1 {
    font-size: 2rem;
  }
  .accordion-button {
    font-size: 1rem;
    padding: 1rem;
  }
  .accordion-body {
    padding: 1rem;
  }
}

/* privacy end  */

/* disclaimer start  */

.disclaimer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-section-disclaimer {
  background: url("https://plus.unsplash.com/premium_photo-1677087121017-b779a16ff921?q=80&w=1632&auto=format&fit=crop&ixlib=rb-4.1.0")
    center/cover no-repeat;
  color: #ffffff;
  padding: 120px 0 90px;
  text-align: center;
  position: relative;
  margin-bottom: 60px;
}

.hero-section-disclaimer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

.hero-section-disclaimer .container {
  position: relative;
  z-index: 2;
}

.hero-section-disclaimer h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-section-disclaimer p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  color: #e0e0e0;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .content-grid {
    grid-template-columns: 1fr;
  }
}

.content-card {
  background: var(--light-card);
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.content-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
}

.card-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
  font-size: 24px;
}

.icon-blue {
  background-color: rgba(59, 130, 246, 0.1);
  color: var(--accent-blue);
}

.icon-purple {
  background-color: rgba(139, 92, 246, 0.1);
  color: var(--accent-purple);
}

.icon-pink {
  background-color: rgba(236, 72, 153, 0.1);
  color: var(--accent-pink);
}

.icon-green {
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--accent-green);
}

.icon-orange {
  background-color: rgba(249, 115, 22, 0.1);
  color: var(--accent-orange);
}

.card-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--light-text);
  margin: 0;
}

.card-content p {
  color: var(--grey-text);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.disclaimer-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.disclaimer-list li {
  margin-bottom: 18px;
  display: flex;
  align-items: flex-start;
  padding-left: 5px;
}

.list-icon {
  font-size: 1.2rem;
  margin-right: 12px;
  margin-top: 4px;
  flex-shrink: 0;
}

.list-text {
  color: var(--grey-text);
}

.list-text strong {
  color: var(--light-text);
  font-weight: 600;
}

.contact-section {
  background: var(--light-card);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  margin-bottom: 60px;
  border: 1px solid var(--border-color);
}

.contact-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--light-text);
}

.contact-text {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: var(--grey-text);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.contact-btn {
  background: black;
  color: white;
  padding: 14px 32px;
  border-radius: 63px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: #3f3f3fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
  color: white;
}

@media (max-width: 768px) {
  .hero-section-disclaimer {
    padding: 90px 0 70px;
  }

  .hero-section-disclaimer h1 {
    font-size: 2.2rem;
  }

  .hero-section-disclaimer p {
    font-size: 1rem;
  }

  .content-card {
    padding: 25px;
  }

  .card-header {
    flex-direction: column;
    text-align: center;
  }

  .card-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .contact-section {
    padding: 30px 20px;
  }
}

@media (max-width: 576px) {
  .hero-section-disclaimer {
    padding: 70px 0 50px;
  }

  .hero-section-disclaimer h1 {
    font-size: 1.8rem;
  }

  .card-title {
    font-size: 1.4rem;
  }
}

/* disclaimer end  */

/* news start */

.artikel-body {
  color: var(--artikel-black);
  background-color: #fff;
  line-height: 1.6;
  font-family: "Libre Baskerville", serif;
}

.artikel-heading-font {
  font-family: "Playfair Display", serif;
}

.artikel-header {
  /*border-bottom: 2px solid var(--artikel-black);*/
  /*padding-bottom: 15px;*/
  /*margin-bottom: 30px;*/
}

.artikel-paper-title {
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  margin: 20px 0;
}

.artikel-date-display {
  font-size: 0.9rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  border-top: var(--artikel-border);
  border-bottom: var(--artikel-border);
  padding: 8px 0;
}

.artikel-main-headline {
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: var(--artikel-border);
}

.artikel-featured-image {
  width: 100%;
  height: 420px;
  margin-bottom: 20px;
  border: 1px solid var(--artikel-black);
  border-radius: 4px;
  object-fit: cover;
}

.artikel-content-body {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.artikel-meta-info {
  font-size: 0.8rem;
  /*text-transform: uppercase;*/
  letter-spacing: 1px;
  margin-right: 15px;
  color: var(--artikel-gray);
}

.artikel-navigation-links {
  font-size: 0.9rem;
  padding: 10px 0;
  border-bottom: var(--artikel-border);
  margin-bottom: 20px;
}

.artikel-navigation-links a {
  color: var(--artikel-gray);
  text-decoration: none;
}

.artikel-navigation-links a:hover {
  text-decoration: underline;
  color: var(--artikel-primary);
}

/* Sidebar Styles */
.artikel-side-panel {
  background-color: #f9f9f9;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.artikel-side-heading {
  font-size: 1.3rem;
  border-bottom: 2px solid var(--artikel-primary);
  padding-bottom: 10px;
  margin-bottom: 20px;
  color: var(--artikel-primary);
}

.artikel-side-item {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e0e0e0;
}

.artikel-side-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.artikel-side-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 12px;
}

.artikel-side-title {
  font-size: 1.05rem;
  margin-bottom: 8px;
  line-height: 1.3;
  color: var(--artikel-black);
}
.artikel-side-title:hover {
  text-decoration: underline;
}
.artikel-side-title a {
  color: var(--artikel-black);
  text-decoration: none;
}

.artikel-side-title a:hover {
  color: var(--artikel-primary);
}

.artikel-side-date {
  font-size: 0.8rem;
  color: var(--artikel-gray);
}

/* Social Share Buttons */
.artikel-social-panel {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.artikel-social-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  font-size: 1.2rem;
}

.artikel-social-btn:hover {
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.artikel-fb-btn {
  background-color: var(--artikel-facebook);
}

.artikel-tw-btn {
  background-color: var(--artikel-twitter);
}

.artikel-wa-btn {
  background-color: var(--artikel-whatsapp);
}

.artikel-li-btn {
  background-color: var(--artikel-linkedin);
}

/* Article container */
.artikel-main-container {
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  padding: 0 30px;
  position: relative;
}

.artikel-dropcap::first-letter {
  float: left;
  font-size: 3.5rem;
  line-height: 0.8;
  padding: 0 8px 0 0;
  font-weight: bold;
  color: var(--artikel-primary);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .artikel-main-headline {
    font-size: 1.8rem;
  }

  .artikel-social-panel {
    position: static;
    flex-direction: row;
    justify-content: center;
    transform: none;
    margin: 20px 0;
  }

  .artikel-social-btn {
    margin: 0 8px;
  }

  .artikel-paper-title {
    font-size: 2rem;
  }

  .artikel-side-panel {
    padding: 15px;
  }

  .artikel-side-image {
    height: 120px;
  }
}

/* Sticky sidebar on larger screens */
@media (min-width: 992px) {
  .artikel-sticky-side {
    position: sticky;
    top: 20px;
  }
}

/* Divider */
.artikel-section-divider {
  border-top: 2px solid var(--artikel-black);
  margin: 3rem 0;
}

/* Mobile social bar */
.artikel-mobile-social-bar {
  padding: 10px 0;
}

.artikel-mobile-social-btn {
  width: 35px;
  height: 35px;
  font-size: 1rem;
}

/* news end */

/* magazine profile start */
body {
  font-family: var(--font-sans);
  color: var(--primary-color);
  line-height: 1.6;
  background-color: #fff;
}

.newspaper-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.article-header {
  border-bottom: 3px double var(--primary-color);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
}

.article-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

/* Responsive font size for mobile */
@media (max-width: 768px) {
  .article-title {
    font-size: 1.3rem;
  }
}

.article-meta {
  color: var(--dark-gray);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.article-meta span {
  margin-right: 1rem;
}

.article-meta .separator {
  color: black;
  padding: 0 0.5rem;
}

.article-image {
  width: 60%;
  height: auto;
  margin: auto;
  /* border-radius: 4px; */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.article-content {
  font-size: 1rem;
  line-height: 1.8;
}

.article-content p {
  margin-bottom: 1.5rem;
  text-align: justify;
  hyphens: auto;
  orphans: 3;
  widows: 3;
}

.article-content p:first-child:first-letter {
  float: left;
  font-size: 4.5rem;
  line-height: 0.8;
  padding-top: 0.5rem;
  padding-right: 0.5rem;
  font-family: var(--font-serif);
  color: black;
}

.company-info {
  background-color: var(--light-gray);
  padding: 1.5rem;
  margin: 2rem 0;
  border-left: 4px solid black;
  font-size: 0.95rem;
}

.company-info a {
  color: black;
  text-decoration: none;
  transition: all 0.3s;
}

.company-info a:hover {
  text-decoration: underline;
}

.floating-share {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.share-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  transition: all 0.3s;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.share-icon:hover {
  transform: scale(1.1);
}

.facebook {
  background-color: #3b5998;
}

.twitter {
  background-color: #000000;
}

.whatsapp {
  background-color: #25d366;
}

.linkedin {
  background-color: #0077b5;
}

.section-dividers {
  border-top: 3px double var(--primary-color);
  margin: 3rem 0;
  position: relative;
}

.section-dividers:after {
  content: "✻ ✻ ✻";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 0 15px;
  color: black;
  font-size: 1.2rem;
}

.latest-magazines {
  background-color: var(--light-gray);
  padding: 2rem;
  margin-top: 3rem;
}

.latest-title {
  font-family: var(--font-serif);
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.latest-title:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background-color: black;
}
@media screen and (min-width: 1024px) and (max-width: 1440px) {
  .floating-share {
    top: 80%;
  }
}
/* magazine profile end */

/* magazine.php start */

body {
  background-color: var(--sr-secondary-color);
  color: var(--sr-primary-color);
  font-family: "Libre Baskerville", serif;
}

.sr-magazine-container {
  max-width: 1320px;
  padding: 2rem 1rem;
}

.sr-filter-container {
  margin-bottom: 2.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--sr-border-color);
  border-top: 1px solid var(--sr-border-color);
}

.sr-filter-btn {
  background: transparent;
  color: var(--sr-primary-color);
  border: 1px solid var(--sr-border-color);
  border-radius: 4px;
  padding: 0.5rem 1.25rem;
  margin: 0.25rem;
  font-size: 0.85rem;
  transition: all 0.2s ease;
  font-weight: 500;
}

.sr-filter-btn:hover,
.sr-filter-btn.sr-active {
  background-color: var(--sr-primary-color);
  color: var(--sr-secondary-color);
  border-color: var(--sr-primary-color);
}

.sr-magazine-card {
  transition: all 0.2s ease;
  border: 1px solid var(--sr-border-color);
  border-radius: 0;
  overflow: hidden;
  background: var(--sr-secondary-color);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.sr-magazine-card:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-color: var(--sr-primary-color);
}

.sr-magazine-image-container {
  height: 320px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  position: relative;
  padding: 1.5rem;
}

.sr-magazine-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--sr-accent-color);
  color: white;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 3px;
  z-index: 2;
}

.sr-magazine-cover {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.sr-card-body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--sr-border-color);
}

.sr-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--sr-primary-color);
  line-height: 1.4;
  flex-grow: 1;
  text-align: center;
}

.sr-card-date {
  color: var(--sr-text-muted);
  font-size: 0.85rem;
  text-align: center;
  font-weight: 500;
}

.sr-section-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  text-align: center;
}

.sr-section-title:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: black;
}

.sr-section-subtitle {
  color: var(--sr-text-muted);
  margin-bottom: 2rem;
  font-size: 1.1rem;
  text-align: center;
}

.sr-no-results {
  display: none;
  text-align: center;
  padding: 3rem;
  grid-column: 1 / -1;
}

@media (max-width: 992px) {
  .sr-magazine-image-container {
    height: 280px;
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .sr-magazine-image-container {
    height: 240px;
  }

  .sr-card-title {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .sr-magazine-image-container {
    height: 200px;
  }

  .sr-filter-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }

  .sr-section-title {
    font-size: 1.75rem;
  }

  .sr-section-subtitle {
    font-size: 1rem;
  }
}

/* magazine.php end */

/* latestmagazine start */

.magazine-carousel {
  width: 100%;
  max-width: 1200px;
  height: 450px;
  position: relative;
  perspective: 1000px;
  margin: 60px auto 0;
  overflow: hidden;
}

.magazine-track {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s ease;
}

.magazine-card {
  position: absolute;
  width: 280px;
  height: 380px;
  border-radius: 6px;
  overflow: hidden;
  background: white;
  border: 1px solid #e0e0e0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
  cursor: pointer;
}

.magazine-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.magazine-image-container {
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #f0f0f0;
}

.magazine-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.magazine-card:hover img {
  transform: scale(1.05);
}

.magazine-info {
  text-align: center;
  padding: 10px;
}

.magazine-title {
  font-size: clamp(0.8rem, 1.5vw, 0.95rem);
  line-height: 1.35;
  min-height: 3.6em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-bottom: 8px;
}

.date-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.date-badge {
  background-color: #f8f9fa;
  color: #333;
  font-size: clamp(0.6rem, 1.1vw, 0.7rem);
  font-weight: 500;
  padding: 0.25em 0.6em;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
}

.date-badge.year {
  background-color: #f0f0f0;
  font-weight: 600;
}

.dot-separator {
  color: #999;
  font-size: clamp(0.6rem, 1.1vw, 0.7rem);
  margin: 0 4px;
}

.magazine-card.center {
  z-index: 10;
  transform: scale(1.1);
}

.magazine-card.left-1 {
  transform: translateX(-200px) scale(0.9);
  opacity: 0.8;
}

.magazine-card.left-2 {
  transform: translateX(-400px) scale(0.8);
  opacity: 0.6;
}

.magazine-card.right-1 {
  transform: translateX(200px) scale(0.9);
  opacity: 0.8;
}

.magazine-card.right-2 {
  transform: translateX(400px) scale(0.8);
  opacity: 0.6;
}

.magazine-card.hidden {
  opacity: 0;
  pointer-events: none;
}

.magazine-info-center {
  text-align: center;
  margin-top: 40px;
}

.magazine-name {
  font-size: 2.5rem;
  color: black;
  transition: opacity 0.3s ease;
}

.magazine-date {
  font-size: 1.2rem;
  text-transform: uppercase;
  color: black;
  letter-spacing: 0.1em;
  transition: opacity 0.3s ease;
}

.magazine-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.magazine-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(73, 73, 73, 0.35);
  cursor: pointer;
}

.magazine-dot.active {
  background: black;
}

.magazine-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 1);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 20;
}

.magazine-arrow:hover {
  background: rgba(37, 37, 37, 0.9);
}

.magazine-left {
  left: 10px;
}

.magazine-right {
  right: 10px;
}

.header-divider {
  width: 60px;
  height: 3px;
  background: black;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .magazine-carousel {
    height: 400px;
    margin: 30px auto 0;
  }
  .magazine-card {
    width: 240px;
    height: 340px;
  }
  .magazine-image-container {
    height: 200px;
  }
  .magazine-card.left-1,
  .magazine-card.right-1 {
    transform: translateX(0) scale(0.95);
    opacity: 0.7;
  }
  .magazine-card.left-2,
  .magazine-card.right-2 {
    display: none;
  }
  .magazine-arrow {
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
  }
  .magazine-left {
    left: 5px;
  }
  .magazine-right {
    right: 5px;
  }
  .magazine-name {
    font-size: 1.8rem;
  }
  .magazine-date {
    font-size: 1rem;
  }
  .magazine-dots {
    margin-top: 20px;
  }
}

@media (max-width: 576px) {
  .magazine-carousel {
    height: 350px;
  }
  .magazine-card {
    width: 200px;
    height: 300px;
  }
  .magazine-image-container {
    height: 160px;
  }
  .magazine-title {
    min-height: 2.8em;
    -webkit-line-clamp: 2;
    font-size: clamp(0.75rem, 1.4vw, 0.85rem);
  }
  .magazine-name {
    font-size: 1.5rem;
  }
  .magazine-date {
    font-size: 0.9rem;
  }
  .magazine-arrow {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }
  .magazine-dots {
    gap: 8px;
    margin-top: 15px;
  }
  .magazine-dot {
    width: 10px;
    height: 10px;
  }
}

/* latestmagazine end */

/* Advertise.php start */
:root {
  --primary: #000000ff;
  --secondary: #6c757d;
  --success: #198754;
  --danger: #dc3545;
  --warning: #ffc107;
  --info: #e0e0e0ff;
  --light: #f8f9fa;
  --dark: #212529;
}
.advertise-hero {
  background: url("https://images.unsplash.com/photo-1556761175-4b46a572b786?ixlib=rb-4.0.3&auto=format&fit=crop&w=1500&q=80")
    center/cover no-repeat;
  padding: 100px 0 80px;
  text-align: center;
  color: white;
  position: relative;
}
.advertise-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}
.advertise-hero h1 {
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}
.advertise-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.divider-advertise {
  height: 4px;
  width: 80px;
  background: linear-gradient(to right, var(--primary), var(--info));
  margin: 1.5rem auto;
  border-radius: 2px;
  position: relative;
  z-index: 2;
}
.advertise-card-targeted,
.advertise-card-global,
.advertise-card-impact,
.advertise-card-flexible,
.advertise-card-affordable {
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  background: white;
  padding: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}
.advertise-card-targeted:hover,
.advertise-card-global:hover,
.advertise-card-impact:hover,
.advertise-card-flexible:hover,
.advertise-card-affordable:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.advertise-icon-targeted {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--danger);
  background: rgba(220, 53, 69, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
}
.advertise-icon-global {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--success);
  background: rgba(25, 135, 84, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
}
.advertise-icon-impact {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--warning);
  background: rgba(255, 193, 7, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
}
.advertise-icon-flexible {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
  background: rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
}
.advertise-icon-affordable {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--secondary);
  background: rgba(108, 117, 125, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
}
.advertise-card-targeted h4,
.advertise-card-global h4,
.advertise-card-impact h4,
.advertise-card-flexible h4,
.advertise-card-affordable h4 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark);
}
.advertise-card-targeted p,
.advertise-card-global p,
.advertise-card-impact p,
.advertise-card-flexible p,
.advertise-card-affordable p {
  color: #666;
  margin-bottom: 1.5rem;
}
.btn-primary {
  background: black;
  border: none;
  padding: 0.8rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background: #2e2e2e;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(66, 66, 66, 0.3);
}
.main-heading {
  font-weight: 700;
  color: var(--dark);
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 2rem;
  text-align: center;
}
.main-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, var(--primary), var(--info));
  border-radius: 2px;
}
.cta-section {
  background: var(--light);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  margin-top: 3rem;
}
/* Responsive adjustments */
@media (max-width: 768px) {
  .advertise-hero {
    padding: 80px 0 60px;
  }
  .advertise-hero h1 {
    font-size: 2rem;
  }
  .advertise-card-targeted,
  .advertise-card-global,
  .advertise-card-impact,
  .advertise-card-flexible,
  .advertise-card-affordable {
    padding: 1.5rem;
  }
}
/* Advertise.php end */
