
:root {
  --primary-color: #0bb04e;
  --secondary-color: #FFFFFF;
  --neutral-dark: #191818;
  --neutral-light: #FBFAF9;
  --border-radius: 8px;
  --spacing-small: 8px;
  --spacing-medium: 16px;
  --spacing-large: 32px;
  --font-family: "Poppins", serif;
  --font-size-base: 16px;
  -moz-osx-font-smoothing: grayscale;
  word-break: break-word;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;


}


/* Header Styles */
/* Main Navigation Styles */
.main-nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 2rem;
background-color: #000;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1000;
}

/* Logo Styles */
/* Logo Styles */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: translateY(-2px);
}

.logo-image {
    width: 120px;
    height: 55px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Navigation Content */
.nav-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
    justify-content: flex-end;
}

/* Menu Container */
.nav-menu-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.5rem;
}

.nav-item {
    margin: 0;
    padding: 0;
    position: relative;
}

.nav-links {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none !important;
}

.nav-links:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links:hover:before {
    width: 100%;
}

.nav-links:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Dropdown Menu Styles */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(34, 34, 34, 0.95);
    border-radius: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
    z-index: 1000;
    /* Better accessibility for keyboard users */
    pointer-events: none;
}

/* Show dropdown on hover and focus */
.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-item {
    color: var(--text-light);
    padding: 0.75rem 1.5rem;
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    /* Better text contrast */
    font-weight: 500;
}

.dropdown-item:before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(34, 34, 34, 0.2);
    transition: left 0.3s ease;
    z-index: -1;
}

.dropdown-item:hover:before,
.dropdown-item:focus:before {
    left: 0;
}

.dropdown-item:hover,
.dropdown-item:focus {
    color: #fff;
    padding-left: 2rem;
    outline: none;
}

/* Optional: Add focus indicator */
.dropdown-item:focus {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2) inset;
}
/* Navigation Actions */

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
}

/* Buttons */
.login-button, .admission-button {
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: inline-block; /* Ensure proper button spacing */
}

.login-button {
    color: #fff;
    border: 2px solid #333;
    background: transparent;
}

.admission-button {
    background: var(--primary-color, #0bb04e);
    color: #fff;
    border: none;
}

.login-button:hover, .admission-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(11, 176, 78, 0.2);
    color: #fff;
}



/* Mobile Menu Toggle */
.menu-toggle {
    display: none; /* Hidden by default on desktop */
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
}

.menu-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
}

/* Mobile Menu Container */
.nav-menu-line-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    padding: 2rem;
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.nav-menu-line-container.active {
    transform: translateX(0);
    display: block;
}

/* Mobile Menu Animation */
.menu-toggle.active .menu-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active .menu-line:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .menu-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}


/* Responsive Design */

