:root {
    /* IDPS Brand Colors - from the school logo */
    --idps-green: #0a542c;
    --idps-light-green: #26865c;
    --idps-gold: #f2c94c;
    --idps-light-gold: #f9e3a3;
    --idps-white: #ffffff;
    --idps-gray: #f5f5f5;
    --idps-dark-gray: #333333;
    
    /* Font sizes */
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--idps-dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--idps-green);
    margin-bottom: var(--spacing-md);
}

.text-gold {
    color: var(--idps-gold);
}

.text-green {
    color: var(--idps-green);
}

.bg-green {
    background-color: var(--idps-green);
    color: var(--idps-white);
}

.bg-gold {
    background-color: var(--idps-gold);
    color: var(--idps-dark-gray);
}

.bg-light-green {
    background-color: var(--idps-light-green);
    color: var(--idps-white);
}

.bg-light-gold {
    background-color: var(--idps-light-gold);
}

.bg-gray {
    background-color: var(--idps-gray);
}

/* Header styles */
.navbar {
    background-color: var(--idps-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: var(--spacing-md) 0;
}

.navbar-brand img {
    height: 100px;
    width: auto;
}

.navbar-nav .nav-link {
    color: var(--idps-dark-gray);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover, 
.navbar-nav .nav-link:focus,
.navbar-nav .nav-item.active .nav-link {
    color: var(--idps-green);
}

.navbar-nav .nav-item.active .nav-link {
    font-weight: 700;
}

.dropdown-menu {
    border-radius: 0;
    border: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.dropdown-item:hover, .dropdown-item:focus {
    background-color: var(--idps-light-green);
    color: var(--idps-white);
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.top-bar {
    background-color: var(--idps-green);
    color: var(--idps-white);
    padding: var(--spacing-xs) 0;
    font-size: var(--font-size-sm);
}

.top-bar a {
    color: var(--idps-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-bar a:hover {
    color: var(--idps-gold);
}

.top-bar i {
    margin-right: var(--spacing-xs);
    color: var(--idps-gold);
}

.top-bar span {
    display: inline-block;
    margin-right: 10px;
}

/* Hero slider */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero-slider {
        height: 500px;
    }
}

.hero-slide {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--idps-white);
    z-index: 2;
    width: 80%;
    max-width: 800px;
}

.hero-content h1 {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--idps-white);
    margin-bottom: var(--spacing-md);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-md);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-content .highlight-text {
    font-size: var(--font-size-xl);
    color: var(--idps-gold);
    font-weight: 700;
    text-transform: uppercase;
    background-color: rgba(0, 0, 0, 0.5);
    display: inline-block;
    padding: 5px 15px;
    border-radius: 4px;
    margin-bottom: var(--spacing-md);
}

.hero-content .admissions-banner {
    background-color: var(--idps-gold);
    color: var(--idps-dark-gray);
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 4px;
    display: inline-block;
    margin-top: var(--spacing-sm);
    font-size: var(--font-size-base);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
    text-shadow: none;
}

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

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

.hero-slider-controls {
    position: absolute;
    bottom: var(--spacing-lg);
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: var(--spacing-sm);
}

.hero-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.hero-slider-dot.active {
    background: var(--idps-gold);
}

/* Buttons */
.btn-primary {
    background-color: var(--idps-green);
    border-color: var(--idps-green);
    color: var(--idps-white);
    border-radius: 4px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover, .btn-primary:focus {
    background-color: var(--idps-light-green);
    border-color: var(--idps-light-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: var(--idps-gold);
    border-color: var(--idps-gold);
    color: var(--idps-dark-gray);
    border-radius: 4px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover, .btn-secondary:focus {
    background-color: var(--idps-light-gold);
    border-color: var(--idps-light-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--idps-white);
    color: var(--idps-white);
    border-radius: 4px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover, .btn-outline:focus {
    background-color: var(--idps-white);
    color: var(--idps-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Section styling */
.section {
    padding: var(--spacing-3xl) 0;
}

.section-title {
    position: relative;
    margin-bottom: var(--spacing-xl);
    text-align: center;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--idps-gold);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* Feature boxes */
.feature-box {
    background-color: var(--idps-white);
    border-radius: 8px;
    padding: var(--spacing-lg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-box .icon {
    background-color: var(--idps-light-green);
    color: var(--idps-white);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-md);
}

.feature-box h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-sm);
}

/* News and events */
.news-card {
    background-color: var(--idps-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: var(--spacing-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-card .card-body {
    padding: var(--spacing-lg);
}

.news-card .date {
    color: var(--idps-light-green);
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-xs);
}

.news-card h4 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-sm);
}

.news-card p {
    color: var(--idps-dark-gray);
    margin-bottom: var(--spacing-md);
}

/* Testimonials */
.testimonial {
    background-color: var(--idps-white);
    border-radius: 8px;
    padding: var(--spacing-xl);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.testimonial:before {
    content: "\201C";
    font-size: 80px;
    position: absolute;
    left: 20px;
    top: -10px;
    color: var(--idps-light-gold);
    opacity: 0.3;
}

.testimonial-content {
    margin-bottom: var(--spacing-md);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: var(--spacing-sm);
}

.testimonial-author .name {
    font-weight: 600;
    margin-bottom: 0;
}

.testimonial-author .role {
    color: var(--idps-light-green);
    font-size: var(--font-size-sm);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--idps-green) 0%, var(--idps-light-green) 100%);
    color: var(--idps-white);
    padding: var(--spacing-3xl) 0 var(--spacing-lg);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.02)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.02)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.footer h3 {
    color: var(--idps-gold);
    margin-bottom: var(--spacing-lg);
    font-size: var(--font-size-xl);
    font-weight: 700;
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--idps-gold), var(--idps-light-gold));
    border-radius: 2px;
}

.footer p {
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
    opacity: 0.95;
}

.footer-logo {
    height: 80px;
    width: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-contact-info {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-sm);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.footer-contact-info:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.footer-contact-info i {
    color: var(--idps-gold);
    width: 20px;
    margin-right: var(--spacing-md);
    margin-top: 3px;
    font-size: var(--font-size-lg);
}

.footer-contact-info p {
    margin-bottom: 0;
    flex: 1;
}

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

.footer-links li {
    margin-bottom: var(--spacing-md);
    position: relative;
}

.footer-links a {
    color: var(--idps-white);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: var(--spacing-xs) 0;
    position: relative;
    font-weight: 500;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--idps-gold);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--idps-gold);
    transform: translateX(5px);
}

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

.social-icons {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    color: var(--idps-white);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    font-size: var(--font-size-lg);
}

.social-icons a:hover {
    background: linear-gradient(135deg, var(--idps-gold), var(--idps-light-gold));
    color: var(--idps-dark-gray);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(242, 201, 76, 0.4);
    border-color: var(--idps-gold);
}

.footer-bottom {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
    padding: var(--spacing-lg) 0;
    margin-top: var(--spacing-2xl);
    text-align: center;
    font-size: var(--font-size-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.footer-bottom p {
    margin-bottom: 0;
    opacity: 0.9;
}

/* Newsletter section for future use */
.newsletter-form .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--idps-white);
    padding: 0.75rem;
    border-radius: 8px 0 0 8px;
    backdrop-filter: blur(10px);
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form .btn {
    background: linear-gradient(135deg, var(--idps-gold), var(--idps-light-gold));
    color: var(--idps-dark-gray);
    border: none;
    border-radius: 0 8px 8px 0;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(242, 201, 76, 0.4);
}

/* Breadcrumb Styles */
.breadcrumb {
    background: transparent !important;
    padding: var(--spacing-md) 0;
    margin-bottom: 0;
}

.breadcrumb-item {
    color: var(--idps-white) !important;
    font-size: var(--font-size-sm);
}

.breadcrumb-item a {
    color: var(--idps-white) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--idps-gold) !important;
}

.breadcrumb-item.active {
    color: var(--idps-gold) !important;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--idps-white) !important;
    content: ">";
    padding: 0 var(--spacing-sm);
}

/* Footer responsive improvements */
@media (max-width: 768px) {
    .footer {
        padding: var(--spacing-2xl) 0 var(--spacing-lg);
    }
    
    .footer h3 {
        font-size: var(--font-size-lg);
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-contact-info {
        padding: var(--spacing-xs);
    }
    
    .breadcrumb {
        padding: var(--spacing-sm) 0;
    }
    
    .breadcrumb-item {
        font-size: var(--font-size-xs);
    }
}

.newsletter-form .btn:hover {
    background-color: var(--idps-light-gold);
}

/* About Page */
.about-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.about-image img {
    display: block;
    width: 100%;
    height: auto;
}

.image-caption {
    font-size: 0.9rem;
    text-align: center;
}

.message-box {
    background-color: var(--idps-white);
    border-radius: 8px;
    padding: var(--spacing-xl);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: var(--spacing-lg);
}

.message-box .principal-image {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: var(--spacing-md);
    border: 5px solid var(--idps-light-green);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--idps-gold);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: var(--spacing-md) var(--spacing-lg);
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--idps-white);
    border: 3px solid var(--idps-gold);
    top: 20px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item:nth-child(even)::after {
    left: -10px;
}

.timeline-content {
    padding: var(--spacing-lg);
    background-color: var(--idps-white);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.timeline-content h3 {
    margin-top: 0;
}

.timeline-content .date {
    color: var(--idps-light-green);
    font-weight: 600;
}

/* Gallery Page */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    height: 280px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border: 4px solid white;
    transition: all 0.4s ease;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid var(--idps-gold);
    opacity: 0;
    border-radius: 14px;
    z-index: 1;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item img {
    transition: all 0.4s ease;
    border: 3px solid transparent;
}

.gallery-item:hover img {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
    border: 3px solid var(--idps-gold);
}

/* Contact Page */
.contact-card {
    background-color: var(--idps-white);
    border-radius: 12px;
    padding: var(--spacing-lg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.contact-card i {
    color: var(--idps-gold);
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-sm);
    transition: transform 0.3s ease;
}

.contact-card:hover i {
    transform: scale(1.15);
}

.contact-form .form-control {
    border: 1px solid #ddd;
    padding: 0.75rem;
    border-radius: 8px;
    margin-bottom: var(--spacing-md);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--idps-light-green);
    box-shadow: 0 0 0 0.25rem rgba(10, 84, 44, 0.25);
}

.contact-form textarea {
    min-height: 150px;
}

.contact-form label {
    font-weight: 500;
    margin-bottom: var(--spacing-xs);
}

.map-container {
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border: 4px solid white;
    transition: box-shadow 0.3s ease;
}

.map-container:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.contact-img {
    border: 5px solid white;
    border-radius: 12px !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.4s ease;
    position: relative;
}

.contact-img::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid var(--idps-gold);
    opacity: 0;
    border-radius: 16px;
    z-index: 1;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.contact-img:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2) !important;
}

.contact-img:hover::before {
    opacity: 1;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--idps-green);
    color: white;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--idps-gold);
    color: var(--idps-dark-gray);
    transform: translateY(-5px);
}

