:root {
    --primary: #0077B6;
    --secondary: #4CC9F0;
    --accent: #48CAE4;
    --light: #F8F9FA;
    --dark: #212529;
    --gray: #6C757D;
    --white: #FFFFFF;
}

body {
    font-family: "Open Sans", sans-serif;
    background: var(--light);
}
.section-title{
    /*font-family: "Montserrat", sans-serif;*/
    font-weight: 700;
    /*text-transform:uppercase;*/
    /*text-shadow: 2px 2px 5px var(--accent);*/
    letter-spacing: 1px;
    color: var(--primary);
}
.lead{
	font-family: "Open Sans", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}
pre {

font-family: "Open Sans", sans-serif;

white-space: pre-wrap; /* Wrap text while preserving formatting */
line-height: 1.5; /* Improved line spacing */
font-size: 20px; /* Comfortable font size */
margin-bottom: 20px; /* Spacing from other elements */
white-space: pre-wrap; /* Wraps the text within the container */
  word-wrap: break-word; /* Breaks long words if necessary */
  overflow: hidden; /* Prevents scroll */
  max-width: 100%;
}
/* Style for the top bar */
.top-bar {
	background-color: black;
	color: #D8DBDB;
	padding: 5px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-left: 15px;
	padding-right: 15px;
}

.contact-info {
	text-align: left;
}

.social-links {
	text-align: right;
}

.social-links a {
	margin: 0 10px;
	color: #D8DBDB;
	font-size: 15px;
	text-decoration: none;
}