@media (max-width: 1024px) {
    .nav-menu-container {
        display: none;
    }

    .nav-actions {
        gap: 0.5rem;
    }

    .login-button, .admission-button {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    /* Mobile Menu Active State */
    .nav-menu-container.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #000;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu-container.active .nav-menu {
        flex-direction: column;
        width: 100%;
    }

    .nav-menu-container.active .nav-item {
        width: 100%;
        text-align: center;
    }

    .nav-menu-container.active .nav-link {
        display: block;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .main-nav {
        padding: 0.75rem 1rem;
    }

    .logo-image {
        width: 100px;
    }
}
/* Dropdown Styling */
.dropdown-menu {
    background-color: #000;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
    color: #fff;
    padding: 10px 15px;
    transition: background-color 0.3s ease;
}

.dropdown-item:hover {
    background-color: #0bb04e;
}

/* Responsive adjustments for dropdown */
@media (max-width: 1024px) {
    .dropdown-menu {
        position: absolute;
        z-index: 1000;
        width: 100%;
    }
}
        /* Toolbar Styles */
        .toolbar {
            position: fixed;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            z-index: 1000;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            padding: 10px;
            font-family: "Poppins", serif;
        }

        .toolbar-toggle {
            background: #fff;
            border: none;
            padding: 15px;
            cursor: pointer;
            border-radius: 8px;
            margin-bottom: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .expand-icon {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .expand-top,
        .expand-bottom {
            width: 20px;
            height: 2px;
            background: #333;
            display: block;
            transition: transform 0.3s ease;
        }

        .toolbar-buttons {
            position: relative;
            background: #000;
            border-radius: 12px;
            padding: 15px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

        .active-indicator {
            position: absolute;
            left: 0;
            width: 4px;
            height: 40px;
            background: #0bb04e;
            border-radius: 0 4px 4px 0;
            transition: top 0.3s ease, background-color 0.3s ease;
        }

        .buttons-wrapper {
            margin-bottom: 10px;
        }

        .buttons-wrapper:last-child {
            margin-bottom: 0;
        }

        .toolbar-button {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            padding: 12px 15px;
            border: none;
            background: transparent;
            color: #fff;
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        /* Button Icons and Text */
        .button-text {
            font-size: 14px;
            margin-right: 15px;
            white-space: nowrap;
            opacity: 1;
            transition: opacity 0.3s ease;
        }

        .button-icona {
            position: relative;
            display: inline-block;
        }

        .button-icona img {
            width: 26px;
            height: 26px;
            object-fit: contain;
        }

        /* Tooltip Styles */
        .button-icona::after {
            content: attr(data-tooltip);
            position: absolute;
/*            bottom: 100%;*/
            right: 50%;
            transform: translateX(-50%);
            padding: 12px 15px;
            background-color: #fff;
            color: #0bb04e;
            font-size: 15px;
            border-radius: 20px;
/*            border: 1px solid #333;*/
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            pointer-events: none;
            margin-bottom: 8px;
        }

        .button-icona:hover::after {
            opacity: 1;
            visibility: visible;
        }

        /* Hover Effects */
        .buttons-wrapper:nth-child(2) .toolbar-button:hover {
            background: #0bb04e;
        }

        .buttons-wrapper:nth-child(3) .toolbar-button:hover {
            background: #ff6b6b;
        }

        .buttons-wrapper:nth-child(4) .toolbar-button:hover {
            background: #4ecdc4;
        }

        .buttons-wrapper:nth-child(5) .toolbar-button:hover {
            background: #45b7d1;
        }

        .buttons-wrapper:nth-child(6) .toolbar-button:hover {
            background: #9b59b6;
        }

        .buttons-wrapper:nth-child(7) .toolbar-button:hover {
            background: #f47d07;
        }

        /* Collapsed State */
        .toolbar-buttons.collapsed {
            transform: translateX(100%);
            opacity: 0;
            pointer-events: none;
        }

        /* Toggle Button Expanded State */
        .toolbar-toggle.expanded .expand-top {
            transform: rotate(-45deg) translate(-2px, 2px);
        }

        .toolbar-toggle.expanded .expand-bottom {
            transform: rotate(45deg) translate(-2px, -2px);
        }

        /* Media Queries */
        @media (max-width: 768px) {
            .toolbar {
                top: auto;
                bottom: 0;
                right: 0;
                width: 100%;
                transform: none;
            }

            .toolbar-buttons {
               width: 10%;
               float: right;

            }

            .toolbar-button {
                padding: 10px;
            }

            .button-text {
                font-size: 12px;
            }

            .toolbar-toggle {
                display: none;
            }
        }
/*img {
  -ms-interpolation-mode: bicubic;
  border: 0;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}*/
/* ============ Full Page Slider ================= */
.creative-fullpage--slider{
  background-color: #ffffff;
  z-index: 2;
  width: 100%;
  position: relative;
  flex-direction: column;
  height: 100vh;
  font-size: 16px;
  display: flex;
  clip-path: none !important;
}
.creative-fullpage--slider .slider-inner {
  background: #000;
  height: 100vh;
  position: relative;
}
.creative-fullpage--slider .swiper-slide {
  position: relative;
  display: flex;
  justify-content: center;
  text-align: left;
  flex-direction: column;
  overflow: hidden;
}
.creative-fullpage--slider .swiper-slide .slider-inner img
{
  object-fit: cover;
  width: 100%;
  height: 100vh;
}
.creative-fullpage--slider .swiper-slide .slider-inner video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.creative-fullpage--slider .swiper-slide .slider-inner .swiper-content {
  position: absolute;
  top: 22%;
  left: 50px;
  z-index: 1;
}
.creative-fullpage--slider .swiper-slide .slider-inner::after {
  content: "";
  position: absolute;
  width: 101%;
  height: 100%;
  top: 0;
  left: -1px;
  background-color: transparent;
  background-image: radial-gradient(at center right, #FFFFFF00 50%, #00000096 100%);
}
.swiper-slide .slider-inner .swiper-content .title-area .tag {
  color: #ffffff;
  font-weight: 900;
  font-size: 24px;
  margin-bottom: 10px;
  margin-top: 0px;
}
.swiper-slide .slider-inner .swiper-content .title-area .title {
  margin-top: 50px;
  color: #fff;
  font-size: 6vw;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 50px;
  margin-left: -12px;
  text-decoration: none;
}
.swiper-slide .slider-inner .swiper-content p.disc {
  font-size: 20px;
  width: 100%;
  margin-top: 15px;
  margin: 20px 0px 40px 0px;
  font-weight: 400;
  line-height: 32px;
  color: #FFFFFFB0;
}
.creative-btn--wrap .creative-slide--btn {
  color: #ffffff;
  margin-left: 18px;
  font-size: 1.4em;
  transition: margin-left 300ms cubic-bezier(0.49, 0, 0.01, 1);
  font-weight: 400;
  display: inline-flex;
  position: relative;
  white-space: nowrap;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  user-select: none;
  outline: none;
  outline-color: transparent;
  box-shadow: none;
  will-change: transform;
  backface-visibility: hidden;
}

.creative-btn--circle .circle {
  position: absolute;
  right: calc(100% - 10px);
  top: 0;
  bottom: 0;
  margin: auto;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  clip-path: circle(25% at 50% 50%);
  transition: clip-path 500ms cubic-bezier(0.49, 0, 0.01, 1);
}
.creative-btn--circle .circle .circle-fill {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 100%;
  background-color: #ffffff;
  will-change: transform;
  transform: scale(0);
  z-index: 1;
  transition: transform 500ms cubic-bezier(0.49, 0, 0.01, 1), background-color 500ms cubic-bezier(0.49, 0, 0.01, 1);
}
.creative-btn--circle .circle-icon {
  transform: translate(-100%, 0%);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  z-index: 2;
  transition: all 500ms cubic-bezier(0.49, 0, 0.01, 1);
}
.creative-btn--circle .circle-icon .icon-arrow{
  width: 20px;
  height: 20px;
  stroke: none;
  fill: #000;
}
.creative-btn--circle .circle-outline {
  fill: transparent;
  width: 10px;
  stroke: #ffffff;
}
.creative-btn--wrap .creative-slide--btn .creative-btn--label {
  margin-left: 4pt;
  transition: transform 500ms cubic-bezier(0.49, 0, 0.01, 1);
}
.creative-btn--wrap .creative-slide--btn .creative-btn__border {
  position: absolute;
  left: 4pt;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transform-origin: right;
  transition: transform 500ms cubic-bezier(0.49, 0, 0.01, 1);
}
.creative-btn--wrap .creative-slide--btn:hover .creative-btn--label {
  transform: translateX(18px);
}
.creative-btn--wrap .creative-slide--btn:hover .creative-btn__border {
  transform: scale(0, 1);
}
.creative-btn--wrap .creative-slide--btn:hover{
  margin-left: 38px !important;
}
.creative-btn--wrap .creative-slide--btn:hover .circle {
  clip-path: circle(50% at 50% 50%);
}
.creative-btn--wrap .creative-slide--btn:hover .circle-fill {
  transform: scale(1, 1);
}
.creative-btn--wrap .creative-slide--btn:hover .circle-icon {
  transform: translate(0%, 0%);
  opacity: 1;
}
.creative-fullpage--slider .swiper-container-h .swiper-button-next,
.creative-fullpage--slider .swiper-container-h .swiper-button-prev {
  bottom: 5%;
  top: unset;
  transform: scale(1);
  transition: all 0.4s;
  background-color: #FFFFFF00;
  backdrop-filter: blur(20px);
  height: 85px;
  width: 85px;
  line-height: 85px;
  border-radius: 50%;
  transition: all 0.4s;
}
.creative-fullpage--slider .swiper-container-h .swiper-button-next {
  right: 50px;
}
.creative-fullpage--slider .swiper-container-h .swiper-button-prev {
  left: 50px;
}
.swiper-container-h .slider-pagination-area {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: unset;
  right: unset;
  bottom: 80px;
  left: 50% !important;
  transform: translateX(-50%);
  width: 500px;
  z-index: 1;
}
.swiper-container-h .slider-pagination-area .slide-range {
  font-size: 16px;
  font-weight: 500;
  margin: 0 15px;
  color: #ffffff;
  line-height: 0;
  position: absolute;
  font-size: 20px;
}
.swiper-container-h .slider-pagination-area .slide-range.one {
  left: -50px;
}
.swiper-container-h .slider-pagination-area .slide-range.three {
  right: -50px;
}
.swiper-container-h .slider-pagination-area .swiper-pagination {
  bottom: 0 !important;
  width: 500px !important;
}
.swiper-container-h .slider-pagination-area .swiper-pagination .swiper-pagination-progressbar-fill {
  background: #ffffff;
}
.swiper-container-h .swiper-button-next::after {
  content: "\f061";
  font-family: var(--fa-style-family, "Font Awesome 6 Free");
  font-weight: var(--fa-style, 900);
  background: none;
  color: #ffffff;
  font-size: 60px;
}
.swiper-container-h .swiper-button-prev::after {
  content:"\f060";
  font-family: var(--fa-style-family, "Font Awesome 6 Free");
  font-weight: var(--fa-style, 900);
  background: none;
  color: #ffffff;
  font-size: 60px;
}
.swiper-container-h .swiper-button-next:hover,
.swiper-container-h .swiper-button-prev:hover {
  background: #FFFFFF0D;
}


/* ====================== Responsive Ipad =============================== */
@media (max-width: 991px) {
  .creative-fullpage--slider .swiper-slide .slider-inner .swiper-content{
    width: 100%;
    text-align: center;
    left: 0;
  }
  .creative-fullpage--slider .swiper-container-h .swiper-button-next,
  .creative-fullpage--slider .swiper-container-h .swiper-button-prev {
    height: 50px;
    width: 50px;
    line-height: 50px;
  }
  .swiper-container-h .slider-pagination-area{
    width: 200px !important;
  }
  .swiper-container-h .swiper-button-next::after,
  .swiper-container-h .swiper-button-prev::after {
    font-size: 30px;
  }
  .creative-fullpage--slider .swiper-container-h .swiper-button-next,
  .creative-fullpage--slider .swiper-container-h .swiper-button-prev{
    background: #ffffff3b;
  }
  .swiper-container-h .slider-pagination-area .swiper-pagination {
    bottom: 0 !important;
    width: 200px !important;
  }
}

/* ====================== Responsive Iphone =============================== */
@media screen and (max-width: 767px) {
  .swiper-slide .slider-inner .swiper-content .title-area .title {
    font-size: 64px;
  }
  .swiper-slide .slider-inner .swiper-content .title-area .tag{
    margin-bottom: 0px;
  }
  .swiper-slide .slider-inner .swiper-content p.disc{
        margin: 20px auto 20px auto;
    font-size: 16px;
    width:95%;
  }
  .swiper-container-h .slider-pagination-area{
    display: none;
  }
  .swiper-slide .slider-inner .swiper-content p.disc br{
    display: none;
  }
}

/*Hero Bannner Start*/
.heros-section {
position: relative;
overflow: hidden;
color:#fff;
text-align: center;
margin-top: 0;
font-family: "Poppins", serif;
}

/* Background Image Styles */
.bg-img-heros {
background-size: cover;
background-position: center;
width: 100%;
height: 22vh;
position: relative;
}

.bg-img-heros::after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.4);
}

/* Owl Carousel Navigation */
.owl-nav .owl-prev,
.owl-nav .owl-next {
position: absolute;
top: 50%;
transform: translateY(-50%);
background-color: rgba(0, 0, 0, 0.5) !important;
color: #fff !important;
padding: 30px 20px !important;
font-size: 1.5rem;
cursor: pointer;
transition: background-color 0.3s ease;
}

.owl-nav .owl-prev {
left: 0;
}

.owl-nav .owl-next {
right: 0;
}

.owl-nav .owl-prev:hover,
.owl-nav .owl-next:hover {
background-color: rgba(0, 0, 0, 0.7) !important;
}

/* Owl Carousel Dots */
.owl-dots {
position: absolute;
bottom: 20px;
width: 100%;
text-align: center;
}

.owl-dots .owl-dot span {
background: rgba(255, 255, 255, 0.5) !important;
width: 12px !important;
height: 12px !important;
margin: 5px;
transition: all 0.3s ease;
}

.owl-dots .owl-dot.active span {
background: var(--primary-color) !important;
width: 15px !important;
height: 15px !important;
}*

/* Fade Animation */
.owl-carousel .owl-item .item {
animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
from {
    opacity: 0;
}
to {
    opacity: 1;
}
}
/* Footer */
.site-footer {
    background-color: #000;
    color: #fff;
    padding: 4rem 2rem 2rem;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-content {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    font-family: "Poppins", serif;
}

.footer-logo-section {
    max-width: 300px;
    animation: slideInLeft 0.8s ease-out;
}

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

.footer-logo-section h2 {
    margin: 1rem 0;
    font-size: 1.25rem;
    line-height: 1.4;
}

.footer-logo-section p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 0.9;
        transform: translateY(0);
    }
}

.footer-heading {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    animation: expandWidth 0.8s ease-out forwards;
    animation-delay: 0.5s;
}

@keyframes expandWidth {
    to {
        width: 60px;
    }
}

.footer-list {
    list-style: none;
    padding: 0;
}

.footer-link {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 0;
    display: inline-block;
    transition: all 0.3s ease;
    opacity: 0.9;
    position: relative;
}

.footer-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-link:hover::before,
.footer-link:focus::before {
    width: 100%;
}

.footer-link:hover,
.footer-link:focus {
    color: var(--primary-color);
    opacity: 1;
    transform: translateX(5px);
}

address {
    font-style: normal;
    line-height: 1.6;
    opacity: 0.9;
    animation: fadeInRight 0.8s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 0.9;
        transform: translateX(0);
    }
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    animation: popIn 0.5s ease-out backwards;
}

.social-links .social-link:nth-child(1) { animation-delay: 0.1s; }
.social-links .social-link:nth-child(2) { animation-delay: 0.2s; }
.social-links .social-link:nth-child(3) { animation-delay: 0.3s; }
.social-links .social-link:nth-child(4) { animation-delay: 0.4s; }

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.social-link:hover,
.social-link:focus {
    background-color: var(--primary-color);
    transform: translateY(-2px) rotate(8deg);
}

.social-link img {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.social-link:hover img {
    transform: scale(1.1);
}
/* Base footer container */
.foot_inset {
    padding: 10px;
    text-align: center;
     font-family: "Poppins", serif;
}

/* Copyright text styling */
.foot_inset .copyrights {
    margin: 0;
    display: inline-block;
    margin-right: 5px;
}

/* Base link styling */
.foot_inset a.animated-link {
    color: var(--primary-color);
    text-decoration: none;
    position: relative;

    transition: all 0.5s ease;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
}

/* Logo image setup (::after pseudo-element) */
.foot_inset a.animated-link::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: url('../img/smartxoft.png') left center no-repeat;
    background-size: contain;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Underline animation setup (::before pseudo-element) */
.foot_inset a.animated-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: right;
}

/* Hover effect for underline */
.foot_inset a.animated-link:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Hover effect for logo image */
.foot_inset a.animated-link:hover::after {
    opacity: 1;
}

/* Hover effect for padding */
.foot_inset a.animated-link:hover {
    padding-left: 30px;
}

/* Focus states for accessibility */
.foot_inset a.animated-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Active state */
.foot_inset a.animated-link:active {
    transform: scale(0.98);
}

/* Accessibility - Reduce motion if user prefers */
@media (prefers-reduced-motion: reduce) {
    .foot_inset a.animated-link,
    .foot_inset a.animated-link::before,
    .foot_inset a.animated-link::after {
        transition: none;
        animation: none;
    }
}

/* Dark mode support (if needed) */
@media (prefers-color-scheme: dark) {
    .foot_inset a.animated-link {
        color: var(--primary-color-dark, #6dbeff);
    }

    .foot_inset a.animated-link::before {
        background: var(--primary-color-dark, #6dbeff);
    }
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .foot_inset {
        padding: 15px;
    }

    .foot_inset .copyrights {
        display: block;
        margin-bottom: 5px;
    }
}

/* Add glowing effect on hover */
.copyright a.soft::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
    z-index: -1;
}

.copyright a.soft:hover::after {
    width: 120%;
    height: 120%;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .copyright,
    .copyright a.soft::before,
    .copyright a.soft::after {
        animation: none;
        transition: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-footer,
    .footer-logo-section,
    .footer-logo-section p,
    .footer-heading::after,
    address,
    .social-link,
    .copyright {
        animation: none;
    }

    .footer-link,
    .social-link {
        transition: none;
    }
}

/* Responsive Design with Animations */
@media (max-width: 1024px) {
    .nav-list {
        gap: 1.5rem;
        transition: gap 0.3s ease;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1rem;
        transition: all 0.3s ease-in-out;
    }

    /* Mobile Navigation Animation */
    .nav-list {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 1rem;
        opacity: 0;
        animation: mobileNavFade 0.5s ease forwards;
    }

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

    /* Staggered animation for nav items */
    .nav-list li {
        opacity: 0;
        animation: slideInDown 0.4s ease forwards;
    }

    .nav-list li:nth-child(1) { animation-delay: 0.1s; }
    .nav-list li:nth-child(2) { animation-delay: 0.2s; }
    .nav-list li:nth-child(3) { animation-delay: 0.3s; }
    .nav-list li:nth-child(4) { animation-delay: 0.4s; }

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

    .auth-buttons {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        animation: fadeInUp 0.5s ease forwards;
        animation-delay: 0.4s;
        opacity: 0;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .heros-section {
        min-height: 80vh;
        animation: adjustHeight 0.5s ease-out;
    }

    @keyframes adjustHeight {
        from {
            min-height: 100vh;
        }
        to {
            min-height: 80vh;
        }
    }

    .hero-title {
        font-size: 2rem;
        animation: resizeText 0.3s ease-out;
    }

    @keyframes resizeText {
        from {
            font-size: 2.5rem;
            opacity: 0;
        }
        to {
            font-size: 2rem;
            opacity: 1;
        }
    }

    /* Footer Responsive Animations */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        animation: reorganize 0.5s ease-out;
    }

    @keyframes reorganize {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .footer-logo-section {
        margin: 0 auto;
        text-align: center;
        animation: centerContent 0.4s ease-out;
    }

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

    .footer-heading,
    .footer-list,
    address {
        text-align: center;
        animation: fadeIn 0.4s ease-out;
    }

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

@media (max-width: 480px) {
    .button {
        width: 100%;
        margin-bottom: 0.5rem;
        animation: expandButton 0.3s ease-out;
    }

    @keyframes expandButton {
        from {
            width: auto;
            opacity: 0;
        }
        to {
            width: 100%;
            opacity: 1;
        }
    }
    .footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 100px;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    animation: expandWidth 0.8s ease-out forwards;
    animation-delay: 0.5s;
}

@keyframes expandWidth {
    to {
        width: 60px;
    }
}

    .auth-buttons {
        flex-direction: column;
        animation: stackButtons 0.4s ease-out;
    }

    @keyframes stackButtons {
        from {
            transform: scaleY(0);
            opacity: 0;
        }
        to {
            transform: scaleY(1);
            opacity: 1;
        }
    }

    .hero-title {
        font-size: 1.75rem;
        animation: adjustMobileText 0.3s ease-out;
    }

    @keyframes adjustMobileText {
        from {
            font-size: 2rem;
            opacity: 0;
        }
        to {
            font-size: 1.75rem;
            opacity: 1;
        }
    }
}

/* Add smooth transitions for all interactive elements */
.nav-link,
.button,
.footer-link {
    transition: all 0.3s ease;
}

/* Accessibility consideration */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}


/* start of courses section */

.course-card {
  position: relative;
  padding: 2rem;
  min-height: 312px;
  /*  background-color: #ffffff;*/
  font-family: "Poppins", serif;
  transform-style: preserve-3d;
}


.card-content {
  position: relative;
  z-index: 1;
  transform: translateZ(30px);
}

.card-titles {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.card-description {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #ffffff;
}

.content-overlay {
  position: relative;
  height: 100%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  font-family: "Poppins", serif;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
}

/* Featured Course Styles */
.featured-course {
  position: relative;
  min-height: 312px;
  background-size: cover;
  background-position: center;
  color: white;
}

.course-grid {
  height: 100%;
  margin: 0;
}

/* Preview Layer */
.course-preview {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
  padding: 0 !important;
}

/* Card Styles */
.card-icon {
  width: 47px;
  height: 47px;
  margin-bottom: 1rem;
}

.card-hover:hover .card-title {
    opacity: 0;
    transition: opacity 0.3s ease; /* smooth fade */
}

.card-hover:hover .card-icon {
    opacity: 0;
    transition: opacity 0.3s ease; 
}

/* Initially hide the "Know More" link */
.course-card .know {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Make the "Know More" link visible on hover */
.course-card:hover .know {
  opacity: 1;
  visibility: visible;
}

/* Optional styling for "Know More" */
.course-card .know a {
  text-decoration: none;
  color: #fff; /* Adjust as needed */
  font-weight: bold;
}

.course-card .know a:hover {
  text-decoration: underline;
}

.card-content {
  position: relative;
  z-index: 1;
}

.card-titles {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.card-description {
  font-size: 13px;
  line-height: 23px;
  font-weight: 300;
  color: #ffffff;
}

/* Icon Styling */
.icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow-icon {
  display: inline-block;
  stroke: currentColor;
  fill: #fff;
  width: 15px;
  height: 15px;
}

/* Card Color Variations */
.course-card-red {
  background-color: #e30613;
}

.course-card-orange {
  background-color: #f47d07;
}

.course-card-purple {
  background-color: #2f2552;
}

.course-card-gray {
  background-color: #6f6f6f;
}

.course-card-green {
  background-color: #0bb04e;
}

.course-card-black {
  background-color: #0e0e0e;
}

.course-card-rose {
  background-color: #e91e63;
}

/* Navigation Elements */
.nav-button {
  background-color: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin-top: 0px; */
  cursor: pointer;
  transition: background-color 0.3s;
}

.nav-button:hover {
  background-color: rgba(255, 255, 255, 0.25);
}
.nav-button:hover .knot svg path {
  fill: #0bb04e;
  transition: fill 0.3s ease;
}

.btn-see {
  display: flex;
  align-items: center;
  color: white;
  text-decoration: none;
  font-size: 14px;
  gap: 10px;
}

.btn-see:hover {
  opacity: 0.9;
  color:  #0bb04e;
}

/* CTA Section */
.cta-text {
 color: #0e0e0e;
    font-size: 42px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0;
    text-shadow: 0 0 #fff;
}


/* Pagination Styles */
.pagination {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 5rem;
}

.pagination-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: white;
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.pagination-dot-large {
  opacity: 1;
  width: 16px;
  height: 16px;
}

/* Utility Classes */
.w-100 {
  width: 100%;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

/* Responsive Design - Large Screens (1200px and up) */
@media (min-width: 1200px) {
  .course-card.smx {
    min-height: 640px;
  }

  .content-overlay {
    padding: 60px;
  }
}

/* Responsive Design - Medium Screens (992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .course-card.smx {
    min-height: 480px;
  }

  .content-overlay {
    padding: 45px;
  }

  .cta-text {
    font-size: 36px;
  }
}
    .card-icon {
      fill: #000000;
      animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {
      0% {
        transform: scale(1);
      }
      50% {
        transform: scale(1.2);
      }
      100% {
        transform: scale(1);
      }
    }
        .course-card {
        position: relative;
    }

    .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1;
    }

    .cta-text {
        font-size: 2.5rem;
        font-weight: bold;
         z-index: 2;
        text-align: center;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);

        /*top: 50%;
        transform: translateY(-50%);*/
    }

/* End of Course Card  */

/* Start of Newssection */
.news-events-section {
background-color: #f5f5f5;
display: flex;
flex-direction: column;
overflow: hidden;
align-items: start;
padding: 70px  70px;
}

.section-title {
color: #000;
text-transform: uppercase;
font: 700 23px/1 "Poppins", serif;
}

.main-heading {
color: #212529;
text-transform: uppercase;
margin-top: 37px;
font: 700 34px/2 "Poppins", serif;
}

.content-wrapper {
align-self: stretch;
margin-top: 29px;
width: 100%;
}

.news-grid {
gap: 20px;
display: flex;
}

.news-column {
display: flex;
flex-direction: column;
line-height: normal;
width: 65%;
}

.news-card {
background-color: #fff;
display: flex;
min-height: 584px;
flex-grow: 1;
justify-content: start;
flex-wrap: wrap;
width: 100%;
padding: 28px 10px;
}

.card-contents {
display: flex;
/* min-width: 240px; */
flex-direction: column;
justify-content: start;
flex-grow: 1;width: 45%;
/* max-width: 1171px; */
padding: 0 13px;
    
}

.latest-news-title {
color: #212529;
text-transform: uppercase;
font: 700 15px/1 "Poppins", serif;
}

.news-link {
display: flex;
margin-top: 21px;
width: 100%;
align-items: start;
justify-content: center;
text-decoration: none !important;
}

.news-container {
display: flex;
min-width: 240px;
width: 100%;
padding-bottom: 18px;
flex-direction: column;
flex: 1;

}

.image-wrapper {
background-color: #515151;
display: flex;
flex-direction: column;
}

.news-image {
aspect-ratio: 1.45;
object-fit: cover;
width: 100%;
}

.news-header {
display: flex;
margin-top: 18px;
gap: 20px;
color: #0e0e0e;
flex-wrap: wrap;
justify-content: space-between;
font: 500 20px/27px "Poppins", serif;

}


.news-title {
padding-right: 30px;
overflow: hidden;
color: black;
}

.publish-date {
color: #0e0e0e;
align-self: start;
margin-top: 14px;
font: 500 12px/1.7 "Poppins", serif;
}

.recent-news-section {display: flex;/* min-width: 240px; */flex-direction: column;flex-grow: 1;width: 55%;/* max-width: 1171px; */padding: 13px 15px;}

.recent-news-header {
display: flex;
gap: 40px 100px;
font-family: "Poppins", serif;
flex-wrap: wrap;
}

.recent-news-title {
color: #212529;
font-size: 15px;
font-weight: 700;
line-height: 1;
text-transform: uppercase;
margin: auto 0;

}

.read-more-link {
display: flex;
padding-bottom: 9px;
flex-direction: column;
font-size: 14px;
color: #0e0e0e;
font-weight: 500;
text-align: center;
line-height: 2;
justify-content: center;
flex: 1;
text-decoration: none;
}

.read-more-button {
border-radius: 170px;
display: flex;
min-width: 1px;
align-items: center;
gap: 9px;
justify-content: start;
padding: 1px 1px 1px 8px;
}

.button-text {
align-self: stretch;
margin: auto 0;
}

.button-icon {
aspect-ratio: 1;
width: 10px;
align-self: stretch;
margin: auto 0;
}

.news-item {
display: flex;
margin-top: 8px;
align-items: start;
justify-content: center;
text-decoration: none !important;
color: inherit;
}

.news-item-container {
min-width: 240px;
width: 100%;
flex: 1;
}

.news-item-grid {gap: 5px;display: flex;}

.news-thumbnail-column {display: flex;flex-direction: column;line-height: normal;width: 35%;}

.thumbnail-wrapper {background-color: #515151;display: flex;/* flex-grow: 1; */flex-direction: column;width: 100%;}

.thumbnail {aspect-ratio: 1.45;object-fit: cover;width: 100%;}

.news-content-column {display: flex;flex-direction: column;line-height: normal;width: 65%;margin-left: 20px;}

.news-content {z-index: 10;display: flex;flex-direction: column;align-self: stretch;align-items: start;font-family: "Poppins", serif;color: #0e0e0e;font-weight: 500;margin: 0 auto;}

.news-heading {
align-self: stretch;
padding-right: 28px;
overflow: hidden;
font-size: 16px;
line-height: 22px;
color: black;
}

.news-date {
font-size: 12px;
line-height: 1.7;
margin-top: 15px;
}

.news-excerpt {
margin-top: 18px;
/* width: 376px; */
max-width: 100%;
overflow: hidden;
font-size: 13px;
font-weight: 400;
line-height: 17px;
}

.events-column {
  width: 35%;
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  line-height: normal;
}

.events-card {
  background-color: #2f255c;
  display: flex;
  width: 100%;
  flex-direction: column;
  margin: 0 auto;
  padding: 26px 77px 77px 26px;
}

.view-all-link {
  align-self: flex-end;
  display: flex;
  padding-bottom: 9px;
  flex-direction: column;
  color: #fff;
  text-align: center;
  justify-content: center;
  font: 500 14px/2 "Poppins", sans-serif;
  text-decoration: none;
}

.view-all-button {
  border-radius: 170px;
  display: flex;
  min-width: 1px;
  align-items: center;
  gap: 8px;
  justify-content: start;
  padding: 1px 1px 1px 8px;
}

.view-all-text {
  align-self: stretch;
  width: 79px;
  margin: auto 0;
}
.view-all-button:hover{
  color: #0bb04e;
  text-decoration: underline;
}
.button-icon {
  color: #fff;
  font-size: 18px;
}

.events-grid {
  display: flex;
  align-items: center;
  gap: 14px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.events-grid::-webkit-scrollbar {
  display: none;
}

.event-icon-container {
  display: flex;
  min-height: 41px;
  flex-direction: column;
  justify-content: center;
  margin: auto 0;
}

.event-icon-container svg {
  width: 45px;
  height: 45px;
  cursor: pointer;
}

.event-image {
  aspect-ratio: 1.27;
  object-fit: cover;
  width: 142px;
  max-width: 100%;
  border-radius: 4px;
}

.event-details {
  margin-top: 32px;
  color: #fff;
}

.event-border {
  border-top: 2px solid #6d6686;
  padding: 20px 15px 20px 0;
}

.event-time {
  font: 500 12px/1 "Poppins", sans-serif;
  display: block;
}

.event-title {
  font: 500 17px/1.2 "Poppins", sans-serif;
  margin-top: 19px;
}

.event-description {
  font: 400 13px/24px "Poppins", sans-serif;
  margin-top: 17px;
  color: #fff;
  opacity: 0.8;
}

.event-speaker {
  font: 400 13px/2 "Poppins", sans-serif;
  margin-top: 18px;
  color: #fff;
  opacity: 0.7;
}

@media (max-width: 991px) {
  .events-column {
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
  }

  .events-card {
    padding: 20px;
  }

  .events-grid {
    scroll-snap-type: x mandatory;
  }

  .event-image {
    scroll-snap-align: center;
  }
}
/* /* <!-- End of newssection -->  */

/* /* <!-- Start of Journey -->  */
.journey-section {
background-color: #0e0e0e;
display: flex;
flex-direction: column;
overflow: hidden;
align-items: start;
padding: 86px 47px;
}

.journey-title {
color: #fff;
text-transform: uppercase;
font: 700 15px/1 "Poppins", serif;
}

.content-wrapper {
margin-top: 24px;
width: 100%;
max-width: 1732px;
}

.content-columns {
gap: 20px;
display: flex;
}

.heading-column {
display: flex;
flex-direction: column;
line-height: normal;
width: 50%;
}

.main-heading {
color: #000;
text-transform: uppercase;
font: 700 33px/52px "Poppins", serif;
}

.text-column {
display: flex;
flex-direction: column;
line-height: normal;
width: 50%;
margin-left: 20px;
}

.description {
color: #fff;
letter-spacing: 0.32px;
margin-top: 26px;
font: 400 14px/22px "Poppins", serif;
}

.cta-wrapper {
align-self: center;
display: flex;
flex-direction: column;
color: #0e0e0e;
text-align: center;
justify-content: center;
margin: 41px 0 0 105px;
font: 500 17px/28px "Poppins", serif;
}

.cta-button {
border-radius: 170px;
background-color: #0bb04e;
min-width: 185px;
padding: 12px 40px;
border: 1px solid #0bb04e;
cursor: pointer;
transition: all 0.3s ease;
}
.cta-button:hover {
  transform: translateY(-5px);
  }

@media (max-width: 991px) {
.journey-section {
padding: 20px;
}

.content-wrapper {
max-width: 100%;
}

.content-columns {
flex-direction: column;
align-items: stretch;
gap: 0;
}

.heading-column,
.text-column {
width: 100%;
margin-left: 0;
}

.main-heading {
max-width: 100%;
margin-top: 25px;
}

.description {
max-width: 100%;
margin-top: 40px;
}

.cta-wrapper {
margin-top: 40px;
}

.cta-button {
padding: 0 20px;
}
}
/* /* <!-- End of Journey -->  */

/* Facilities Section Styles */
    .facilities-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20%, 1fr));
  font-family: "Poppins", serif;
  margin: 0 auto;
}

.facility-card {
  position: relative;
  overflow: hidden;
  background: #000;
  aspect-ratio: 1;
  text-decoration: none;
  color: inherit;
}

.facility-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.facility-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.facility-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Enhanced hover effect for image */
.facility-card:hover .facility-image {
  transform: scale(1.1);
  filter: brightness(0.7);
}

.facility-title {
  position: absolute;
  bottom: 80px;
  left: 30px;
  color: #fff;
  margin: 0;
  font-size: 1.5rem;
  z-index: 11;
  transition: color 0.3s ease;
}

/* Added hover effect for title */
.facility-card:hover .facility-title {
   color: #ffd700;;
}

.facility-icon {
  position: absolute;
  bottom: 30px;
  left: 30px;
  width: 23.13px;
  height: 23.13px;
  fill: #fff;
  stroke: #fff;
  z-index: 11;
  transition: transform 0.3s ease;
}

/* Added hover effect for icon */
.facility-card:hover .facility-icon {
  transform: translateY(-5px);
}

.letter-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 11;
  text-align: center;
  width: 100%;
}

.letter-circle span {
  font-family: 'Monument Extended', sans-serif;
  -webkit-text-stroke: 1px #fff;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  text-transform: uppercase;
  font-size: 83px;
  transform: translateY(50%) rotate(-10deg);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0.2s;
  display: inline-block;
}

/* Enhanced hover effect for letter */
.facility-card:hover .letter-circle span {
  transform: translateY(0) rotate(0);
  opacity: 1;
   -webkit-text-stroke: 2px #ffd700; /* Gold color stroke */
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}


.facility-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  transition: background 0.3s ease;
}

/* Enhanced hover effects for each card */
.facility-card:nth-child(1):hover .facility-overlay {
  background: linear-gradient(to top, rgba(255, 87, 34, 0.9), rgba(255, 87, 34, 0.4));
}

.facility-card:nth-child(2):hover .facility-overlay {
  background: linear-gradient(to top, rgba(103, 58, 183, 0.9), rgba(103, 58, 183, 0.4));
}

.facility-card:nth-child(3):hover .facility-overlay {
  background: linear-gradient(to top, rgba(0, 150, 136, 0.9), rgba(0, 150, 136, 0.4));
}

.facility-card:nth-child(4):hover .facility-overlay {
  background: linear-gradient(to top, rgba(233, 30, 99, 0.9), rgba(233, 30, 99, 0.4));
}

.facility-card:nth-child(5):hover .facility-overlay {
  background: linear-gradient(to top, rgba(33, 150, 243, 0.9), rgba(33, 150, 243, 0.4));
}

.facility-card:nth-child(6):hover .facility-overlay {
  background: linear-gradient(to top, rgba(76, 175, 80, 0.9), rgba(76, 175, 80, 0.4));
}

/* Sliding highlight effect */
.facility-overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.facility-card:hover .facility-overlay::after {
  left: 100%;
}

@media (min-width: 992px) {
  .letter-circle span {
    font-size: 9.0555555556rem;
  }
}

@media (max-width: 768px) {
  .facilities-section {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .facility-title {
    font-size: 1.25rem;
    bottom: 60px;
  }

  .letter-circle span {
    font-size: 60px;
  }
}
/* start of gallery client */
/* Common Styles */
.international-campuses {
    position: relative;
    overflow: hidden;
}

.campus-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.campus-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.7s ease;
    transform: scale(1.05);
    filter: blur(4px) saturate(150%);
}

/*.international-campuses.campus-background img {
    transform: scale(1.05);
    filter: blur(4px) saturate(150%);
}*/

.campus-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    ;
    background: rgba(255, 255, 255, 0.1);
}

.campus-subtitle {
    font-size: 2rem;
    color: #000;
    font-weight: 500;
}

.campus-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
}

.campus-list {
    margin-top: 2rem;
}

.campus-item {
    margin-bottom: 0.5rem;
}

.campus-link {
    color: #0bb04e;
    font-weight: 700;
    transition: color 0.3s ease;
    font-size: 18px;
}

.item-divider,.campus-link:hover {
    color: #312d74;
}

.item-divider {
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
    transform-origin: left;
    transition: transform 0.3s ease, background-color 0.3s ease;
}


.campus-item:hover .item-divider {
    transform: scaleX(1.1);
    background-color: #0066cc;
}

@media (max-width: 991px) {
    .international-campuses {
        min-height: 400px;
    }

    .campus-title {
        font-size: 2rem;
    }
}

/* Global Partners Styles */
.global-partners {
    background-color: #000;
}

.partners-subtitle,.partners-title {
    color: #fff;
}



.partners-logos .logo {
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: grayscale(100%);
    padding: 1rem;
}

.partners-logos .col-4:hover .logo {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Animation for logos on load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 0.7;
        transform: translateY(0);
    }
}

.partners-logos .col-4 {
    animation: fadeInUp 0.6s ease forwards;
}

/* Stagger the animation for each logo */
.partners-logos .col-4:nth-child(1) { animation-delay: 0.1s; }
.partners-logos .col-4:nth-child(2) { animation-delay: 0.2s; }
.partners-logos .col-4:nth-child(3) { animation-delay: 0.3s; }
.partners-logos .col-4:nth-child(4) { animation-delay: 0.4s; }
.partners-logos .col-4:nth-child(5) { animation-delay: 0.5s; }
.partners-logos .col-4:nth-child(6) { animation-delay: 0.6s; }
.partners-logos .col-4:nth-child(7) { animation-delay: 0.7s; }
.partners-logos .col-4:nth-child(8) { animation-delay: 0.8s; }
.partners-logos .col-4:nth-child(9) { animation-delay: 0.9s; }
.partners-logos .col-4:nth-child(10) { animation-delay: 1s; }
.partners-logos .col-4:nth-child(11) { animation-delay: 1.1s; }
.partners-logos .col-4:nth-child(12) { animation-delay: 1.2s; }

/* Responsive Adjustments */
@media (max-width: 991px) {
    .international-campuses {
        min-height: 400px;
    }

    .campus-title, .partners-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .partners-logos .col-4 {
        padding: 0.5rem;
    }

    .campus-title, .partners-title {
        font-size: 1.75rem;
    }
}

/* start of Facilities Section Styles */
.excellence-section-card {
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.5s, transform 0.5s;
}

.excellence-section-card.show {
  opacity: 1;
  transform: translateY(0);
}

.excellence-section-card .card-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0,0,0);
  background: -moz-linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(255,255,255,0) 100%);
  background: -webkit-linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(255,255,255,0) 100%);
  background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(255,255,255,0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#ffffff",GradientType=1);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;

}