.social-image {
    overflow: hidden;
    border-radius: 12px;
    transition: all 0.3s ease;
    flex: 0 0 calc(50% - 10px);
}

.social-image:hover img {
    transform: scale(1.05);
}

/* Admissions Page */
.process-step {
    display: flex;
    margin-bottom: var(--spacing-xl);
}

.process-step .step-number {
    background-color: var(--idps-green);
    color: var(--idps-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--font-size-lg);
    margin-right: var(--spacing-lg);
    flex-shrink: 0;
}

.process-step .step-content h4 {
    margin-top: 0;
}

.accordion-button:not(.collapsed) {
    background-color: var(--idps-light-green);
    color: var(--idps-white);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(10, 84, 44, 0.25);
}

.table-fees {
    width: 100%;
    border-collapse: collapse;
}

.table-fees th {
    background-color: var(--idps-green);
    color: var(--idps-white);
    padding: var(--spacing-md);
    text-align: left;
}

.table-fees td {
    padding: var(--spacing-md);
    border-bottom: 1px solid #ddd;
}

.table-fees tr:nth-child(even) {
    background-color: var(--idps-gray);
}

/* Premium Facilities Section */
.premium-facilities {
    background-color: #f9f9f9;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.premium-facilities:before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background-color: var(--idps-light-gold);
    opacity: 0.2;
    border-radius: 50%;
    top: -50px;
    left: -50px;
    z-index: 0;
}

