@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('../font/briem-hand/stylesheet.css');
/**/


.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;

}

* {
    text-decoration: none;
}

body {
    background: #ccc;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: #525252;
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

.container-fluid {
    width: 1700px;
    max-width: 96%;
}

header {
    position: absolute;
    width: 100%;
    left: 0;
    z-index: 10;
    background: none;
    top: 0;
}

/*  */
.header-1 {
    background: #E0E0E0;
    padding: 8px 0;
    font-size: 12px;
}

.header-1 a {
    text-decoration: none;
    color: #000;
    transition: all ease-in-out 0.5s;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.header-1 a:not(:last-child):before {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    background: linear-gradient(45deg, transparent, #a7a5a599, transparent);
    right: -10px;
}

.header-1 a:hover {
    color: #90181b;
}

.header-1-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.header-1-left {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    max-width: 50%;
}

.header-1-right-wrapper {
    list-style: none;
    display: inline-flex;
    gap: 15px;
    padding: 0;
    margin: 0;
}


/*  */
.logo {
    padding: 8px 0 8px;
    min-width: 415px;
}

.logo a {
    display: inline-flex;
    position: relative;
    min-height: 85px;
    position: relative;
    padding-left: 83px;
    text-decoration: none;
    align-items: center;
}

.logo a img {
    position: absolute;
    left: 0;
    max-width: 76px;
}

.logo a h2 {
    font-size: 24px;
    font-weight: 600;
    color: #365B97;
    margin-bottom: 0;
}

.logo a h4 {
    font-size: 12px;
    text-transform: uppercase;
    color: #000000;
    font-weight: 600;
    margin: 0;
}

.logo a h6 {
    font-size: 13px;
    color: #a1a1a1;
    margin-bottom: 0;
}

/* Header 2 */
.header-2 {
    background: #FFF;
}

.header-2-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-2-right {
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

/* Styling for the header */
/* Styling for the header */
/* Styling for the header */
.header-2-right h2 {
    margin-bottom: 0;
    text-transform: uppercase;
    font-size: 29px;
    font-family: 'Briem Hand';
    font-weight: bolder;
    background: linear-gradient(90deg, #264487, #FFC700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    overflow: hidden;
    /* Ensures text is hidden until typed */
    white-space: nowrap;
    /* Prevents text from wrapping */
    width: 0;
    animation: typing 5s steps(30) 1s forwards, blink 1s step-end infinite, pause 8s infinite;
    /* Typing, blinking cursor, and pause */
}

.header-2-animated-text {
    position: relative;
    display: inline-block;
}

/* Keyframe for typing animation */
@keyframes typing {
    0% {
        width: 0;
        /* Start with no width */
    }

    100% {
        width: 100%;
        /* Full width of the text */
    }
}

/* Keyframe for blinking cursor */
@keyframes blink {
    50% {
        border-color: transparent;
    }

    100% {
        border-color: #FFC700;
        /* Cursor blinking effect */
    }
}

/* Keyframe for pause between typing animations */
@keyframes pause {

    0%,
    50% {
        width: 100%;
        /* Hold the full text */
    }

    51% {
        width: 0;
        /* Reset the text width to 0 after hold */
    }

    100% {
        width: 100%;
        /* Show the full text again for the next typing cycle */
    }
}

/* Flag container */
.indian-flag-border {
    margin-top: 6px;
    width: 100%;
    position: absolute;
    top: -19px;
}

.indian-flag-border span {
    display: block;
    height: 23px;
    width: 0;
    transform-origin: left;
    animation: flagOpen 5s ease-out 1s forwards,
        flagPause 8s infinite;
    background: url(../images/icons/indian-f.png);
    background-repeat: no-repeat !important;
    background-position: right;
    background-size: 64px;
}

@keyframes flagOpen {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

/* Sync with text pause/reset */
@keyframes flagPause {

    0%,
    50% {
        width: 100%;
    }

    51% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}


.logo-2 a img {
    height: 56px;
}


section.home-page-slider {
    padding-top: 135px;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

section.home-page-slider .carousel-control-next,
section.home-page-slider .carousel-control-prev {
    width: max-content;
    height: max-content;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #fff;
    padding: 5px 0;
    transition: all ease-in-out 0.5s;
    opacity: 0;
}

section.home-page-slider:hover .carousel-control-next,
section.home-page-slider:hover .carousel-control-prev {
    opacity: 0.8;
}

div#homeBanner {
    max-height: 100%;
}

.carousel-img-home {
    height: 100vh;
    display: flex;
}

.carousel-img-home img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.announcement-section {
    position: absolute;
    bottom: 0;
    z-index: 1;
    width: 100%;
    background: #0D254DD1;
    overflow: hidden;
}

.announcement-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    padding: 8px 0;
    padding-right: 86px;
}

a.view-all-announcements.r-more-btn {
    display: inline-flex;
    position: absolute;
    right: 0;
    padding: 3px 15px !important;
    font-size: 12px;
    top: 0;
    bottom: 0;
    margin: auto;
    height: max-content;
}

/* .announcement-wrapper h3 {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    display: inline-flex;
    align-items: center;
    background: #912630;
    z-index: 1;
} */

.marquee-wrapper .marquee-content a img {
    position: absolute;
    left: 0;
    top: 0;
}

/* Header 2 End*/
.header-3 {
    border-top: 3px solid #90181b;
    transition: all 0.3s ease;
}

header.sticky .header-3 {
    position: fixed;
    top: 0;
    left: 0;
    background: #90181b;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    animation: slideDown 0.3s ease;
    width: 100%;
    padding: 0;
}

.header-3-wrapper {
    padding: 0 25px;
}

.nav-con {
    background: #90181b;
    display: flex;
    justify-content: center;
    position: relative;
}

.nav-con:before,
.nav-con:after {
    content: '';
    position: absolute;
    width: 25px;
    height: 100%;
    background: #90181b;
    clip-path: polygon(0 0, 100% 100%, 100% 0);
    left: -24px;
    top: 0;
}

.nav-con:after {
    left: unset;
    right: -24px;
    clip-path: polygon(100% 0, 0 0, 0 100%);

}

.navbar-nav {
    gap: 20px;
}

.navbar-nav .nav-link {
    font-weight: 400;
    color: #ffffff;
    text-transform: uppercase;
    padding-top: 0;
    padding-bottom: 0;
}

.navbar-nav .nav-link:hover {
    color: #1f3f97;
}

/* Nav Menu============= */
/* Remove default dropdown background & spacing */
.dropdown-menu {
    background: transparent;
    border: none;
    padding: 0;
    margin-top: 0;
    box-shadow: none;
}

/* Dropdown items styling */
.dropdown-item {
    background: transparent;
    padding: 8px 0;
}

/* Hover behavior */
.hover-dropdown:hover>.dropdown-menu {
    display: block;
}

/* Animation */
.dropdown-menu.animate {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.25s ease-in-out;
    display: block;
    visibility: hidden;
    pointer-events: none;
}

.hover-dropdown:hover>.dropdown-menu.animate {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
}

/* =============Nav Menu End */

.marquee-wrapper {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    position: relative;
}

.marquee-content {
    display: inline-block;
    white-space: nowrap;
}

/* Optional: pause on hover */
.marquee-wrapper:hover .marquee-content {
    animation-play-state: paused;
    /* only affects CSS animation if used */
}


.announcement-wrapper h3 {
    position: absolute;
    padding: 5px;
    left: 0px;
    top: 0;
    height: 100%;
    display: inline-flex;
    align-items: center;
    background: #912630;
    z-index: 1;
    font-size: 14px;
    color: #fff;
    margin-bottom: 0;
    text-transform: uppercase;
    font-weight: 400;
}

.announcement-wrapper h3::before,
.announcement-wrapper h3::after {
    content: '';
    position: absolute;
    width: 100000000000000px;
    background: #912630;
    height: 100%;
    right: 99%;
}

.announcement-wrapper h3::after {
    width: 20px;
    right: -20px;
    clip-path: polygon(0% 0%, 100% 0%, 35% 100%, 0% 100%);
}

.marquee-wrapper .marquee-content a {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    margin-left: 10px;
    gap: 7px;
    padding-left: 27px;
    position: relative;
    line-height: 24px;
}

/*  */
.heading-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    row-gap: 5px;
    position: relative;
}

.heading-group h2 {
    color: #000;
}

.heading-group.border-btm {
    padding-bottom: 9px;
}

.heading-group.border-btm::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: #90181b;
    bottom: 0;
}

.heading-group.border-btm.text-center::before {
    left: 0;
    right: 0;
    margin: auto;
}

.heading-group * {
    padding: 0;
    margin: 0;
}

.heading-group h5 span {
    position: relative;
    color: #FFC700;
    display: inline-flex;
    padding-right: 60px;
}

.heading-group h5 span::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 1px;
    right: 0;
    background: #FFC700;
    top: 0;
    bottom: 0;
    margin: auto;
}

.home-page-section {
    padding: 80px 0;
}

/* ============ */
section.home-page-section.section-1 {
    background: #264487;
    color: #fff;
    padding: 0;
}

.section-1-left {
    padding: 80px 0;
    color: #fff;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    justify-content: space-between;
}

.section-1-left .heading-group h2 {
    color: #ffc700;

}

/* Heading */


/* Paragraph */
.section-1-left-content p {
    color: #ffffff;
    text-align: justify;
}

/* Read More Button */
.r-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding: 7px 23px;
    background: #9b262b;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    width: max-content;
    position: relative;
    overflow: hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
}

/* Light sweep effect */
.r-more-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 120%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.25),
            transparent);
    transition: all 0.6s ease;
}