.excellence-section-card .card-text {
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  transform: translateY(500%);
  transition: transform 0.5s;
}

.excellence-section-card:hover .card-text {
  transform: translateY(0);
}

.excellence-section-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s;
}

.excellence-section-card:hover img {
  transform: scale(1.1);
}

@media (prefers-reduced-motion: reduce) {
  .excellence-section-card,
  .excellence-section-card .card-img-overlay,
  .excellence-section-card .card-text,
  .excellence-section-card img {
    transition: none !important;
  }
}

@media (max-width: 768px) {
  .excellence-section-card img {
    height: 250px;
  }

  .excellence-section-card .card-text {
    font-size: 1.2rem;
  }
}
/* start of Facilities Section Styles */



/*bread-crumb*/
.page-title {
    position: relative;
    padding: 185px 0 32px;
    /* min-height: 500px; */
    display: flex;
    align-items: flex-end;
}

.page-title .bg-layer {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.page-title .bg-layer:before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.06), rgba(0,0,0,0.76));
    opacity: 0.86;
}

.auto-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.content-box {
    position: relative;
    z-index: 1;
}

.page-title h1 {
    position: relative;
    font-size: clamp(48px, 5vw, 72px);
    line-height: 1.2;
    color: #fff;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
}

/* Breadcrumb Styles */
.bread-crumb {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 20px;
    margin: 0;
}

