body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
}

header {
    background-color: #333;
    color: white;
}

header .navbar {
    padding: 8px 10px;
}

section {
    padding: 30px 0;
}

footer {
    background-color: #146c43;
    color: white;
    padding: 10px 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 10;
}

.text-shadow {
    text-shadow: 2px 2px 6px rgb(0 133 73);
}

.text-shadow-sm {
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.carousel-caption {
    bottom: 10%;
}

@media (max-width: 767px) {
    .carousel-caption {
        bottom: 0;
    }
}

@media (max-width: 576px) {

    .carousel-caption h1,
    .carousel-caption h2 {
        font-size: 1.2rem;
    }
}

.card {
    border-radius: 10px;
    overflow: hidden;
}

/* Latest Publication */

.latest-publication-img {
    height: 140px !important;
    object-fit: contain;
}

.navbar-nav .nav-link.active {
    color: #146c43 !important;
    font-weight: bold;
    border-bottom: 2px solid #146c43;
}

.glossy-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    text-align: center;
    cursor: pointer;
    color: white !important;
    font-weight: bold;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    border: none;
    outline: none;
    transition: all 0.3s ease-in-out;
    background: radial-gradient(circle at 30% 30%, #01ff01, #16e687 70%);
    box-shadow:
        inset 0 2px 4px rgba(255, 255, 255, 0.5),
        0 4px 10px rgba(0, 0, 0, 0.2);
}

.glossy-btn::after {
    content: "";
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: linear-gradient(120deg, rgb(255 255 255 / 0%), transparent);
    transform: rotate(25deg);
    opacity: 0.5;
}

.glossy-btn:hover {
    background: radial-gradient(circle at 30% 30%, #00c600, #b5f7c3 80%);
    box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.7),
        0 1px 1px rgba(0, 0, 0, 0.3);
    transform: scale(1.1);
    color: #146c43;
}

/* Sparkle Animation */
@keyframes sparkle {
    0% {
        opacity: 0.2;
    }

    50% {
        opacity: 0.8;
    }

    100% {
        opacity: 0.2;
    }
}

.glossy-btn::after {
    animation: sparkle 1.5s infinite alternate ease-in-out;
}

/* Home Page */
.img-fixed-size {
    width: 100%;
    height: 200px;
    object-fit: cover;

}

.table-header {
    background-color: #146c43 !important;
    color: #ffffff !important;
}

/* About Us Page */

.staff-img {
    width: 100%;
    height: 150px;
    object-fit: contain;
}

.accordion-nav {
    color: #ffffff !important;
    font-weight: bold;
    background: #146c43 !important;
    box-shadow: none !important;
}

.accordion-button::after {
    display: block;
    content: "";
    background-image: var(--bs-accordion-btn-icon);
    transform: rotate(0deg);
}

/* Division Page */

#divisionTabs .nav-pills .nav-link {
    color: #495057;
    font-weight: bold;
    text-align: left;
    background: #ffffff;
    border-radius: 5px;
    margin-bottom: 5px;
    padding: 12px 15px;
}

#divisionTabs .nav-pills .nav-link.active,
#divisionTabs .nav-pills .nav-link:hover {
    background-color: #146c43;
    color: white;
}

.card {
    border: none;
    border-radius: 10px;
    background: white;
    transform: none !important;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.card:hover {
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
}


@media (max-width: 576px) {
    .event-card img {
        height: 150px;
    }
}


@media (max-width: 768px) {
    .nav-pills {
        flex-direction: row !important;
        overflow-x: auto;
        white-space: nowrap;
    }

    .nav-link {
        flex-grow: 1;
        text-align: center;
    }

    #divisionTabs .nav-pills {
        flex-direction: column;
    }

    #divisionTabs .nav-pills .nav-link {
        width: 100%;
        text-align: center;
    }

    #divisionTabsContent .tab-content {
        padding: 0 15px;
    }

    iframe {
        height: 300px;
    }
}

/* Common Styles */
.justified-text {
    text-align: justify;
}

.pad-15 {
    padding: 15px;
}

.pad-0 {
    padding: 0 !important;
}

.text-left {
    text-align: left !important;
}

.font-12 {
    font-size: 12px !important;
}

.font-13 {
    font-size: 13px !important;
}

.font-14 {
    font-size: 14px !important;
}

.font-2rem {
    font-size: 2rem;

}

.btn-agri-stroke {
    border: 3px solid #146c43 !important;
    border-radius: 5px !important;
    color: #146c43 !important;
    font-size: 12px !important;
    text-decoration: none !important;
}

.btn-agri-stroke:hover {
    background: #aee4cb !important;
    border: 3px solid #146c43 !important;
    border-radius: 5px !important;
    color: #146c43 !important;
    text-decoration: none !important;
}

.btn-agri-fill {
    background: #146c43 !important;
    border: 3px solid #146c43 !important;
    border-radius: 5px !important;
    color: #ffffff !important;
    font-size: 12px !important;
    text-decoration: none !important;
}