/* Hover Effect */
.r-more-btn:hover {
    background: #7c1d21;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    color: #fff;
}

/* Sweep animation */
.r-more-btn:hover::before {
    left: 100%;
}

/* Click feedback */
.r-more-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

/* Icon Section */
.section-1-left-icon-card {
    display: flex;
    margin-top: 30px;
    gap: 15px;
}

/* Individual Card */
.icon-card {
    flex: 1;
    text-align: center;
    padding: 0;
    position: relative;
}

.icon-card h4 {
    margin-bottom: 0;
    font-weight: 300;
    transition: all ease-in-out 0.5s;
}

/* Vertical Divider */
.icon-card:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -8px;
    top: 0;
    height: 100%;
    width: 1px;
    background: linear-gradient(45deg, transparent, #ffffff33, transparent);
}

/* Icon */
.icon-con img {
    height: 40px;
    margin-bottom: 10px;
    filter: invert(1) brightness(23.5);
}

.icon-con {
    transition: all ease-in-out 0.5s;
}

.icon-card:hover .icon-con,
.icon-card:hover h4 {
    scale: 1.2;
    transform: translateY(-10px);
}

.icon-card:hover h4 a {
    color: #ffc700;
}

.icon-card:hover:not(:last-child)::after {
    right: -18px;

}

.section-1-center {
    background: #1f3768;
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: center;
    padding: 60px 10px;
    justify-content: center;
}

.section-1-center .heading-group h2 {
    color: #ffffff;
}

/* Heading */


/* Award Card */
.award-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgb(255 255 255 / 0%);
    border-radius: 18px;
    padding: 15px;
    width: 290px;
    backdrop-filter: blur(4px);
    background: conic-gradient(#314774, #314774 5%, #314774 60%, #314774 95%) padding-box, conic-gradient(from var(--angle), transparent 25%, #ffffff59, #ffc70085 99%, transparent) border-box;
    animation: rotateBorder 3s linear infinite;
}

/* Award Image */
div#awardCarousel button {
    height: max-content;
    width: max-content;
    top: 0;
    bottom: 0;
    margin: auto;
    filter: invert(1);
    opacity: 0;
}

div#awardCarousel:hover button {
    opacity: 1;
}

.award-card figure {
    border-radius: 8px;
    padding: 30px 30px 0;
    background-image: url(../images/award-background.png);
    width: 230px;
    height: 295px;
    background-repeat: no-repeat;
    background-size: 100%;
    margin: auto;
    margin-bottom: 10px;
}

.award-card figure a {
    display: inline-flex;
    position: relative;
    /* background-image: url(../images/award-background.png); */
    padding: 8px 12px;
    background-size: 100%;
    height: 230px;
    background-repeat: no-repeat;
}

.img-zoom {
    position: relative;
    display: block;
    overflow: hidden;
}

.award-card .img-zoom img {
    transition: transform 0.4s ease;
    height: 100%;
    object-fit: cover;
}