.bread-crumb li {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 18px;
    line-height: 28px;
    font-family:"Poppins", serif;
    color: #fff;
    font-weight: 500;

}

.bread-crumb li:last-child {
    margin-right: 0;
}

.bread-crumb li a {
    color: #14ff79;
    text-decoration: none;
    transition: color 0.3s ease;
}

.bread-crumb li a:hover {
    text-decoration: underline;
}

.bread-crumb li .fi {
    color: #fff;
    font-size: 14px;
    margin: 0 10px;
}

/* Remove the previous :before pseudo-element */
.bread-crumb li:before {
    display: none;
}


/* Scroll Indicator Styles */
.scroll-indicators {
    position: relative;
    z-index: 3;
    /* margin-top: 30px; */
}

.scroll-text {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Poppins", serif;

}

.scroll-text p {
    margin: 0;
    font-size: 15px;
    font-weight: 400;
    color: #fff;
}

.mouse {
    width: 21px;
    height: 35px;
    border-radius: 15px;
    border: 1px solid #fff;
    position: relative;
    overflow: hidden;
    display: inline-block;
    margin-left: 10px;
}

.mouse-roll,
.mouse-roll-shadow {
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    margin-left: -2px;
    height: 4px;
    border-radius: 4px;
    animation: mouseScroll 0.8s cubic-bezier(0.7, 0, 0.3, 1) infinite alternate;
}