/* Styling for brand logo and navbar items */
.navbar-brand img {
  width: 50px;
  height: 50px;
}
.navbar {
  /*background-color: #007bff;*/
  background: linear-gradient(
        to right,
        rgba(0, 119, 182, 0.8),  /* --primary with 80% opacity */
        rgba(72, 202, 228, 0.8)  /* --accent with 80% opacity */
    );
    backdrop-filter: blur(10px);  /* Optional: adds glassmorphism effect */
    -webkit-backdrop-filter: blur(10px);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.navbar-nav .nav-link {
  font-size: 1.1rem;
  color: #fff !important;
}
.navbar-nav .nav-link:hover {
  color: #ffd700 !important;
}
.nav-item .active{
  color: #ffd700 !important;
}

.btn-grad {
    background-image: linear-gradient(to right, var(--primary) 0%, var(--secondary)  51%, #00c6ff  100%)
}
    .btn-grad {
    margin: 10px;
    padding: 15px 45px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;
    border-radius: 10px;
    display: block;
    text-decoration:none;
}

.btn-grad:hover {
    background-position: right center; 
    color: #fff;
    text-decoration: none;
}

.nav-button {
    background-color: var(--light);  /* soft white */
    color: var(--primary);           /* strong blue text */
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}
.nav-button:hover {
    background-color: var(--white);  /* pure white on hover */
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

         
.banner {

	background-color: #0093E9;
    background-image: linear-gradient(160deg, #0093E9 0%, #80D0C7 100%);

	color: white;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	min-height: 80vh;
}

.banner-content {
	position: relative;
}

.banner-content h1 {
	font-size: 3rem;
	font-weight: 700;
}

.banner-content p {
	font-size: 1.2rem;
}

.btn-custom {
	border: 2px solid white;
	background: transparent;
	color: white;
	transition: all 0.3s ease-in-out;
}

.btn-custom:hover {
	background: white;
	color: #28a745;
}

.banner-content .bubble {
	position: absolute;
	background: rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	animation: float 6s infinite ease-in-out alternate;
}

.bubble:nth-child(1) { width: 100px; height: 100px; top: 5%; left: 25%; animation-duration: 5s; }
.bubble:nth-child(2) { width: 280px; height: 280px; top: 30%; left: 10%; animation-duration: 6s; }
.bubble:nth-child(3) { width: 240px; height: 240px; top: 65%; left: 5%; animation-duration: 7s; }
.bubble:nth-child(4) { width: 170px; height: 170px; top: 25%; left: 20%; animation-duration: 4s; }
.bubble:nth-child(5) { width: 160px; height: 160px; top: 55%; left: 25%; animation-duration: 5.5s; }
.bubble:nth-child(6) { width: 155px; height: 155px; top: 45%; left: 5%; animation-duration: 6.5s; }
.bubble:nth-child(7) { width: 45px; height: 45px; top: 25%; left: 30%; animation-duration: 5.8s; }

@keyframes float {
	0% { transform: translateY(0px); opacity: 0.6; }
	100% { transform: translateY(-30px); opacity: 1; }
}

@media (max-width: 768px) {
	.banner-content {
		margin-top: 25%;
	}

	.contact-info {
		text-align: center;
		padding: 5px;
	}

	.social-links {
		text-align: center;
	}

	.navbrand {
		display: block;
	}

	.nav-brand {
		display: none;
	}
	.nav-item{
	    text-align:left;
	}
}

.services-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.service-card {
    height: 100%;
    border-radius: 10px;
    transition: transform 0.5s ease-in-out;
    text-align: center;
    /*padding: 30px;*/
    background: white;
    border: none;
    border-left: 3px solid var(--accent);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 7px 10px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 50px;
    color: var(--dark);
    margin-bottom: 15px;
}

.card-title {
    font-size: 1.4rem;
    font-weight: bold;
}

/* team section */
.team-section {
    padding: 50px 0;
}

.team-card {
    text-align: center;
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
    padding: 20px;
    border: none;
    border-left: 3px solid var(--accent);
    transition: transform 0.5s ease-in-out;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 7px 10px rgba(0, 0, 0, 0.2);
}

.image-container {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    padding: 3px;
    /*background: var(--secondary);*/
    background-size: 300% 300%;
    animation: borderAnimation 3s infinite linear;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

@keyframes borderAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.image-container img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: block;
    border: 3px solid white;
    object-fit:cover
}
.social-icons a {
    color: white !important;
    margin: 5px;
    font-size: 20px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: var(--secondary) !important;
}
/* facility Card */
.facility-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 380px; /* Fixed height for all cards */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    background: #fff;
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.facility-card:hover {
    transform: translateY(-5px);
}

.facility-img {
    width: 100%;
    height: 100%; /* Fixed image height */
    object-fit: cover; /* Ensures image fits without distortion */
}

.facility-content {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.75);
    color: white;
    padding: 20px;
    transition: transform 0.4s ease-in-out;
    transform: translateY(100%);
}

.facility-icon {
    position: absolute;
    left: 50%;
    bottom: 40px;
    transform: translate(-50%, 50%);
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #007bff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease-in-out;
}

.facility-card:hover .facility-content {
    transform: translateY(0);
}

.facility-card:hover .facility-icon {
    transform: translate(-50%, -30px);
}


.circle-section {
    position: relative;
    background: #f8f9fa; /* Light background */
    padding: 80px 40px;
    text-align: center;
    border-radius: 20px;
    overflow: hidden;
}

/* testimonial section */
.testimonial-section {
    background-color: #0093E9;
    background-image: linear-gradient(160deg, #0093E9 0%, #80D0C7 100%);

    padding: 80px 0;
}

.testimonial-card {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
    background: rgba(0, 0, 0, 0.1); 
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
    font-style: italic;
    color: white;
    position: relative;
    padding: 0 20px;
}

.testimonial-quote::before,
.testimonial-quote::after {
    content: '"';
    font-size: 2rem;
    color: white;
    position: absolute;
}

.testimonial-quote::before {
    left: 0;
    top: -10px;
}

.testimonial-quote::after {
    right: 0;
    bottom: -20px;
}

.testimonial-name {
    font-weight: 600;
    color: white;
    margin-bottom: 0;
}

.testimonial-position {
    font-size: 0.9rem;
    color: white;
}

.section-titles {
    position: relative;
    margin-bottom: 50px;
    color: #0d6efd;
}

.section-titles::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #0d6efd;
}

.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: #0d6efd;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}

.carousel-control-prev {
    left: -20px;
}

.carousel-control-next {
    right: -20px;
}

.carousel-indicators {
    bottom: -50px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #0d6efd;
    opacity: 0.5;
}

.carousel-indicators .active {
    opacity: 1;
}

@media (max-width: 768px) {
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

/* footer section */
.footer {
    background-color: #343a40;
    color: white;
    padding: 40px 0;
}

/* Style for links in footer */
.footer .footer-link {
    color: white;
    text-decoration: none;  /* Remove underline from links */
}

/* Hover effect for links */
.footer .footer-link:hover {
    color: #ff7e5f;  /* Change color on hover */
    text-decoration: none;  /* Ensure no underline on hover */
}

/* Styling for social media icons */
.footer .social-icons a {
    color: white;
    margin: 0 7px;
    font-size: 20px;
    text-decoration: none;  /* Remove underline */
}

/* Hover effect for social icons */
.footer .social-icons a:hover {
    color: #ff7e5f;  /* Change color on hover */
}

/* Additional styling for footer sections */
.footer h5 {
    color: white;
    font-weight: bold;
}

/* Department Section */
.department-card {
    overflow: hidden;
    border-radius: 15px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    /*background: linear-gradient(135deg, #ffffff 0%, #f1f1f1 100%);*/
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.department-card:hover {
    transform: scale(1.01);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.department-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease-in-out;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}
.department-card:hover img {
    transform: scale(1.10);
}
.department-card .card-body {
    padding: 20px;
}
.department-card .card-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #343a40;
}
.department-card .card-text {
    color: #6c757d;
    font-family: "Open Sans", sans-serif;
    font-size:15px;
}

.section-padding{
    padding: 50px 0;
}

.about-us-icon-span{
    background-color: var(--secondary-color);
    color: var(--primary-color);
    width: 60px;  /* Define a fixed width */
    height: 60px; /* Define a fixed height */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-us-icon {
    font-size: 30px;
    text-shadow:
        0 2px 4px rgba(0, 112, 192, 0.3),   /* soft base shadow */
        0 4px 8px rgba(0, 112, 192, 0.15),  /* extended depth */
        1px 1px 1px rgba(0, 0, 0, 0.05);    /* very subtle black for realism */
}


.about-us-row{
    background-color:var(--white);
    border-radius: 10px;
    padding:15px;
    transition: 0.5s all ease;
}

.about-us-row:hover{
    transform: translateY(-5px);
    /*box-shadow: 1px 1px 2px rgba(0,0,0,0.3);*/
    box-shadow: 3px 5px 8px rgba(0,0,0,0.1);
}

.fancy-image {
    width: 100%;
    height: 200px; /* Fixed height for uniformity */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fancy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



/* Premium Carousel Styles */
.premium-carousel {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    height: 100%;
    width: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-image {
    width: 60%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.slide-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 8s ease;
}

.carousel-slide.active .slide-image img {
    transform: scale(1);
}

.slide-content {
    width: 40%;
    height: 100%;
    /*background-color: var(--primary);*/
    background: linear-gradient(
        to right,
        rgba(0, 119, 182, 0.8),  /* --primary with 80% opacity */
        rgba(72, 202, 228, 0.8)  /* --accent with 80% opacity */
    );
    backdrop-filter: blur(10px);  /* Optional: adds glassmorphism effect */
    -webkit-backdrop-filter: blur(10px);
    color: var(--white);
    padding: 80px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.slide-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, rgba(26, 26, 26, 0) 70%);
}

.slide-number {
    font-size: 120px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 50px;
    right: 50px;
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
}

.slide-subtitle {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary);
    margin-bottom: 20px;
    position: relative;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease 0.3s;
}

.slide-subtitle::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary);
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease 0.5s;
}

.slide-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 500px;
    line-height: 1.8;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease 0.7s;
}

.slide-buttons {
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease 0.9s;
}

.carousel-slide.active .slide-subtitle,
.carousel-slide.active .slide-title,
.carousel-slide.active .slide-description,
.carousel-slide.active .slide-buttons {
    transform: translateY(0);
    opacity: 1;
}

.btn-gold {
    background-color: var(--secondary);
    color: var(--dark);
    border: none;
    padding: 12px 30px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    z-index: -1;
}

.btn-gold:hover::before {
    left: 0;
}

.btn-gold:hover {
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
    padding: 12px 30px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
}

.btn-outline-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    transition: all 0.3s ease;
    z-index: -1;
}

.btn-outline-light:hover::before {
    left: 0;
}

.btn-outline-light:hover {
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    bottom: 50px;
    right: 50px;
    z-index: 10;
    display: flex;
    align-items: center;
}

.carousel-dots {
    display: flex;
    margin-right: 20px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background-color: var(--secondary);
    transform: scale(1.3);
}

.carousel-arrows {
    display: flex;
}

.carousel-arrow {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--white);
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.carousel-arrow:hover {
    background-color: var(--secondary);
    color: var(--dark);
}

/* Progress Bar */
.carousel-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.progress-bar {
    height: 100%;
    width: 0;
    background-color: var(--secondary);
    transition: width 0.1s linear;
}

/* Slide Counter */
.slide-counter {
    position: absolute;
    top: 50px;
    left: 50px;
    z-index: 10;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.counter-current {
    font-size: 2rem;
    font-weight: 600;
    color: var(--secondary);
    margin-right: 5px;
}

.counter-separator {
    width: 30px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 0 10px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .slide-image {
        width: 50%;
    }
    
    .slide-content {
        width: 50%;
        padding: 60px 40px;
    }
    
    .slide-title {
        font-size: 2.8rem;
    }
    
    .slide-number {
        font-size: 100px;
        top: 30px;
        right: 30px;
    }
    
    .carousel-nav {
        bottom: 30px;
        right: 30px;
    }
    
    .slide-counter {
        top: 30px;
        left: 30px;
    }
}

@media (max-width: 767px) {
    .carousel-slide {
        flex-direction: column;
    }
    
    .slide-image {
        width: 100%;
        height: 50%;
    }
    
    .slide-image::before {
        background: linear-gradient(0deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 100%);
    }
    
    .slide-content {
        width: 100%;
        height: 50%;
        padding: 40px 30px;
    }
    
    .slide-title {
        font-size: 2.2rem;
    }
    
    .slide-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .slide-number {
        font-size: 80px;
        top: 20px;
        right: 20px;
    }
    
    .carousel-nav {
        bottom: 20px;
        right: 20px;
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
    }
    
    .slide-counter {
        top: 20px;
        left: 20px;
    }
}

.primary-text{
    color:var(--accent);
}

.event-card {
    position: relative;
    width: 100%;
}

.event-image1 {
    height: 450px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.event-tags {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.tag {
    background: var(--primary);
    /*background: rgba(0, 0, 0, 0.7);*/
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight:bold;
}
.logo{
    height:40px;
    object-fit:cover;
}

textarea{
    resize:none;
}

.contact-section .form-field {
    border: 1px solid var(--gray);
    border-radius: 0.5rem;
    padding: 0.75rem;
    color: var(--dark);
    background-color: var(--white);
    transition: all 0.3s ease-in-out;
}

.contact-section .form-field:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(0, 119, 182, 0.25);
    outline: none;
}

.contact-btn {
    background-color: var(--primary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border: none;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}

.contact-btn:hover {
    background-color: var(--secondary);
    color: var(--dark);
}

.testimonial-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    flex-shrink: 0;
}

.stars {
    color: #ffc107;
}

.stars-outline {
    color: #e4e5e9;
}

/* Design 20 - Bubble Speech */
.testimonial-20 {
    background: #fff;
    border-radius: 25px;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
}

/* Tail tip of the bubble */
.testimonial-20::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 60px;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #fff;
}

.testimonial-20::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 57px;
    width: 0;
    height: 0;
    border-left: 23px solid transparent;
    border-right: 23px solid transparent;
    border-top: 25px solid rgba(0, 0, 0, 0.1);
    z-index: -1;
}

/* Parallax */
.parallax-attractive {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;
}

.parallax-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.3));
  z-index: 1;
}

.parallax-content {
  position: relative;
  z-index: 2;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.1);
  padding: 50px;
  border-radius: 20px;
  max-width: 800px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.parallax-content h1 {
  font-size: 3.5rem;
  font-weight: bold;
}

.parallax-content p {
  font-size: 1.3rem;
}

@media(max-width: 768px) {
  .parallax-content h1 {
    font-size: 2.2rem;
  }
  .parallax-content p {
    font-size: 1rem;
  }
}

.facility-card .slide-buttons {
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease 0.9s;
}

.facility-card .slide-subtitle,
.facility-card .slide-title,
.facility-card .slide-description,
.facility-card .slide-buttons {
    transform: translateY(0);
    opacity: 1;
}


@media(max-width:768px){
    .mg-custom{
        display: inline-block;
        width: auto !important;
        padding-top: 15px !important;
        padding-bottom: 15px !important;
        margin: 5px 0; /* vertical spacing */
    }
}
@media(max-width:991px){
    .mg-custom{
        display: inline-block;
        width: auto !important;
        padding-top: 15px !important;
        padding-bottom: 15px !important;
        margin: 5px 0; /* vertical spacing */
    }
}
.team-card .social-icon{
    color:var(--primary) !important;
}