.premium-facilities:after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background-color: var(--idps-light-green);
    opacity: 0.1;
    border-radius: 50%;
    bottom: -30px;
    right: -30px;
    z-index: 0;
}

.premium-title {
    color: var(--idps-green);
    font-size: 2.2rem;
    font-weight: 700;
    position: relative;
    margin-bottom: 1.5rem;
    text-align: center;
}

.premium-title:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: var(--idps-gold);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.premium-feature {
    background-color: var(--idps-white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.premium-feature:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 5px;
    background-color: var(--idps-green);
    top: 0;
    left: 0;
    z-index: -1;
}

.premium-feature:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.premium-feature .icon {
    width: 80px;
    height: 80px;
    background-color: rgba(10, 84, 44, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--idps-green);
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.premium-feature:hover .icon {
    background-color: var(--idps-green);
    color: var(--idps-white);
    transform: scale(1.1);
}

.premium-feature h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--idps-green);
}

.premium-feature p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

/* New Testimonials Section */
.testimonials-section {
    background-color: var(--idps-gray);
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.testimonial-card {
    background-color: var(--idps-white);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.quote-icon {
    color: var(--idps-gold);
    font-size: 2rem;
    opacity: 0.6;
}

.rating {
    color: var(--idps-gold);
}

.testimonial-body {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #555;
}

.testimonial-body p {
    font-style: italic;
}

.testimonial-footer {
    display: flex;
    align-items: center;
}

.name-badge {
    width: 50px;
    height: 50px;
    background-color: var(--idps-green);
    color: white;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.author-details h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--idps-green);
}

.author-details p {
    margin: 0;
    font-size: 0.9rem;
    color: #777;
}

/* Call to Action Section */
.cta-highlight {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.pulsing-badge {
    background-color: var(--idps-gold);
    color: var(--idps-dark-gray);
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 25px;
    margin-right: 15px;
    font-size: 0.9rem;
    animation: pulse 2s infinite;
    box-shadow: 0 0 15px rgba(242, 201, 76, 0.7);
}

.contact-details {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.contact-details p {
    margin-bottom: 10px;
}

.contact-details i {
    color: var(--idps-gold);
    margin-right: 10px;
}

/* Enhanced CTA Banner Styles */
.cta-banner {
    background: var(--idps-green);
    color: var(--idps-white);
    padding: var(--spacing-3xl) 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    background: var(--idps-gold);
    color: var(--idps-dark-gray);
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: var(--spacing-lg);
    box-shadow: 0 2px 8px rgba(242, 201, 76, 0.2);
}

.cta-badge i {
    margin-right: 8px;
    color: var(--idps-dark-gray);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
}

.cta-title .highlight {
    color: var(--idps-gold);
    font-size: 2.8rem;
}

.cta-title {
    color: var(--idps-white);
}

.cta-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-xl);
    opacity: 0.95;
}

.cta-description .school-name {
    color: var(--idps-gold);
    font-weight: 700;
}

.cta-description .features {
    display: block;
    margin-top: var(--spacing-md);
    font-size: 1rem;
    opacity: 0.9;
}

.cta-features {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-lg);
}