.mouse-roll {
    background: #fff;
    z-index: 2;
}

.mouse-roll-shadow {
    background: #aaa;
    animation-delay: 80ms;
    z-index: 1;
}

@keyframes mouseScroll {
    from { transform: translateY(0); }
    to { transform: translateY(14px); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .page-title {
        min-height: 323px;
        padding: 1.67rem 0;
    }


}


/*<!-- about-style-five -->*/


.star-rating {
    margin-bottom: 40px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-sm-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;

}

.star-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.content-text {
    text-align: center;
    font-family: "Poppins", serif;
    color: #fff;
}

.rating-description,
.institution-description {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #333;
    font-size: 16px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .admin-content-area {
        padding: 40px 0;
    }

    .col-sm-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .star-image {
        max-width: 200px;
    }

    .content-text {
        padding: 0 15px;
    }
}

/* Optional: Add animation for star image */
.image-right .founder-card {
    width: 100%;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

.image-right .image-container {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
}

.image-right .star-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-right .star-image:hover {
    transform: scale(1.05);
}

.image-right .profile-content {
    background-color: #2ecc71;
    padding: 20px;
    color: white;
    transform: translateY(20px);
    opacity: 0;
    animation: slideUp 0.8s ease-out 0.5s forwards;
}

.image-right .profile-name {
    font-size: 20px;
    margin: 0 0 10px 0;
    position: relative;
}

.image-right .profile-name::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: white;
    animation: underline 0.8s ease-out 1s forwards;
}

.image-right .profile-title {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
}

.image-right .profile-details {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

.image-right .profile-details p {
    margin-bottom: 8px;
}

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

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes underline {
    to {
        width: 50%;
    }
}

/* Bootstrap column responsive adjustments */
@media (max-width: 768px) {
    .col-md-4 {
        padding: 15px;
    }
}

/*.know-more {*/
/*   display: inline-flex ; align-items: center; color: #fff; text-decoration: underline; font-weight: 500; margin-top: auto; font-family: "Poppins", serif;*/
/* }*/

.know-more {
    display: inline-flex;
    align-items: center;
    color: #fff;
    text-decoration: underline;
    font-weight: 500;
    margin-top: auto;
    font-family: "Poppins", serif;
    opacity: 0;
    /* transform: translateY(-101px); */
    transition: opacity 0.3s ease, transform 0.3s ease;
    position: absolute;
}

.white-filter {
  filter: invert(100%) sepia(0%) saturate(0%) brightness(200%) contrast(100%);
}

.main-arrow {
    position: absolute;
    top: 0;
    end: 0;
    margin: 1rem;
    opacity: 1; /* initially hidden */
    transition: opacity 0.3s ease; /* smooth fade-in */
}

/* When hovering over the card */
.card-hover:hover .main-arrow {
    opacity: 0; /* show on hover */
}


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

.card-hover:hover {
    transform: translateY(-10px);
}

.card-icon {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
}

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

.icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    filter: invert(1);
}

/*.know-more {*/
/*    opacity: 0;  transform: translateY(-101px); transition: opacity 0.3s ease, transform 0.3s ease; position: absolute;*/
/*}*/

.card-hover:hover .know-more { 
    opacity: 1; 
    transform: translateY(0);
    /* background: #000; */ 
    font-size: 12px; 
    text-decoration: none;
    position: absolute; 
    top: 0; 
    padding: 10px;
    width: 100%; 
    left: 0;
    z-index: 1;
    font-weight: 300;
    }

   

.know-more { 
    transform: translateY(0);
    /* background: #000; */
    font-size: 12px;
    text-decoration: none;
    position: absolute;
    top: 0;
    padding: 10px;
    width: 100%;
    left: 0;
    z-index: 1;
    font-weight: 300;
}

.arrow-icon svg,
.main-arrow svg {
    fill: #fff;
}
.main-arrow svg{
  width: 30px;
  height: 22px;
}

.main-arrow {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.card-hover:hover .main-arrow {
    opacity: 0;
}
.main-arrow svg{
  width: 30px;
  height: 30px;
}
/* End of Facilities Section Styles */

/* End of About Section Styles */
.whatson {
    padding: 20px;
    text-align: center;
    height: 100%;
    border: 1px solid #0bb04e;
    border-radius: 10px;
    transition: 0.3s;
   font-family: "Poppins", serif;
}
.whatson h3{
  text-decoration: underline;
/*  color: #0bb04e;*/
}
.whatson img {
    object-fit: cover;
    height: 192px;
    width: 100%;
    border-radius: 8px;
}

.whatson h3 {
    font-size: 1.3rem;
    color: #000;
    margin-top: 15px;
}

.whatson p a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 32px;
    font-weight: 300;
}

.whatson p a:hover {
    color: #000;
}
.whatson {
    position: relative;
    overflow: hidden;
    padding: 20px;
    text-align: center;
    height: 100%;
    border: 1px solid #607d8b;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.whatson::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(11, 176, 78, 0.1), rgba(11, 176, 78, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.whatson:hover::before {
    opacity: 1;
}

/* Option 2: Solid Color Overlay */
.helpstuds {
    position: relative;
    overflow: hidden;
    background: #2f245c;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 10px;
    border: 1px solid #0bb04e;
    text-align: center;
    transition: all 0.3s ease;
}

.helpstuds::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(227, 11, 9, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.helpstuds:hover::before {
    opacity: 1;
}

/* Make sure content stays above overlay */
.whatson *, .helpstuds * {
    position: relative;
    z-index: 2;
}

/* Option 3: Sliding Overlay */
.whatson.slide-overlay {
    position: relative;
    overflow: hidden;
}

.whatson.slide-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #4CAF50, #3F51B5);
    transition: left 0.3s ease;
    z-index: 1;
}

.whatson.slide-overlay:hover::before {
    left: 0;
}

/* Option 4: Radial Overlay */
.helpstuds.radial-overlay {
    position: relative;
    overflow: hidden;
}

.helpstuds.radial-overlay::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(227, 11, 9, 0.3) 0%, rgba(227, 11, 9, 0) 70%);
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
    z-index: 1;
}

.helpstuds.radial-overlay:hover::before {
    width: 200%;
    height: 200%;
}
/* ABOUT US Section Styling */
#ABOUT-US {
    background-color: #f8f9fa;
    color: #333;
    font-family: "Poppins", serif;
}

#ABOUT-US h2 {
    color: #2b275e;
    font-weight: bold;

}

#ABOUT-US p {
    color: #555;
    line-height: 1.6;
}

#ABOUT-US a {
    color: #2b275e;
    text-decoration: none;
    transition: color 0.3s ease;
}

#ABOUT-US a:hover {
    color: #c70011;
    text-decoration: underline;
}

/* Image styling */
#ABOUT-US img {
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Text Column Styling */
#ABOUT-US .bg-light {
    padding: 20px;
    border-radius: 8px;
    background-color: #f5f5f5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Responsive adjustments */
@media (max-width: 767px) {
    #ABOUT-US h2 {
        font-size: 1.75rem;
    }

    #ABOUT-US img {
        height: auto;
    }
}
.about-section2-2-3 {
    /* color: #fff; */
    font-size: 20px;
    border-bottom: 3px solid #048f6e;
    /* padding-bottom: 20px; */
    justify-items: end;
}
/*timeline-path*/
.achievements-container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    position: relative;
    font-family: "Poppins", serif;
}

.timeline-path {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 20px 0;
}

/* Creating the connecting line */
.timeline-path::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        #0bb04e 0%,
        #0bb04e 30%,
        #2f245c 30%,
        #2f245c 70%,
        #0bb04e 70%,
        #0bb04e 100%
    );
    z-index: 1;
}

.stat-circle {
    width: 150px;
    height: 150px;
    background: white;
    border: 3px solid #0bb04e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.stat-circle.achievement {
    border-color: #2f245c;
}

/* Hover effects */
.stat-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.stat-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 176, 78, 0.1);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-circle:hover::before {
    opacity: 1;
}

.stat-content {
    text-align: center;
    padding: 15px;
}

.stat-content h2 {
    font-size: 2.5rem;
    color: #0bb04e;
    margin: 0;
    line-height: 1;
}

.stat-content span {
    font-size: 1.5rem;
    font-weight: lighter;
}

.stat-content p {
    margin: 5px 0 0;
    font-size: 0.9rem;
    color: #414242;
}

.icon-wrapper {
    font-size: 2rem;
    color: #2f245c;
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .timeline-path {
        flex-direction: column;
        gap: 30px;
    }

    .timeline-path::before {
        width: 3px;
        height: 100%;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
        background: linear-gradient(180deg,
            #0bb04e 0%,
            #0bb04e 30%,
            #2f245c 30%,
            #2f245c 70%,
            #0bb04e 70%,
            #0bb04e 100%
        );
    }
}

@media (max-width: 576px) {
    .stat-circle {
        width: 120px;
        height: 120px;
    }

    .stat-content h2 {
        font-size: 2rem;
    }

    .stat-content p {
        font-size: 0.8rem;
    }
}

/*Publicdisclosure*/
/* Main container fade-in animation */

/* Basic Table Styling */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-family: "Poppins", serif;
}

thead th {
    padding: 12px ;
    background-color: #0bb04e!important;
    color: white;
    font-weight: bold;
    text-align: left;
    font-size: 14px;
}

tbody td {
    padding: 12px;
    font-size: 14px;
    color: #333;
}

/* Row Hover Highlight with Fade-in Background */
tbody tr {
    transition: background-color 0.4s ease;
}

tbody tr:hover {
    background-color: #ecf0f5;
}

/* Fade-In Animation on Load */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

tbody tr {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

tbody tr:nth-child(1) { animation-delay: 0.2s; }
tbody tr:nth-child(2) { animation-delay: 0.4s; }
tbody tr:nth-child(3) { animation-delay: 0.6s; }
/* Continue for as many rows as needed */

/* Hover Zoom-In Effect */
tbody tr {
    transition: transform 0.3s ease;
}

tbody tr:hover {
    transform: scale(1.02);
}

/* Slide-In from Left on Load */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

tbody tr {
    opacity: 0;
    animation: slideIn 0.5s ease forwards;
}

/* Adjusting delay for each row */
tbody tr:nth-child(1) { animation-delay: 0.2s; }
tbody tr:nth-child(2) { animation-delay: 0.4s; }
tbody tr:nth-child(3) { animation-delay: 0.6s; }

/* Pulse Effect on Hover */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
    100% {
        transform: scale(1);
    }
}

tbody tr:hover {
    animation: pulse 0.5s ease-in-out;
}

