/* Developer stylings */
.puja-special-wrapper figure img {
    border-radius: 30px;
    overflow: hidden;
}

/* Respect users' reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .menu-xxx-container .btn-group .dropdown-menu,
    .menu-xxx-container .btn-group .dropdown-menu.show,
    .menu-xxx-container .btn-group .dropdown-menu.opening,
    .menu-xxx-container .btn-group .dropdown-menu.closing {
        transition: none !important;
    }
}
.puja-special-wrapper figure video {
    border-radius: 30px;
    overflow: hidden;
}

/* ========================================
   Custom Project Filter Dropdown Design
   Modern & Beautiful Styling
   ======================================== */

/* Custom Select Wrapper */
.custom-select-wrapper {
    position: relative;
    width: 100%;
}

/* Custom Select Container */
.custom-select {
    position: relative;
    width: 100%;
    user-select: none;
}

/* Custom Select Trigger Button */
.custom-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: linear-gradient(135deg, #0a79b3 0%, #0d8fc9 50%, #0a79b3 100%);
    background-size: 200% 100%;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    border-radius: 10px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(10, 121, 179, 0.25),
        0 2px 8px rgba(10, 121, 179, 0.15);
    letter-spacing: 0.3px;
}

/* Hover Effect */
.custom-select-trigger:hover {
    background-position: 100% 0;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(10, 121, 179, 0.35),
        0 4px 12px rgba(10, 121, 179, 0.2), 0 0 0 4px rgba(10, 121, 179, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Active/Open State */
.custom-select-trigger.active {
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 25px rgba(10, 121, 179, 0.4),
        0 4px 15px rgba(10, 121, 179, 0.25), 0 0 0 5px rgba(10, 121, 179, 0.15);
    transform: translateY(-3px);
}

/* Dropdown Arrow Icon */
.custom-select-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    margin-left: 12px;
}

.custom-select.open .custom-select-arrow {
    transform: rotate(180deg);
}

/* Dropdown Options Container */
.custom-select-options {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(10, 121, 179, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    max-height: 300px;
    overflow-y: hidden;
    overflow-x: hidden;
}

/* Show dropdown when open */
.custom-select.open .custom-select-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Custom Scrollbar */
/* .custom-select-options::-webkit-scrollbar {
    width: 6px;
}

.custom-select-options::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
} */

/* .custom-select-options::-webkit-scrollbar-thumb {
    background: #0A79B3;
    border-radius: 10px;
} */

/* .custom-select-options::-webkit-scrollbar-thumb:hover {
    background: #0892d0;
} */

/* Individual Option */
.custom-select-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.custom-select-option:first-child {
    border-radius: 12px 12px 0 0;
}

.custom-select-option:last-child {
    border-radius: 0 0 12px 12px;
}

/* Option Hover Effect */
.custom-select-option:hover {
    background: linear-gradient(
        135deg,
        rgba(10, 121, 179, 0.08) 0%,
        rgba(13, 143, 201, 0.12) 100%
    );
    color: #0a79b3;
    padding-left: 24px;
}

/* Active/Selected Option */
.custom-select-option.active {
    background: linear-gradient(135deg, #0a79b3 0%, #0d8fc9 100%);
    color: #ffffff;
    font-weight: 600;
}

.custom-select-option.active:hover {
    background: linear-gradient(135deg, #0892d0 0%, #0a79b3 100%);
    color: #ffffff;
    padding-left: 18px;
}

/* Check Icon */
.custom-select-option .check-icon {
    width: 16px;
    height: 16px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.2s ease;
    flex-shrink: 0;
    margin-left: 10px;
}

.custom-select-option.active .check-icon {
    opacity: 1;
    transform: scale(1);
}

/* Entrance Animation */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.custom-select.open .custom-select-option {
    animation: slideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.custom-select.open .custom-select-option:nth-child(1) {
    animation-delay: 0.05s;
}
.custom-select.open .custom-select-option:nth-child(2) {
    animation-delay: 0.08s;
}
.custom-select.open .custom-select-option:nth-child(3) {
    animation-delay: 0.11s;
}
.custom-select.open .custom-select-option:nth-child(4) {
    animation-delay: 0.14s;
}
.custom-select.open .custom-select-option:nth-child(5) {
    animation-delay: 0.17s;
}

/* Pulse Animation on Load */
@keyframes pulseLoad {
    0%,
    100% {
        box-shadow: 0 4px 15px rgba(10, 121, 179, 0.25),
            0 2px 8px rgba(10, 121, 179, 0.15);
    }
    50% {
        box-shadow: 0 6px 20px rgba(10, 121, 179, 0.35),
            0 3px 10px rgba(10, 121, 179, 0.2);
    }
}

.custom-select-trigger {
    animation: pulseLoad 2s ease-in-out 1;
}

/* Responsive Adjustments for Tablets */
@media (max-width: 991px) {
    .custom-select-trigger {
        padding: 12px 16px;
        font-size: 17px;
    }

    .custom-select-option {
        padding: 12px 16px;
        font-size: 16px;
    }

    .custom-select-option:hover {
        padding-left: 22px;
    }

    .custom-select-arrow {
        width: 14px;
        height: 14px;
    }
}

/* Responsive Adjustments for Mobile */
@media (max-width: 575px) {
    .custom-select-trigger {
        padding: 10px 14px;
        font-size: 15px;
        box-shadow: 0 3px 10px rgba(10, 121, 179, 0.2);
    }

    .custom-select-trigger:hover,
    .custom-select-trigger.active {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(10, 121, 179, 0.3),
            0 0 0 3px rgba(10, 121, 179, 0.1);
    }

    .custom-select-option {
        padding: 10px 14px;
        font-size: 14px;
    }

    .custom-select-option:hover {
        padding-left: 20px;
    }

    .custom-select-options {
        max-height: 250px;
    }

    .custom-select-arrow {
        width: 12px;
        height: 12px;
    }

    .custom-select-option .check-icon {
        width: 14px;
        height: 14px;
    }
}

/* Enhanced Link Buttons to Match */
.filter_head ul li a {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter_head ul li a:hover,
.filter_head ul li a.active {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 121, 179, 0.2);
}

/* ======================================== */

/* -----------Footer Page Styles Start------------ */
.footer_page_banner {
    padding: 100px 0;
    background: #f5f7fa;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.footer_page_banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.footer_page_banner .container {
    position: relative;
    z-index: 2;
}

.footer_page_banner .global_heading {
    margin-bottom: 0;
}

.footer_page_banner .global_heading h2 {
    color: #fff;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer_page_banner .global_heading p {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.footer_page_content {
    padding: 80px 0;
    background-color: #ffffff;
}

.footer_page_content_wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.footer_page_content_inner {
    background: #fff;
    padding: 60px;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.footer_page_content_inner h1,
.footer_page_content_inner h2,
.footer_page_content_inner h3,
.footer_page_content_inner h4,
.footer_page_content_inner h5,
.footer_page_content_inner h6 {
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 30px;
    line-height: 1.4;
}

.footer_page_content_inner h1:first-child,
.footer_page_content_inner h2:first-child,
.footer_page_content_inner h3:first-child,
.footer_page_content_inner h4:first-child {
    margin-top: 0;
}

.footer_page_content_inner h1 {
    font-size: 42px;
}

.footer_page_content_inner h2 {
    font-size: 36px;
}

.footer_page_content_inner h3 {
    font-size: 30px;
}

.footer_page_content_inner h4 {
    font-size: 24px;
}

.footer_page_content_inner h5 {
    font-size: 20px;
}

.footer_page_content_inner h6 {
    font-size: 18px;
}

.footer_page_content_inner p {
    color: #787878;
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 20px;
}

.footer_page_content_inner ul,
.footer_page_content_inner ol {
    margin: 20px 0;
    padding-left: 30px;
}

.footer_page_content_inner ul li,
.footer_page_content_inner ol li {
    color: #787878;
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 12px;
    position: relative;
}

.footer_page_content_inner ul li::marker {
    color: #0a79b3;
    font-weight: 600;
}

.footer_page_content_inner ol li::marker {
    color: #eb1f27;
    font-weight: 600;
}

.footer_page_content_inner a {
    color: #0a79b3;
    text-decoration: underline;
}

.footer_page_content_inner a:hover {
    color: #eb1f27;
}

.footer_page_content_inner strong,
.footer_page_content_inner b {
    color: #1a1a1a;
    font-weight: 700;
}

.footer_page_content_inner em,
.footer_page_content_inner i {
    font-style: italic;
}

.footer_page_content_inner blockquote {
    border-left: 5px solid #0a79b3;
    padding: 20px 30px;
    margin: 30px 0;
    background: #f8f9fa;
    border-radius: 8px;
}

.footer_page_content_inner blockquote p {
    color: #1a1a1a;
    font-size: 20px;
    font-style: italic;
    margin-bottom: 0;
}

.footer_page_content_inner table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
}

.footer_page_content_inner table th,
.footer_page_content_inner table td {
    padding: 15px;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.footer_page_content_inner table th {
    background-color: #f8f9fa;
    color: #1a1a1a;
    font-weight: 700;
}

.footer_page_content_inner table td {
    color: #787878;
}

.footer_page_content_inner img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
}

.footer_page_content_inner hr {
    border: none;
    border-top: 2px solid #e0e0e0;
    margin: 40px 0;
}

.footer_page_content_inner code {
    background: #f4f4f4;
    padding: 3px 8px;
    border-radius: 4px;
    font-family: "Courier New", monospace;
    color: #eb1f27;
    font-size: 16px;
}

.footer_page_content_inner pre {
    background: #f4f4f4;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 20px 0;
}

.footer_page_content_inner pre code {
    background: transparent;
    padding: 0;
    color: #1a1a1a;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .footer_page_banner .global_heading h2 {
        font-size: 48px;
    }

    .footer_page_content_inner {
        padding: 50px;
    }

    .footer_page_content_inner h1 {
        font-size: 38px;
    }

    .footer_page_content_inner h2 {
        font-size: 32px;
    }
}

@media (max-width: 991px) {
    .footer_page_banner {
        padding: 80px 0;
    }

    .footer_page_banner .global_heading h2 {
        font-size: 42px;
    }

    .footer_page_banner .global_heading p {
        font-size: 18px;
        line-height: 28px;
    }

    .footer_page_content {
        padding: 60px 0;
    }

    .footer_page_content_inner {
        padding: 40px;
    }

    .footer_page_content_inner h1 {
        font-size: 34px;
    }

    .footer_page_content_inner h2 {
        font-size: 28px;
    }

    .footer_page_content_inner h3 {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .footer_page_banner {
        padding: 60px 0;
    }

    .footer_page_banner .global_heading h2 {
        font-size: 36px;
        line-height: 48px;
    }

    .footer_page_banner .global_heading p {
        font-size: 16px;
        line-height: 26px;
    }

    .footer_page_content {
        padding: 50px 0;
    }

    .footer_page_content_inner {
        padding: 30px;
    }

    .footer_page_content_inner h1 {
        font-size: 30px;
    }

    .footer_page_content_inner h2 {
        font-size: 26px;
    }

    .footer_page_content_inner h3 {
        font-size: 22px;
    }

    .footer_page_content_inner h4 {
        font-size: 20px;
    }

    .footer_page_content_inner p,
    .footer_page_content_inner ul li,
    .footer_page_content_inner ol li {
        font-size: 16px;
        line-height: 28px;
    }
}

@media (max-width: 575px) {
    .footer_page_banner {
        padding: 50px 0;
    }

    .footer_page_banner .global_heading h2 {
        font-size: 28px;
        line-height: 38px;
        margin-bottom: 15px;
    }

    .footer_page_banner .global_heading p {
        font-size: 15px;
        line-height: 24px;
    }

    .footer_page_content {
        padding: 40px 0;
    }

    .footer_page_content_inner {
        padding: 25px 20px;
        border-radius: 15px;
    }

    .footer_page_content_inner h1 {
        font-size: 26px;
    }

    .footer_page_content_inner h2 {
        font-size: 24px;
    }

    .footer_page_content_inner h3 {
        font-size: 20px;
    }

    .footer_page_content_inner h4 {
        font-size: 18px;
    }

    .footer_page_content_inner h5 {
        font-size: 16px;
    }

    .footer_page_content_inner h6 {
        font-size: 15px;
    }

    .footer_page_content_inner p,
    .footer_page_content_inner ul li,
    .footer_page_content_inner ol li {
        font-size: 15px;
        line-height: 26px;
        margin-bottom: 15px;
    }

    .footer_page_content_inner ul,
    .footer_page_content_inner ol {
        padding-left: 20px;
    }

    .footer_page_content_inner blockquote {
        padding: 15px 20px;
        margin: 20px 0;
    }

    .footer_page_content_inner blockquote p {
        font-size: 16px;
    }

    .footer_page_content_inner table th,
    .footer_page_content_inner table td {
        padding: 10px;
        font-size: 14px;
    }
}
/* -----------Footer Page Styles End------------ */

/* -----25/11/2025-----  */
.project_box_top figure img {
    height: 250px;
    width: 100%;
}
.project_box_middle {
    height: 272px;
}
.puja-special-wrapper figure {
    width: 100%;
    height: 500px;
}
.puja-special-wrapper figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.puja-special-list {
    overflow: auto;
    padding-bottom: 15px;
}
.puja-special .puja-special-list ul li a {
    white-space: nowrap;
    font-size: 18px;
}
.puja-special-list ul {
    margin-bottom: 3px;
    gap: 15px;
}

.puja-special .puja-special-list ul li a {
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 44px;
    min-width: inherit;
}
.puja-special .puja-special-list ul li a.active {
    padding: 0 20px;
}
.puja-special .puja-special-list ul li a.active:after {
    content: "";
    height: 4px;
    width: 100%;
    background-color: #0a79b3;
    position: absolute;
    bottom: -8px;
    left: 0;
}

.puja-special-list {
    overflow-x: auto;
    overflow-y: hidden;
    cursor: grab;

    scrollbar-width: none;
    -ms-overflow-style: none;
}

.puja-special-list::-webkit-scrollbar {
    display: none;
}

.puja-special-list.active {
    cursor: grabbing;
    cursor: -webkit-grabbing;
}

.feature_box figure{
    height: 380px;
    width: 100%;
}
.blog_slider_inner figure{
    height: 235px;
    width: 100%;
}
.feature_box figure img,
.blog_slider_inner figure img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

@media (max-width: 1499px) {
    .puja-special-wrapper {
        margin-top: 40px;
    }
}

@media (max-width: 1199px) {
    .puja-special-wrapper figure {
        height: 350px;
    }
}
@media (max-width: 991px) {
    .puja-special-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .puja-special-wrapper {
        margin-top: 20px;
    }
}
@media (max-width: 575px) {
    .puja-special-wrapper figure {
        height: 200px;
    }
    .puja-special-wrapper {
        gap: 10px;
    }
    .puja-special {
        padding-top: 25px;
    }
    .puja-special .puja-special-list ul li a {
        height: 36px;
        font-size: 16px;
        padding: 0 15px;
    }
    .puja-special .puja-special-list ul li a.active {
        padding: 0 15px;
    }
    .puja-special .puja-special-list ul li a.active:after {
        content: "";
        height: 2px;
        width: 100%;
        background-color: #0a79b3;
        position: absolute;
        bottom: -8px;
        left: 0;
    }
}

/* blog details */
.blog_details {
    padding: 80px 0;
}

.blog_details .global_heading h2 {
    font-size: 36px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.blog_meta {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.blog_meta .blog_date {
    color: #6b6b6b;
    font-size: 15px;
}

.blog_meta .blog_tags .tag {
    display: inline-block;
    background: #f1f5f8;
    color: #0a79b3;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 14px;
    margin-left: 6px;
    text-decoration: none;
}

.blog_details_image {
    margin: 30px 0;
}

.blog_details_image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 6px 30px rgba(0,0,0,0.08);
    /* cap the visible image height to make it less dominant */
    max-height: 460px;
}

/* Slightly smaller on medium screens */
.blog_details_image img {
    max-height: 420px;
}

.blog_details_content {
    margin-top: 10px;
    color: #595959;
    font-size: 18px;
    line-height: 1.9;
}

.blog_details_content h2,
.blog_details_content h3,
.blog_details_content h4 {
    color: #1a1a1a;
    margin-top: 26px;
}

.blog_details_content p {
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .blog_details { padding: 50px 0; }
    .blog_details .global_heading h2 { font-size: 28px; }
    .blog_details_content { font-size: 16px; line-height: 1.8; }
}

@media (max-width: 575px) {
    .blog_details { padding: 30px 0; }
    .blog_details .global_heading h2 { font-size: 22px; }
    .blog_meta { gap: 8px; }
    .blog_details_content { font-size: 15px; }
}

/* Tag pills */
.blog_tags {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    margin-left: 8px;
}

.blog_tags .tag {
    display: inline-block;
    padding: 6px 12px;
    background: linear-gradient(180deg, #f8fbfd 0%, #eef6fb 100%);
    color: #0a79b3;
    border-radius: 999px;
    font-size: 14px;
    text-decoration: none;
    border: 1px solid rgba(10,121,179,0.08);
    transition: transform 0.18s ease-in-out, box-shadow 0.18s ease-in-out;
    cursor: default;
    user-select: none;
}

.blog_tags .tag:hover,
.blog_tags .tag:focus {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(10,121,179,0.06);
}

@media (max-width: 575px) {
    .blog_tags { gap: 8px; margin-left: 0; }
    .blog_tags .tag { padding: 6px 10px; font-size: 13px; }
}

/* Fix for mobile dropdown toggles: hide dropdowns by default and show them
   only when Bootstrap adds .show or aria-expanded=true. This overrides
   custom.css mobile rule which forces dropdowns to be always visible.
   We keep the scope inside the mobile breakpoint to avoid affecting
   the desktop dropdown behavior. */
@media (max-width: 991px) {
    .menu-xxx-container .btn-group .dropdown-menu {
        display: none !important;
        position: static; /* keep same positioning but hidden */
        background: transparent;
        box-shadow: none;
        padding: 0;
        margin-top: 15px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-6px);
        transition: max-height 0.22s ease, visibility 0.22s ease, opacity 0.22s ease, transform 0.22s ease;
    }
    .menu-xxx-container .btn-group .dropdown-menu.show,
    .menu-xxx-container .btn-group.show .dropdown-menu,
    .menu-xxx-container .btn-group .dropdown-toggle[aria-expanded="true"] + .dropdown-menu {
        display: block !important;
        max-height: 600px;
        opacity: 1;
        transform: translateY(0);
    }
    .menu-xxx-container .btn-group .dropdown-toggle::after {
        transform: rotate(45deg);
        transition: transform 0.18s ease;
    }
    .menu-xxx-container .btn-group .dropdown-toggle[aria-expanded="true"]::after,
    .menu-xxx-container .btn-group.show .dropdown-toggle::after {
        transform: rotate(-135deg);
    }
    .menu-xxx-container .btn-group .dropdown-menu.opening {
        display: block !important; 
        opacity: 0; 
        transform: translateY(-6px); 
        max-height: 0; 
    }

    .menu-xxx-container .btn-group .dropdown-menu.closing {
        display: block !important;
        opacity: 0;
        transform: translateY(-6px);
        max-height: 0 !important;
    }
}

/* About Page Video Section Styling */
.about-video-player {
    width: 100%;
    height: auto;
    display: block;
    margin-top: -50px;
    margin-bottom: -50px;
}

/* Tablet view adjustments */
@media (max-width: 991px) {
    .about-video-player {
        margin-top: -30px;
        margin-bottom: -30px;
        min-height: 350px;
        object-fit: cover;
    }
}

/* Mobile view - set minimum height */
@media (max-width: 767px) {
    .about-video-player {
        margin-top: -15px;
        margin-bottom: -15px;
        min-height: 250px;
        object-fit: cover;
    }
}

@media (max-width: 575px) {
    .about-video-player {
        min-height: 200px;
    }
}

/* for footer */
.footer_contact_links { display: flex; flex-direction: column; gap: 8px; }
.footer_contact_links a { font-size: 18px; line-height: 23px; color: #C6D3E7; transition: color 0.3s; }
.footer_contact_links a:hover { color: #EB1F27; }

/* 25/2/2026 */
.completed_slider .swiper-slide { height: 500px; }

.completed_slider .swiper-slide figure { height: 100%; width: 100%; }

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

@media (max-width: 991px) { 
    .completed_slider .swiper-slide { height: 350px; } 
}

@media (max-width: 575px) { 
    .completed_slider .swiper-slide { height: 300px; } 
}

/* 26/2/2026 */
.anekant-leadership-row .image-box img{height: 100%;}

.anekant-leadership-row{height: 100%;}

.leadershipController{bottom: 0;}

.leadershipslide .count-pagination .current{line-height: normal;}

.leadership-swiper .swiper-slide{height: 600px;}

@media (max-width: 1199px){
    .leadership-swiper .swiper-slide{height: 500px;}
}

@media (max-width: 991px){
    .leadership-swiper .swiper-slide{height: inherit;}

    .leadershipController{bottom: inherit;}
}