  :root {
            --primary: #2a7f62;
            --primary-light: #3aafa9;
            --accent: #ff7e5f;
            --light: #f8f9fa;
            --dark: #212529;
            --text: #495057;
            --white: #ffffff;
            --gold: #d4af37;
            --section-padding: 5rem 0;
        
            --ruby: #E0115F;
            --sapphire: #0F52BA;
            --emerald: #50C878;
            --ivory: #FFFFF0;
            --charcoal: #36454F;
            --transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
		}
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', sans-serif;
        }
        
        body {
            color: var(--text);
            line-height: 1.7;
            overflow-x: hidden;
            background-color: var(--light);
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            color: var(--white);
            line-height: 1.3;
        }
        
        /* Header Styles */
        header {
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: var(--white);
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
        }
        
        .header-scrolled {
            padding: 0.5rem 0;
            backdrop-filter: blur(10px);
            background: rgba(42, 127, 98, 0.95);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 50px;
            margin-right: 15px;
            transition: all 0.3s;
            filter: brightness(1) invert(0);
        }
        
        .logo h1 {
            font-size: 1.1rem;
            font-weight: 700;
            /*letter-spacing: 0.5px;*/
        }
        
        .logo span {
            font-size: 0.6rem;
            display: block;
            font-weight: 300;
            letter-spacing: 0.5px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 1.8rem;
            position: relative;
        }
        
        nav ul li a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            position: relative;
            padding: 0.5rem 0;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
        }
        
        nav ul li a:hover {
            color: var(--accent);
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent);
            transition: width 0.3s;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .mobile-menu-btn:hover {
            color: var(--accent);
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            min-height: 700px;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                        url('https://images.unsplash.com/photo-1579684453423-f84349ef60b0?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
            display: flex;
            align-items: center;
            text-align: center;
            color: var(--white);
            padding-top: 80px;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: linear-gradient(transparent, var(--light));
            z-index: 1;
        }
        
        .hero-content {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 2;
        }
        
        .hero h2 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            animation: fadeInDown 1s ease;
            text-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
            line-height: 1.2;
            color: var(--white);
            font-weight: 600;
            background: linear-gradient(90deg, var(--white), var(--gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            animation: fadeInUp 1s ease;
            opacity: 0.9;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* Button Styles */
        .btn {
            display: inline-block;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            margin: 0 0.5rem;
        }
        
        .btn-primary {
            background-color: var(--accent);
            color: var(--white);
        }
        
        .btn-primary:hover {
            background-color: #ff6a45;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .btn-secondary {
            background-color: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }
        
        .btn-secondary:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            margin-top: 2rem;
        }
        
        /* St. Francis Section */
        .saint-section {
            padding: 4rem 0;
            background-color: var(--white);
            text-align: center;
        }
        
        .saint-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 3rem;
            justify-content: center;
        }
        
        .saint-image {
            flex: 1;
            min-width: 300px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .saint-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .saint-content {
            flex: 1;
            min-width: 300px;
            text-align: left;
        }
        
        .saint-content h3 {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }
        
        .saint-content p {
            margin-bottom: 1.5rem;
            color: var(--text);
        }
        
        .bible-quote {
            font-style: italic;
            padding: 1.5rem;
            background-color: rgba(42, 127, 98, 0.1);
            border-left: 4px solid var(--primary);
            margin: 1.5rem 0;
            position: relative;
        }
        
        .bible-quote::before {
            content: '\201C';
            position: absolute;
            top: 10px;
            left: 10px;
            font-size: 4rem;
            color: var(--primary);
            opacity: 0.1;
            font-family: serif;
            line-height: 1;
        }
        
        .bible-quote p {
            margin-bottom: 0.5rem;
            position: relative;
            z-index: 2;
        }
        
        .bible-quote cite {
            display: block;
            text-align: right;
            color: var(--primary);
            font-weight: 500;
        }

       .vision-mission {
    background: linear-gradient(135deg, #004e92, #000428);
    color: #fff;
}

.vision-card,
.mission-card {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
	border-left: 5px solid var(--accent);
}

.vision-card:hover,
.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.card-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    border-bottom: 3px solid #ffcc00;
    display: inline-block;
    padding-bottom: 5px;
}

.card-text {
    line-height: 1.6;
    font-size: 1rem;
    opacity: 0.9;
}

        
     
  .features {
    background: #f8f9fa;
}

.feature-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    color: #212529; /* Default text color */
}
.bg-blue-dark { background-color: #1a237e; }
.bg-green-dark { background-color: #004d40; }
.bg-gray-dark { background-color: #263238; }

/* Hover effect for first two cards */
.feature-card {
    transition: background-color 0.4s ease, transform 0.3s ease;
}
.bg-blue-dark:hover { background-color: #3949ab; transform: translateY(-5px); }
.bg-green-dark:hover { background-color: #00695c; transform: translateY(-5px); }
.bg-gray-dark:hover { background-color: #455a64; transform: translateY(-5px); }

/* Optional icon effect */
.feature-card i {
    transition: transform 0.3s ease, color 0.3s ease;
	color: yellow;
}
.feature-card:hover i {
    transform: scale(1.2);
    color: #4caf50; /* Green icon on hover */
}
        
        /* Services Section */
        .services {
            padding: var(--section-padding);
			background: #1a355f;
			/*background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);*/
            position: relative;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        .service-card {
            background-color: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.4s;
            position: relative;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .service-img {
            height: 220px;
            overflow: hidden;
            position: relative;
        }
        
        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s;
        }
        
        .service-card:hover .service-img img {
            transform: scale(1.1);
        }
        
        .service-content {
            padding: 1.8rem;
            position: relative;
        }
        
        .service-content h3 {
            font-size: 1.4rem;
            margin-bottom: 0.8rem;
            color: var(--primary);
        }
        
        .service-content p {
            margin-bottom: 1.5rem;
            color: var(--text);
            font-size: 0.95rem;
        }
        
        .service-link {
            color: var(--accent);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s;
            font-size: 0.95rem;
        }
        
        .service-link i {
            margin-left: 8px;
            transition: transform 0.3s;
        }
        
        .service-link:hover {
            color: var(--primary);
        }
        
        .service-link:hover i {
            transform: translateX(8px);
        }
        
        /* Emergency Banner */
        .emergency-banner {
            background: linear-gradient(135deg, var(--accent), #ff6a45);
            color: var(--white);
            text-align: center;
            padding: 3rem 2rem;
          
            position: relative;
            overflow: hidden;
        }
        
        .emergency-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.05)" d="M0,0 L100,0 L100,100 L0,100 Z"></path></svg>');
            background-size: cover;
            opacity: 0.1;
        }
        
        .emergency-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
            position: relative;
            z-index: 2;
        }
        
        .emergency-text h3 {
            font-size: 2rem;
            margin-bottom: 0.8rem;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }
        
        .emergency-text p {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        .emergency-number {
            font-size: 2.2rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            background-color: rgba(0, 0, 0, 0.1);
            padding: 1rem 2rem;
            border-radius: 50px;
            transition: all 0.3s;
        }
        
        .emergency-number:hover {
            background-color: rgba(0, 0, 0, 0.2);
            transform: scale(1.05);
        }
        
        .emergency-number i {
            margin-right: 15px;
            animation: pulse 2s infinite;
        }
		.emergency-banner {
			color: #fff;
		}

		.emergency-banner i {
			font-size: 1.5rem;
		}

		.emergency-number {
			font-size: 1.2rem;
		}

        
        /* Testimonials Section */
        .testimonials {
            padding: var(--section-padding);
            background-color: var(--white);
            position: relative;
        }
        
        .testimonial-slider {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            padding: 0 2rem;
        }
        
        .testimonial {
            background-color: var(--light);
            padding: 3rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            text-align: center;
            display: none;
            position: relative;
        }
        
        .testimonial::before {
            content: '\201C';
            position: absolute;
            top: 30px;
            left: 30px;
            font-size: 5rem;
            color: var(--primary);
            opacity: 0.1;
            font-family: serif;
            line-height: 1;
        }
        
        .testimonial::after {
            content: '\201D';
            position: absolute;
            bottom: 30px;
            right: 30px;
            font-size: 5rem;
            color: var(--primary);
            opacity: 0.1;
            font-family: serif;
            line-height: 1;
        }
        
        .testimonial.active {
            display: block;
            animation: fadeIn 1s ease;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 2rem;
            position: relative;
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--dark);
            z-index: 2;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .author-img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 1.5rem;
            border: 3px solid var(--primary);
        }
        
        .author-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-info h4 {
            margin-bottom: 0.3rem;
            color: var(--dark);
            text-align: left;
        }
        
        .author-info p {
            color: var(--text);
            font-size: 0.9rem;
            text-align: left;
        }
        
        .testimonial-nav {
            display: flex;
            justify-content: center;
            margin-top: 2.5rem;
            gap: 1rem;
        }
        
        .testimonial-dot {
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background-color: #ddd;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .testimonial-dot.active {
            background-color: var(--primary);
            transform: scale(1.2);
        }
        
        /* Gallery Section */
        .gallery {
            padding: var(--section-padding);
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
        }
        
        .gallery-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
        }
        
        .gallery-item {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.4s;
            height: 250px;
        }
        
        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .gallery-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-item:hover .gallery-img {
            transform: scale(1.1);
        }
        
        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 1.5rem;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
            color: var(--white);
            opacity: 0;
            transition: all 0.3s;
            transform: translateY(20px);
        }
        
        .gallery-item:hover .gallery-caption {
            opacity: 1;
            transform: translateY(0);
        }
        
        .gallery-caption h3 {
            margin-bottom: 0.5rem;
            font-size: 1.2rem;
        }
        
        .gallery-caption p {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        .view-more {
            text-align: center;
            margin-top: 3rem;
        }
        
        /* Newsletter Section */
        .newsletter {
            padding: 4rem 0;
            background-color: var(--primary);
            color: var(--white);
            text-align: center;
        }
        
        .newsletter-container {
            max-width: 700px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        .newsletter h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
        }
        
        .newsletter p {
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        
        .newsletter-form {
            display: flex;
            max-width: 500px;
            margin: 0 auto;
        }
        
        .newsletter-input {
            flex: 1;
            padding: 1rem;
            border: none;
            border-radius: 50px 0 0 50px;
            font-size: 1rem;
            outline: none;
        }
        
        .newsletter-btn {
            padding: 0 2rem;
            background-color: var(--accent);
            color: var(--white);
            border: none;
            border-radius: 0 50px 50px 0;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .newsletter-btn:hover {
            background-color: #ff6a45;
        }
        
       /* Footer */
        footer {
            background: linear-gradient(135deg, var(--charcoal), #000);
            color: white;
            padding: 4rem 0;
            position: relative;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            padding: 0 2rem;
            position: relative;
            z-index: 1;
        }
        
        .footer-column h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--gold);
        }
        
        .footer-column p, .footer-column a {
            margin: 0.5rem 0;
            color: rgba(255,255,255,0.7);
            transition: var(--transition);
            text-decoration: none;
            display: block;
        }
        
        .footer-column a:hover {
            color: var(--gold);
            transform: translateX(5px);
        }
        
        .footer-bottom {
            text-align: center;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            position: relative;
            z-index: 1;
        }
        
        .footer-decoration {
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, transparent 70%);
        }
        
        .social-links {
            display: flex;
            gap: 1.2rem;
            margin-top: 1.5rem;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--white);
            transition: all 0.3s;
            font-size: 1.1rem;
        }
        
        .social-links a:hover {
            background-color: var(--accent);
            transform: translateY(-5px);
        }
        
        
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--accent);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 999;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background-color: var(--primary);
            transform: translateY(-5px);
        }
        
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.2); }
            100% { transform: scale(1); }
        }
        
        /* Responsive Styles */
        @media (max-width: 1200px) {
            .hero h2 {
                font-size: 3rem;
            }
            
            .section-title h2 {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 992px) {
            .hero h2 {
                font-size: 2.7rem;
            }
            
            .section-title h2 {
                font-size: 2.3rem;
            }
            
            .emergency-number {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                padding: 0 1.5rem;
            }
            
            nav {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: var(--primary);
                transition: all 0.4s ease;
                z-index: 999;
                display: flex;
                align-items: center;
                justify-content: center;
            }
            
            nav.active {
                left: 0;
            }
            
            nav ul {
                flex-direction: column;
                padding: 2rem;
                width: 100%;
            }
            
            nav ul li {
                margin: 1.2rem 0;
                text-align: center;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero h2 {
                font-size: 2.3rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                gap: 1.2rem;
            }
            
            .btn {
                width: 100%;
            }
            
            .emergency-content {
                flex-direction: column;
                text-align: center;
                gap: 1.5rem;
            }
            
            .emergency-number {
                font-size: 1.8rem;
                padding: 0.8rem 1.5rem;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .newsletter-input {
                border-radius: 50px;
                margin-bottom: 1rem;
            }
            
            .newsletter-btn {
                border-radius: 50px;
                padding: 1rem;
            }
            
            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
        }
        
        @media (max-width: 576px) {
            .logo h1 {
                font-size: 1.3rem;
            }
            
            .logo span {
                font-size: 0.7rem;
            }
            
            .hero h2 {
                font-size: 2rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .section-title p {
                font-size: 1rem;
            }
            
            .feature-card {
                padding: 2rem 1.5rem;
            }
            
            .testimonial {
                padding: 2rem 1.5rem;
            }
            
            .testimonial::before,
            .testimonial::after {
                font-size: 3rem;
            }
            
            .testimonial::before {
                top: 15px;
                left: 15px;
            }
            
            .testimonial::after {
                bottom: 15px;
                right: 15px;
            }
            
            .author-img {
                width: 60px;
                height: 60px;
                margin-right: 1rem;
            }
            
            .gallery-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }
		.custom-intro {
    background: linear-gradient(90deg, #6a11cb, #2575fc); /* gradient background */
    color: white; /* text color */
    padding: 10px 5px; /* spacing */
    border-radius: 15px; /* rounded corners */
    font-size: 2rem; /* bigger text */
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2); /* subtle shadow */
    text-transform: uppercase; /* optional, makes it look stylish */
	background: #F44336;
	margin-bottom:20px;
}
		 /* Floating Elements */
        .floating-elements {
            position: fixed;
            bottom: 30px;
            right: 30px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 100;
        }

        .floating-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent), #ff5a5f);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            box-shadow: 0 10px 25px rgba(255, 126, 95, 0.4);
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }

        .floating-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0));
            opacity: 0;
            transition: all 0.3s ease;
        }

        .floating-btn:hover {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 15px 35px rgba(255, 126, 95, 0.6);
        }

        .floating-btn:hover::before {
            opacity: 1;
        }

        .floating-btn .pulse {
            position: absolute;
            width: 100%;
            height: 100%;
            background: inherit;
            border-radius: 50%;
            opacity: 0.8;
            animation: pulse 2s infinite;
            z-index: -1;
        }

        @keyframes pulse {
            0% { transform: scale(0.8); opacity: 0.8; }
            70% { transform: scale(1.3); opacity: 0; }
            100% { transform: scale(0.8); opacity: 0; }
        }

        /* 3D Rotating Hospital Model */
        .hospital-model {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 300px;
            height: 300px;
            margin-top: -150px;
            margin-left: -150px;
            background-image: url('https://images.unsplash.com/photo-1581093450021-4a7360e9a7a1?auto=format&fit=crop&w=600');
            background-size: cover;
            border-radius: 50%;
            box-shadow: 0 0 50px rgba(0, 0, 0, 0.2);
            transform-style: preserve-3d;
            animation: rotate 30s infinite linear;
            opacity: 0.1;
            z-index: 0;
        }

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