.feature-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    padding: 12px 20px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

.feature-item i {
    color: var(--idps-gold);
    margin-right: 10px;
    font-size: 1.1rem;
}

.feature-item span {
    font-weight: 600;
    font-size: 0.95rem;
}

.cta-actions {
    position: relative;
    z-index: 2;
}

.cta-btn {
    background: var(--idps-gold);
    color: var(--idps-dark-gray);
    border: none;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(242, 201, 76, 0.3);
    transition: all 0.3s ease;
    margin-bottom: var(--spacing-lg);
    display: inline-block;
}

.cta-btn:hover {
    background: var(--idps-light-gold);
    box-shadow: 0 6px 16px rgba(242, 201, 76, 0.4);
    color: var(--idps-dark-gray);
}

.cta-contact {
    background: rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.cta-contact p {
    margin-bottom: 8px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.cta-contact i {
    color: var(--idps-gold);
    margin-right: 10px;
    width: 16px;
}



/* Responsive adjustments for CTA */
@media (max-width: 768px) {
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-title .highlight {
        font-size: 2.2rem;
    }
    
    .cta-features {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .feature-item {
        justify-content: center;
    }
    
    .cta-actions {
        text-align: center;
        margin-top: var(--spacing-lg);
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Map Section Styles */
.map-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: var(--spacing-3xl) 0;
    position: relative;
}

.map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="map-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(10,84,44,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23map-pattern)"/></svg>');
    pointer-events: none;
}

.map-content {
    position: relative;
    z-index: 2;
}

.map-content h2 {
    color: var(--idps-green);
    margin-bottom: var(--spacing-md);
}

.map-content .lead {
    color: var(--idps-green);
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
}

.map-content p {
    color: var(--idps-dark-gray);
    line-height: 1.7;
    margin-bottom: var(--spacing-xl);
}

.location-details {
    margin-bottom: var(--spacing-xl);
}

.location-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md);
    background: var(--idps-white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.location-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.location-item i {
    color: var(--idps-gold);
    font-size: 1.5rem;
    margin-right: var(--spacing-md);
    margin-top: 2px;
    width: 24px;
    text-align: center;
}

.location-item h5 {
    color: var(--idps-green);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    font-size: 1.1rem;
}

.location-item p {
    color: var(--idps-dark-gray);
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.map-actions {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.map-actions .btn {
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.map-actions .btn-primary {
    background: var(--idps-green);
    border-color: var(--idps-green);
}

.map-actions .btn-primary:hover {
    background: var(--idps-light-green);
    border-color: var(--idps-light-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 84, 44, 0.3);
}

.map-actions .btn-outline-primary {
    color: var(--idps-green);
    border-color: var(--idps-green);
}

.map-actions .btn-outline-primary:hover {
    background: var(--idps-green);
    border-color: var(--idps-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 84, 44, 0.3);
}

.map-container-home {
    position: relative;
    z-index: 2;
}

.map-wrapper {
    background: var(--idps-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

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

.map-wrapper iframe {
    border-radius: 15px;
    transition: all 0.3s ease;
}

/* Responsive adjustments for map section */
@media (max-width: 768px) {
    .map-section {
        padding: var(--spacing-2xl) 0;
    }
    
    .location-item {
        padding: var(--spacing-sm);
    }
    
    .location-item i {
        font-size: 1.2rem;
        margin-right: var(--spacing-sm);
    }
    
    .map-actions {
        flex-direction: column;
    }
    
    .map-actions .btn {
        width: 100%;
        text-align: center;
    }
    
    .map-wrapper {
        margin-top: var(--spacing-lg);
    }
}

/* Media Queries */
@media (max-width: 991px) {
    .navbar-brand img {
        height: 80px;
        width: auto;
    }
    
    .hero-content h1 {
        font-size: var(--font-size-3xl);
    }
    
    .hero-content p {
        font-size: var(--font-size-base);
    }
    
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item::after {
        left: 20px;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-item:nth-child(even)::after {
        left: 20px;
    }
}

@media (max-width: 767px) {
    .section {
        padding: var(--spacing-xl) 0;
    }
    
    .hero-slider {
        height: 350px;
    }
    
    .hero-content h1 {
        font-size: var(--font-size-2xl);
    }
    
    .gallery-container {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .gallery-item {
        height: 200px;
    }
    
    .process-step {
        flex-direction: column;
    }
    
    .process-step .step-number {
        margin-bottom: var(--spacing-sm);
    }
}

@media (max-width: 575px) {
    .navbar-brand img {
        height: 70px;
        width: auto;
    }
    
    .hero-slider {
        height: 450px;
    }
    
    .hero-content {
        width: 90%;
        padding: 15px;
    }
    
    .hero-content h1 {
        font-size: var(--font-size-xl);
        margin-bottom: var(--spacing-sm);
    }
    
    .hero-content p {
        font-size: var(--font-size-sm);
        margin-bottom: var(--spacing-md);
    }
    
    .hero-content .d-flex {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px !important;
    }
    
    .hero-content .btn {
        display: inline-block;
        margin: 5px;
        min-width: 120px;
    }
    
    .gallery-container {
        grid-template-columns: 1fr;
    }
    
    .main-title {
        font-size: var(--font-size-xl);
        margin-bottom: var(--spacing-sm);
        width: 100%;
    }
}

/* Policy pages styling */
.policy-content h2 {
    color: var(--idps-green);
    margin-bottom: 1rem;
}

.policy-content h3 {
    color: var(--idps-green);
    font-size: var(--font-size-xl);
    margin-top: 2rem;
}

.policy-content .text-muted {
    margin-bottom: 2rem;
}

.policy-section {
    margin-bottom: 2rem;
}

.policy-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.policy-section ul li {
    margin-bottom: 0.5rem;
}

.policy-section address {
    padding: 1rem;
    background-color: var(--idps-gray);
    border-radius: 5px;
    margin-top: 1rem;
}

/* Main title styling for slider */
.main-title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--idps-white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    background-color: rgba(0, 0, 0, 0.7);
    border: 2px solid var(--idps-gold);
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    max-width: 100%;
}

@media (max-width: 768px) {
    .main-title {
        font-size: 1.8rem;
        padding: 8px 15px;
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .main-title {
        font-size: 1.7rem;
        padding: 10px 15px;
        border-width: 3px;
        background-color: rgba(0, 0, 0, 0.8);
        margin: 0 auto 15px;
        display: block;
        width: 95%;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        text-shadow: 2px 2px 4px #000;
        word-break: break-word;
        hyphens: auto;
    }
    
    /* Fix button display on mobile */
    .hero-content .d-flex.gap-3 {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 10px !important;
    }
    
    .hero-content .btn {
        width: 80%;
        margin: 5px auto;
        text-align: center;
    }
}

/* Campus Image Styling */
.campus-image {
    position: relative;
    overflow: hidden;
    border: 8px solid var(--idps-white);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2) !important;
}

.campus-image:before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 80px;
    height: 80px;
    background-color: var(--idps-gold);
    opacity: 0.4;
    border-radius: 50%;
    z-index: 0;
}

.campus-image:after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background-color: var(--idps-green);
    opacity: 0.2;
    border-radius: 50%;
    z-index: 0;
}

.campus-image img {
    transform: scale(1);
    transition: transform 0.8s ease;
    position: relative;
    z-index: 1;
}

.campus-image:hover img {
    transform: scale(1.05);
}

.image-caption {
    position: relative;
    z-index: 2;
}