.img-zoom::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    width: 40px;
    height: 40px;
    background: #9b262b;
    color: #ffffff;
    border-radius: 50%;
    font-size: 24px;
    line-height: 41px;
    text-align: center;
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

/* Hover Effects */
/* .img-zoom:hover img {
  transform: scale(1.1);
} */

.img-zoom:hover::after {
    opacity: 1;
}

.img-zoom:hover .zoom-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}


/* Award Title */
.award-card h4 {
    font-size: 18px;
    margin-top: 0;
    color: #ffffff;
    min-height: 40px;
}

/* Carousel arrows */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
}

@property --angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

@keyframes rotateBorder {
    from {
        --angle: 0deg;
    }

    to {
        --angle: 360deg;
    }
}

/*Minister column */
.minister-column {
    padding: 80px 0;
}

.pm-card .minister-card {
    padding: 0 40px;
}

.pm-card .minister-card::before,
.other-ministers .minister-card:not(:last-child):before {
    position: absolute;
    content: '';
    background: linear-gradient(45deg, transparent, #ffffff6b, transparent);
    height: 1px;
    width: 100%;
    bottom: -10px;
    left: 0;
}

.other-ministers .minister-card:not(:last-child):before {
    height: 100%;
    width: 1px;
    right: 0;
    left: unset;
}

.pm-card .minister-card figure img {
    height: 195px;
}

.pm-card {
    display: flex;
    justify-content: center;
    position: relative;
}

.other-ministers .minister-card figure {
    padding: 0;
    margin: 0 0 5px;
}

.other-ministers {
    display: grid;
    gap: 10px;
    grid-template-columns: 50% 50%;
}

.minister-card figure {
    padding: 0;
    margin: 0 0 10px;
}

.other-ministers .minister-card figure img {
    height: 110px;
    width: auto;
}

.minister-card {
    text-align: center;
    display: inline-flex;
    flex-direction: column;
    position: relative;
}

.minister-column {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
}

.minister-details h6 {
    font-size: 15px;
    font-weight: 200;
}

.minister-details h5 {
    margin-bottom: 0;
    font-weight: 300;
    font-size: 18px;
}

.minister-details h5 a {
    color: inherit;
    text-decoration: none;
}

/*Minister column End*/


/* Icon Text */
.icon-card h4 a {
    color: #fff;
    font-size: 13px;
    text-decoration: none;
}

/* Section-2============== */

.chairperson-section {
    background: #fff;
    background-image: url(../images/geometric-background.png);
    background-repeat: no-repeat;
    background-size: 20%;
    position: relative;
}

.chairperson-section .heading-group {
    padding-left: 90px;
}

section.home-page-section.chairperson-section::before {
    content: '';
    position: absolute;
    width: 41.66666667%;
    background: #F6F6F6;
    height: 100%;
    top: 0;
    right: 0;
}

.chairperson-section .container-fluid {
    position: relative;
}

.chairperson-name {
    background: #ECECEC;
    padding: 20px;
    position: relative;
}

.chairperson-name h5 {
    color: #912630;
    margin-bottom: 0;
}

.chairperson-name h6 {
    margin-bottom: 0;
    color: #000;
}

.chairperson-img span {
    position: relative;
    display: block;
    /* overflow: hidden; */

}

.chairperson-img span::before {
    content: '';
    position: absolute;
    width: 70%;
    height: 100%;
    background: #ececec;
    right: 0;
    bottom: 0;
    border-top-right-radius: 8px;
}

.chairperson-img {
    position: relative;
    padding-top: 40px;
}

.chairperson-content {
    max-height: 213px;
    overflow: hidden;
    text-align: justify;
    padding-top: 40px;
}

.section-label {
    letter-spacing: 1px;
    text-transform: uppercase;
}

.chairperson-img img {
    max-width: 200px;
    margin-left: -5px;
    position: relative;
    z-index: 1;
    margin-top: -45px;
}

.stat-card {
    background: #fff;
    border-radius: 5px;
    padding: 10px;
    height: 100%;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
    display: flex;
    position: relative;
    padding-left: 80px;
    align-items: center;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
    min-height: 73px;
}

.stat-card-content span {
    font-size: 15px;
}

.stat-card-icon {
    position: absolute;
    left: 10px;
    top: 10px;
}

.stat-card-icon img {
    height: 55px;
    width: auto;
}

.stat-card h3 {
    color: #8b1d2c;
    margin-bottom: 0;
    font-size: 25px;
}

.stat-card p {
    margin: 0;
    font-size: 12px;
    color: #000000;
    font-weight: 500;
    line-height: 12px;
}

/*  =======*/


/* Bubble text - Initially hidden */
.bubble-text {
    position: absolute;
    top: 0;
    transform: translateX(50%) scale(0);
    background: rgb(38 67 134 / 98%);
    color: #fff;
    padding: 10px;
    border-radius: 10px;
    width: 542px;
    font-size: 14px;
    line-height: 1.5;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 10;
    right: 100%;
    text-align: justify;
}

/* On hover - Show the bubble text */
.stat-card:hover .bubble-text {
    transform: translateX(0) scale(1);
    opacity: 1;
    visibility: visible;
}

/* Optional: Slight card hover effect to make it pop */
.stat-card:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
    z-index: 1;
}

/* Optional: Style for content inside bubble text */
.bubble-text p {
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
    white-space: normal;
    word-wrap: break-word;
}

/* Styling for the stat card content */
.stat-card-content h3 {
    font-size: 24px;
    font-weight: bold;
}

.stat-card-content p {
    font-size: 13px;
    color: #555;
    line-height: 16px;
}

/* ============ */
/* Section-2 End============== */


.web-links-section {
    background: url(../images/web-links-section-bg.png);
    background-size: cover;
    padding: 80px 0;
    position: relative;
}

.web-links-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #002665d6;
    top: 0;
}

.web-links-section .container-fluid {
    position: relative;
}

.web-links-section .nav.nav-tabs {
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #d9d9d991;
    margin-bottom: 30px;
    gap: 15px;
}

.web-links-section .nav-tabs .nav-link {
    color: #fff;
    border: none;
}

.web-links-section .nav-tabs .nav-link:focus,
.announcement-Initiatives-wrapper ul.nav.nav-pills .nav-link:focus,
.social-media-wrapper .nav-tabs .nav-link:focus {
    border: none !important;
}