.btn-agri-fill:hover {
    background: #aee4cb !important;
    border: 3px solid #146c43 !important;
    border-radius: 5px !important;
    color: #146c43 !important;
    text-decoration: none !important;
}

.text-agri {
    color: #146c43 !important;
}

.text-yellow {
    color: rgb(234 147 10) !important;
}

.text-bold {
    font-weight: bold;
}

.padding0_20 {
    padding: 0 20px !important;
}

.bold-600 {
    font-weight: 600;
}

.bold-400 {
    font-weight: 400;
}

.text-justify {
    text-align: justify !important;
}

.vertical-align-middle {
    vertical-align: middle !important;
}

.height-50 {
    height: 50px !important;
}

.height-30 {
    height: 30px !important;
}

.height-70 {
    height: 70px !important;
}

.text-red {
    color: red !important;
}

.background-agri {
    background: #146c43 !important;
}

.background-sky-green {
    background: rgb(167 227 154) !important
}

.background-black {
    background: #000000 !important
}

.text-royal-blue {
    color: rgb(41 6 124) !important;
}

.padding-left-20 {
    padding-left: 20px !important;
}

.border-radius15 {
    border-radius: 15px !important;
}

.icon-color {
    color: #1ac877 !important;
}

.width-100 {
    width: 100% !important;
}

.width-50 {
    width: 50% !important;
}

.width-15 {
    width: 15% !important;
}

.header-icon {
    color: white;
    padding: 5px;
    border-radius: 100%;
}

.header-nav {
    background-color: #f1fff2 !important;
}

.tiktok-icon {
    background-color: black;
}

.envelope-icon {
    background-color: #ffc107;
}

.download-icon {
    background-color: #0dcaf0;
}

.instagram-icon {
    background: radial-gradient(circle at 30% 107%,
            #fdf497 0%,
            #fdf497 5%,
            #fd5949 45%,
            #d6249f 60%,
            #285AEB 90%);
    color: white;
    padding: 5px;
    border-radius: 100%;
}

.card:hover {
    transform: none !important;
}

#divisionTabsContent .card:hover {
    transform: none !important;
}

#divisionTabs .nav-pills {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

#divisionTabs .nav-pills .nav-link {
    margin-right: 25px;
    margin-bottom: 15px;
}

#divisionTabsContent .tab-content {
    padding: 0;
}

#divisionTabsContent .card {
    margin-bottom: 20px;
}

#divisionTabsContent .staff-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
}

.service-div {
    min-height: 235px;
}

#publications img {
    height: 200px;
}

.card-img-top {
    height: 250px;
    object-fit: cover;
}
.library-image{
    height: 525px;
    width: 100%;
    object-fit: cover;
}
.no-underline {
    text-decoration: none !important;
}

.no-border {
    border: none !important;
}
.truncate {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.min-80 {
    min-height: 80px !important;
}

.event-image {
    height: 200px;
    object-fit: contain;
}

label:not(.form-check-label):not(.custom-file-label) {
    font-weight: 600 !important;
}

.image-icon {
    color: #9d9d9d;
    font-size: 30px;
}

.width-70 {
    width: 70% !important;
}

.banner-text {
    background: #e2e4e466 !important;
}

.full-height {
    height: 100% !important;
}

.full-radius {
    border-radius: 100% !important;
}

.circle-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #28a745;
    transition: background-color 0.3s, transform 0.3s;
}

.hover-up:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.transition {
    transition: all 0.3s ease-in-out;
}

.event-card img {
    transition: transform 0.3s ease;
}

.event-card:hover img {
    transform: scale(1.05);
}

.hover-up:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.transition {
    transition: all 0.3s ease;
}

.truncate {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.object-fit-cover {
    object-fit: cover;
}

.two-line-truncate {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-section {
    background: linear-gradient(120deg, #e0ffe8, #ffffff);
    padding: 60px 0;
    text-align: center;
}

.contact-info {
    font-size: 1rem;
}

.contact-info i {
    width: 24px;
    color: #28a745;
}

.contact-entry {
    border-left: 4px solid #28a745;
    padding-left: 15px;
    margin-bottom: 30px;
}

.divider {
    height: 2px;
    background: #28a745;
    width: 80px;
    margin: 16px auto;
}

a {
    color: #0056b3;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.section-title {
    font-weight: 700;
    font-size: 2rem;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3cec43, #ecffd6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    transition: transform 0.3s ease;
}

.icon-circle:hover {
    transform: scale(1.1);
}

.services-background {
    background: #77bd4c !important;
}

#useful-links .row>div:nth-child(1) a>div {
    background-color: #fce4ec;
    color: #c70042;
}

#useful-links .row>div:nth-child(2) a>div {
    background-color: #fff3e0;
    color: #5c3800;

}

#useful-links .row>div:nth-child(3) a>div {
    background-color: #e3f2fd;
    color: #146dae;

}

#useful-links .row>div:nth-child(4) a>div {
    background-color: #e7f2e9;
    color: #0a3622;
}

