body {
    background-image: url('../images/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: 'Rubik', system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

a {
    text-decoration: none;
}

.text-navy {
    color: #001f3f !important;
}

.font-montserrat {
    font-family: 'Montserrat', sans-serif !important;
}

/*      HEADER SECTION       */

.Header-social-icon i {
  height: 30px;
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;

  background: rgba(255, 255, 255, 0.2); 
  backdrop-filter: blur(6px); 
  -webkit-backdrop-filter: blur(6px); 
  border: 1px solid rgba(255, 255, 255, 0.329); 
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);

  color: #fff; 
  transition: all 0.3s ease;
}

.Header-social-icon i:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}



#mainNavigation a {
    font-family: 'Montserrat', sans-serif;
    color: #001f3f !important;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navbar {
    background-color: #fcc31c;
    border-bottom: 3px solid #001f3f;
}

.dropdown-menu {
    background: #ffffff;
    border-radius: 1rem;
}

.dropdown-item:focus,
.dropdown-item:hover {
    color: var(--bs-dropdown-link-hover-color);
    background-color: #fcc31c !important;
    color: #000000 !important;
    text-shadow: 1px 1px 2px rgba(3, 0, 0, 0.4)
}

.dropdown-item {
    font-size: 13px !important;
}

.nav-item a:hover {
    color: #001f3f !important;
    border-radius: 3rem;
    text-shadow: 1px 1px 2px rgba(3, 0, 0, 0.4)
}

.nav-item {
    min-width: 9vw;
}

.nav-item .nav-link {
    color: #001f3f !important;
}

#mainNavigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 123;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.726) 0%,rgba(0, 0, 0, 0.51) 50%, rgba(0, 0, 0, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a6000000', endColorstr='#00000000', GradientType=0);
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

/*      HERO SECTION         */

.carousel-control-next, .carousel-control-prev {
    opacity: 1;
}
.carousel-control-next i, .carousel-control-prev i {
    width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fcc31c;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}




.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
        text-shadow: 3px 2px 1px #000;
}

.hero-content h5 {
    font-weight: 1000;
    color: #fff;
    -webkit-text-stroke: 1.5px rgb(0, 0, 0);
    text-shadow: 0 0 100px rgba(27, 1, 1, 0.6);
    font-size: 1.5rem !important;
}

.line {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid white;
    width: 0;
    animation: typing 1s steps(15, end) forwards, blink 0.7s infinite;
}

.line1 {
    font-size: 40px;
}

.line2 {
    animation-delay: 1.2s;
    font-size: 50px;
}

.line3 {
    animation-delay: 2.4s;
    font-size: 60px;
}

@media (max-width: 575.98px) {
    .line1 {
        font-size: 25px;
    }

    .line2 {
        animation-delay: 1.2s;
        font-size: 35px;
    }

    .line3 {
        animation-delay: 2.4s;
        font-size: 45px;
    }

    .hero-content h5 {
        font-size: 20px !important;
    }

    .right-content {
        text-align: center !important;
    }
}

@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

/*      ABOUT US SECTION      */

.about {
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.icon {
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
}

.icon:hover {
    transform: scale(1.2);
}

/*      ICON BAR         */

.icon-bar {
    border: 3px solid #fcc31c;
    border-radius: 200px;
}

@media (max-width: 575.98px) {
    .icon-bar {
        border: 3px solid #fcc31c;
        border-radius: 100px;
    }
    .facilities,
    .directions{
        margin-left: 1rem;
    }
}

/*      PRINCIPAL'S MESSAGE      */

.testimonial-card {
    background: rgba(255, 255, 255, 0.25) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 3rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.testimonial-img {
    border-radius: 12rem;
    min-height: 400px;
    width: 100%;
}

.testimonial-card h2 {
    border-bottom: 3px solid #fcc31c;
}

/*      NEWS & EVENTS SECTION         */

.news-card {
    overflow: hidden;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    height: 100%;
    max-height: 500px;
    border-bottom: 3px solid #fcc31c;
    background: rgba(255, 255, 255, 0.25) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border-radius: 2.5rem;
    /* box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1); */
}

.news-card img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.date-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #eaeaea;
    color: #000000;
    padding: 6px 12px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
}

.news-card-body {
    padding: 15px;
}

/*    GALLERY SECTION    */

.quick-box {
    min-height: 200px;
}

.quick-box .center-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    z-index: 3;
    opacity: 0.8;
}