.web-links-section .nav-tabs .nav-link.active {
    opacity: 1;
    background: transparent;
    position: relative;
    color: #fff;
}

.web-links-section .nav-tabs .nav-link img {
    height: 22px;
    margin-right: 8px;
}

.web-links-section .nav-tabs .nav-link.active::after,
.web-links-section .nav-tabs .nav-link.active::before {
    content: '';
    width: 100%;
    height: 2px;
    background: #c62828;
    position: absolute;
    bottom: -1px;
    left: 0;
}

.web-links-section .nav-tabs .nav-link.active::after {
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    height: 12px;
    width: 20px;
    bottom: -12px;
    left: 0;
    right: 0;
    margin: auto;
}

.app-card {
    display: flex;
    gap: 15px;
    text-decoration: none;
    color: #fff;
    position: relative;
    align-items: center;
    min-height: 64px;
    border: 1px solid #ffffff24;
    transition: all ease-in-out 0.5s;
    padding: 5px;
}

.app-card:hover {
    transform: translateY(-5px);
    border: 1px solid #ffc700;
    border-radius: 3px;
}

.app-card p {
    margin-bottom: 0;
    text-transform: uppercase;
    font-size: 14px;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c62828;
    font-size: 26px;
    flex-shrink: 0;
    padding: 10px;
}

.app-card span:last-child {
    font-size: 15px;
}

.app-card:hover span:last-child {
    text-decoration: underline;
}


/* Announcement & Initiatives Start ========== */

section.home-page-section.announcement-Initiatives {
    background: #EAEAEA url(../images/announcement-Initiatives-background.png);
    padding-bottom: 0;
}

.announcement-Initiatives-wrapper {
    background-color: white;
    border-radius: 20px;
    margin-top: 25px;
    background-image: url(../images/announcement-more-btn-bg.svg);
    background-repeat: no-repeat;
    background-position: right -3px bottom -3px;
    background-size: 155px;
    padding-bottom: 35px;
}

.announcement-Initiatives-wrapper ul.nav.nav-pills {
    padding: 0 40px;
}

.announcement-Initiatives-wrapper ul.nav.nav-pills li {
    padding: 0;
}

.announcement-Initiatives-wrapper ul.nav.nav-pills .nav-link {
    border-radius: 0 0 20px 20px;
    padding: 0 5px 7px;
    color: #912630;
    position: relative;
}


.announcement-Initiatives-wrapper ul.nav.nav-pills .nav-link span {
    display: inline-flex;
}



.announcement-Initiatives-wrapper ul.nav.nav-pills .nav-link.active {
    color: #ffffff;
    background: #eaeaea;
}


.announcement-Initiatives-wrapper ul.nav.nav-pills .nav-link.active::before,
.announcement-Initiatives-wrapper ul.nav.nav-pills .nav-link.active::after {
    content: '';
    width: 20px;
    height: 100%;
    position: absolute;
    left: -19px;
    background-image: url(../images/announcement-btn-active.svg);
    background-repeat: no-repeat;
    background-size: 100%;
}

.announcement-Initiatives-wrapper ul.nav.nav-pills .nav-link.active span,
.announcement-Initiatives-wrapper ul.nav.nav-pills .nav-link:hover span {
    background: #90181b;
}

.announcement-Initiatives-wrapper ul.nav.nav-pills .nav-link:hover {
    color: #fff;
}

.announcement-Initiatives-wrapper ul.nav.nav-pills .nav-link.active::after {
    left: unset;
    right: -19px;
    background-image: url(../images/announcement-btn-right.svg);
}

