@charset "utf-8";
/* CSS Document */


        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Arial, sans-serif;
        }
        
        :root {
            --primary-blue: #1a3a5f;
            --secondary-blue: #2a4a75;
            --accent-gold: #fff;
            --diamond-blue: #4a90e2;
            --light-bg: #f5f5f5;
            --white: #ffffff;
        }
        
        body {
            background-color: var(--light-bg);
            color: #333;
            line-height: 1.6;
            transition: background-color 0.3s;
        }
        
        /* 60th Anniversary Animation Overlay */
        .anniversary-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, #0a1f3a, #1a3a5f);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.8s, visibility 0.8s;
        }
        
        .anniversary-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .anniversary-logo {
            position: relative;
            width: 400px;
            height: 350px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transform: scale(0.5) rotate(-15deg);
            opacity: 0;
            transition: transform 1.2s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 1s;
        }
        
        .anniversary-overlay.active .anniversary-logo {
            transform: scale(1) rotate(0deg);
            opacity: 1;
        }
        
        .diamond-ring {
            position: absolute;
            width: 100%;
            height: 100%;
            border: 8px solid transparent;
            border-radius: 50%;
            transform: rotate(45deg);
        }
        
        .diamond-ring.outer {
            border-color: var(--diamond-blue);
            box-shadow: 0 0 30px rgba(74, 144, 226, 0.7);
            animation: diamond-glow 3s ease-in-out infinite alternate;
        }
        
        .diamond-ring.middle {
            width: 70%;
            height: 70%;
            border-color: var(--accent-gold);
            box-shadow: 0 0 25px rgba(212, 175, 55, 0.7);
            animation: diamond-glow 3s ease-in-out infinite alternate-reverse;
            animation-delay: 0.5s;
        }
        
        .diamond-ring.inner {
            width: 45%;
            height: 45%;
            border-color: var(--white);
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.7);
            animation: diamond-glow 3s ease-in-out infinite alternate;
            animation-delay: 1s;
        }
        
        .diamond-point {
            position: absolute;
            width: 0;
            height: 0;
            border-style: solid;
            transform-origin: center;
        }
        
        .diamond-point.top {
            top: -15px;
            border-width: 0 15px 25px 15px;
            border-color: transparent transparent var(--diamond-blue) transparent;
            animation: float 4s ease-in-out infinite;
        }
        
        .diamond-point.right {
            right: -15px;
            border-width: 15px 0 15px 25px;
            border-color: transparent transparent transparent var(--accent-gold);
            animation: float 4s ease-in-out infinite reverse;
            animation-delay: 0.5s;
        }
        
        .diamond-point.bottom {
            bottom: -15px;
            border-width: 25px 15px 0 15px;
            border-color: var(--white) transparent transparent transparent;
            animation: float 4s ease-in-out infinite;
            animation-delay: 1s;
        }
        
        .diamond-point.left {
            left: -15px;
            border-width: 15px 25px 15px 0;
            border-color: transparent var(--diamond-blue) transparent transparent;
            animation: float 4s ease-in-out infinite reverse;
            animation-delay: 1.5s;
        }
        
        .anniversary-text {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
        }
        
        .anniversary-number {
            font-size: 6rem;
            font-weight: 900;
            color: white;
            text-shadow: 
                0 0 30px var(--diamond-blue),
                0 0 60px var(--diamond-blue),
                3px 3px 0 var(--accent-gold),
                -3px -3px 0 var(--accent-gold);
            margin-bottom: 5px;
            line-height: 1;
            letter-spacing: 5px;
            position: relative;
            display: inline-block;
        }
        
        .anniversary-number::after {
            content: 'TH';
            position: absolute;
            top: 0;
            right: -35px;
            font-size: 2rem;
            color: var(--accent-gold);
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
        }
        
        .anniversary-years {
            font-size: 2.2rem;
            font-weight: bold;
            color: var(--accent-gold);
            margin-bottom: 15px;
            letter-spacing: 3px;
            text-shadow: 0 0 15px rgba(212, 175, 55, 0.7);
            position: relative;
        }
        
        .anniversary-years::before,
        .anniversary-years::after {
            content: '✦';
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: var(--diamond-blue);
            font-size: 1.5rem;
        }
        
        .anniversary-years::before {
            left: -40px;
        }
        
        .anniversary-years::after {
            right: -40px;
        }
        
        .anniversary-label {
            font-size: 1.3rem;
            text-transform: uppercase;
            letter-spacing: 4px;
            color: white;
            margin-bottom: 20px;
            padding-top: 15px;
            border-top: 2px solid var(--diamond-blue);
            position: relative;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
        }
        
        .anniversary-label::before {
            content: '✦';
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            color: var(--accent-gold);
            font-size: 1.2rem;
            background-color: var(--primary-blue);
            padding: 0 10px;
        }
        
        .anniversary-subtext {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 500px;
            margin-top: 20px;
            line-height: 1.5;
            font-weight: 300;
        }
        
        .sparkle {
            position: absolute;
            width: 8px;
            height: 8px;
            background-color: white;
            border-radius: 50%;
            opacity: 0;
            pointer-events: none;
        }
        
        .celebrating-text {
            position: absolute;
            bottom: 15%;
            font-size: 1.8rem;
            color: var(--accent-gold);
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 2px;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s, transform 0.8s;
            transition-delay: 2.2s;
            text-shadow: 0 0 15px rgba(212, 175, 55, 0.7);
        }
        
        .anniversary-overlay.active .celebrating-text {
            opacity: 1;
            transform: translateY(0);
        }
        
        .close-anniversary {
            position: absolute;
            bottom: 8%;
            background-color: transparent;
            color: white;
            border: 2px solid var(--diamond-blue);
            padding: 12px 30px;
            border-radius: 30px;
            font-size: 1.1rem;
            cursor: pointer;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s;
            transition-delay: 2.8s;
            font-weight: 600;
            letter-spacing: 1px;
            overflow: hidden;
        }
        
        .close-anniversary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(74, 144, 226, 0.3), transparent);
            transition: left 0.6s;
        }
        
        .close-anniversary:hover::before {
            left: 100%;
        }
        
        .anniversary-overlay.active .close-anniversary {
            opacity: 1;
            transform: translateY(0);
        }
        
        .close-anniversary:hover {
            background-color: var(--diamond-blue);
            color: var(--primary-blue);
            border-color: var(--accent-gold);
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(74, 144, 226, 0.4);
        }
        
        .sixty-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: linear-gradient(45deg, var(--primary-blue), var(--diamond-blue));
            color: white;
            font-weight: bold;
            font-size: 0.9rem;
            padding: 8px 15px;
            border-radius: 20px;
            animation: badge-pulse 2s infinite;
            box-shadow: 0 0 15px rgba(74, 144, 226, 0.5);
            border: 1px solid var(--accent-gold);
            z-index: 1;
        }
        
        @keyframes diamond-glow {
            0% { 
                box-shadow: 
                    0 0 20px rgba(74, 144, 226, 0.7),
                    0 0 40px rgba(74, 144, 226, 0.3);
            }
            100% { 
                box-shadow: 
                    0 0 30px rgba(74, 144, 226, 0.9),
                    0 0 60px rgba(74, 144, 226, 0.5),
                    0 0 80px rgba(74, 144, 226, 0.2);
            }
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(45deg); }
            50% { transform: translateY(-15px) rotate(45deg); }
        }
        
        @keyframes badge-pulse {
            0% { transform: scale(1); box-shadow: 0 0 15px rgba(74, 144, 226, 0.5); }
            50% { transform: scale(1.05); box-shadow: 0 0 25px rgba(74, 144, 226, 0.8); }
            100% { transform: scale(1); box-shadow: 0 0 15px rgba(74, 144, 226, 0.5); }
        }
        
        @keyframes sparkle {
            0% { transform: scale(0) rotate(0deg); opacity: 0; }
            50% { transform: scale(1) rotate(180deg); opacity: 1; }
            100% { transform: scale(0) rotate(360deg); opacity: 0; }
        }
        
        /* Header Styles */
        header {
            background-color: var(--primary-blue);
            color: white;
            padding: 15px 0;
            border-bottom: 5px solid var(--accent-gold);
            position: sticky;
            top: 0;
            z-index: 100;
            transition: all 0.3s;
        }
        
        .header-scrolled {
            padding: 10px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }
        
        .school-name {
            text-align: center;
            flex-grow: 1;
            position: relative;
        }
        
        .anniversary-badge {
            position: absolute;
            top: -15px;
            right: -10px;
            background: linear-gradient(45deg, var(--primary-blue), var(--diamond-blue));
            color: white;
            font-weight: bold;
            font-size: 0.8rem;
            padding: 4px 10px;
            border-radius: 15px;
            animation: badge-pulse 2s infinite;
            box-shadow: 0 0 10px rgba(74, 144, 226, 0.5);
            border: 1px solid var(--accent-gold);
            z-index: 1;
        }
        
        .school-name h1 {
            font-size: 2.2rem;
            letter-spacing: 1px;
            margin-bottom: 5px;
            transition: font-size 0.3s;
        }
        
        .header-scrolled .school-name h1 {
            font-size: 1.8rem;
        }
        
        .school-name p {
            font-size: 1.1rem;
            letter-spacing: 0.5px;
            opacity: 0.9;
        }
        
        .logo {
            font-size: 2rem;
            color: var(--accent-silver);
            transition: transform 0.5s;
        }