/* Alternate Row Color Fade on Load */
@keyframes fadeInRow {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

tbody tr:nth-child(odd) {
    background-color: #f9f9f9;
    animation: fadeInRow 0.6s ease forwards;
}

tbody tr:nth-child(even) {
    background-color: #ffffff;
    animation: fadeInRow 0.6s ease 0.2s forwards;
}
@media (max-width: 768px) {
    table, thead, tbody, th, td, tr {
        display: block;
        width: 100%;
    }

    thead tr {
        display: none;
    }

    tr {
        margin-bottom: 10px;
        border: 1px solid #ddd;
    }

    td {
        text-align: left;
        padding-left: 50%;
        position: relative;
    }

    td::before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        font-weight: bold;
        text-align: left;
    }
}
.affliation-section {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.affliation-content {
    position: relative;
    opacity: 0;
    transform: scale(0.8);
    animation: bounceIn 0.6s forwards;
    margin-bottom: 30px;
    transition: box-shadow 0.3s ease;
    padding: 20px;
    font-family: "Poppins", serif;
}

/* Box Shadow Effect */
.affliation-content:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.affliation-content img {
    width: 100%;
    transition: transform 0.3s ease;
}

.affliation-content:hover img {
    transform: scale(1.05);
}

.affliation-content p {
    margin: 15px 0 10px;
    color: #333;
    font-size: 16px;
}

.affliation-content a {
    display: inline-block;
    padding: 10px 15px;
    background-color: #0bb04e;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.affliation-content a:hover {
    background-color: #312d72;
    color: #fff;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}


 /* Container Styling */
.section-container {
    max-width: 1200px;
    margin: auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: "Poppins", serif;
}

/* Section Headers */
.section-container h6 {
    color: #4CAF50;
    font-size: 1.1em;
    margin-bottom: 10px;
    border-bottom: 2px solid #3F51B5;
    display: inline-block;
    padding-bottom: 3px;
    animation: fadeInUp 0.8s ease forwards;
}

/* Paragraphs and Icon Styles */
.section-container p {
    font-size: 0.95em;
    color: #333;
    margin: 10px 0;
    line-height: 1.6;
    animation: slideIn 0.5s ease;
}

.icon {
    color: #28a745;
    margin-right: 8px;
}

/* Rules Container Styling */
/* Grid Container */
.grid-containers {
  display: grid;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
  font-family: "Poppins", serif;
}

/* Section Card Styles */
.section-card {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: slideUp 0.5s ease forwards;
  opacity: 0;
}

.section-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/* Section Container Styles */
.section {
  position: relative;
}

/* Icon Container */
.icon-containers {
  width: 40px;
  height: 40px;
  background: #e3f2fd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Heading Styles */
 .section-card h6 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

/* Paragraph Styles */
 .section-card p {
  margin-bottom: 1rem;
  color: #4a5568;
  line-height: 1.6;
  display: flex;
  align-items: start;
  gap: 0.75rem;
}

/* Font Awesome Icon Styles */
.fa {
  color: #0bb04e;
  font-size: 1rem;
  margin-top: 0.25rem;
}

/* Animation Keyframes */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes bounceInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  60% {
    transform: translateX(10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Apply Animations */
.zoomIn {
  animation: zoomIn 0.6s ease forwards;
  opacity: 0;
}

.bounceInLeft {
  animation: bounceInLeft 0.8s ease forwards;
  opacity: 0;
}

/* Staggered Animation Delays for Cards */
.section-card:nth-child(1) { animation-delay: 0.1s; }
.section-card:nth-child(2) { animation-delay: 0.2s; }
.section-card:nth-child(3) { animation-delay: 0.3s; }
.section-card:nth-child(4) { animation-delay: 0.4s; }
.section-card:nth-child(5) { animation-delay: 0.5s; }

/* Staggered Animation Delays for Items within Cards */
.section p:nth-child(1) { animation-delay: 0.2s; }
.section p:nth-child(2) { animation-delay: 0.3s; }
.section p:nth-child(3) { animation-delay: 0.4s; }
.section p:nth-child(4) { animation-delay: 0.5s; }
.section p:nth-child(5) { animation-delay: 0.6s; }
.section p:nth-child(6) { animation-delay: 0.7s; }

/* Responsive Adjustments */
@media (max-width: 768px) {
  .grid-containers {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .section-card {
    padding: 1rem;
  }

  .section-card h6 {
    font-size: 1.1rem;
  }

   .section-card p {
    font-size: 0.95rem;
  }
}

/*our staff*/
        @keyframes slideInDown {
            from {
                transform: translateY(-50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

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

        @keyframes scaleIn {
            from {
                transform: scale(0.9);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        .org-chart {
            font-family: "Poppins", serif;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            animation: fadeIn 1s ease-out;
        }

        .level {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            margin-bottom: 20px;
            position: relative;
            animation: slideInDown 1s ease-out;
        }

        .level::after {
            content: '';
            position: absolute;
            width: 2px;
            background-color: #0dc751;
            top: 100%;
            left: 50%;
            height: 20px;
        }

        .position {
            background-color: white;
            border: 2px solid #0dc751;
            border-radius: 8px;
            padding: 15px;
            margin: 10px;
            text-align: center;
            min-width: 220px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            animation: scaleIn 0.5s ease-out;
        }

        .position:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .position.principal {
            background-color: #0bb04e;
            color: white;
        }

        .position.coordinator {
            background-color: #e6ffe6;
        }

        .role {
            font-weight: bold;
            margin-bottom: 5px;
            font-size: 1.1em;
        }

        .name {
            font-size: 0.9em;
            margin-bottom: 5px;
        }

        .details {
            font-size: 0.8em;
            color: #666;
        }

        .department {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            margin: 20px 0;
            position: relative;
            animation: fadeIn 1.5s ease-out;
        }

        .department::before {
            content: '';
            position: absolute;
            width: 80%;
            height: 2px;
            background-color: #0dc751;
            top: -10px;
            left: 10%;
        }

        .teachers-section {
            width: 100%;
            margin-top: 40px;
            animation: fadeIn 2s ease-out;
        }

        .teachers-header {
            text-align: center;
            margin-bottom: 20px;
            color: #0bb04e;
            font-size: 1.5em;
            font-weight: bold;
        }

        .teachers-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            padding: 20px;
        }

        .teacher-card {
            background-color: #f8f9fa;
            border: 1px solid #0dc751;
            border-radius: 8px;
            padding: 15px;
            text-align: center;
            transition: all 0.3s ease;
            animation: scaleIn 0.5s ease-out;
        }

        .teacher-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            background-color: #e6ffe6;
        }

        .teacher-name {
            font-weight: bold;
            color: #0bb04e;
            margin-bottom: 5px;
        }

        .teacher-department {
            font-size: 0.9em;
            color: #666;
            margin-bottom: 5px;
        }

        .teacher-card .contact {
            font-size: 0.8em;
            color: #888;
            margin-top: 5px;
        }

        @media (max-width: 768px) {
            .position {
                min-width: 180px;
            }

            .teachers-container {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
        }
/* Management Starts*/

/* Add some basic styling for layout and visibility */
        /* Sidebar container */
/* Sidebar Layout */
.SidebarLayout {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.Sidebar_sidebar_wrap {
    width: 25%;
    background: #000 url(../img/plant.png); ;
    background-size: contain;
    background-position: bottom ;
    background-repeat: no-repeat;

    padding: 20px;
    font-family: "Poppins", serif;
    color: #fff; /* Set text color to white */
}

/* Scrollbar styling for sidebar */
.sidebar {
    height: 80vh;
    overflow-y: auto;
    padding-right: 15px;
    scroll-behavior: smooth;
}

/* Custom scrollbar styling */
.sidebar::-webkit-scrollbar {
    width: 12px;
    background-color: #333; /* Darker background for scrollbar */
}

.sidebar::-webkit-scrollbar-track {
    background: #444; /* Dark track */
    border-radius: 10px;
}

.sidebar::-webkit-scrollbar-thumb {
    background-color: #666;
    border-radius: 10px;
    border: 2px solid #333;
    transition: background-color 0.3s ease;
}

.sidebar::-webkit-scrollbar-thumb:hover {
    background-color: #999;
}

/* Sidebar List and Link Styling */
ul#scrollbar {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

ul#scrollbar li {
    margin: 15px 0;
}

ul#scrollbar li a {
    text-decoration: none;
    color: #fff; /* White text color */
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    transition: background-color 0.3s, color 0.3s;
    border-radius: 5px;
    position: relative;
}

ul#scrollbar li a span svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    transition: transform 0.3s;
}

/* Hover effect for sidebar links */
ul#scrollbar li a:hover {
    background-color: #333; /* Slightly lighter background on hover */
    color: #0dc751; /* Accent color on hover */
}

ul#scrollbar li a:hover span svg {
    transform: rotate(45deg);
}

/* Active link style */
.active-scroll-spy {
    color: #0dc751; /* Accent color for active state */
    background-color: #222; /* Dark background for active item */
}

/* Active link style when hovered */
ul#scrollbar li a.active-scroll-spy:hover {
    color: #0da549;
    background-color: #333; /* Lighter background on hover */
}

/* Responsive Layout Adjustments */
@media (max-width: 768px) {
    .SidebarLayout {
        flex-direction: column;
    }

    .Sidebar_sidebar_wrap {
        width: 100%;
        padding: 15px;
    }
}


/* Main Content Styling */
/* General Section Styling */
.admin-content-area {
    background-color: #f9f9f9; /* Light background */
    padding: 50px 0;
}

.theme-light {
    background-color: #ffffff;
}

/* Container Styling */
.container {
    max-width: 1200px;
    margin: 0 auto;
    font-family: "Poppins", serif;
}

/* Row and Column Styling */


.col-md-4, .col-md-8, .col-md-12 {
    flex: 1;
}

@media (max-width: 768px) {
    .col-md-4, .col-md-8 {
        flex: 100%;
    }
}

/* Image Section */
.project-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Link Styling */
.link {
    color: #007bff;
    text-decoration: none;
}

.link:hover {
    text-decoration: underline;
}

/* Animation for fading in */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(20px);
    animation: fadeInRight 1s forwards;
}

/* Animation Keyframes */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Content Section */
.project-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.project-description, .project-details {
    font-size: 16px;
    line-height: 2.5;
    color: #555;
    margin-bottom: 20px;
}


    h2.project-title:before {
    content: '';
    /* border: 1px solid #000; */
    bottom: -6px;
    position: absolute;
    height: 5px;
    width: 15%;
    /* left: 45%; */
    /* background: #0dc751; */
    /* z-index: -1; */
    margin: 0 auto;
    border-bottom: 1px solid #0dc751;
    border-top: 1px solid #0dc751;
}


strong {
    font-weight: bold;
    color: #333;
}

/* List Styling */
ul.project-links {
    list-style-type: none;
    padding: 0;
}

ul.project-links li {
    margin-bottom: 10px;
}

ul.project-links li a {
    color: #007bff;
}

ul.project-links li a:hover {
    text-decoration: underline;
}

/* For better visibility */
.content-left,
.content-details {
    opacity: 0;
    animation: fadeInUp 1s forwards;
}

.content-right {
    opacity: 0;
    animation: fadeInRight 1s forwards;
}
/*Managment Ends*/


/* Activities Starts */
.admin-content-area {
    padding: 4rem 0;
    background-color: #f8f9fa;
}
.admin-content-area-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.admin-content-area h2 {
    text-align: left;
    margin-bottom: 2rem;
    color: #333;
    font-size: 2.5rem;
}
/*.row {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}
.col-md-4 {
    flex: 0 0 33.333333%;
    padding: 15px;
    width: 100%;
    position: relative;
}*/
.globalbox1 {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}
.globalbox1:hover {
    transform: translateY(-5px);
}
.globalbox1::after {
    content: '';
    background: linear-gradient(90deg, #004e92, #000428);
    border-radius: 15px;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    clip-path: circle(10% at 0% 0%);
    transition: all 0.3s ease-in;
}
.globalbox1:hover::after {
    clip-path: circle(75%);
}
.globalcontent {
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}
.icon-container {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    opacity: 0;  /* Initially hidden */
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.globalbox1:hover .icon-container {
    opacity: 1;  /* Show the icon when hovering */
    transform: scale(1.1); /* Scale up icon */
}
.icon-container i {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.admin-content-area h2,
.globalbox1 h4,
.globalbox1 p {
    color: #333;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.globalbox1:hover p {
    color: #fff;
}
.globalbox1:hover strong ,h4 {
  color: #fff;
}
.disclaimer {
    text-align: center;
    font-style: italic;
    color: #777;
    margin-top: 2rem;
}

@media (max-width: 992px) {
    .col-md-4 {
        flex: 0 0 50%;
    }
}

@media (max-width: 768px) {
    .col-md-4 {
        flex: 0 0 100%;
    }
    .admin-content-area h2 {
        font-size: 2rem;
    }
    .globalcontent {
        padding: 1.5rem;
    }
}
/*Admission starts*/
/* Container for admission section */
.admission-section {

    padding: 25px;

    margin-bottom: 30px;
    max-width: 1200px;
    text-align: center;
    font-family: "Poppins", serif;
}

.admission-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Header styles */
.pan_grn {
    color: #2a7f4f;
    margin-bottom: 20px;
}

/* Main title */
.admission-section h2 {
    font-size: 2rem;
    font-weight: 700;

    animation: fadeIn 1s ease-in;
}

/* Sub-heading with dynamic font size */
.admission-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    animation: fadeIn 1.5s ease-in;
}

/* Paragraph styling */
.admission-section p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
    animation: slideIn 1s ease-out;
}

/* Styling for the phone list */
.admission-section ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 20px;
    text-align: center; /* Center align list items */
}

.admission-section ul li {
    font-size: 1rem;
    color: #333;
    margin: 8px 0;
    position: relative;
    padding-left: 20px;
    transition: color 0.3s ease;
}

.admission-section ul li a {
    color: #4CAF50;
    text-decoration: none;
    margin-left: 20px;
}

.admission-section ul li a:hover {
    color: #3f51b5;
}

/* Custom bullet styling for list items */
.admission-section ul li::before {
    content: "•";
    position: absolute;

    top: 0;
    color: #2a7f4f; /* Green for bullets */
}

/* Email link styling */
.admission-section a {
    color: #4CAF50;
    text-decoration: none;
}

.admission-section a:hover {
  color: #3f51b5;

}

/* Animation keyframes */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .admission-section {
        padding: 15px;
    }

    .admission-section h2 {
        font-size: 1.6rem;
    }

    .admission-section h3 {
        font-size: 1.2rem;
    }

    .admission-section p {
        font-size: 0.9rem;
    }

    .admission-section ul li {
        font-size: 0.9rem;
    }
}


/* Testimonial slider section */
.testimonial-slider {
    padding: 30px 0;
}

.testimonial-slider-wrap {
    position: relative;
    overflow: hidden;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-item {
    padding: 20px;
    text-align: center;
    background-color:#0280c2;
    border: 1px solid #fff;
    border-radius: 8px;
    box-sizing: border-box;
}

.testimonial-author-img {
    margin-bottom: 15px;
}

.testimonial-author-img img {
    border-radius: 50%;
    max-width: 100px;
    height: auto;
}

.title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
}

.title-sub {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 15px;
}

.testimonial-paragraph p {
    font-size: 1rem;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Swiper pagination controls */
.swiper-pagination {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
}

.swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background-color: #ddd;
    border-radius: 50%;
    opacity: 0.7;
    cursor: pointer;
}

.swiper-pagination .swiper-pagination-bullet-active {
    background-color: #007bff;
    opacity: 1;
}

/* Media Queries for responsiveness */
@media (max-width: 1200px) {
    .testimonial-item {
        padding: 18px; /* Slightly smaller padding */
    }

    .testimonial-author-img img {
        max-width: 90px; /* Smaller image size */
    }

    .title {
        font-size: 1.1rem; /* Adjust title font size */
    }

    .title-sub {
        font-size: 0.95rem;
    }

    .testimonial-paragraph p {
        font-size: 0.95rem; /* Slightly smaller paragraph text */
    }
}

@media (max-width: 992px) {
    .col-lg-6 {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .testimonial-item {
        padding: 15px;
    }

    .testimonial-author-img img {
        max-width: 80px;
    }

    .title {
        font-size: 1.1rem;
    }

    .title-sub {
        font-size: 0.9rem;
    }
}

/*prayer starts*/

 .pages-wrapper {
     /* max-width: 1400px;*/
    margin: 0 auto;
    padding: 2rem;
    font-family: "Poppins", serif;
    background: #000428;
    background: linear-gradient(to right, #004e92, #000428);
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
    }

.intro-section {
    text-align: center;
    margin: 3rem 0;
    perspective: 1000px;
    }

.intro-section h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: flipInX 1.5s ease-out;
    background: linear-gradient(45deg,  #1BFFFF,  #D4145A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

.intro-text {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  animation: slideInUp 1s ease-out;
 }

.prayer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    padding: 2rem 0;
}

.prayer-box {
    flex: 0 1 400px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    }

.prayer-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1));
    transform: translateY(100%);
    transition: transform 0.5s ease;
    }

.prayer-box:hover::before {
    transform: translateY(0);
    }

.prayer-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }
.day-label {
    font-size: 1.8rem;
    color: #14dd66;
    /* margin-bottom: 1.5rem;*/
    position: relative;
    display: inline-block;
  }

.day-label::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background:  #D4145A;
    transition: width 0.3s ease;
    }