.announcement-Initiatives-wrapper ul.nav.nav-pills .nav-link span {
    display: inline-flex;
    padding: 6px 10px;
    background: none;
    border-radius: 30px;
    font-size: 14px;
    min-width: 70px;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.nav-pills-1 {
    background-color: #e8e8e8;
    padding: 15px 20px;
    border-radius: 10px;
    display: inline-flex;
    gap: 8px;
}

.nav-pills-1 .nav-link {
    border-radius: 30px;
    padding: 10px 28px;
    color: #333;
    background-color: transparent;
    border: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s;
}

.nav-pills-1 .nav-link.active {
    background-color: #8b4444;
    color: white;
}

.nav-pills-1 .nav-link:hover:not(.active) {
    background-color: #d0d0d0;
}

.content-card {
    padding: 20px 30px;
    position: relative;
}

.content-card-wrapper {
    height: 283px;
    overflow: auto;
}


/* Track */
.content-card-wrapper::-webkit-scrollbar-track {
    background: #ffffff;
}

/* Thumb */
.content-card-wrapper::-webkit-scrollbar-thumb {
    border-radius: 10px;
}

.circular-item {
    display: flex;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid #e5e5e5;
}

.circular-item:first-child {
    padding-top: 15px;
}

.circular-item:last-child {
    border-bottom: none;
    padding-bottom: 15px;
}

.date-box {
    background-color: #f0f0f0;
    border-radius: 8px;
    padding: 7px;
    text-align: center;
    margin-right: 12px;
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

section.announcement-Initiatives .date-number {
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    color: #222;
}

.date-month {
    font-size: 13px;
    color: #666;
    margin-top: 2px;
}

.circular-content {
    flex: 1;
    padding-top: 5px;
}

.circular-title {
    font-weight: 600;
    margin-bottom: 0;
    color: #1a1a1a;
    line-height: 1.4;
}

.circular-title a {
    color: inherit;
    text-decoration: none;
}

.circular-description {
    color: #5a5a5a;
    line-height: 1.6;
}

.read-all-section {
    text-align: right;
    padding: 20px 0 10px;
}

.read-all-section {
    color: #8b4444;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.3px;
    position: absolute;
    right: 25px;
    bottom: -31px;
}

.read-all-section a.read-all-link {
    color: #90181b;
    text-decoration: none;
}

.read-all-link:hover {
    color: #6b3434;
    text-decoration: underline;
}



.section-wrapper {
    margin-bottom: 30px;
}

.animated-ship {
    background: #eaeaea;
}

.animated-ship video {
    width: 100%;
    opacity: 0.4;
    margin-bottom: -3px;
}

/*  Announcement & Initiatives End========== */



/*Gateway Section============= */
.gateway-section {
    background: url(../images/TheGlobalGatewayBackground.png);
    background-size: cover;
    position: relative;
}

.gateway-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #002665, #002665, #004ccb7d);
    top: 0;
    left: 0;
}

.section-subtitle {
    color: #f1c40f;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    padding-right: 50px;
}

.section-subtitle::after {
    content: '';
    width: 40px;
    height: 2px;
    background: #f1c40f;
    position: absolute;
    right: 0;
    top: 50%;
}


.gateway-card {
    color: #000;
    border-radius: 4px;
    padding: 0;
    height: 100%;
    position: relative;
    padding-top: 30px;
}

.gateway-card-content {
    background: #fff;
    border-bottom: 2px solid #912630;
    position: relative;
    padding: 40px 15px 29px 15px;
    min-height: 115px;
}

.gateway-card .icon-box {
    width: 60px;
    height: 60px;
    background: #912630;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    padding: 8px;
    border: 1.5px solid #912630;
    position: absolute;
    left: 10px;
    top: 0;
    border-radius: 0;
    z-index: 1;
}

.gateway-card .icon-box img {
    transition: all ease-in-out 0.5s;
    filter: invert(1) brightness(6.5);
}

.gateway-card:hover .icon-box img {
    transform: rotate(360deg);
}

.gateway-card h6 {
    font-weight: 600;
    margin-bottom: 0;
}

.gateway-card a {
    color: #a11d2c;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all ease-in-out 0.5s;
    gap: 2px;
    position: absolute;
    bottom: 10px;

}

.gateway-card a span {
    display: inline-block;
    border-bottom: 1px solid #a11d2c;
}

.gateway-card a img {
    height: 21px;
    transition: all ease-in-out 0.5s;
}

.gateway-card:hover a {
    padding-left: 10px;
}

.gateway-card:hover a img {
    transform: rotate(39deg);
}

/*============= Gateway Section End*/




/* ================ */
section.home-page-section.corporate-film-section .heading-group.border-btm {
    z-index: 1;
}

.corporate-film-card {
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    position: relative;
    min-height: 300px;
    margin-top: -62px;
}

section.home-page-section.corporate-film-section {
    background: #EBF7FD;
}

.corporate-film-card-media {
    position: absolute;
    top: 62px;
    width: 100%;
    height: 323px;
    display: flex;
    object-fit: cover;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.corporate-film-card-media video {
    height: 100%;
    width: 100%;
    object-fit: cover;

}

.corporate-film-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.calendar-card {
    background: white;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}



.calendar-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    margin-bottom: 0;
    flex-wrap: wrap;
}

.calendar-controls button {
    border: 1px solid #ddd;
    background: white;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
}

.calendar-controls button:hover {
    background: #f5f5f5;
}

.calendar-controls select {
    border: 1px solid #ddd;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
}

.calendar-month-year {
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    margin-top: 10px;
    color: #333;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.calendar-day-header {
    text-align: center;
    font-weight: 600;
    color: #666;
    padding: 10px 0;
    font-size: 13px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.2s;
    border: 1px solid transparent;
    height: 26px;
}

.calendar-day:hover {
    background-color: #f0f0f0;
}

.calendar-day.empty {
    cursor: default;
}

.calendar-day.empty:hover {
    background-color: transparent;
}

.calendar-day.has-event {
    background-color: #fef3c7;
    border-color: #fbbf24;
}

.calendar-day.selected {
    background-color: #dbeafe;
    border-color: #3b82f6;
}

.calendar-day.today {
    background-color: #e0e7ff;
    border-color: #6366f1;
    font-weight: 700;
}

/* .event-details {
    margin-top: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    min-height: 100px;
} */

.event-details h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.calendar-instruction {
    text-align: center;
    color: #6b7280;
    font-style: italic;
    margin-top: 15px;
    font-size: 14px;
}

.social-media-card {
    background: white;
    border-radius: 0 0 15px 15px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    height: 296px;
    overflow: auto;
}

.social-media-card iframe {
    width: 100%;
    height: 100%;
}


.social-media-wrapper .nav-tabs .nav-link {
    padding: 7px 10px;
    font-size: 12px;
    color: #000;
    border: none;
}

.social-media-wrapper ul#socialTabs {
    margin-bottom: -1px;
    position: relative;
    z-index: 1;
}

/* ================ */


/* Connectivity Section ================ */

.connectivity-section {
    background-image: url(../images/Connectivity-background.png);
    position: relative;

}

.connectivity-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #002665d9;
    top: 0;
    left: 0;
}

.connectivity-section .container-fluid {
    position: relative;
}

/* Tabs */
.connectivity-tabs .nav-link {
    background: transparent;
    color: #fff;
    padding: 10px 30px;
    border-radius: 30px;
    font-weight: 600;
}

.connectivity-tabs .nav-link.active {
    background: #ffffff;
}

.connectivity-tabs .nav-link {
    border-radius: 20px 20px 0 0;
    position: relative;
    padding: 5px 5px 0;
}

.connectivity-tabs span {
    display: inline-flex;
    padding: 7px 25px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 500;
}

.connectivity-tabs .nav-link.active span {
    background: #90181b;
}

.connectivity-tabs .nav-link.active::before,
.connectivity-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    width: 35px;
    background: url(../images/icons/connective-btn-shape.svg);
    height: 100%;
    bottom: -2px;
    left: -33px;
    background-repeat: no-repeat !important;
    background-position: bottom !important;
    background-size: 100%;
}

.connectivity-tabs .nav-link.active::after {
    left: unset;
    right: -34px;
    background: url(../images/icons/connective-btn-shape-2.svg);

}

/* White container */
.connectivity-tabs .nav-link {
    border-radius: 20px 20px 0 0;
    position: relative;
    padding: 5px 5px 0;
}

.connectivity-section .tab-content {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
}

/* Circle items */


.circle-item {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 2px solid #9b1c2b;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    background: #f4fbff;
    padding: 12px;
    flex-direction: column;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    max-width: 100%;
    margin: auto;
}

/* Hover effect */
.circle-item:hover {
    transform: scale(1.1);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

/* Optional: Icon scale effect */
.circle-item:hover i {
    transform: scale(1.2);
    /* If you have icons inside, enlarge them on hover */
    transition: transform 0.3s ease-in-out;
}

.circle-item-icon img {
    height: 52px;
}



.circle-item h6 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
}


