﻿body {
    overflow-x: hidden;
}

    .sticky-container
    {
    
		    padding: 0px;
		    margin: 0px;
		    position:fixed;
		    right: -125px;
		    top:200px;
		    width: 200px; 
		    z-index:9999;

	    }

	    .sticky li{
		    list-style-type: none;
		    color: #efefef;
		    height: 43px;
		    padding: 0px;
		    margin: 0px 0px 3px 0px;
		    -webkit-transition:all 0.25s ease-in-out;
		    -moz-transition:all 0.25s ease-in-out;
		    -o-transition:all 0.25s ease-in-out;
		    transition:all 0.25s ease-in-out;
		    cursor: pointer; border-radius:5px 0 0 5px
	    }

	    .sticky li:hover{
		    margin-left: -115px;
	    }

	    .sticky li img{
		    float: left;
		    margin: 5px 5px;
		    margin-right: 10px;

	    }

	    .sticky li p{
		    padding: 0px;
		    margin: 0px;
		    text-transform: uppercase;
		    line-height: 43px;

	    }
	    
	    .card-header {
            border-bottom: 0;
            border-radius: 0.3rem 0.3rem 0 0 !important;
            padding: 0.75rem 1.25rem;
        }

        
        .auto-slider-body {
            height: 400px; 
            overflow: hidden; 
            position: relative;
        }

        /* The sliding list element */
        .auto-slider-list {
            position: absolute;
            width: 100%;
            margin: 0;
            padding: 0;
            list-style: none;
            /* Animation applied to make it scroll */
            transform: translateY(100%);
            animation: scroll-up 30s linear infinite; /* Animation speed/duration */
        }
        
        /* Pause animation on hover for all lists */
        .auto-slider-body:hover .auto-slider-list {
            animation-play-state: paused;
        }

        /* Keyframe Animation for Bottom-to-Top Scroll */
        @keyframes scroll-up {
            0% { transform: translateY(100%); } /* Start at the bottom */
            100% { transform: translateY(-100%); } /* Scroll up and out (Top) */
        }
        
        /* Common Item Styling */
        .list-item-content {
            cursor: pointer;
            background-color: #fff;
            transition: background-color 0.3s;
        }
        .list-item-content:hover {
            background-color: #f0f0f0; 
        }

        /* Events Styling */
        .event-date-box {
            width: 60px;
            border-radius: 0.3rem;
            line-height: 1.2;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        }
        .testimonial-card .card-body {
            padding: 0;
        }

        .testimonial-item {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            min-height: 350px; /* Adjust height as needed */
            background-color: #f8f9fa;
            border-radius: 0.5rem;
            padding: 20px;
        }

        .testimonial-video-wrapper {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
            height: 0;
            overflow: hidden;
            margin-bottom: 15px;
            border-radius: 0.3rem;
        }
        .testimonial-video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }

        /* Custom Carousel Controls (Left/Right Arrows) */
        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            background-image: none; /* Remove default Bootstrap icons */
        }

        .carousel-control-prev,
        .carousel-control-next {
            width: 5%; /* Make control area smaller */
            opacity: 0.8;
            transition: opacity 0.3s;
        }

        .carousel-control-prev:hover,
        .carousel-control-next:hover {
            opacity: 1;
        }
        
        /* Font Awesome Icons for Carousel Controls */
        .carousel-control-prev .fas,
        .carousel-control-next .fas {
            font-size: 2.5rem;
            color: #343a40; /* Dark color for visibility */
            background-color: rgba(255, 255, 255, 0.7);
            border-radius: 50%;
            padding: 5px 10px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }

        /* ---------------------------------------------------- */
        /* Right-to-Left Animation for Carousel */
        /* ---------------------------------------------------- */
        .carousel-item-next.carousel-item-start,
        .carousel-item-prev.carousel-item-end {
            transform: translateX(0); /* Ensure items are in position */
        }
        
        .carousel-item-next,
        .carousel-item-prev,
        .carousel-item.active {
            display: block; /* Override default display: flex */
        }

        .carousel-item-next:not(.carousel-item-start),
        .carousel-item-prev:not(.carousel-item-end) {
            position: absolute;
            top: 0;
            width: 100%;
        }

        /* Right-to-Left Sliding Animation */
        .carousel-item-next { /* Current active slides out to the left */
            transform: translateX(-100%);
        }
        .carousel-item-prev { /* Current active slides out to the left */
            transform: translateX(-100%);
        }

        .carousel-item-start { /* New slide comes in from the right */
            transform: translateX(100%);
        }
        .carousel-item-end { /* New slide comes in from the right */
            transform: translateX(100%);
        }

        /* Reset for the next slide's starting position */
        .carousel-item-next.carousel-item-start {
            transform: translateX(0);
        }
        .carousel-item-prev.carousel-item-end {
            transform: translateX(0);
        }

        /* Animation duration (optional, if you want to change speed) */
        .carousel-inner {
            transition: transform 0.6s ease-in-out;
        }

        /* Ensure .w-100 on video is correctly applied */
        .w-100-iframe {
            width: 100%;
        }
        /* MAIN CONTAINER */