.prayer-box:hover .day-label::after {
    width: 100%;
    }

.prayer-content {
    line-height: 1.8;
    opacity: 0.9;
    transform: translateY(20px);
    transition: all 0.5s ease;
    }

.prayer-box:hover .prayer-content {
    transform: translateY(0);
    opacity: 1;
    }

.tamil-text {
    font-family: 'Noto Sans Tamil', sans-serif;
    }

@keyframes flipInX {
  from {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
    }
    to {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
    }
  }

@keyframes slideInUp {
   from {
    transform: translateY(50px);
    opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

.floating {
    animation: floating 3s ease-in-out infinite;
    }

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

.glow {
    animation: glow 2s ease-in-out infinite alternate;
    }

@keyframes glow {
    from { text-shadow: 0 0 5px #fff, 0 0 10px #1BFFFF; }
    to { text-shadow: 0 0 10px #fff, 0 0 20px #D4145A; }
    }

@media (max-width: 768px) {
    .pages-wrapper {
      padding: 1rem;
      }

     .intro-section h1 {
      font-size: 2.5rem;
      }

     .prayer-box {
      flex: 0 1 100%;
      }
    }

.scroll-indicator {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background:  #4caf50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    animation: pulse 2s infinite;
  }
.scroll-indicator.show {
    opacity: 1;
    visibility: visible;
  }

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
    }

.prayer-box.reveal {
    animation: revealCard 1s ease forwards;
    opacity: 0;
    }

@keyframes revealCard {
    from {
      opacity: 0;
      transform: translateY(50px);
    }
    to {
       opacity: 1;
       transform: translateY(0);
    }
  }


/*Carrer page start*/
.career-banner{
    line-height: 1.6;
    color:  #333;
    background: #f5f7fa;
    overflow-x: hidden;
    font-family: "Poppins", serif;
 }

@keyframes slideIn {
 from {
    transform: translateY(50px);
    opacity: 0;
  }
 to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
/*
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
  }*/

.career-banner {
    background: linear-gradient(135deg, #004e92, #000428);
    color: white;
    padding: 6rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
 }

.career-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/api/placeholder/1600/400');
    opacity: 0.1;
    animation: fadeIn 2s ease-out;
 }

.career-banner h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: slideIn 1s ease-out;
    position: relative;
 }

.career-banner p {
    font-size: 1.2rem;
    animation: slideIn 1s ease-out 0.2s backwards;
    position: relative;
 }

.career-banner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
  }

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
 }

.job-cards {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    animation: floatx 6s ease-in-out infinite;
    position: relative;
    overflow: hidden;
 }

.job-cards::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #004e92, #000428);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
 }

.job-cards:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
 }

.job-cards:hover::before {
    transform: scaleX(1);
 }

.job-cards h4 {
    color:#4CAF50;
    font-size: 1.5rem;
    margin-bottom: 1rem;
 }

.job-info {
    margin: 1rem 0;
    padding-left: 1rem;
    border-left: 3px solid #f0f7ff;
 }

.apply-btn {
    background: linear-gradient(90deg, #004e92, #000428);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
 }

.apply-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
 }

.apply-btn:hover::before {
    left: 100%;
 }
.apply-btn:hover{
    color: #4CAF50;
    text-decoration: none;
 }

.cta-sections {
    background: #f0f7ff;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
 }

.cta-sections::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle,#0280c2 0%, transparent 70%);
    opacity: 0.1;
    animation: rotate 20s linear infinite;
 }

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
 }

@media (max-width: 768px) {
.career-banner h1 {
    font-size: 2.5rem;
 }

.jobs-grid {
grid-template-columns: 1fr;
  }
}


/* Apply-forms section*/


/* Header Styling */
.headers {
    background: linear-gradient(135deg, #004e92, #000428);
    color: white;
    padding: 2rem;
    text-align: center;
    animation: fadeIn 1s ease-out;
    font-family: "Poppins", serif;
}

/* Form Container */
.form-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    animation: slideUp 0.8s ease-out;
}

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

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Form Section Styling */
.form-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.form-section:hover {
    border-color: #004e92;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.1);
}

.form-section h3 {
    color: #000428;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0f7ff;
}

/* Input Group Styling */
.input-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: #4a5568;
    font-weight: 500;
}

input, select, textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #004e92;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2);
}

/* File Upload Styling */
.file-upload {
    position: relative;
    display: inline-block;
    width: 100%;
}

.file-upload-label {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #f0f7ff;
    color: #004e92;
    border: 2px dashed #004e92;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
}

.file-upload-label:hover {
    background: #e1efff;
}

.file-upload input[type="file"] {
    display: none;
}

/* Submit Button */
.submits-btn {
    background: linear-gradient(90deg, #004e92, #000428);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1.1rem;
    width: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submits-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.submits-btn:hover::before {
    left: 100%;
}

/* Progress Bar */
.progress-bars {
    display: flex;
   justify-content: space-between;
   margin-bottom: 2rem;
   position: relative;
}
.progress-steps {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-number {
    width: 30px;
    height: 30px;
    background: white;
    border: 2px solid #004e92;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.progress-bars::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 2px;
    background:#004e92;
    transform: scaleX(0.33);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.step-label {
    font-size: 0.875rem;
    color: #4a5568;
}
 @media (max-width: 768px) {

.form-container {
    margin: 1rem;
    padding: 1rem;
  }

.step-label {
    font-size: 0.75rem;
            }
}


/*Contact us starts*/

.waves {
    background: #f5f6fa;
    min-height: 100vh;
    overflow-x: hidden;
    }

.waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #004e92, #000428);
    clip-path: polygon(0 0, 100% 0, 100% 40%, 0 80%);
    z-index: -1;
    }

.floating-shapes span {
    position: absolute;
    pointer-events: none;
    background: linear-gradient(45deg, #4a90e2, #00509d);
    opacity: 0.1;
    animation: float 6s linear infinite;
    }

@keyframes float {
    0% {
      transform: translateY(0) rotate(0deg);
      opacity: 0.1;
       }
      100% {
      transform: translateY(-100vh) rotate(360deg);
      opacity: 0;
      }
    }


.waves-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    position: relative;
  }

.headerr {
    text-align: center;
    color: white;
    margin-bottom: 60px;
    animation: slideDown 1s ease;
  }
@media (max-width: 1024px) {
  .headerr{
    color:#004e92;
  }
}
@media (max-width: 575px) {
  .headerr{
    color:#fff;
  }
}
@keyframes slideDown {
    from {
      transform: translateY(-100px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
      }
    }

.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    perspective: 1000px;
  }

.cards {
     background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    animation: cardFloat 3s ease-in-out infinite alternate;
  }

@keyframes cardFloat {
  from {
    transform: translateY(0) rotateX(0);
    }
  to {
    transform: translateY(-10px) rotateX(5deg);
    }
  }

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 15px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
  }

.info-item:hover {
    transform: scale(1.05);
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #004e92, #000428);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    position: relative;
    overflow: hidden;
  }

.info-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3));
    animation: shine 2s infinite;
  }

@keyframes shine {
  0% {
    transform: translateX(-100%) rotate(45deg);
  }
    100% {
    transform: translateX(100%) rotate(45deg);
  }
}