/*  Connectivity Section End=============== */

/* ================ */
section.home-page-section.highlights-section {
    background: #fff;
}


.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 50px 0 40px;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 0;
}

.gallery-tab {
    background: transparent;
    border: none;
    padding: 9px 12px;
    cursor: pointer;
    font-size: 16px;
    color: #6b7280;
    position: relative;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
}

.gallery-tab i {
    font-size: 20px;
}

.gallery-tab.active {
    color: #8b4444;
}

.gallery-tab.active::after,
.gallery-tab.active::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #8b4444;
}

.gallery-tab.active::before {
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    width: 21px;
    height: 10px;
    right: 0;
    margin: auto;
}

.gallery-tab:hover:not(.active) {
    color: #4b5563;
}

/* .gallery-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
} */

/* .gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
} */

/* .gallery-image {
    width: 100%;
    height: 235px;
    object-fit: cover;
} */

.gallery-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.gallery-date {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gallery-date i {
    color: #90181b;
}

.gallery-title {
    color: #1a1a1a;
    margin-bottom: 10px;
    flex-grow: 1;
    font-size: 18px;
    min-height: 40px;
}

.read-more-btn {
    display: inline-block;
    padding: 4px 23px;
    border: 2px solid #8b4444;
    border-radius: 25px;
    color: #8b4444;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    text-align: center;
    background: transparent;
    cursor: pointer;
    font-size: 15px;
    width: max-content;
}

.read-more-btn:hover {
    background-color: #8b4444;
    color: white;
}

/* .carousel-container {
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
    will-change: transform;
} */

/* .carousel-item-custom {
    flex-shrink: 0;
} */



/* Large devices (4 items) */
@media (min-width: 1200px) {
    /* .carousel-item-custom {
        width: calc(25% - 19px);
        margin-bottom: 12px;
    } */
}

/* Medium devices (2 items) */
@media (max-width: 1199px) and (min-width: 768px) {
    /* .carousel-item-custom {
        width: calc(50% - 13px);
    } */
}

/* Small devices (1 item) */
@media (max-width: 767px) {
    /* .carousel-item-custom {
        width: 100%;
    } */
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.carousel-control.prev {
    left: 0;
}

.carousel-control.next {
    right: 0;
}

.carousel-control i {
    font-size: 18px;
}

/* =============== */
/* Footer Start==========  */
.ppa-footer {
    background: #274580;
    font-size: 12px;
    padding: 0 !important;
}

.ppa-footer a,
.ppa-footer {
    color: #E7EFFF;
}

.footer-1 {
    padding: 50px 0 20px;
}

.col-lg-3.col-md-6 {
    margin-bottom: 20px;
}

.footer-title {
    color: #FFC700;
    margin-bottom: 15px;
    font-size: 18px;
    margin-top: 30px;
}


.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links li {
    margin-bottom: 0;
    transition: all ease-in-out 0.5s;
}

.footer-links li:hover {
    padding-left: 5px;
    opacity: 1;
}

.footer-links a {
    text-decoration: none;
    position: relative;
    background: url(../images/footer-bpoint.png);
    background-repeat: no-repeat;
    background-position: left 5px;
    padding-left: 19px;
}

.footer-links a:hover {
    text-decoration: none;
    color: #fff;
}

.footer-address p {
    position: relative;
    padding-left: 23px;
}

.footer-address p img {
    position: absolute;
    left: 0;
    top: 3px;
    height: 14px;
}


.qr-box {
    background: #fff;
    border: 4px solid #fff;
    padding: 0;
    border-radius: 6px;
    max-width: 106px;
}


.social-icons-n a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #4B69B1;
    border-radius: 50%;
    margin: 5px;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: all ease-in-out 0.5s;
}

.social-icons-n a:nth-child(2) {
    background: linear-gradient(90deg, #734E9C, #F48D4F);
}

.social-icons-n a:nth-child(3) {
    background: #0678B6;
}

.social-icons-n a:nth-child(4) {
    background: #37B1E2;
}

.social-icons-n a:nth-child(5) {
    background: #FF0000;
}

.social-icons-n a:hover {
    transform: rotate(360deg);
}

.footer-bottom {
    font-size: 13px;
    padding: 35px 0;
    background: #1D3C80;
}

.footer-bottom-left.d-flex {
    gap: 25px;
}

.footer-bottom-left.d-flex img {
    height: 35px;
}

.footer-bottom .service-carousel {
    padding: 0 30px;
}

.footer-bottom .owl-carousel .owl-nav button.owl-next,
.footer-bottom .owl-carousel .owl-nav button.owl-next,
.footer-bottom .owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    /* height: max-content; */
    width: 25px;
    height: 25px;
    font-size: 26px;
    left: 0;
    background: #2D55AA;
    border: 1px solid #dfdfdf;
    border-radius: 8px;
}

.footer-bottom .owl-carousel .owl-nav button.owl-next {
    left: unset;
    right: 0px;
}

.footer-bottom .owl-carousel .owl-nav button.owl-next span,
.footer-bottom .owl-carousel .owl-nav button.owl-prev span {
    top: -8px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
} 

/* .f-logo {
    background: #fff;
    border-radius: 3px !important;
    overflow: hidden;
    padding: 8px;
}

.f-logo img {
    height: 39px;
    width: auto;
    max-width: 100%;
} */

aside#polylang-3 ul {
    padding: 0;
    list-style-type: none;
}

/* ============Footer End */


/* Responsive */
@media (max-width:1400px) {
    .other-ministers .minister-details h5 {
        font-size: 14px;
    }

    #cssmenu>ul>li>a {
        padding: 15px 6px;
        font-size: 13px;
        letter-spacing: 0;
        font-weight: 500;
        text-transform: uppercase;
    }

    .minister-details h6 {
        font-size: 12px;
    }

    .pm-card .minister-card figure img {
        height: 217px;
    }

    .heading-group h2 {
        font-size: 26px;
    }
}

@media (max-width:1300px) {
    #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link {
        padding: 0px 10px !important;
    }

    .announcement-wrapper h3::after {
        right: -18px;
    }

    .social-icons-n a {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .nav-con:after {
        left: unset;
        right: -24px;
        clip-path: polygon(100% 0, 0 0, 0 100%);
    }
}

@media (min-width: 992px) {
    .right-stats-con {
        padding-left: 20px;
    }

}