.quick-box i {
    font-size: 1.2rem;
    color: #fcc31c;
}

.card-img-bg {
    transition: transform 0.4s ease;
}

.card-mask {
    position: absolute;
    inset: 0;
    background-color: rgba(1, 15, 1, 0.6);
    z-index: 2;
    transition: background-color 0.3s ease;
}

.latest-album {
    border-left: 4px solid #fcc31c !important;
    padding: 1rem;
    border-radius: 3.5rem;
    background: rgba(255, 255, 255, 0.25) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 3rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.quick-box:hover .card-img-bg {
    transform: scale(1.05);
}

.quick-box:hover .card-mask {
    background: rgba(255, 255, 255, 0.25) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.quick-box:hover p,
.quick-box:hover h5,
.quick-box:hover i,
.quick-box:hover a {
    color: black !important;
    font-weight: 600;
}

@media (max-width: 768px) {
    .quick-box {
        margin-bottom: 1rem;
    }
}

/*         FOOTER SECTION      */

.footer-section {
    background: url("../images/footer-bg.png");
    background-size: cover;
    position: relative;
}

.footer-cta {
    border-bottom: 2px solid #001f3f;
}

.single-cta i {
    color: #001f3f;
    font-size: 30px;
    float: left;
}

.cta-text {
    margin-top: 5rem;
}

.cta-text h4 {
    color: #001f3f;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 2px;
}

.cta-text span {
    color: #757575;
    font-size: 15px;
}

.footer-content {
    border-bottom: 2px solid #001f3f;
    margin-bottom: 1rem;
}

.footer-logo img {
    max-width: 350px;
}

.footer-text p {
    margin-bottom: 14px;
    font-size: 14px;
    color: #7e7e7e;
    line-height: 28px;
}

.footer-social-icon span {
    color: #001f3f;
    font-family: 'Montserrat', sans-serif;
    display: block;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-social-icon i {
    height: 40px;
    width: 40px;
    line-height: 38px;
    
}

.footer-widget-heading h3 {
    font-family: 'Montserrat', sans-serif;
    color: #001f3f;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-widget ul {
    display: grid;
    /* grid-template-columns: repeat(2, 1fr); */
    gap: 12px;
}

.footer-widget ul li a:hover {
    color: #000000;
}

.footer-widget ul li a {
    color: #878787;
}

.subscribe-form {
    border: 2px solid #001f3f;
}

.subscribe-form input {
    width: 100%;
    padding: 14px 28px;
    background: #001f3f;
    border: 1px solid #2E2E2E;
    color: #fff;
}

.subscribe-form button {
    background: #ff5e14;
    padding: 13px 20px;
    border: 2px solid #ff5e14;
}

.subscribe-form button i {
    color: #fff;
    font-size: 22px;
    /* transform: rotate(-6deg); */
}


.copyright-area {
    background: #001f3f;
    padding: 20px;
}

.copyright-text p {
    margin: 0;
    font-size: 14px;
    color: #878787;
}

.copyright-text p a {
    color: #ff5e14;
}

.footer-menu li:hover a {
    color: #ff5e14;
}

.footer-menu li a {
    font-size: 14px;
    color: #878787;
}

/*      BUTTONS       */

.more-btn {
    background: #fcc31c;
    color: #001f3f;
    border-radius: 30px;
    padding: 8px 20px;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease;
    font-weight: bold;
    color: #003366;
    background-color: #fcc31c;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #001f3f;
}

.more-btn:hover {
    color: #001f3f;
    transform: translateY(-4px);
}

/*      SHAPES        */

.shape, .bg-shape, .news-shape {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.floating-shape, .floating-circle {
    position: absolute;
    border-radius: 50%;
    animation: pulse 6s ease-in-out infinite;
    z-index: 0;
}

/*      About Us Section    */

.shape-1 {
    top: -50px;
    left: -100px;
    width: 350px;
    height: 350px;
    animation: float1 10s ease-in-out infinite;
}

.shape-2 {
    bottom: 40px;
    right: -100px;
    width: 300px;
    height: 300px;
    animation: float2 12s ease-in-out infinite;
}

.floating-shape {
    bottom: -60px;
    right: -60px;
    width: 150px;
    height: 150px;
    background: rgba(13, 110, 253, 0.15);
}

/*      Msgs Section        */

.shape-top {
	top: 20px;
	left: -40px;
	width: 400px;
	animation: float1 12s ease-in-out infinite;
}

.shape-bottom {
    bottom: 20px;
    right: -150px;
    width: 450px;
    animation: float2 14s ease-in-out infinite;
}

.floating-circle {
    top: -30px;
    right: -40px;
    width: 180px;
    height: 180px;
    background: rgba(13, 110, 253, 0.1);
}

.floating-circle.yellow {
    background: rgba(255, 193, 7, 0.4);
    left: -40px;
    top: -20px;
}

/*      News Section       */

.shape-left {
	top: 20px;
	left: -80px;
	width: 350px;
	animation: float1 12s ease-in-out infinite;
}

.shape-right {
	bottom: 50px;
	right: -100px;
	width: 400px;
	animation: float2 14s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(20px) rotate(-10deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
}

/*      PAGE      */

.hero-banner {
    background: linear-gradient(to right, #010101ba, #010101ba), url('../images/Page-Header-Bg.png') center center / cover no-repeat;
    /* background: linear-gradient(to right,#010101ba, #010101ba), url('Assets/IMG_0602.JPG') center center / cover no-repeat; */
    /* background: linear-gradient(to right, #01010100, #01010100), url('Assets/pexels-padrinan-194096.jpg') center center / cover no-repeat; */

    height: 450px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro {
    position: relative;
}


/*news Notice start*/

.nallurl {
    float: right;
    display: inline-block;
    margin-top: 0px;
}

.nupdatetext {
    display: inline-block;
}

.photo-glry-main,
#news-h,
.nupdate-on,
.nfullmain,
.nfullother,
.notherbg {
    width: 100%;
    float: left;
}

#news-h {
    text-align: center;
    font-size: 16px;
    width: 100%;
    float: left;
}

#news-h span {
    font-weight: bold;
}

.nfullmain,
.nfullother {
    background: #fcc31c;
    text-align: center;
    font-size: 18px;
    color: #282828;
    padding: 5px 0px;
}

#ctl00_ContentPlaceHolder1_lblNotice hr {
    border-top: 1px solid #e8e8e8;
    margin: 0px;
    padding: 0px;
    display: none
}

.nupdate-on {
	padding: 20px 30px;
	margin: 5px 0px;
	color: #282828;
	border: 1px solid rgba(62, 64, 149, 0.17);
	background: #fff;
	border-radius: 100px;
}

.noticeDynamic {
    float: left;
    width: 100%;
    text-align: right;
    background: #fff;
}

.noticeDynamic a {
    display: inline-block;
    margin: 5px;
}

a.nallmoretext {
    float: right;
    color: #767a78;
    font-size: 16px;
    text-align: center;
    display: inline-block;
    padding: 5px 10px;
    border: 1px solid #dedfed;
}

.nupdate-on .nheadingtext {
    color: #282828;
    font-weight: normal;
    display: inline-block;
    max-width: 83%;
    padding: 0 6px;
}

.notherbg {
    border: 1px solid #d9d9d9;
    padding: 10px;
    margin: 8px 0px;
    background: #fff;
}

.notherbg {
    margin: 8px 0px;
}

.headingI {
    float: left;
    font-weight: 500;
    padding: 0px 0 0px 0;
    text-transform: uppercase;
    font-size: 17px;
    width: 100%;
    text-align: center;
}

.notherbg:first-child {
    margin: 16px 0px 8px 0px;
}

.nupdatetext {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 11px;
    color: #ff5e14;
}

a.all-news-sub1 {
    font-weight: normal;
    color: #282828;
    font-size: 16px;
}

a.all-news-sub1:hover {
    color: #f39041;
}

#main_notice {
    width: 100%;
    float: left;
    margin-bottom: 16px;
}

.nfullmain-container {
    border: 1px solid #d9d9d9;
    width: 100%;
    float: left;
}

.nfullhead-text,
.nfullNot-Data {
    width: 100%;
    float: left;
    padding: 10px;
    background: #fff;
}

a.readMore {
    transition: all .5s;
   background: #fcc31c;
    color: #fff !important;
    height: 40px;
    text-align: center;
    display: inline-block;
    line-height: 40px;
    padding: 0px 20px;
    border-radius: 20px;
}

a.readMore:hover {
    background: #ff5e14;
}