#useful-links .row>div:nth-child(5) a>div {
    background-color: #ede7f6;
    color: #4b00be;
}
#useful-links .row>div:nth-child(6) a>div {
    background-color: #cbf6ff;
    color: #00bebe;
}
#useful-links .row>div:nth-child(7) a>div {
   background-color: #fddede;
   color: #dc3545;
}
.market-div {
    background-color: #e7f2e9 !important;
}

.organization-div {
    background: linear-gradient(to right, #e6f4ea, #fefefe);
}

.youtube-icon-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 50%;
    z-index: 2;
}

.youtube-icon-overlay i {
    color: white;
    font-size: 24px;
}

.font-weight5 {
    font-weight: 500 !important;
}

.font-weight4 {
    font-weight: 400 !important;
}

#latest-publication .table-bordered thead td,
.table-bordered thead th {
    border-bottom: none !important;
}

#latest-publication .card,
#latest-publication .card-body {
    background: #e7f2e9;
}

.font-math {
    font-family: math !important;
}

.justify-center {
    justify-content: center;
}

#international .row>div:nth-child(1) a>div {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

#international .row>div:nth-child(2) a>div {
    background: linear-gradient(135deg, #f7971e 0%, #ffd200 100%);
}

#international .row>div:nth-child(3) a>div {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

#international .row>div:nth-child(4) a>div {
    background: linear-gradient(135deg, #e8051b 0%, #e92f78 100%);
}

#navbarNav ul li a {
    text-decoration: none !important;
    color:#0a3622;
}

.contact-header {
    background: linear-gradient(to right, #119b72, #457b9d);
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.contact-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.contact-info i {
    font-size: 20px;
    color: #1d3557;
    margin-right: 10px;
}

iframe {
    border: none;
    border-radius: 12px;
    width: 100%;
    height: 400px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #146c43;
    border-bottom: 3px solid #e0e0e0;
    display: inline-block;
    margin-bottom: 1rem;
}

.icon-list li::marker {
    color: #146c43;
}

.vision-mission {
    background: linear-gradient(to right, #e6f4ea, #fefefe);
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 2rem;
}

.img-style {
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-entry {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.event-card {
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.event-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.event-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.event-card .card-body {
    padding: 1rem;
}

.event-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    color: #2c3e50;
}

.text-truncate {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.text-harti {
    color: #cf8d3c;
    text-shadow: -1px -1px 0 #545151, 1px -1px 0 #707070, -1px -1px 0 #707070, 1px 0px 0 #525252;
    ;
}

.social-icons-list {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icons-border {
    border-radius: 10px 0 0 10px;
}

.book-now-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--bs-purple), var(--bs-primary));
    color: white;
    padding: 12px 20px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 0 8px 8px 0;
    transition: all 0.3s ease;
    overflow: hidden;
    white-space: nowrap;
    text-decoration: none !important;
}

.book-now-btn i {
    margin-right: 0;
    transition: margin-right 0.3s;
    color: white;
}

.book-now-btn span {
    opacity: 0;
    width: 0;
    margin-left: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, width 0.3s ease, margin-left 0.3s ease;
}

.book-now-btn:hover span {
    opacity: 1;
    width: auto;
    margin-left: 10px;
    color: white;
}

.btn-booking {
    color: #094e2e !important;
    background-color: #ffc107 !important;
    border-color: #ffc107 !important;
    font-weight: 500 !important;
    text-decoration: none !important;
}

.carousel-wrapper {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-item-box {
    flex: 0 0 100%;
    box-sizing: border-box;
    padding: 5px;
}

@media (max-width: 992px) {
    .carousel-item-box {
        flex: 0 0 50%;
    }
}

@media (max-width: 768px) {
    .carousel-item-box {
        flex: 0 0 50%;
    }
    .logo-height{
    width: 100% !important;
}
}

@media (min-width: 993px) {
    .carousel-item-box {
        flex: 0 0 25%;
    }
}

.position-absolute {
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
}

.btn-secondary {
    z-index: 100;
    text-decoration: none !important;
}

.navigate-border-left {
    border-radius: 0 10px 10px 0 !important;
}

.navigate-border-right {
    border-radius: 10px 0px 0px 10px !important;
}

.stat-card {
    transition: transform 0.3s ease;
    border-radius: 1rem;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    background-color: rgb(228 167 183 / 19%) !important;
    border: 1px solid #6d14ff70;
    color: #58151c;
}

.stat-card:hover {
    transform: scale(1.05);
}

.icon-page-visit {
    font-size: 1.5rem;
}

.counter-value {
    font-size: 1rem;
    font-weight: bold;
}

.card-label {
    font-size: 1.1rem;
 
    color: #6c757d;
}
.youtube-icon{
    top: 62% !important;
    left: 52% !important;
    color:rgb(235 18 18) !important;
}
.youtube-icon::before{
    background: #fff;
    border-radius: 20%;
    padding: 0px 2px;
}
a{
    text-decoration: none !important;
}
.logo-height{
    width: 65%;
    height: auto;
}
.ml-10{
margin-left: 10%;
}
.marquee-box{
    background: #b8dfcd;
    color: black;
    padding: 10px;
}