@media (max-width: 1200px) {

    /* .carousel-item-custom {
        min-width: calc(25% - 17px);
    } */
    #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-menu-item>a.mega-menu-link,
    #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-menu-ancestor>a.mega-menu-link,
    #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-page-ancestor>a.mega-menu-link {
        color: #910404 !important;
        background: #ddd;
    }

    .nav-con {
        justify-content: flex-end;
    }

    #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open+#mega-menu-primary,
    #mega-menu-wrap-EODB-menu .mega-menu-toggle.mega-menu-open+#mega-menu-EODB-menu,
    #mega-menu-wrap-Medical-menu .mega-menu-toggle.mega-menu-open+#mega-menu-Medical-menu,
    #mega-menu-wrap-RTI-menu .mega-menu-toggle.mega-menu-open+#mega-menu-RTI-menu,
    #mega-menu-wrap-computer_center .mega-menu-toggle.mega-menu-open+#mega-menu-computer_center {
        left: 0;
        width: 230px !important;
        background: #a9162a !important;
    }

    #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open~button.mega-close,
    #mega-menu-wrap-EODB-menu .mega-menu-toggle.mega-menu-open~button.mega-close,
    #mega-menu-wrap-Medical-menu .mega-menu-toggle.mega-menu-open~button.mega-close,
    #mega-menu-wrap-RTI-menu .mega-menu-toggle.mega-menu-open~button.mega-close,
    #mega-menu-wrap-computer_center .mega-menu-toggle.mega-menu-open~button.mega-close {
        left: calc(min(100vw - 40px, 230px)) !important;
        right: auto;
    }

    #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link {
        color: #ffffff !important;
        font-size: 14px;
    }

    #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-toggle-on>a.mega-menu-link {
        color: #910404 !important;
        background: #ddd;
    }

    .header-2-right h2 {
        font-size: 26px;
    }

    .indian-flag-border {
        position: absolute;
        top: -15px;
    }

    .stat-card-icon img {
        height: 35px;
    }

    .stat-card {

        padding-left: 54px;

    }

    .stat-card-content p {
        font-size: 11px;
        color: #555;
        line-height: 13px;
    }

    .footer-bottom-left.d-flex {
        gap: 10px;
    }

    .social-icons-n a {
        width: 35px;
        height: 35px;
        margin: 2px;
    }
}