/* Logo imperial */
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px;
}

/* Right logo container */
.header-container .logo:last-child {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px; /* Space between title and right logo */
}
.logo {
    width: 100px; /* Define logo container size */
    height: 100px; /* Define logo container size */
    overflow: hidden; /* Prevents overflow */
    border-radius: 15px; /* Apply corner rounding to the container */
	margin-right: 10px;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the area */
    transition: transform 0.5s ease; /* Transition for scale effect */
	
    
}


.logo img:hover {
    transform: scale(1.1); /* Slightly enlarges on hover */
}

/* End of logo imperial */


        .logo:hover {
            transform: rotate(0deg);
        }
        
        /* Navigation Styles */
        nav {
            background-color: var(--secondary-blue);
            padding: 10px 0;
            box-shadow: 0 3px 5px rgba(0,0,0,0.1);
        }
        
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            padding: 0 20px;
        }
        
        nav a {
            color: white;
            text-decoration: none;
            padding: 10px 20px;
            margin: 0 5px;
            font-weight: 600;
            transition: all 0.3s ease;
            border-radius: 3px;
            position: relative;
            overflow: hidden;
        }
        
        nav a:hover {
            background-color: #3a5a85;
            transform: translateY(-2px);
        }

		nav a.active {
            background-color: var(--accent-gold);
            color: #333;
}
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--accent-gold);
            transition: width 0.3s ease;
        }
        
        nav a:hover::after {
            width: 100%;
        }
        
        /* Image Slider Styles */
        .slider-section {
            max-width: 1200px;
            margin: 40px auto 30px;
            padding: 0 20px;
        }
        
        .image-slider {
            background-color: var(--white);
            border-radius: 15px;
            padding: 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border: 4px solid var(--primary-blue);
            overflow: hidden;
            position: relative;
        }
        
        .slider-container {
            position: relative;
            width: 100%;
            height: 400px;
            overflow: hidden;
        }
        
        .slider-images {
            display: flex;
            width: 500%;
            height: 100%;
            transition: transform 1s ease-in-out;
        }
        
        .slider-image {
            width: 20%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.95);
            transition: filter 0.5s;
        }
        
        .slider-image:hover {
            filter: brightness(1);
        }
        
        .slider-controls {
            position: absolute;
            bottom: 20px;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 10;
        }
        
        .slider-btn {
            background-color: rgba(26, 58, 95, 0.8);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            transition: all 0.3s;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 10px;
        }
        
        .slider-btn:hover {
            background-color: var(--accent-gold);
            transform: scale(1.1);
        }
        
        .slider-dots {
            display: flex;
            gap: 12px;
            margin: 0 20px;
        }
        
        .slider-dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s;
            border: 2px solid transparent;
        }
        
        .slider-dot.active {
            background-color: var(--accent-gold);
            transform: scale(1.2);
            border-color: white;
        }
        
        .slider-dot:hover {
            background-color: var(--diamond-blue);
        }
        
        .slider-caption {
            position: absolute;
            bottom: 80px;
            left: 0;
            width: 100%;
            text-align: center;
            padding: 15px;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
            color: white;
            font-size: 1.3rem;
            font-weight: 600;
            opacity: 1;
            transition: opacity 0.5s;
        }
        
        .slider-thumbnails {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 15px;
            flex-wrap: wrap;
            padding: 0 10px 15px;
        }
        
        .thumbnail {
            width: 90px;
            height: 70px;
            object-fit: cover;
            border-radius: 5px;
            cursor: pointer;
            opacity: 0.7;
            transition: all 0.3s;
            border: 2px solid transparent;
        }
        
        .thumbnail:hover, .thumbnail.active {
            opacity: 1;
            border-color: var(--accent-gold);
            transform: translateY(-5px);
        }
        
        .slider-section h2 {
            color: var(--primary-blue);
            margin-bottom: 20px;
            text-align: center;
            font-size: 2.2rem;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .slider-section h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-blue), var(--accent-gold));
            border-radius: 3px;
        }
        
        /* Auto-play indicator */
        .auto-play-indicator {
            position: absolute;
            top: 20px;
            right: 20px;
            background-color: rgba(0,0,0,0.6);
            color: white;
            padding: 5px 10px;
            border-radius: 15px;
            font-size: 0.8rem;
            z-index: 10;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        /* Anniversary Banner */
        .anniversary-banner {
            background: linear-gradient(90deg, var(--primary-blue), #0a2a4a);
            color: white;
            text-align: center;
            padding: 25px;
            margin: 30px auto;
            max-width: 1200px;
            border-radius: 10px;
            border: 3px solid var(--diamond-blue);
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
            position: relative;
            overflow: hidden;
        }
        
        .anniversary-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 20% 80%, rgba(74, 144, 226, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
        }
        
        .anniversary-banner h2 {
            font-size: 2.4rem;
            color: var(--accent-gold);
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
        }
        
        .anniversary-banner h2 i {
            color: var(--diamond-blue);
            margin-right: 10px;
        }
        
        .anniversary-banner p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 20px;
            position: relative;
            z-index: 1;
            line-height: 1.6;
        }
        
        .anniversary-banner .btn {
            margin-top: 10px;
            position: relative;
            z-index: 1;
            background: linear-gradient(45deg, var(--diamond-blue), var(--accent-gold));
            border: none;
            font-weight: bold;
        }
        
        /* Main Content Styles */
        .container {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .content-box {
            background-color: var(--white);
            border-radius: 5px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-top: 4px solid var(--primary-blue);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .content-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(74, 144, 226, 0.1), transparent);
            transition: left 0.6s;
        }
        
        .content-box:hover::before {
            left: 100%;
        }
        
        .content-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .content-box h2 {
            color: var(--primary-blue);
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f0f0f0;
            transition: color 0.3s;
        }
        
        .content-box p {
            margin-bottom: 15px;
            color: #555;
            transition: color 0.3s;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--primary-blue);
            color: white;
            padding: 10px 20px;
            border-radius: 3px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        
        .btn::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 5px;
            height: 5px;
            background: rgba(255, 255, 255, 0.5);
            opacity: 0;
            border-radius: 100%;
            transform: scale(1, 1) translate(-50%);
            transform-origin: 50% 50%;
        }
        
        .btn:focus:not(:active)::after {
            animation: ripple 1s ease-out;
        }
        
        @keyframes ripple {
            0% {
                transform: scale(0, 0);
                opacity: 0.5;
            }
            100% {
                transform: scale(20, 20);
                opacity: 0;
            }
        }
        
        .btn:hover {
            background-color: var(--secondary-blue);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .btn-gold {
            background-color: var(--accent-gold);
            color: #333;
        }
        
        .btn-gold:hover {
            background-color: #c4a027;
        }
        
        .btn-diamond {
            background: linear-gradient(45deg, var(--diamond-blue), var(--accent-gold));
            color: white;
            font-weight: bold;
        }
        
        /* Footer Styles */
        footer {
            background-color: var(--primary-blue);
            color: white;
            padding: 30px 0 15px;
            margin-top: 40px;
            border-top: 5px solid var(--accent-gold);
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .footer-column h3 {
            color: #fff;
            margin-bottom: 15px;
            font-size: 1.2rem;
			text-decoration: underline;
			text-decoration-color: #fff; 
    		text-decoration-thickness: 2px;
    		text-underline-offset: 5px;
        }
        
        .footer-column p {
            margin-bottom: 10px;
            opacity: 0.9;
        }
        
        .footer-column a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-column a:hover {
            color: var(--accent-gold);
            text-decoration: underline;
        }
 		.footer-links {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            margin-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            opacity: 0.8;
            font-size: 0.9rem;
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .anniversary-logo {
                width: 280px;
                height: 280px;
            }
            
            .anniversary-number {
                font-size: 4.5rem;
            }
            
            .anniversary-number::after {
                font-size: 1.5rem;
                right: -25px;
            }
            
            .anniversary-years {
                font-size: 1.8rem;
            }
            
            .anniversary-years::before,
            .anniversary-years::after {
                font-size: 1.2rem;
            }
            
            .anniversary-years::before {
                left: -30px;
            }
            
            .anniversary-years::after {
                right: -30px;
            }
            
            .celebrating-text {
                font-size: 1.4rem;
            }
            
            .anniversary-banner h2 {
                font-size: 1.8rem;
            }
            
            .slider-container {
                height: 350px;
            }
            
            .slider-caption {
                font-size: 1.1rem;
                bottom: 70px;
            }
        }
        
        @media (max-width: 480px) {
            .anniversary-logo {
                width: 230px;
                height: 230px;
            }
            
            .anniversary-number {
                font-size: 3.5rem;
            }
            
            .anniversary-number::after {
                font-size: 1.2rem;
                right: -20px;
            }
            
            .anniversary-years {
                font-size: 1.4rem;
            }
            
            .anniversary-years::before,
            .anniversary-years::after {
                display: none;
            }
            
            .anniversary-label {
                font-size: 1rem;
            }
            
            .celebrating-text {
                font-size: 1.2rem;
            }
            
            .slider-container {
                height: 250px;
            }
            
            .slider-caption {
                font-size: 0.9rem;
                bottom: 60px;
            }
            
            .slider-btn {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
            
            .thumbnail {
                width: 70px;
                height: 55px;
            }
        }
  
/* Logo 60 years */

.anniversary-text {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.anniversary-image {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto 25px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 0 40px rgba(74, 144, 226, 0.5),
        0 0 80px rgba(212, 175, 55, 0.3),
        inset 0 0 30px rgba(255, 255, 255, 0.1);
    border: 3px solid var(--accent-gold);
    transform: rotate(-2deg);
    transition: transform 0.5s ease;
    animation: diamond-float 6s ease-in-out infinite;
}

.anniversary-image:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 
        0 0 60px rgba(74, 144, 226, 0.7),
        0 0 100px rgba(212, 175, 55, 0.5),
        inset 0 0 40px rgba(255, 255, 255, 0.2);
}

.diamond-60-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9) contrast(1.1);
    transition: transform 0.5s ease;
}

.anniversary-image:hover .diamond-60-image {
    transform: scale(1.1);
}

/* Logo background color */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(26, 58, 95, 0.7) 0%,
        rgba(74, 144, 226, 0.4) 10%,
        rgba(252, 175, 55, 0.3) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 20px;
}