.form-group {
    margin-bottom: 25px;
    position: relative;
  }

.form-group label {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    transition: all 0.3s ease;
    pointer-events: none;
  }

.form-group textarea + label {
    top: 25px;
   }

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid transparent;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
  }

.form-group input:focus,
.form-group textarea:focus,
.form-group input:valid,
.form-group textarea:valid {
    border-color: #004e92;
    background: white;
  }

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:valid + label,
.form-group textarea:valid + label {
    top: -10px;
    left: 10px;
    background: white;
    padding: 0 5px;
    font-size: 12px;
    color: #004e92;
  }

.submit-btns {
    background: linear-gradient(45deg, #004e92, #000428);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
  }

.submit-btns::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
    }

.submit-btns:hover::before {
    left: 100%;
    }

.map {
    margin: 10px 0px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    background-size: 20px 20px;
    animation: mapMove 20s linear infinite;
    opacity: 0.8;
    }

@keyframes mapMove {
    0% {
      background-position: 0 0;
      }
    100% {
    background-position: 40px 40px;
    }
  }

@media (max-width: 768px) {
    .waves {
    height: 150vh;
    clip-path: polygon(0 0, 100% 0, 100% 40%, 0 70%);
     }

    .contact-wrapper {
      grid-template-columns: 1fr;
    }

    .cards {
      animation: cardFloat 2s ease-in-out infinite alternate;
            }
  }

/*  Reserach*/
    .title-container {
      padding: 2rem 0;
/*      max-width: 1200px;*/
      margin: 0 auto;
      font-family: "Poppins", serif;
    }

    .title {
      font-size: 2rem;
      font-weight: bold;
      margin-bottom: 2rem;
      text-align: center;
    }

    .faculty-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
/*      padding: 1rem;*/
    }

    .faculty-card {
      position: relative;
      display: block;
      background: white;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      text-decoration: none;
      color: inherit;
      transition: transform 0.3s ease;
    }

    .faculty-card:hover {
      transform: translateY(-8px);
      color: #4caf50;
    }

    .faculty-card__image {
      position: relative;
      height: 200px;
      overflow: hidden;
    }

    .faculty-card__image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Overlay colors for each card */
    .faculty-card:nth-child(1) .faculty-card__image::after {
      background-color: rgba(65, 105, 225, 0.7); /* Royal Blue */
    }

    .faculty-card:nth-child(2) .faculty-card__image::after {
      background-color: rgba(46, 139, 87, 0.7); /* Sea Green */
    }

    .faculty-card:nth-child(3) .faculty-card__image::after {
      background-color: rgba(138, 43, 226, 0.7); /* Blue Violet */
    }

    .faculty-card:nth-child(4) .faculty-card__image::after {
      background-color: rgba(210, 105, 30, 0.7); /* Chocolate */
    }

    .faculty-card:nth-child(5) .faculty-card__image::after {
      background-color: rgba(220, 20, 60, 0.7); /* Crimson */
    }

    .faculty-card__image::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .faculty-card:hover .faculty-card__image::after {
      opacity: 0.7;
    }

    .faculty-card__content {
      padding: 1.5rem;
    }

    .faculty-card__header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 0.5rem;
    }

    .faculty-card__title {
      font-size: 1.125rem;
      font-weight: bold;
      margin: 0;
      padding-right: 1rem;
      color: #000;
    }

    .faculty-card__arrow {
      width: 1.5rem;
      height: 1.5rem;
      fill: currentColor;
      flex-shrink: 0;
      transform: translate(0, 0);
      transition: transform 0.3s ease;
    }

    .faculty-card:hover .faculty-card__arrow {
      transform: translate(4px, -4px);
      color: #4caf50;
    }

    .faculty-card__position {
      font-size: 0.875rem;
      color: #666;
      line-height: 1.4;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .faculty-grid {
        grid-template-columns: 1fr;
      }
    }
/*@media (max-width: 768px) {
.project-description, .project-details p{
line-height: 1.5;
}
}*/

/*Enroll Form*/

        .forms-container {
            max-width: 900px !important ;
        }

        .label_text_colors {
            color: #333;
            font-weight: 500;
        }
        .cardw {
            margin-bottom: 30px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        .cardw-header {
            background-color: #f8f9fa;
            border-bottom: 2px solid #1fb45c;
        }
        .cardw-header h3 {
            color: #1fb45c;
            margin: 0;
            padding: 10px 0;
        }
       .btn.btn-primary {
            background-color: #1fb45c;
            border-color: #1fb45c;
        }
        .cardw-body {
        flex: 1  auto;
         padding: 1rem 1rem;
        color: #2222;
        }

        .btn.btn-primary:hover {
            background-color: #198754;
            border-color: #198754;
        }

        .btn-warning {
            margin-left: 10px;
        }

        .form-groups {
            margin-bottom: 1.5rem;
        }
        .form-controls {
            border: 1px solid #ced4da;
        }
        .form-controls:focus {
            border-color: #1fb45c;
            box-shadow: 0 0 0 0.2rem rgba(31, 180, 92, 0.25);
        }
        .form-controls, .table input {
            width: 100%;
            padding: 0.375rem 0.75rem;
            border: 1px solid #ced4da;
            border-radius: 0.25rem;
        }

        /*smartclass starts*/

  .about-section {
            padding: 80px 0;
            background: linear-gradient(to right, #f8f9fa, #e9ecef);
        }

        .vision-card {
            border-radius: 15px;
            background: white;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .vision-card:hover {
            transform: translateY(-10px);
        }

        .features {
            padding: 60px 0;
            background: #fff;
        }

        .feature-card {
            border: none;
            border-radius: 15px;
            padding: 30px;
            margin: 15px 0;
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            height: 100%;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: #f8f9fa;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: #0d6efd;
        }

        .testimonial {
            font-style: italic;
            margin: 20px 0;
            padding: 20px;
            background: #f8f9fa;
            border-left: 5px solid #0d6efd;
            border-radius: 5px;
        }
/*Computer lab starts*/

.lab-header {
            background: linear-gradient(135deg, #1e3c72, #2a5298);
            padding: 100px 0;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .lab-header::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background: url('/api/placeholder/1200/400') center/cover;
            opacity: 0.1;
            animation: pulse 2s infinite;
        }


        .lab-card {
            border-radius: 15px;
            padding: 25px;
            margin: 15px 0;
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            position: relative;
            overflow: hidden;
        }

        .lab-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }

        .lab-card::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
            transform: rotate(45deg);
            transition: all 0.3s;
            opacity: 0;
        }

        .lab-card:hover::after {
            animation: shine 1.5s;
        }

        @keyframes shine {
            0% { transform: translateX(-100%) rotate(45deg); opacity: 1; }
            100% { transform: translateX(100%) rotate(45deg); opacity: 0; }
        }

        .tech-icon {
            width: 80px;
            height: 80px;
            background: #f8f9fa;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            margin: 0 auto 20px;
            transition: all 0.3s ease;
            transform-style: preserve-3d;
        }

        .lab-card:hover .tech-icon {
            transform: rotateY(180deg);
        }

        .stats-counter {
            background: #f8f9fa;
            padding: 80px 0;
            position: relative;
        }

        .counter-item {
            text-align: center;
            padding: 30px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
        }

        .counter-item::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 3px;
            bottom: 0;
            left: 0;
            background: linear-gradient(90deg, #1e3c72, #2a5298);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .counter-item:hover::before {
            transform: scaleX(1);
        }

        .feature-list {
            list-style: none;
            padding: 0;
        }

        .feature-list li {
            padding: 10px 0;
            position: relative;
            padding-left: 30px;
            transition: all 0.3s ease;
        }

        .feature-list li:before {
            content: '→';
            position: absolute;
            left: 0;
            color: #1e3c72;
            opacity: 0;
            transform: translateX(-20px);
            transition: all 0.3s ease;
        }

        .lab-card:hover .feature-list li:before {
            opacity: 1;
            transform: translateX(0);
        }

        .progress-wrapper {
            position: relative;
            padding-top: 20px;
        }

        .progress {
            height: 8px;
            border-radius: 4px;
            background: #e9ecef;
            overflow: hidden;
            position: relative;
        }

        .progress-bar {
            position: relative;
            transition: width 1.5s ease-in-out;
        }

        .floating {
            animation: floating 3s ease-in-out infinite;
        }

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

        /*library lab starts*/

        .library-header {
            background: linear-gradient(135deg, var(--library-primary), var(--library-secondary));
            padding: 120px 0;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .library-header::before {
            content: '📚';
            position: absolute;
            font-size: 200px;
            opacity: 0.1;
            right: -50px;
            top: -50px;
            animation: rotateBook 20s linear infinite;
        }

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

        .book-card {
            border-radius: 12px;
            padding: 30px;
            margin: 15px 0;
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            border-left: 5px solid var(--accent);
        }

        .book-card:hover {
            transform: translateY(-10px) rotateX(5deg);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }

        .book-icon {
            width: 70px;
            height: 70px;
            background: #faf5ef;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 20px;
            position: relative;
            overflow: hidden;
        }

        .book-icon::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.8), transparent);
            transform: translateX(-100%);
        }

        .book-card:hover .book-icon::after {
            animation: shimmer 1.5s infinite;
        }

        @keyframes shimmer {
            100% { transform: translateX(100%); }
        }

        .feature-list {
            list-style: none;
            padding: 0;
        }

        .feature-list li {
            padding: 12px 0;
            padding-left: 35px;
            position: relative;
            transition: all 0.3s ease;
        }

        .feature-list li::before {
            content: '📖';
            position: absolute;
            left: 0;
            opacity: 0;
            transform: translateX(-20px);
            transition: all 0.3s ease;
        }

        .book-card:hover .feature-list li::before {
            opacity: 1;
            transform: translateX(0);
        }

        .stats-section {
            background: #faf5ef;
            padding: 80px 0;
            position: relative;
        }

        .stats-card {
            text-align: center;
            padding: 30px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
        }

        .stats-card::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 3px;
            bottom: 0;
            left: 0;
            background: var(--accent);
            transform: scaleX(0);
            transition: transform 0.5s ease;
        }

        .stats-card:hover::before {
            transform: scaleX(1);
        }

        .page-turn {
            animation: pageTurn 1s ease-in-out infinite alternate;
        }

        @keyframes pageTurn {
            0% { transform: rotateY(0deg); }
            100% { transform: rotateY(10deg); }
        }

        .book-progress {
            height: 8px;
            border-radius: 4px;
            background: #e9ecef;
            overflow: hidden;
            margin-top: 15px;
        }

        .book-progress-bar {
            height: 100%;
            border-radius: 4px;
            background: var(--accent);
            width: 0;
            transition: width 1.5s ease;
        }

        .reading-section {
            background: linear-gradient(135deg, #faf5ef, #fff);
            padding: 60px 0;
        }

        .quote-box {
            font-style: italic;
            padding: 20px;
            border-left: 4px solid var(--accent);
            margin: 20px 0;
            background: white;
            border-radius: 0 12px 12px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transform: translateX(-20px);
            opacity: 0;
            transition: all 0.5s ease;
        }

        .book-card:hover .quote-box {
            transform: translateX(0);
            opacity: 1;
        }

        .payment-container {
            text-align: center;
            padding: 20px;
            max-width: 300px;
            margin: 0 auto;
          }

          .payment-text {
            margin-bottom: 15px;
            color: #333;
            font-size: 16px;
          }

          .down-arrow {
            margin: 10px 0;
            font-size: 24px;
            color: #666;
          }

          #rzp-button1 {
            background-color: #2563eb;
            color: white;
            padding: 12px 24px;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-size: 16px;
            transition: background-color 0.3s;
          }

          #rzp-button1:hover {
            background-color: #1d4ed8;
          }