@media (max-width: 1100px) {
    .header-2-animated-text {
        position: absolute;
        left: 34px;
        top: 106px;
    }


    header.sticky .header-2-animated-text {
        position: fixed;
        top: 3px;
    }

    .header-2-right h2 {

        background: linear-gradient(90deg, #eff0f3, #FFC700);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;

    }

    .header-2-wrapper {
        position: relative;
        z-index: 1;
    }
}

@media (max-width: 1024px) {
    .header-1 a {
        font-size: 11px;
    }
}

@media (max-width: 992px) {
    .header-1-right-wrapper {
        gap: 5px;
    }

    .heading-group h2 {
        font-size: 20px;
    }

    .minister-column {
        padding: 60px 0;
    }

    .section-1-left {
        padding: 60px 0;
    }

    .icon-card h4 a {
        font-size: 12px;
    }

    .col-md-4:nth-child(3n+1) .bubble-text {
        right: auto;
        left: 100%;
    }

    /* 2,5,8 → show center */
    .col-md-4:nth-child(3n+2) .bubble-text {
        right: 50%;
        left: 50%;
        transform: translateX(-50%) scale(1);
    }

    /* 3,6,9 → show left (default) */
    .col-md-4:nth-child(3n+3) .bubble-text {
        left: auto;
        right: 100%;
    }

    .stat-card {
        position: relative;
    }

    section.home-page-section.chairperson-section::before {
        display: none;
    }

    .stat-card-icon img {
        height: 48px;
    }

    .header-2-animated-text {
        top: 74px;
    }

    header.sticky .header-2-animated-text {
        top: 8px;
    }

    .circle-item {
        width: 90px;
        height: 90px;
    }

    .circle-item h6 {
        font-size: 12px;

    }

    .circle-item-icon img {
        height: 26px;
    }

    .right-stats-con {
        background: #eeeeee;
        border-radius: 5px;
        padding: 20px;
    }

    .stat-card {
        padding-left: 69px;
    }

    section.home-page-section.chairperson-section .col-lg-7 {
        margin-bottom: 60px;
    }

    .header-1 a span {
        display: none;
    }

    .header-1 a {
        font-size: 10px;
    }

    .logo a h2 {
        font-size: 18px;

    }

    .logo a h4 {
        font-size: 9px;
    }

    .logo a img {
        max-width: 50px;
    }

    .logo a {
        min-height: 50px;
        padding-left: 53px;
    }

    section.home-page-slider {
        padding-top: 99px;
    }

    .header-2-right h2 {
        font-size: 22px;
    }

    .logo-2 a img {
        height: 42px;
    }

    .circle-item {
        width: 90px;
        height: 90px;
        padding: 12px;
        margin-bottom: 15px;
    }

    .circle-item-icon img {
        height: 30px;
    }

    .circle-item h6 {
        font-size: 10px;

    }

    .connectivity-tabs span {
        display: inline-flex;
        padding: 3px 8px;
        font-size: 12px;
    }

    .footer-title {

        font-size: 14px;
    }

    .gateway-section::before {
        background: linear-gradient(90deg, #002665, #002665, #004ccb);
    }
}

@media (max-width: 768px) {

    /* .carousel-item-custom {
        min-width: calc(50% - 12.5px);

    } */
    .header-1-wrapper {
        justify-content: center;

    }

    .header-1-right {
        position: fixed;
        right: 0;
    }

    .header-1-right-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .header-1-right {
        position: fixed;
        right: 0;
        top: 115px;
    }

    .header-1-right-wrapper {
        gap: 0px;
    }

    .header-1-right-wrapper li a {
        display: inline-flex;
        background: #90181b;
        color: #fff;
        width: 25px;
        height: 30px;
        align-items: center;
        justify-content: center;
    }

    .col-md-4 .bubble-text {
        left: 70%;
        right: auto;
        transform: translateX(-50%) scale(1);
    }

    .col-md-4:nth-child(3n+1) .bubble-text,
    .col-md-4:nth-child(3n+2) .bubble-text,
    .col-md-4:nth-child(3n+3) .bubble-text {
        left: 30%;
        right: auto;
        transform: translateX(-50%) scale(1);
    }

    .header-2-animated-text {
        top: 75px;
    }

    .date-box {

        width: 50px;
        height: 50px;

    }

    .date-month {
        font-size: 10px;

    }

    .date-number {
        font-size: 18px;

    }

    .gallery-tabs {
        gap: 20px;
    }

    .gallery-tab {
        font-size: 14px;
        padding: 12px 15px;
    }

    .header-1-left {
        gap: 10px;
    }

    .header-1 a:not(:last-child):before {
        right: -5px;
    }



    .logo {
        min-width: unset;
    }

    span.language-switcher {
        display: inline-block !important;
        font-size: 8px;
    }

    .announcement-wrapper h3 {
        font-size: 12px;

    }

    .marquee-wrapper .marquee-content a {
        font-size: 10px;
    }

    .marquee-wrapper .marquee-content a img {
        height: 21px;
        bottom: 0;
        margin: auto;
    }

    .heading-group h2 {
        font-size: 20px;
    }

    .icon-box {
        width: 50px;
        height: 50px;
        border-radius: 5px;
        padding: 3px;
    }

    .app-card {
        gap: 10px;

    }

    .app-card p {
        font-size: 12px;
    }

    .web-links-section .nav-tabs .nav-link {
        font-size: 12px;
    }

    .web-links-section .nav-tabs .nav-link {
        font-size: 12px;
        padding: 5px 5px;
    }
}

@media (max-width: 699px) {


    .header-1-left {
        gap: 10px;
        max-width: unset;
    }



    .logo a h2 {
        font-size: 16px;
    }

    .logo a h4 {
        font-size: 8px;
    }



    .chairperson-name h5 {
        font-size: 16px;
    }

    .chairperson-name h6 {
        font-size: 12px;
    }

    .announcement-Initiatives-wrapper ul.nav.nav-pills .nav-link span {
        padding: 6px 8px;
        font-size: 12px;

    }

    .announcement-Initiatives-wrapper {

        background-size: 128px;
        padding-bottom: 35px;
    }

    .read-all-section {
        font-size: 13px;

    }

    section.home-page-section.announcement-Initiatives .row {
        gap: 30px;
    }

    .gallery-title {
        font-size: 16px;
    }


}

@media (max-width: 576px) {

    /* .carousel-item-custom {
        min-width: 100%;
    } */
    .indian-flag-border span {
        height: 18px;
        background-size: 45px;
    }

    #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open+#mega-menu-primary {
        left: 0;
        width: 40%;
        background: #a9162a;
    }

    .indian-flag-border {
        position: absolute;
        top: -16px;
    }

    .logo a h2 {
        font-size: 14px;
    }

    .button {
        width: 36px;
        height: 27px;

        gap: 6px;
    }

    #cssmenu #head-mobile {
        display: block;
        padding: 16px;

    }

    .logo a h4 {
        font-size: 7px;
    }

    .logo a img {
        max-width: 39px;
    }

    .logo a {
        min-height: 50px;
        padding-left: 41px;
    }

    .header-2-right h2 {
        font-size: 14px;
    }


    .header-1-right-wrapper li a {
        width: 23px;
        height: 22px;
        font-size: 8px;
    }

    .pm-card .minister-card figure img {
        height: 137px;
    }

    .other-ministers .minister-card figure img {
        height: 90px;
    }

    .other-ministers .minister-details h5 {
        font-size: 12px;
    }

    .minister-details h6 {
        font-size: 9px;
    }

    .chairperson-name {

        margin-bottom: 20px;
    }

    .section-1-left-icon-card {
        display: grid;
        grid-template-columns: 50% 50%;
        row-gap: 35px;
    }

    .icon-con img {
        height: 40px;
        margin-bottom: 0;
    }

    .icon-card:nth-child(even)::after {
        display: none;
    }

    .chairperson-section .heading-group {
        padding-left: 0;
    }

    .web-links-section .nav-tabs .nav-link img {
        display: none;
    }

    .footer-bottom-left.d-flex {
        gap: 25px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .announcement-Initiatives-wrapper ul.nav.nav-pills .nav-link span {
        padding: 5px 5px;
        font-size: 12px;
    }

    .announcement-Initiatives-wrapper ul.nav.nav-pills {
        padding: 0 29px 0 15px;
        margin: 0;
    }

    .announcement-Initiatives-wrapper ul.nav.nav-pills .nav-link {
        padding: 0 2px 3px;

    }

    .gallery-tab {
        font-size: 12px;
        padding: 12px 8px;
    }

    #mega-menu-wrap-primary .mega-menu-toggle,
    #mega-menu-wrap-Vigilance-menu .mega-menu-toggle,
    #mega-menu-wrap-Medical-menu .mega-menu-toggle,
    #mega-menu-wrap-RTI-menu .mega-menu-toggle,
    #mega-menu-wrap-computer_center .mega-menu-toggle,
    #mega-menu-wrap-EODB-menu .mega-menu-toggle {
        height: 30px !important;
    }
}

@media (max-width: 449px) {
    .logo a h2 {
        font-size: 12px;
    }

    .logo {
        min-width: unset;
        max-width: 172px;
    }

    .logo a h2 {
        font-size: 10px;
    }

    .header-2-right h2 {
        font-size: 12px;
    }


    .stat-card-icon img {
        height: 33px;
    }

    .stat-card {
        padding: 5px;
        padding-left: 49px;
    }

    .right-stats-con {
        padding: 10px;
    }

    .web-links-section .nav-tabs .nav-link {
        font-size: 11px;
        padding: 5px 5px;
    }

    .web-links-section .nav.nav-tabs {
        gap: 4px;
    }

    .icon-box {
        width: 40px;
        height: 40px;

    }

    .app-card p {
        font-size: 11px;
    }

}

@media (max-width: 420px) {
    .col-md-4 .bubble-text {
        left: 0% !important;
        right: auto;
        transform: translateX(-50%);
        width: 360px;
        max-width: none;
        /* increased from 320px */
    }

    #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open+#mega-menu-primary {
        left: 0;
        width: 55%;
        background: #a9162a;
    }

    .indian-flag-border span {
        height: 15px;
        background-size: 40px;
    }
}