.diamond-sparkle {
    position: absolute;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, white 30%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    animation: sparkle-twinkle 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes diamond-float {
    0%, 100% { 
        transform: rotate(-2deg) translateY(0); 
        box-shadow: 
            0 0 40px rgba(74, 144, 226, 0.5),
            0 0 80px rgba(212, 175, 55, 0.3);
    }
    50% { 
        transform: rotate(-1deg) translateY(-10px); 
        box-shadow: 
            0 0 50px rgba(74, 144, 226, 0.7),
            0 0 100px rgba(212, 175, 55, 0.5);
    }
}

@keyframes text-glow {
    0% { 
        text-shadow: 
            2px 2px 0 var(--primary-blue),
            0 0 20px rgba(212, 175, 55, 0.8);
    }
    100% { 
        text-shadow: 
            2px 2px 0 var(--primary-blue),
            0 0 30px rgba(212, 175, 55, 1),
            0 0 40px rgba(212, 175, 55, 0.6);
    }
}

@keyframes sparkle-twinkle {
    0%, 100% { 
        opacity: 0; 
        transform: scale(0.5) rotate(0deg); 
    }
    50% { 
        opacity: 1; 
        transform: scale(1) rotate(180deg); 
    }
}

.anniversary-years {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--accent-gold);
    margin-bottom: 15px;
    letter-spacing: 3px;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.7);
    position: relative;
}

