		
        /* Facilities Section */
        .facilities-bg {
            background-color: #274498;
            color: var(--white);
            border-radius: 100px 20px 100px 20px;
            padding: 100px 40px;
            margin: 60px 0;
            position: relative;
            overflow: hidden;
        }

        .facility-item {
            background: rgba(255, 255, 255, 0.1);
            padding: 40px 20px;
            border-radius: 30px;
            text-align: center;
            border: 2px solid rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
        }

        /* Testimonials */
        .testimonial-card {
            background: var(--white);
            padding: 40px;
            border-radius: 40px 40px 40px 0;
            box-shadow: 0 15px 30px rgba(0,0,0,0.05);
            position: relative;
            border-top: 8px solid var(--accent-yellow);
        }
        
        .testimonial-card::before {
            content: '❝';
            position: absolute;
            top: 10px;
            left: 20px;
            font-size: 3rem;
            color: var(--mint);
            opacity: 0.5;
        }

        /* Contact & Form */
        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 50px;
            background: var(--white);
            padding: 30px;
            border-radius: 60px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.1);
        }

        .contact-details {
            background: var(--primary-red);
            color: white;
            padding: 50px;
            border-radius: 40px;
            position: relative;
            overflow: hidden;
        }

        .form-container { padding: 40px; }

        input, textarea {
            width: 100%;
            padding: 18px;
            border: 3px solid var(--soft-bg);
            border-radius: 25px;
            margin-bottom: 20px;
            font-size: 1rem;
            background: #fff;
            transition: 0.3s;
        }

        input:focus { border-color: var(--accent-yellow); outline: none; }

        .btn-send {
            background: var(--accent-yellow);
            color: var(--primary-blue);
            border: none;
            padding: 22px;
            border-radius: 60px;
            font-family: 'Fredoka One', cursive;
            font-size: 1.4rem;
            cursor: pointer;
            width: 100%;
            transition: 0.3s;
            box-shadow: 0 10px 0px #cc9200;
        }

        /* Facility Bubbles Grid */
        .facilities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 50px;
			align-items: stretch;
        }

        .facility-bubble {
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
			height: 100%;
        }

        .bubble-icon-wrapper {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            margin-bottom: 20px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
            z-index: 2;
            font-size: 2rem;
        }
		.facility-bubble .bubble-text-box {
  height: 100%;
  display: flex;
  flex-direction: column;
}

        .bubble-icon-wrapper::before, .bubble-icon-wrapper::after {
            content: '';
            position: absolute;
            width: 25px;
            height: 25px;
            background: inherit;
            border-radius: 50%;
            top: -5px;
            z-index: -1;
        }
        .bubble-icon-wrapper::before { left: -5px; }
        .bubble-icon-wrapper::after { right: -5px; }

        .bubble-text-box {
            padding: 40px 25px;
            border-radius: 50px;
            min-height: 250px;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
            border: 2px solid transparent;
            transition: transform 0.3s ease;
            background: var(--white);
        }
        
        .facility-bubble:hover .bubble-text-box {
            transform: translateY(-5px);
            border-color: var(--accent-yellow);
			background: var(--bs-warning-border-subtle);}
        }

        /* Facility Theming */
        .teachers .bubble-icon-wrapper { background: #dbe4ff; color: #4c6ef5; }
        .teachers .bubble-text-box { background: var(--bubble-purple); border-color: #dbe4ff; }
        
        .experiential .bubble-icon-wrapper { background: #ffec99; color: #f08c00; }
        .experiential .bubble-text-box { background: var(--bubble-orange); border-color: #ffec99; }
        .section-padding.curriculum-section {
		  padding: 20px 0;
		  background: var(--bg-light);
		}
		.curriculum-section .section-title {
		  color:  var(--primary-red) !important
		  ;
		  text-align: center;
		  margin-bottom: 20px;
		}
		.curriculum-section .facilities-grid {
		  /8padding: 30px;*/
		  border-radius: 30px;

		  background-image: linear-gradient(
			45deg,
			#ffffff 25%,
			#f9f9f9 25%,
			#f9f9f9 50%,
			#ffffff 50%,
			#ffffff 75%,
			#f9f9f9 75%,
			#f9f9f9 100%
		  );

		  background-size: 40px 40px;
		}
		
				@media (max-width: 360px) {
  .facilities-grid {
    grid-template-columns: 1fr;
    justify-items: center; 
  }

  .facility-bubble {
    max-width: 320px; 
    width: 100%;
  }
}
		