.erp-banner {
    max-width: 900px;
    margin: auto;
    background: #228b22;
    padding: 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transition: 0.3s ease;
}

.erp-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

/* LEFT IMAGE */
.erp-left img {
    height: 100px;
}

/* CENTER TEXT */
.erp-center {
    flex: 1;
    padding: 0 25px;
}

.erp-center h2 {
    margin: 0;
    color: #fff;
    font-size: 28px;
    font-weight: bold;
}

.erp-center p {
    color: #fff;
    font-size: 16px;
    margin-top: 8px;
}

/* ✨ 3D BUTTON + HOVER GLOW ✨ */
.erp-btn {
    background: linear-gradient(#ff7043, #ff5722);
    color: white;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 7px 0 #c63d16;
    transition: all 0.2s ease-in-out;
    display: inline-block;
}

/* Hover Glow */
.erp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 18px rgba(255, 87, 34, 0.5);
}

/* Pressed/Clicked 3D Effect */
.erp-btn:active {
    transform: translateY(4px);
    box-shadow: 0 3px 0 #c63d16;
}

/* 📱 Responsive (Mobile View) */
@media(max-width: 768px) {
    .erp-banner {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .erp-left img {
        height: 80px;
        margin-bottom: 15px;
    }

    .erp-center {
        padding: 0;
    }

    .erp-btn {
        margin-top: 20px;
        width: 80%;
    }
}


.my-gallery-container {
  width: 90%;
  margin: 50px auto;
  position: relative; 
  padding: 0 40px; 
}


/* MENU CONTAINER */
    .menu {
        position: fixed;
        right: 25px;
        bottom: 35px;
        display: flex;
        flex-direction: column;
        gap: 12px;
        z-index: 999;
    }

    /* WHATSAPP BUTTON */
    .whatsapp,
    .call {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        border: none;
        color: white;
        font-size: 20px;
        cursor: pointer;
        box-shadow: 0 6px 16px rgba(0,0,0,0.25);
        transition: 0.3s;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .whatsapp { background: #25D366; }
    .call { background: #007AFF; }

    .whatsapp:hover, .call:hover { 
        transform: scale(1.10) translateY(-5px); 
    }

    /* PROGRESS CIRCLE 50PX */
    .progress-wrap {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.25);
        backdrop-filter: blur(10px);
        position: relative;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 10px 30px rgba(0,0,0,0.28);
        animation: float 3s ease-in-out infinite;
    }

    @keyframes float {
        0% { transform: translateY(0); }
        50% { transform: translateY(-8px); }
        100% { transform: translateY(0); }
    }

    .progress-wrap svg {
        position: absolute;
        top: 0;
        left: 0;
        transform: rotate(-90deg);
        width: 50px;
        height: 50px;
    }

    /* ADJUSTED RADIUS FOR 50PX CIRCLE */
    .progress-circle {
        fill: none;
        stroke-width: 6;
        stroke-linecap: round;
        stroke: url(#gradSuper);
        filter:
            drop-shadow(0 0 5px #00eaff)
            drop-shadow(0 0 12px #00eaff);
        transition: stroke-dashoffset 0.2s;
    }

    /* ICON */
    .progress-icon {
        font-size: 20px;
        color: #ffc107;
        z-index: 5;
        transition: transform 0.3s linear;
    }

    /* RESPONSIVE DESIGN */
    @media (max-width: 768px) {
        .whatsapp, .call { width: 46px; height: 46px; font-size: 18px; }
        .progress-wrap { width: 46px; height: 46px; }
        .progress-wrap svg { width: 46px; height: 46px; }
        .progress-icon { font-size: 18px; }
    }

    @media (max-width: 480px) {
        .menu { right: 15px; bottom: 20px; gap: 10px; }
        .whatsapp, .call { width: 42px; height: 42px; font-size: 16px; }
        .progress-wrap { width: 42px; height: 42px; }
        .progress-wrap svg { width: 42px; height: 42px; }
        .progress-icon { font-size: 16px; }
    }

 /*.swiper {
  width: 100%;
  height: 100%;
  padding-bottom: 20px; 
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex; 
  flex-direction: column;
  align-items: center;
  cursor: grab;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 200px; 
  object-fit: cover; 
}

.slide-content {
  padding: 15px;
  text-align: left;
}

.slide-content h3 {
  margin-top: 0;
  color: #333;
}


.swiper-button-prev,
.swiper-button-next {
  color: #007aff; 
  transform: scale(0.8);
  top: 50%;
} */

.gallery-heading {
  text-align: center;
  margin-bottom: 30px;
  color: #2c3e50;
  font-family: Arial, sans-serif;
  border-bottom: 2px solid #007aff;
  display: inline-block;
  padding-bottom: 5px;
  margin-left: 50%;
  transform: translateX(-50%);
}


.my-gallery-container {
  width: 90%;
  margin: 50px auto;
  position: relative; 
  padding: 0 40px; 
}

.video-thumbnail-wrapper {
    width: 100%;
    height: 200px; 
    overflow: hidden;
    position: relative;
}


.swiper-slide {
    background: #ffffff;
    border: 3px solid #0056a6;       
    border-radius: 14px;
    overflow: hidden;
    padding: 0;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.swiper-slide:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}


.video-thumbnail-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;  
    overflow: hidden;
    background: #000;
}

.video-thumbnail-wrapper img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
} 


.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75px;
    height: 75px;
    background: #e60000;       
    border-radius: 50%;
    color: #fff;
    font-size: 2.7rem;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.4);
    transition: transform 0.2s ease;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.15);
}


.caption {
    background: #002147;         
    color: #ffffff;
    text-align: center;
    padding: 14px 10px;
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    min-height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}
 
 
/*
	.pagegallery_head{

margin-bottom: 20px; margin-top:13px;}

.pagegallery_head h3{font-size: 23px;

line-height: 30px;

color: #000;

font-weight: 500;}

.pagegal a h3{color:#fff!important;font-weight:400!important;}

.pad_rightcopy{padding-right:50px;}

.latest_stories .lt-news h5{color:#fff;}

.latest_stories  .lt-news article p{color:#fff;}

.tabhome{font-family: 'Bebas Neue', cursive;

font-size: 21px;

color: #fff;

letter-spacing: 0.5px; border-bottom:0px;}

.tabhome .nav-link{color:#fff; border:none;}

.tabhome .nav-link.active{color:#fff;}

.tabhome_content{padding-left:0px;}



.tabhome_content > .tab-pane{padding: 15px 25px;border-radius:0px 10px 10px 10px;}



.tabhome_content img{

  margin-bottom: 10px;

  border-radius: 20px 0 20px 0;

  border: 2px solid #fff;

}

.tabhome_content .tab_img img{display:block; text-align:center; margin:0px auto;}

.tab_img{margin-bottom:7px;}

.tab_learn{margin-top:15px; text-align:center;}

.home_eventgal{height:60px; display: table; width:100%;}

.home_eventgal h3{ font-size:18px;line-height:22px; padding:10px 0px;display: table-cell; vertical-align:middle; font-weight:500;}
.swiper-wrapper{-webkit-transition-timing-function:linear!important;

-o-transition-timing-function:linear!important;

transition-timing-function:linear!important;

}
.homeventgal{border: 4px solid #fff;
    border-radius: 10px;
    background: #fff;}
.homeventgal:hover{border: 4px solid #fff;
    border-radius: 10px;
    background: #fff;}
	.mobile_social{position: relative;
    margin-top: -110px;
    width: 100%; text-align:center;}
	.mobile_social li{display:inline-block; width:32px;}

@media only screen and (max-width: 600px) {
	.pbminfotech-testimonial-text img{height:188px;}
	.achievement_shortinfo{height:80px;}
	.nws-info{height:240px;}
	.tri_arrow{left:45px;}
.nws-pic img{height:232px;}
}
@media only screen and (max-width: 600px) {
	.homemodel{z-index:100000!important;}
.homepopup .btn_close {
	color: #fff;
	background:#000;
	font-size:15px!important;
	font-weight: 300;
	top:-5px!important;
	right:-5px!important;
	cursor:pointer;
	width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
	border-radius:50%;
	position: absolute!important;
}
}
  */
  
  
 /* .button_main {
	position: relative;
	margin-top: -100px;
	width: 100%;
	z-index:999999999;
}
 .homepopup
        {
            background: rgba(255, 255, 255, 1);
            position: relative;
            border-radius: 5px;
            padding: 5px;
        }
        .homepopup .modal-body img
        {
            width: 100%;
        }
        .pop_content
        {
            margin-top: 20px;
        }
        .homepopup h2
        {
            font-size: 22px;
            font-weight: 400;
            line-height: 26px;
            margin-bottom: 15px;
            text-align: left;
            color: #002a54;
        }
        .homepopup .modal-body
        {
            padding: 0px;
        }
        .homepopup .btn_close
        {
            color: #ffcb05;
            font-size: 37px;
            font-weight: 300;
            top: -23px;
            right: -27px;
            cursor: pointer;
            position: absolute;
        }
        .model_wrap
        {
        }
        .model_wrap:before
        {
            position: fixed;
            content: "" !important;
            left: 0 !important;
            top: 0 !important;
            height: 100% !important;
            width: 100% !important;
            background: #000000 !important;
            opacity: 0.9 !important;
        }
        .btn_popup
        {
            text-decoration: none;
            letter-spacing: 0.5px;
            padding: 5px 16px;
            text-transform: uppercase;
            background-color: #ffcb05;
            color: #000 !important;
            font-size: 15px;
        }
        .btn_popup:hover
        {
            background: #002a54;
        }
        .popup_text
        {
            font-size: 14px;
            color: #000;
        }
        .counter-section
        {
            margin-top: 0px;
            margin-bottom: 0px;
            padding-top: 20px;
            padding-bottom: 20px;
        }
        .counter-section .pbminfotech-ele-fid-style-9 .pbmit-fid-inner
        {
            color: #082c53;
            font-size: 36px;
            margin-bottom: 0px;
            line-height: 40px;
        }
        .counter-section .pbmit-fid-title
        {
            color: #082c53;
            font-size: 15px;
        }
        .css-button
        {
            color: #b11111;
            font-size: 16px;
            border-radius: 10px;
            border: solid 2px #b11111; 
            text-decoration: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            font-family: Arial;
            background: linear-gradient(180deg, #e3e3e3 10%, #b1b1b1 100%);
            display: inline-flex;
            align-items: center;
            padding: 0;
        }
        .css-button:hover
        {
            background: linear-gradient(180deg, #b1b1b1 10%, #e3e3e3 100%);
            border: 2px solid #b11111;
            color: #b11111;
        }
        .css-button .css-button-text
        {
            font-family: 'Bebas Neue' , cursive !important;
            position: relative;
            padding: 3px 18px;
            font-size: 23px;
            width: 100%;
            text-align: center;
        }
        .css-button .css-button-icon
        {
            position: relative;
            border-right: 1px solid #ffffff29;
            box-shadow: inset rgb(0 0 0 / 14%) -1px 0 0;
            padding: 6px 10px;
            color: #fff;
            background: #b11111;
        }
        .css-button1
        {
            color: #4c4545;
            font-size: 16px;
            border-radius: 10px;
            border: solid 2px #4c4545; 
            text-decoration: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            font-family: Arial;
            background: linear-gradient(180deg, #e3e3e3 10%, #b1b1b1 100%);
            display: inline-flex;
            align-items: center;
            padding: 0;
        }
        .css-button1:hover
        {
            background: linear-gradient(180deg, #b1b1b1 10%, #e3e3e3 100%);
            border: 2px solid #4c4545;
            color: #4c4545;
        }
        .css-button1 .css-button-text
        {
            font-family: 'Bebas Neue' , cursive !important;
            position: relative;
            padding: 3px 18px;
            font-size: 23px;
            width: 100%;
            text-align: center;
        }
        .css-button1 .css-button-icon
        {
            position: relative;
            border-right: 1px solid #ffffff29;
            box-shadow: inset rgb(0 0 0 / 14%) -1px 0 0;
            padding: 6px 10px;
            color: #fff;
            background: #4c4545;
        }
        .css-button2
        {
            color: #002a54;
            font-size: 16px;
            border-radius: 10px;
            border: solid 2px #002a54; 
            text-decoration: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            font-family: Arial;
            background: linear-gradient(180deg, #e3e3e3 10%, #b1b1b1 100%);
            display: inline-flex;
            align-items: center;
            padding: 0;
        }
        .css-button2:hover
        {
            background: linear-gradient(180deg, #b1b1b1 10%, #e3e3e3 100%);
            border: 2px solid #002a54;
            color: #002a54;
        }
        .css-button2 .css-button-text
        {
            font-family: 'Bebas Neue' , cursive !important;
            position: relative;
            padding: 3px 18px;
            font-size: 23px;
            width: 100%;
            text-align: center;
        }
        .css-button2 .css-button-icon
        {
            position: relative;
            border-right: 1px solid #ffffff29;
            box-shadow: inset rgb(0 0 0 / 14%) -1px 0 0;
            padding: 6px 10px;
            color: #fff;
            background: #002a54;
        }
        .css-button3
        {
            color: #152a00;
            font-size: 16px;
            border-radius: 10px;
            border: solid 2px #152a00; 
            text-decoration: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            font-family: Arial;
            background: linear-gradient(180deg, #e3e3e3 10%, #b1b1b1 100%);
            display: inline-flex;
            align-items: center;
            padding: 0;
        }
        .css-button3:hover
        {
            background: linear-gradient(180deg, #b1b1b1 10%, #e3e3e3 100%);
            border: 2px solid #152a00;
            color: #152a00;
        }
        .css-button3 .css-button-text
        {
            font-family: 'Bebas Neue' , cursive !important;
            position: relative;
            padding: 3px 18px;
            font-size: 23px;
            width: 100%;
            text-align: center;
        }
        .css-button3 .css-button-icon
        {
            position: relative;
            border-right: 1px solid #ffffff29;
            box-shadow: inset rgb(0 0 0 / 14%) -1px 0 0;
            padding: 6px 10px;
            color: #fff;
            background: #152a00;
        }
        .css-button4
        {
            color: #c59c02;
            font-size: 16px;
            border-radius: 10px;
            border: solid 2px #c59c02; 
            text-decoration: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            font-family: Arial;
            background: linear-gradient(180deg, #e3e3e3 10%, #b1b1b1 100%);
            display: inline-flex;
            align-items: center;
            padding: 0;
        }
        .css-button4:hover
        {
            background: linear-gradient(180deg, #b1b1b1 10%, #e3e3e3 100%);
            border: 2px solid #c59c02;
            color: #c59c02;
        }
        .css-button4 .css-button-text
        {
            font-family: 'Bebas Neue' , cursive !important;
            position: relative;
            padding: 3px 18px;
            font-size: 23px;
            width: 100%;
            text-align: center;
        }
        .css-button4 .css-button-icon
        {
            position: relative;
            border-right: 1px solid #ffffff29;
            box-shadow: inset rgb(0 0 0 / 14%) -1px 0 0;
            padding: 6px 10px;
            color: #fff;
            background: #c59c02;
        } */
        
        
              
        

	
	