.anniversary-years::before,
.anniversary-years::after {
    content: '✦';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--diamond-blue);
    font-size: 1.5rem;
}

.anniversary-years::before {
    left: -40px;
}

.anniversary-years::after {
    right: -40px;
}



/* Responsive adjustments */
@media (max-width: 768px) {
    .anniversary-image {
        width: 250px;
        height: 250px;
    }
    
    .diamond-text {
        font-size: 1.5rem;
        letter-spacing: 3px;
    }
    
    .sixty-text {
        font-size: 5rem;
    }
    
    .sixty-text::after {
        font-size: 1.7rem;
        right: -30px;
        top: 8px;
    }
    
    .years-text {
        font-size: 1.3rem;
    }
    
    .anniversary-years {
        font-size: 1.8rem;
    }
    
    .anniversary-years::before {
        left: -30px;
    }
    
    .anniversary-years::after {
        right: -30px;
    }
}

@media (max-width: 480px) {
    .anniversary-image {
        width: 200px;
        height: 200px;
    }
    
    .diamond-text {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }
    
    .sixty-text {
        font-size: 4rem;
    }
    
    .sixty-text::after {
        font-size: 1.4rem;
        right: -25px;
        top: 6px;
    }
    
    .years-text {
        font-size: 1.1rem;
    }
    
    .anniversary-years {
        font-size: 1.4rem;
    }
    
    .anniversary-years::before,
    .anniversary-years::after {
        display: none;
    }
}

