 /* Container for images */
        .iggallery-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            padding: 15px;
        }

        /* Image styling */
        .iggallery-item {
            position: relative;
            overflow: hidden;
            width: 30%;
            height: 200px;
            border-radius: 10px;
            transition: transform 0.3s ease;
        }

        .iggallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
        }

        /* Hover effects */
        .iggallery-item:hover {
            transform: scale(1.05);
        }

        /* Image title overlay */
        .iggallery-title {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.6);
            color: white;
            text-align: center;
            padding: 10px;
            font-size: 1rem;
            transition: bottom 0.3s ease;
        }

        .iggallery-item:hover .iggallery-title {
            bottom: 0;
        }

        /* Loader icon (display: flex;) */
        .load-more-btn {
    
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease; /* Add transform transition */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    position: relative;
    overflow: hidden;
}

/* Hover effect */
.load-more-btn:hover {
    background-color: #0056b3;
    transform: scale(1.05); /* Slightly enlarge on hover */
}

/* Active (clicked) effect */
.load-more-btn:active {
    background-color: #004080;
    transform: scale(0.95); /* Slightly shrink when clicked */
}

/* Add a glowing effect */
.load-more-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 10%, transparent 10%);
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
    transform: scale(0);
}

/* Glow effect on hover */
.load-more-btn:hover::before {
    opacity: 1;
    transform: scale(1);
}

    

        /* Animation for loading icon */
        .spinner-border {
            margin-right: 10px;
            display: none;
        }

        /* Responsive layout */
        @media (max-width: 768px) {
            .iggallery-item {
                width: 45%;
            }
        }

        @media (max-width: 576px) {
            .iggallery-item {
                width: 100%;
            }
        }
        /* Styling for the Mosaic Slider with unique classes */
        /* CSS for the Mosaic Slider */
/* Inline CSS for simplicity, but should be in a separate CSS file */
    /* Container for the entire gallery section */
./* Container for the entire gallery section */
/* Container for the entire gallery section */
.igcontainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
}

/* Title container styles */
.title-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.title-container h1 {
    font-size: 2rem;
    color: #333;
    text-align: center;
}

/* Styles for the mosaic slider container */
.igmosaic-slider-container {
    position: relative;
    overflow: hidden;
}

.igmosaic-slider {
    display: flex;
    flex-wrap: wrap;
    transition: transform 0.5s ease-in-out;
}

.igmosaic-slide {
    width: 25%; /* 4 images per row, adjust if needed */
    box-sizing: border-box;
    padding: 10px;
}

.igmosaic-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.igmosaic-slide img:hover {
    transform: scale(1.05);
}

/* Arrow button styles */
.igarrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: #fff;
    font-size: 2rem;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

.igarrow-left {
    left: 10px;
}

.igarrow-right {
    right: 10px;
}

/* Load More button styles */
.igloadmore-button {
    display: block;
    width: 200px;
    margin: 20px auto;
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease;
}

.igloadmore-button:hover {
    background-color: #0056b3;
}

.igloadmore-button:focus {
    outline: none;
}

/* No images available message styles */
.no-images {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-top: 20px;
}

       /* END Styling for the Mosaic Slider with unique classes */
        /* CSS for the Mosaic Slider */
/* Inline CSS for simplicity, but should be in a separate CSS file */
    /* Container for the entire gallery section  END */




/*for nav menu 

/* General Styles */
.mnav-container {
    width: 100%;
    background-color: #2c3e50;
    padding: 10px 0;
    position: relative;
    z-index: 1000;
}

.mnav-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.mnav-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mnav-brand a {
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
    font-weight: bold;
}

