﻿/* Base Article Container */
     body.custom-background {
            background-image: url("/wp-content/uploads/2018/06/pexels-photo-1029615.jpeg");
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
            background-attachment: fixed;
        }
/* Title Styling */
.entry-title {
    font-size: 1.8rem;
    text-align: center;
    color: #1439bb;
    margin-bottom: 40px;
    border-bottom: 1px solid #1439bb;
    display: inline-block;
    padding-bottom: 12px;
}

/* Quarter and Year Headings */
.entry-content p strong {
    font-size: 1.3rem;
    display: block;
    /* color: #222; */
    margin: 20px 0 10px;
}

/* Card Block for Each File */
.wp-block-file {
    background: linear-gradient(135deg, #143bc11c, #143bc11c);
    border-left: 5px solid #143bc1;
    border-radius: 12px;
    padding: 20px 25px;
    margin: 10px;
    box-shadow: 0 4px 10px #00bcd426;
    display: inline-flex;
    flex-direction: column;
    gap: 10px;
}

/* File Name Link */
.wp-block-file a:not(.wp-block-file__button) {
}

.wp-block-file a:not(.wp-block-file__button):hover {
}

/* PDF Embed Preview */
.wp-block-file__embed {
    margin-top: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    max-width: 100%;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.04);
}

/* Stylish Download Button */
.wp-block-file__button {
    background: #143bc1;
    color: #fff !important;
    font-weight: 600;
    padding: 10px 16px;
    font-size: 0.95rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    box-shadow: 0 4px 12px #143bc14d;
    transition: all 0.3s ease;
    border: none;
}

.wp-block-file__button:hover {
    background: #0b2faa;
    transform: translateY(-1px);
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    #post-424 {
        padding: 30px 20px;
    }

    .entry-title {
        font-size: 2.2rem;
    }

    .wp-block-file {
        padding: 16px;
    }

    .wp-block-file__button {
        width: 100%;
        justify-content: center;
    }
}


        /* Custom orange color palette */
        :root {
            --primary-orange: #52156d; /* Main accent orange */
            --primary-orange-dark: #1438be; /* Darker shade for hover */
            --text-dark: #52156d; /* Dark text for good contrast */
            --text-light: #d8d8d8; /* Lighter text for secondary info */
        }

        .text-primary-orange { color: var(--primary-orange); }
        .bg-primary-orange { background-color: var(--primary-orange); }
        .bg-orange { background-color: var(--primary-orange-dark); }
        .border-primary-orange { border-color: var(--primary-orange); }
        .hover\:bg-primary-orange-dark:hover { background-color: var(--primary-orange-dark); }
        .hover\:text-primary-orange:hover { color: var(--primary-orange); }

        /* General text colors */
        .text-gray-900 { color: var(--text-dark); } /* Used for brand name */
        .text-gray-700 { color: var(--text-dark); } /* Used for nav links */
        .text-gray-300 { color: var(--text-light); } /* Used for top bar text */
        .bg-gray-800 { background-color: var(--primary-orange-dark); } /* Dark charcoal for top bar */

        /* Responsive adjustments */
        @media (min-width: 768px) {
            .md\:flex {
                display: flex !important;
            }
            .md\:hidden {
                display: none !important;
            }
        }

        /* Hamburger menu specific styles using SVG */
        .hamburger-menu {
            display: none; /* Hidden by default, shown on small screens */
            cursor: pointer;
            width: 2.5rem; /* Slightly larger for better touch target */
            height: 2.5rem;
            background: transparent;
            border: none;
            padding: 0;
            z-index: 20;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease-in-out;
        }

        .hamburger-menu svg {
            width: 100%;
            height: 100%;
            fill: none;
            stroke: var(--text-dark); /* Color of the hamburger lines */
            stroke-width: 3;
            stroke-linecap: round;
            stroke-linejoin: round;
            transition: transform 0.3s ease-in-out, stroke-dasharray 0.3s ease-in-out, stroke-dashoffset 0.3s ease-in-out;
        }

        .hamburger-menu.open .top-line {
            transform: rotate(45deg) translate(8px, 8px); /* Adjust translation based on size */
            stroke-dasharray: 90 200;
            stroke-dashoffset: -124px;
        }

        .hamburger-menu.open .middle-line {
            opacity: 0;
            transform: rotate(0deg) scale(0);
        }

        .hamburger-menu.open .bottom-line {
            transform: rotate(-45deg) translate(8px, -8px); /* Adjust translation based on size */
            stroke-dasharray: 90 200;
            stroke-dashoffset: -124px;
        }

        .mobile-menu {
            display: none;
            flex-direction: column;
/*            position: absolute;*/
            top: 100%;
            left: 0;
            width: 100%;
            background-color: #ffffff; /* Clean white for mobile menu */
            box-shadow: 0 10px 20px rgba(0,0,0,0.08); /* Softer, slightly larger shadow */
            z-index: 15;
            padding: 1rem 0;
            border-top: 1px solid #E2E8F0; /* Subtle line at the top */
            animation: slideDown 0.3s ease-out forwards; /* Smooth slide-down animation */
        }

        .mobile-menu.open {
            display: flex;
        }

        .mobile-menu a {
            padding: 0.75rem 1.5rem;
            color: var(--text-dark);
            font-weight: 600;
            transition: background-color 0.2s ease, color 0.2s ease;
        }

        .mobile-menu a:hover {
            background-color: #EDF2F7; /* Lighter hover background */
            color: var(--primary-orange); /* Orange on hover */
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }


/*        slider*/
        .slider-container {
            position: relative;
            overflow: hidden;
            width: 100%;
        }
        .slider-wrapper {
            display: flex;
            transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Smoother transition */
        }
        .slide {
            flex: 0 0 100%; /* Each slide takes 100% width */
            width: 100%;
            /* Add a subtle animation for content on slide change */
            animation: fadeInScale 0.8s ease-out forwards;
        }

        /* Keyframe animation for slide content */
        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Ensure the animation resets when slide changes */
        .slide.active {
            animation: fadeInScale 0.8s ease-out forwards;
        }

        /* Custom shadow for active dot */
        .dot.active-shadow {
            box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.5); /* Subtle white glow */
        }

                /* Custom shadow and animation for images on hover */
        .image-hover-effect {
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); /* Slower, smoother transition */
        }

        .image-hover-effect:hover {
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25); /* More pronounced shadow */
            transform: scale(1.03); /* Slightly larger scale */
            border-color: #4f46e5; /* A more vibrant border on hover */
        }

    .owl-nav {
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      display: flex;
      justify-content: space-between;
      transform: translateY(-50%);
      padding: 0 0.5rem;
      pointer-events: none;
    }

    .owl-nav button {
      background-color: #993233 !important; /* slate-600 */
      border-radius: 9999px;
      width: 2.5rem;
      height: 2.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white !important;
      transition: all 0.3s;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      pointer-events: auto;
    }

    .owl-nav button:hover {
      background-color: #4f46e5; /* indigo-600 */
    }

    .owl-carousel img {
      max-height: 150px;
      object-fit: contain;
    }

.content-box {
    width: min(80% - 40px);
    padding: 20px;
    filter: drop-shadow(3px 4px 1px #0000003b);
    color: #ffffff;
    background: #0000003b;
    border-top: 0px solid orange;
    transition: 1s;
    transform: translateY(100px);
}
.slide.active .content-box {
    transform: scaleY(1);
}
.bg-primary-orange {
    filter: drop-shadow(3px 4px 1px rgba(82, 21, 109, 0.28));
}

.bar-line{
    
border-top: 4px solid #f5941e;
    
width: 50px;
    
margin: 0 auto;
    display: block;
padding-bottom: 1rem;
}