.mnav-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.mnav-toggler {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mnav-toggler-icon {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
    transition: transform 0.3s ease;
}

.mnav-collapse {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.mnav-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.mnav-item {
    position: relative;
    margin: 0 15px;
}

.mnav-link {
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    transition: background 0.3s ease;
}

.mnav-link:hover {
    background-color: #34495e;
}

.mnav-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #2c3e50;
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 200px;
    z-index: 1000;
}

.mnav-dropdown li a {
    color: #fff;
    padding: 10px 15px;
    display: block;
    text-decoration: none;
}

.mnav-dropdown li a:hover {
    background-color: #34495e;
}

.mnav-item.dropdown:hover .mnav-dropdown {
    display: block;
}

/* Mobile Styles */
@media (max-width: 992px) {
    .mnav-toggler {
        display: block;
    }

    .mnav-collapse {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #2c3e50;
        position: absolute;
        top: 60px;
        left: 0;
        z-index: 1000;
        padding: 10px 0;
    }

    .mnav-nav {
        flex-direction: column;
    }

    .mnav-item {
        margin: 0;
    }

    .mnav-dropdown {
        position: static;
        display: none;
        background-color: #34495e;
    }

    .mnav-item.dropdown:hover .mnav-dropdown {
        display: none;
    }

    .mnav-collapse.active {
        display: flex;
    }

    .mnav-toggler.active .mnav-toggler-icon:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mnav-toggler.active .mnav-toggler-icon:nth-child(2) {
        opacity: 0;
    }

    .mnav-toggler.active .mnav-toggler-icon:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

/* end of nav menu




/* Container for the entire Team section

/* Container for the entire team section */

 /* Team Section */
        .idxteams-section {
            padding: 50px 0;
            background-color: #f8f9fa;
        }
        .idxteams-header {
            text-align: center;
            margin-bottom: 50px;
        }
        .idxteams-header h2 {
            font-size: 2.5rem;
            color: #333;
        }
        .idxteams-profile-card {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            margin: 20px 0;
            transition: transform 0.3s;
        }
        .idxteams-profile-card:hover {
            transform: translateY(-10px);
        }
        .idxteams-profile-img {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }
        .idxteams-profile-content {
            padding: 30px;
            text-align: center;
        }
        .idxteams-profile-content h3 {
            font-size: 1.5rem;
            color: #333;
        }
        .idxteams-profile-content p {
            font-size: 1rem;
            color: #666;
        }
        .idxteams-profile-content .idxteams-social-icons {
            margin-top: 20px;
        }
        .idxteams-profile-content .idxteams-social-icons a {
            margin: 0 10px;
            color: #007bff;
            font-size: 1.5rem;
            transition: color 0.3s;
        }
        .idxteams-profile-content .idxteams-social-icons a:hover {
            color: #0056b3;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .idxteams-profile-card {
                margin: 20px auto;
            }
        }


/* END Container for the entire Team section */

/* footer */
 .idxfooter {
    background-color: #212529;
    color: #fff;
    font-family: Verdana, Tahoma, sans-serif;
    position: relative;
  }

  .idxfooter-title {
    font-size: 24px;
    font-weight: bold;
    color: #ff9800;
    animation: idxfooter-title-bounce 1.5s infinite ease-in-out;
  }

  /* Social Icon Hover & Tooltip */
  .idxfooter-social a {
    font-size: 24px;
    color: #fff;
    margin-right: 10px;
    position: relative;
    transition: transform 0.3s ease-in-out, color 0.3s;
  }

  .idxfooter-social a:hover {
    transform: scale(1.3) rotate(360deg);
    color: #ff5722;
  }

  .idxfooter-social a[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    top: -30px;
    left: 0;
    background-color: #333;
    padding: 5px;
    border-radius: 5px;
    color: #fff;
    font-size: 12px;
    white-space: nowrap;
  }

  .idxfooter .links ul {
    list-style-type: none;
    padding: 0;
  }

  /* Link Transition */
  .idxfooter-link {
    color: #ff9800;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s;
  }

  .idxfooter-link:hover {
    color: #ff5722;
    padding-left: 10px;
    text-decoration: underline;
  }

  .idxfooter .location p {
    color: #ddd;
  }

  .idxfooter .location i {
    color: #ff9800;
    transition: transform 0.3s ease;
  }

  .idxfooter .location i:hover {
    transform: rotate(15deg);
  }

  .idxfooter .footer {
    padding: 60px 0;
  }

  /* Bounce Animation */
  @keyframes idxfooter-title-bounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }

    .idxfooter-know-more button {
    font-family: Verdana, sans-serif;
    transition: background-color 0.3s ease-in-out;
  }

  .idxfooter-know-more button:hover {
    background-color: #ff5722;
    color: #fff;
  }

  #dynamic-info {
    font-size: 14px;
    transition: opacity 0.3s ease-in-out;
  }
  /* end footer*/

  /*news start */
  .idxnews-container {
            max-width: 100%;
            margin: 20px auto;
            overflow: hidden;
        }
        .idxnews-header {
            font-family: Verdana, sans-serif;
            margin-bottom: 20px;
        }
        

        .idxnews-item {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 10px;
    background-color: #f9f9f9;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    display: block;
}
.idxnews-item.show {
    opacity: 1;
    transform: translateY(0);
}
.idxnews-item .new-item::before {
    content: "New";
    background-color: #f00;
    color: #fff;
    padding: 2px 5px;
    font-size: 10px;
    border-radius: 3px;
    margin-right: 5px;
    animation: flicker 1s infinite;
}
@keyframes flicker {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}
        .idxnews-item h5 {
            font-family: Tahoma, sans-serif;
            margin: 0 0 10px;
        }
        .idxnews-item p {
            margin: 0;
            font-size: 12px;
        }
        .idxnews-footer {
            margin-top: 20px;
        }
        .welcome-section {
            font-family: Verdana, sans-serif;
        }
        .welcome-section h2 {
            margin-top: 20px;
        }
        .news-section {
            padding-top: 50px;
        }
        .idxtab-content {
            margin-top: 20px;
        }
        .nav-tabs .nav-link.active {
            background-color: #f8f9fa;
            border-color: #dee2e6 #dee2e6 #f8f9fa;
        }



  /*about and course start */

/* Updated CSS identifiers to avoid conflicts */
        .ideabout-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            position: relative;
        }

        .ideabout-header {
            text-align: center;
            background-color: #f7d06b;
            padding: 20px 0;
            animation: fadeInDown 1.2s ease-out;
        }

        .ideabout-header h1 {
            color: #ff5d00;
            font-size: 26px;
        }

        .ideabout-header h2 {
            color: #0d3c91;
            font-size: 22px;
            margin-bottom: 10px;
        }

        .ideabout-content-section {
            display: flex;
            justify-content: space-between;
            background-color: #ffffff;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            padding: 20px;
            margin-top: 20px;
            border-radius: 5px;
            animation: fadeIn 1.5s ease;
        }

        .ideabout-content-box {
            width: 48%;
            border: 2px solid #0056b3;
            padding: 20px;
            border-radius: 5px;
            transition: transform 0.3s ease;
        }

        .ideabout-content-box:hover {
            transform: scale(1.05);
        }

        .ideabout-content-box h3 {
            color: #0d3c91;
            font-size: 18px;
            text-align: center;
            margin-bottom: 15px;
        }

        .ideabout-content-box p {
            font-size: 14px;
            color: #333;
            text-align: justify;
        }

        .ideabout-btn {
            display: block;
            text-align: center;
            margin: 20px auto 0;
            background-color: #0062cc;
            color: white;
            padding: 10px 20px;
            text-decoration: none;
            border-radius: 4px;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .ideabout-btn:hover {
            background-color: #004a99;
            transform: scale(1.05);
        }

        .ideabout-highlights {
            margin-top: 40px;
        }

        .ideabout-highlights h3 {
            font-size: 20px;
            color: #0d3c91;
            text-align: center;
        }

        .ideabout-highlights ul {
            list-style: none;
            padding: 0;
            margin-top: 20px;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .ideabout-highlights li {
            width: 48%;
            background-color: #f4f4f9;
            padding: 10px;
            margin-bottom: 10px;
            font-size: 14px;
            color: #555;
            border-left: 3px solid #ff5d00;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 1s ease, transform 1s ease;
        }

        .ideabout-highlights li.visible {
            opacity: 1;
            transform: translateY(0);
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

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

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @media (max-width: 768px) {
            .ideabout-content-section {
                flex-direction: column;
            }

            .ideabout-content-box {
                width: 100%;
                margin-bottom: 20px;
            }

            .ideabout-highlights ul {
                flex-direction: column;
            }

            .ideabout-highlights li {
                width: 100%;
            }
        }

        /* Tabs Styling */
        .ideabout-tab-container {
            margin-top: 20px;
        }

        .ideabout-tabs {
            display: flex;
            justify-content: center;
            cursor: pointer;
            border-bottom: 2px solid #0d3c91;
        }

        .ideabout-tab {
            padding: 10px 20px;
            border: 1px solid #0d3c91;
            background-color: #f7d06b;
            margin-right: 10px;
            transition: background-color 0.3s, transform 0.3s;
        }

        .ideabout-tab:hover {
            background-color: #ff5d00;
            transform: scale(1.05);
        }

        .ideabout-tab.active {
            background-color: #0d3c91;
            color: white;
        }

        .ideabout-tab-content {
            display: none;
            padding: 20px;
            background-color: #ffffff;
            border: 1px solid #0d3c91;
            border-radius: 5px;
            margin-top: 10px;
            transition: opacity 0.5s ease;
        }

        .ideabout-tab-content.active {
            display: block;
            opacity: 1;
        }

        .ideabout-loading-spinner {
            display: none;
            border: 8px solid #f3f3f3;
            border-radius: 50%;
            border-top: 8px solid #0d3c91;
            width: 36px;
            height: 36px;
            animation: spin 1s linear infinite;
            margin: 20px auto;
        }

 /* Start Bootstrap Carousel Slider  */


/* Carousel header slider Container - Half the screen's width */
/* Unique Carousel Styles */
/* Unique Carousel Styles */
.indexslider-carousel-container {
    width: 80%; /* Adjusted width to center the container with margins */
    max-width: 1200px; /* Optional: Set a max-width for larger screens */
    height: 50vh;
    border: 3px solid white;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    margin: 0 auto; /* Centers the container horizontally */
    background-size: cover;
    background-color: #f8f9fa; /* Fallback color */
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
}

.indexslider-carousel-inner {
    height: 100%;
    display: flex; /* Flexbox for centering content */
    align-items: center; /* Center content vertically */
    justify-content: center; /* Center content horizontally */
}

.indexslider-carousel-item {
    height: 100%;
    position: relative;
    display: contents; /* Flexbox for centering image */
    align-items: center; /* Center image vertically */
    justify-content: center; /* Center image horizontally */
}

.indexslider-carousel-item img {
    max-width: 100%; /* Ensures image does not exceed container width */
    max-height: 100%; /* Ensures image does not exceed container height */
    object-fit: cover; /* Ensures the image covers the container */
}


/* Smooth fade-in for the quote box */
.indexslider-quote-box {
    position: absolute;
    bottom: 15%;
    left: 10%; /* Adjusted for better centering */
    right: 10%; /* Adjusted for better centering */
    background: rgba(255, 255, 255, 0.85);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    font-size: 1.3rem;
    font-style: italic;
    color: #333;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
}

.indexslider-carousel-item.active .indexslider-quote-box {
    opacity: 1;
    transform: translateY(0);
}

/* Modern carousel control buttons */
.indexslider-carousel-control-prev, 
.indexslider-carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
    z-index: 2; /* Ensure buttons are above other content */
}

.indexslider-carousel-control-prev:hover,
.indexslider-carousel-control-next:hover {
    background-color: rgba(255, 255, 255, 1);
}

.indexslider-carousel-control-prev-icon,
.indexslider-carousel-control-next-icon {
    filter: invert(1); /* White icons */
}

/* Responsive text resizing */
@media (max-width: 768px) {
    .indexslider-quote-box {
        font-size: 1rem;
    }
}

.indexslider-overlay {
    position: absolute;
    top: 10%;
    left: 10%; /* Adjusted for better centering */
    right: 10%; /* Adjusted for better centering */
    color: white;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1; /* Ensure overlay is below other content but above decorative elements */
}

.indexslider-decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0; /* Ensure decorative elements are below all other content */
}

.indexslider-decorative-elements::before {
    content: "";
    position: absolute;
    top: 20%;
    right: 10%; /* Adjusted position */
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    animation: float 4s infinite ease-in-out;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}
